/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header et Navigation */
header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--bg-color) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 0.375rem;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    color: var(--bg-color) !important;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-color);
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-color);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-color);
    color: var(--primary-color);
    border: 2px solid var(--bg-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--bg-color);
}

.btn-primary-light {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.btn-primary-light:hover {
    background-color: var(--bg-gray);
}

/* Sections */
section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-intro {
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Features Grid */
.why-choose-us {
    background-color: var(--bg-color);
}

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

.feature-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-light);
}

/* Reform Info */
.reform-info {
    background-color: var(--bg-light);
}

.reform-content {
    max-width: 800px;
    margin: 0 auto;
}

.reform-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.reform-content p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.reform-content .btn {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Content Section */
.content-section {
    background-color: var(--bg-color);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.content-main h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.content-main ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.content-main ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sidebar-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.sidebar-card ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-card ul li a:hover {
    color: var(--secondary-color);
}

.sidebar-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Pricing Cards */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-card-single {
    max-width: 600px;
    margin: 2rem auto;
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2rem;
}

.pricing-body p {
    margin-bottom: 1rem;
}

.pricing-body strong {
    color: var(--primary-color);
}

.pricing-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.pricing-body ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Tarifs Table */
.tarifs-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
}

.tarifs-table thead {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.tarifs-table th,
.tarifs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.tarifs-table th {
    font-weight: 600;
}

.tarifs-table tbody tr:hover {
    background-color: var(--bg-light);
}

.tarifs-table tbody tr:last-child td {
    border-bottom: none;
}

/* Service Detail Blocks */
.service-detail-block {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 2rem 0;
}

.service-detail-header {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 1.5rem;
}

.service-detail-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.service-detail-content {
    padding: 2rem;
}

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

.service-detail-col h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-col p {
    margin-bottom: 1rem;
}

.service-detail-col ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-col ul li {
    margin-bottom: 0.5rem;
}

/* Why Pricing */
.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-color);
}

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

