/* Reset et variables */
:root {
    --primary-color: #2b07af;
    --secondary-color: #070587;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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-white);
}

body.mes-services-page,
body.tarifs-page,
body.contact-page,
body.mentions-legales-page,
body.teamviewer-page,
body.savoir-faire-page {
    background-image: url('background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.teamviewer-subtitle {
    font-size: 1.1rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navigation */
.header {
    background-image: url("background-image.jpg");
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 6px 0 0 0;
}

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

.logo {
    max-height: 60px;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.8rem;
    font-size: 1rem;
    margin-right:20px;
    margin-bottom:10px;
}

.nav-menu a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a.active {
    color: grey;
}

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

/* Animation arc-en-ciel pour les menus */
.nav-menu a.rainbow-animation {
    animation: rainbow 2s linear infinite;
}

.menu-toggle span.rainbow-animation {
    animation: rainbow-bg 2s linear infinite;
}

@keyframes rainbow {
    0% { color: #ff0000; }
    14% { color: #ff7f00; }
    28% { color: #ffff00; }
    42% { color: #00ff00; }
    57% { color: #0000ff; }
    71% { color: #4b0082; }
    85% { color: #9400d3; }
    100% { color: #ff0000; }
}

@keyframes rainbow-bg {
    0% { background-color: #ff0000; }
    14% { background-color: #ff7f00; }
    28% { background-color: #ffff00; }
    42% { background-color: #00ff00; }
    57% { background-color: #0000ff; }
    71% { background-color: #4b0082; }
    85% { background-color: #9400d3; }
    100% { background-color: #ff0000; }
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--bg-light);
    transition: all 0.3s;
}

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

.hero-index {
    padding: 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    max-width: 900px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* Landing Page Hero Section */
.landing-hero {
    position: relative;
    padding: 4rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.landing-hero .container {
    position: relative;
    z-index: 2;
}

.landing-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.landing-text {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.landing-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    text-align: center;
}

.landing-description {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    text-align: justify;
}

.btn-landing {
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* Wizard de dépannage */
.depannage-wizard {
    min-height: 80px;
}

.wizard-step {
    display: none !important;
    animation: fadeIn 0.3s ease-in;
    margin-bottom: 1rem;
}

.wizard-step.active {
    display: block !important;
}

.wizard-step-centered.active {
    display: flex !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-buttons-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    justify-content: center;
    align-items: stretch;
}

.btn-wizard {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.wizard-step-centered.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}

.more-info-text {
    color: var(--text-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
    transition: opacity 0.3s;
}

.more-info-text:hover {
    opacity: 0.8;
}

.btn-choice {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 120px;
    text-align: center;
}

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

.wizard-form {
    margin-top: 0px;
    padding: 0px;
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-form .form-group {
    margin-bottom: 1rem;
}

.wizard-form .form-group-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.wizard-form .form-group-inline label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    white-space: nowrap;
    min-width: 110px;
    margin-left: 20px;
}

.wizard-form .form-group-inline input {
    flex: 1;
    min-width: 200px;
    padding: 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.wizard-form .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.wizard-form .form-group input,
.wizard-form .form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.wizard-form .form-group input:focus,
.wizard-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.wizard-form .form-group textarea {
    resize: vertical;
}

.wizard-form .form-group-hidden {
    display: none;
}

.wizard-form .form-group-creneau {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wizard-form .form-group-creneau > label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.creneau-radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 9px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
}

.radio-label input[type="radio"] {
    margin-right: 0.5rem;
    cursor: pointer;
    width: auto;
    flex-shrink: 0;
}

.radio-label span {
    user-select: none;
}

.btn-back {
    border: 2px solid var(--primary-color);
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    line-height: 1;
    padding: 1rem;
    min-width: 40px;
    align-self: stretch;
}

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

.btn-back-primary {
    width: auto;
    height: auto;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: bold;
}

.btn-back-primary:hover {
    background: var(--secondary-color);
}

.wizard-form-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.wizard-form-buttons .btn-primary {
    flex: 1;
    font-size: 1rem;
}

.wizard-form .btn-primary {
    font-size: 1rem;
    width: 100%;
}

.menu-container {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
}

.menu-section {
    padding: 1rem 0;
}

.sub-menu-section {
    padding: 1rem 0;
}

/* Formules Section */
.formules-section {
    padding: 2rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: var(--text-color);
    background-color: var(--bg-light);
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: var(--text-light);
    background-color: var(--bg-light);
}

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

.formule-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.formule-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 2rem 0 0 0;
}

.service-block {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-intro {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-note {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-style: italic;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-list li strong {
    color: var(--text-color);
}

/* Bouton Contactez-moi dans les blocs de service */
.btn-service-contact {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-service-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Formation Section */
.formation-section {
    padding: 2rem 0;
}

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

.formation-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.formation-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.formation-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
}

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

.contact-info,
.contact-hours {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3,
.contact-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p,
.contact-hours p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.contact-hours em {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }

    .nav-menu a {
        color: var(--text-color);
    }

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

    .menu-container {
        border-radius: 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .landing-content {
        max-width: 100%;
    }

    .landing-text {
        padding: 2rem;
    }

    .landing-title {
        font-size: 2rem;
    }

    .landing-description {
        font-size: 1rem;
    }

    .wizard-buttons-group {
        flex-direction: column;
    }

    .btn-wizard {
        display: block;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .btn-choice {
        width: 100%;
    }

    .wizard-form {
        padding: 1.5rem;
    }

    .wizard-form .form-group-inline {
        gap: 0.5rem;
    }

    .wizard-form .form-group-inline label {
        min-width: 90px;
        text-align: left;
        font-size: 0.9rem;
    }

    .wizard-form .form-group-inline input {
        min-width: 150px;
    }

    .wizard-form .form-group-creneau {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }

    .wizard-form .form-group-creneau > label {
        margin-bottom: 0.25rem;
    }

    .creneau-radio-group {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .formules-grid,
    .formation-grid {
        grid-template-columns: 1fr;
    }

    .service-block {
        padding: 1.5rem;
    }

    .btn-service-contact {
        position: static;
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1.5rem;
        bottom: auto;
        left: auto;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .landing-hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .landing-title {
        font-size: 1.75rem;
    }

    .landing-description {
        font-size: 0.95rem;
    }

    .formules-section,
    .services-section,
    .formation-section,
    .contact-section {
        padding: 2rem 0;
    }
}

/* Page Nos savoir faire */
.savoir-faire-section {
    padding: 2rem 0;
}

.savoir-faire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.savoir-faire-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.savoir-faire-item .video-wrapper {
    border-radius: 8px 8px 0 0;
}

.savoir-faire-item .video-wrapper iframe {
    border-radius: 8px 8px 0 0;
}

.video-title {
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
    padding: 0.75rem 1rem;
    margin: 0;
    background: var(--bg-light);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 6px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

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

/* ============================================
   Styles pour les pages supplémentaires
   ============================================ */

/* Page Tarifs */
.tarifs-section {
    padding: 2rem 0;
}

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

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

.tarif-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.tarif-card.featured {
    border: 2px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.tarif-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tarif-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    display: block;
}

.price-detail {
    font-size: 1rem;
    color: var(--text-light);
}

.tarif-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tarif-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.tarif-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tarif-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.services-tarifs {
    margin-top: 4rem;
}

.services-tarifs h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.service-tarif-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.service-tarif-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.service-tarif-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.tarifs-info {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.tarifs-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
}

.tarifs-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.tarifs-cta p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Page Contact */
.contact-page-section {
    padding: 2rem 0;
}

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

.contact-info-card,
.contact-hours-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-card h2,
.contact-hours-card h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 2rem;
}

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

.contact-detail p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

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

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.hours-list {
    margin-bottom: 2rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hour-item.closed {
    opacity: 0.6;
}

.hour-item .day {
    font-weight: 500;
    color: var(--text-color);
}

.hour-item .time {
    color: var(--text-light);
}

.hours-note {
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 4px;
    margin-top: 1rem;
}

.hours-note p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-form-section {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

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

.field-error {
    color: #991b1b;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    display: block;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Page Mentions légales */
.mentions-section {
    padding: 2rem 0;
}

.mentions-content {
    max-width: 900px;
    margin: 0 auto;
}

.mention-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.mention-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mention-block p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.8;
}

.mention-block ul {
    margin-left: 2rem;
    margin-top: 1rem;
    color: var(--text-color);
}

.mention-block li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Styles spécifiques pour la page tarifs (nouveau format) */
.tarifs-content {
    margin-bottom: 4rem;
}

.tarif-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.tarif-item.featured {
    border-left-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
}

.tarif-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tarif-price-main {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tarif-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.tarif-features {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.tarif-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.tarif-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.tarif-list-simple {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.tarif-list-simple li {
    padding: 0.5rem 0;
    color: var(--text-color);
    line-height: 1.8;
}

.tarif-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Section déplacement */
.deplacement-section {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.zone-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.zone-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.zone-item p {
    color: var(--text-color);
    line-height: 1.8;
}

.zone-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.zone-note h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.zone-note p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Section paiement */
.payment-section {
    position: relative;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.payment-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.payment-image {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    background-color: var(--bg-white);
    height: auto;
}

.payment-image-desktop {
    position: absolute;
    top: 2rem;
    right: 2rem;
    max-width: 180px;
}

.payment-image-mobile {
    display: none;
    max-width: 180px;
    margin-top: 1.5rem;
}

.payment-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Styles pour la page contact (nouveau format) */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-intro p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.contact-form .form-group.captcha {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form .form-group.captcha label {
    margin-bottom: 0;
    min-width: 80px;
}

.contact-form .form-group.captcha input {
    max-width: 100px;
}

/* Messages de formulaire */
.form-message {
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour les nouvelles pages */
@media (max-width: 768px) {
    .tarifs-grid,
    .services-grid,
    .info-grid,
    .contact-page-grid,
    .zones-grid,
    .savoir-faire-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        max-width: 100%;
    }

    .tarif-item {
        padding: 1rem;
    }

    .deplacement-section,
    .payment-section {
        padding: 1.5rem;
    }

    .payment-image-desktop {
        display: none;
    }

    .payment-image-mobile {
        display: block;
        margin: 1.5rem auto 0 auto;
        max-width: 150px;
    }
}