.why-pricing-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.why-pricing-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-pricing-content p {
    color: var(--text-color);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-block {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.legal-block p {
    margin-bottom: 0.75rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 0.5rem;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-detail h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-hours {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.contact-hours h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-hours p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-method {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.contact-method:hover {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-method-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-method-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method-detail a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-method-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-info-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.contact-info-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-box p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info-box ul {
    list-style-position: inside;
    color: var(--text-color);
    line-height: 1.8;
}

.contact-info-box ul li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.875rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

/* Contact CTA */
.contact-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

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

.reason-block {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.reason-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-content p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Intervention Zones */
.intervention-zones {
    background: linear-gradient(to bottom, var(--bg-color) 0%, var(--bg-light) 100%);
    padding: 5rem 0;
}

.zones-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.zone-highlight {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zone-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.zone-highlight-primary::before {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
}

.zone-highlight-secondary::before {
    background: linear-gradient(90deg, #059669, #10b981);
}

.zone-highlight-tertiary::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.zone-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.zone-highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
}

.zone-highlight-primary .zone-highlight-icon {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.zone-highlight-secondary .zone-highlight-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.zone-highlight-tertiary .zone-highlight-icon {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.zone-highlight h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.zone-highlight h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.zone-highlight-primary h3 a {
    color: #1e3a8a;
}

.zone-highlight-secondary h3 a {
    color: #059669;
}

.zone-highlight-tertiary h3 a {
    color: #7c3aed;
}

.zone-highlight h3 a:hover {
    opacity: 0.8;
}

.zone-dept {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.zone-cities-compact {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.zone-compact {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.zone-compact:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.zone-compact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.zone-compact p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.zone-cta {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.zone-cta p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--bg-color);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-col a {
    color: var(--bg-color);
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    .service-detail-row {
        grid-template-columns: 1fr;
    }

    .why-pricing {
        grid-template-columns: 1fr;
    }

    .contact-reasons {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Zones intervention responsive */
    .zones-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zones-secondary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .zone-highlight {
        padding: 1.5rem;
    }

    .zone-highlight h3 {
        font-size: 1.5rem;
    }

    /* Contact methods responsive */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 2rem 0;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .service-card,
    .feature-block,
    .pricing-body,
    .sidebar-card {
        padding: 1.5rem;
    }
}

/* ========================================
   AMÉLIORATIONS MODERNES INDEX
   ======================================== */

/* Hero amélioré */
.hero-enhanced {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-enhanced .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Bandeau d'alerte */
.alert-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.5rem 0;
    border-bottom: 3px solid #f59e0b;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #78350f;
}

.alert-content svg {
    flex-shrink: 0;
    color: #f59e0b;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
}

.alert-content strong {
    color: #92400e;
}

.alert-content a {
    color: #92400e;
    font-weight: 600;
    text-decoration: none;
    margin-left: auto;
    white-space: nowrap;
}

.alert-content a:hover {
    text-decoration: underline;
}

/* Grille de services améliorée */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 20px 20px 0 0;
}

.service-card-blue::before { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.service-card-purple::before { background: linear-gradient(135deg, #a855f7, #9333ea); }
.service-card-green::before { background: linear-gradient(135deg, #22c55e, #16a34a); }
.service-card-orange::before { background: linear-gradient(135deg, #f97316, #ea580c); }

.service-card:hover {
    transform: translateY(-10px);
    border-color: currentColor;
}

.service-card-blue:hover { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3); border-color: #3b82f6; }
.service-card-purple:hover { box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3); border-color: #a855f7; }
.service-card-green:hover { box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3); border-color: #22c55e; }
.service-card-orange:hover { box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3); border-color: #f97316; }

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-blue .service-icon { background: #eff6ff; color: #2563eb; }
.service-card-purple .service-icon { background: #faf5ff; color: #9333ea; }
.service-card-green .service-icon { background: #f0fdf4; color: #16a34a; }
.service-card-orange .service-icon { background: #fff7ed; color: #ea580c; }

.service-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-card-blue .service-link { color: #2563eb; }
.service-card-purple .service-link { color: #9333ea; }
.service-card-green .service-link { color: #16a34a; }
.service-card-orange .service-link { color: #ea580c; }

.service-link:hover {
    gap: 1rem;
}

/* Features avec icônes colorées */
.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-green .feature-icon-box { background: #f0fdf4; color: #16a34a; }
.feature-blue .feature-icon-box { background: #eff6ff; color: #2563eb; }
.feature-purple .feature-icon-box { background: #faf5ff; color: #9333ea; }
.feature-orange .feature-icon-box { background: #fff7ed; color: #ea580c; }

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Badge réforme */
.reform-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* CTA avec icônes */
.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-buttons svg {
    flex-shrink: 0;
}

/* Responsive ajustements */
@media (max-width: 768px) {
    .hero-enhanced {
        padding: 4rem 0 3rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-box {
        min-width: 120px;
        padding: 1.25rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .alert-content {
        flex-direction: column;
        text-align: center;
    }
    
    .alert-content a {
        margin-left: 0;
    }
    
    .services-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .features-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .feature-block {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-box {
        margin: 0 auto;
    }
}


/* Section liste des villes */
.cities-list-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.cities-list-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cities-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.city-dept-group {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.city-dept-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.dept-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.city-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.city-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.city-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.city-link svg {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.city-link:hover svg {
    color: white;
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   AMÉLIORATIONS PAGES DE SERVICES
   ======================================== */

/* Hero amélioré pour pages de services */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%) !important;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* Cartes de pricing améliorées */
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--primary-color);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.pricing-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-body {
    padding: 2rem;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-body ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.pricing-body ul li:last-child {
    border-bottom: none;
}

.pricing-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Carte de pricing unique */
.pricing-card-single {
    max-width: 700px;
    margin: 0 auto;
}

/* CTA en bas de page de service */
.service-cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.service-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Tableaux de tarifs améliorés */
.tarifs-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tarifs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
}

.tarifs-table thead {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.tarifs-table thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.tarifs-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.tarifs-table thead th:last-child {
    border-radius: 0 16px 0 0;
}

.tarifs-table tbody tr {
    transition: background 0.3s ease;
}

.tarifs-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.tarifs-table tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tarifs-table tbody tr:last-child td {
    border-bottom: none;
}

.tarifs-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.tarifs-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

/* Encarts d'avantages sur pages de service */
.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* ========================================
   AMÉLIORATIONS PAGES DE VILLES
   ======================================== */

/* Section villes voisines */
.nearby-cities-section {
    background: var(--bg-light);
    padding: 3rem 0;
    margin-top: 4rem;
    border-radius: 20px;
}

.nearby-cities-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.nearby-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.nearby-city-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nearby-city-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.2);
}

.nearby-city-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nearby-city-link:hover svg {
    transform: scale(1.1);
}

/* Encarts d'informations locales */
.local-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.local-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.local-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.local-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.local-info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Amélioration responsive */
@media (max-width: 768px) {
    .nearby-cities-grid {
        grid-template-columns: 1fr;
    }
    
    .local-info-cards {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   PAGE FAQ
   ======================================== */

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.faq-intro a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin: 1rem 0 1rem 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--text-color);
    font-weight: 700;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-cta {
        padding: 2rem;
    }
    
    .faq-cta h2 {
        font-size: 1.5rem;
    }
}


/* Réduction espacement et taille menu */
.nav-menu {
    gap: 1rem !important; /* Au lieu de 2rem */
}

.nav-menu a {
    font-size: 0.9rem !important; /* Réduit la taille du texte */
    padding: 0.5rem 0.5rem !important; /* Réduit le padding */
}

/* CSS pour FAQ toggle */
.faq-toggle {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background-color: rgba(30, 58, 138, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Logo image optimisé */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* CTA buttons centrés et avec meilleur spacing */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Responsive pour les boutons */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
}

/* Logo complet optimisé */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-full {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .logo-full {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-full {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}
