/* --- APPLE-STYLE RESET AND BASE STYLES --- */
:root {
    --apple-white: #ffffff;
    --apple-light-gray: #f5f5f7;
    --apple-medium-gray: #e5e5ea;
    --apple-dark-gray: #1d1d1f;
    --apple-text-primary: #1d1d1f;
    --apple-text-secondary: #515154;
    --apple-accent-blue: #0071e3;
    --apple-accent-hover: #006ee3;
    --apple-border-radius: 14px;
    --apple-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'SF Pro', 'Helvetica Neue', 'Poppins', 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--apple-white);
    color: var(--apple-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 600; /* Titres plus légers pour un look Apple */
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'SF Pro', 'Helvetica Neue', sans-serif;
}

h3 {
    font-weight: 600; /* Slogan un peu moins gras */
    color: #2c5aa0; /* Couleur d'accent professionnelle (bleu marine) */
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- APPLE-STYLE HERO SECTION --- */
.apple-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--apple-light-gray);
    overflow: hidden;
    padding: 80px 20px;
    background-image: url('images/optimized/luxury_home_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--apple-white);
    /* Performance optimization */
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.apple-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.apple-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.apple-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--apple-white);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.apple-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.apple-cta-button {
    background-color: var(--apple-white);
    color: var(--apple-text-primary);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--apple-border-radius);
    text-decoration: none;
    display: inline-block;
    transition: var(--apple-transition);
    border: 2px solid var(--apple-white);
    cursor: pointer;
}

.apple-cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--apple-text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.apple-cta-button:hover {
    background-color: var(--apple-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}



/* --- APPLE-STYLE FEATURES SECTION --- */
.apple-features {
    padding: 100px 20px;
    background-color: var(--apple-white);
    text-align: center;
}

.apple-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.apple-section-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.apple-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.apple-feature-card {
    background-color: var(--apple-light-gray);
    border-radius: var(--apple-border-radius);
    padding: 40px 30px;
    transition: var(--apple-transition);
    text-align: center;
    border: 1px solid var(--apple-medium-gray);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.apple-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--apple-accent-blue), transparent);
    opacity: 0;
    transition: var(--apple-transition);
}

.apple-feature-card:hover {
    background-color: var(--apple-white);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--apple-accent-blue);
}

.apple-feature-card:hover::before {
    opacity: 1;
}

.apple-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--apple-transition);
}

.feature-svg {
    width: 100%;
    height: 100%;
    stroke: var(--apple-accent-blue);
    fill: none;
    stroke-width: 1.5;
    transition: var(--apple-transition);
    filter: drop-shadow(0 2px 4px rgba(0, 113, 227, 0.15));
}

.apple-feature-card:hover .feature-svg {
    stroke: var(--apple-accent-hover);
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 113, 227, 0.25));
}

.apple-feature-card:hover .feature-svg {
    stroke: var(--apple-accent-hover);
    transform: scale(1.1);
}

.apple-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 8px;
}

.apple-feature-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--apple-accent-blue);
    margin-bottom: 16px;
}

.apple-feature-description {
    font-size: 1rem;
    color: var(--apple-text-secondary);
    line-height: 1.6;
}

/* --- APPLE-STYLE FAQ HEADER --- */
.apple-faq-header {
    padding: 100px 20px 60px;
    background-color: var(--apple-white);
    text-align: center;
}

.apple-breadcrumb {
    font-size: 0.9rem;
    color: var(--apple-text-secondary);
    margin-bottom: 20px;
    display: inline-block;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--apple-medium-gray);
}

.breadcrumb-current {
    color: var(--apple-text-primary);
    font-weight: 500;
}

.apple-faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.apple-faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.apple-faq-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    margin-bottom: 0;
}

/* --- APPLE-STYLE SIMPLE FOOTER (for FAQ page) --- */
.apple-simple-footer {
    background-color: var(--apple-light-gray);
    color: var(--apple-text-primary);
    padding: 40px 20px 30px;
    font-size: 1rem;
    margin-top: 40px;
}

.apple-simple-footer .apple-footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.apple-simple-footer .apple-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.apple-simple-footer .apple-footer-copyright {
    text-align: left;
}

.apple-simple-footer .apple-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.apple-simple-footer .apple-footer-links a {
    color: var(--apple-text-secondary);
    text-decoration: none;
    transition: var(--apple-transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.apple-simple-footer .apple-footer-links a:hover {
    color: var(--apple-accent-blue);
    border-bottom-color: var(--apple-accent-blue);
}

/* --- APPLE-STYLE FOOTER --- */
.apple-footer {
    background-color: var(--apple-light-gray);
    color: var(--apple-text-primary);
    padding: 60px 20px 40px;
    font-size: 1rem;
}

.apple-footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.apple-footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--apple-medium-gray);
    padding-bottom: 40px;
}

.apple-footer-contact,
.apple-footer-form,
.apple-footer-links {
    display: flex;
    flex-direction: column;
}

.apple-footer-contact h3,
.apple-footer-form h3,
.apple-footer-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
}

.apple-footer-contact p,
.apple-footer-form p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--apple-text-secondary);
}

.apple-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apple-footer-links li {
    margin-bottom: 12px;
}

.apple-footer-links a {
    color: var(--apple-text-secondary);
    text-decoration: none;
    transition: var(--apple-transition);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.apple-footer-links a:hover {
    color: var(--apple-accent-blue);
    border-bottom-color: var(--apple-accent-blue);
    transform: translateY(-1px);
}

.apple-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
}

.apple-form-group {
    width: 100%;
}

.apple-form-group input,
.apple-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--apple-medium-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--apple-text-primary);
    transition: var(--apple-transition);
    background-color: var(--apple-white);
}

.apple-form-group input:focus,
.apple-form-group textarea:focus {
    outline: none;
    border-color: var(--apple-accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
    transform: translateY(-1px);
}

.apple-form-group input::placeholder,
.apple-form-group textarea::placeholder {
    color: var(--apple-text-secondary);
    font-weight: 300;
}

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

.apple-submit-button {
    background-color: var(--apple-accent-blue);
    color: var(--apple-white);
    padding: 14px 28px;
    border: none;
    border-radius: var(--apple-border-radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--apple-transition);
    margin-top: 8px;
    align-self: flex-start;
}

.apple-submit-button:hover {
    background-color: var(--apple-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.apple-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.apple-footer-copyright {
    text-align: center;
    color: var(--apple-text-secondary);
    font-size: 0.9rem;
}

.apple-footer-copyright p {
    margin: 0;
    line-height: 1.4;
}

/* --- FORM SUBMISSION STATES --- */
.form-submission-status,
.form-submission-success,
.form-submission-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 113, 227, 0.2);
    border-radius: 50%;
    border-top-color: var(--apple-accent-blue);
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.form-submission-status h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--apple-text-primary);
}

.form-submission-status p {
    font-size: 1rem;
    color: var(--apple-text-secondary);
    margin: 0;
}

.success-icon {
    font-size: 3rem;
    color: #34c759;
    margin-bottom: 15px;
    animation: pulse 1s ease-out;
}

.form-submission-success h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--apple-text-primary);
}

.form-submission-success p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--apple-text-secondary);
}

.thank-you {
    font-style: italic;
    color: var(--apple-accent-blue);
    margin-top: 15px;
    font-weight: 500;
}

.dry-run-note {
    font-style: italic;
    color: var(--apple-text-secondary);
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 400;
}

.error-icon {
    font-size: 3rem;
    color: #ff3b30;
    margin-bottom: 15px;
}

.form-submission-error h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--apple-text-primary);
}

.form-submission-error p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--apple-text-secondary);
}

.retry-instruction {
    margin-top: 15px;
    font-weight: 500;
}

.retry-instruction a {
    color: var(--apple-accent-blue);
    text-decoration: underline;
    font-weight: 600;
}

.retry-instruction a:hover {
    color: var(--apple-accent-hover);
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .apple-hero-title {
        font-size: 2.5rem;
    }

    .apple-hero-subtitle {
        font-size: 1.4rem;
    }

    .apple-section-title {
        font-size: 2rem;
    }

    .apple-section-subtitle {
        font-size: 1.1rem;
    }

    .apple-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apple-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .apple-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apple-footer-contact {
        order: 2;
    }

    .apple-footer-form {
        order: 1;
    }

    .apple-footer-links {
        order: 3;
    }
}

@media (max-width: 480px) {
    .apple-hero-title {
        font-size: 2rem;
    }

    .apple-hero-subtitle {
        font-size: 1.2rem;
    }

    .apple-section-title {
        font-size: 1.8rem;
    }
}



/* --- APPLE-STYLE FAQ SECTION (for dedicated FAQ page) --- */
.apple-faq-section {
    padding: 80px 20px;
    background-color: var(--apple-white);
    position: relative;
    overflow: hidden;
}

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

.apple-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.apple-faq-item {
    background-color: var(--apple-light-gray);
    border-radius: var(--apple-border-radius);
    padding: 24px;
    transition: var(--apple-transition);
    border: 1px solid var(--apple-medium-gray);
}

.apple-faq-item:hover {
    background-color: var(--apple-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--apple-accent-blue);
}

.apple-faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background-color: var(--apple-accent-blue);
    color: var(--apple-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.apple-faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin: 0;
    line-height: 1.3;
}

.apple-faq-answer p {
    font-size: 1rem;
    color: var(--apple-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* --- HIDE OLD SECTIONS (for backward compatibility) --- */
.hero-section, .features-container, .services-section, .automation-section, 
.testimonials-section, .domotic-solutions, .service-areas-section, 
.mid-page-contact-cta {
    display: none !important;
}

footer:not(.apple-footer) {
    display: none !important;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1.0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-image:hover {
    opacity: 1.0;
    transform: scale(1.02);
}

/* --- Service Areas Section (Elegant Location Display) --- */
.service-areas {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 800px;
}

.service-areas-title {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.service-area {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.service-area:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.service-areas-note {
    font-size: 0.9em;
    font-style: italic;
    opacity: 0.8;
    margin-top: 10px;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: white; /* Titre blanc sur fond sombre */
}

.hero-title {
    font-size: 2.5em;
    font-weight: 800; /* Very bold for impact */
    color: white;
    margin-bottom: 15px;
    text-align: center;
    max-width: 800px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3em;
    font-weight: 300; /* Light weight for contrast */
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    line-height: 1.5;
}

/* Bouton d'appel à l'action (CTA) */
.cta-button {
    background-color: #2c5aa0;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #1e3d6f; /* Assombrissement professionnel au survol */
}

/* --- PREMIUM THREE PILLARS SECTION --- */
.features-container {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(44, 90, 160, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 90, 160, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.features-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: -0.5px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3d6f, #2c5aa0);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

.features-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- PREMIUM FEATURE CARD DESIGN --- */
.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(44, 90, 160, 0.2);
}

.feature-icon-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.feature-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(1deg);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.3) 0%, rgba(44, 90, 160, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.feature-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #1e3d6f);
    transition: width 0.3s ease;
}

.feature-card:hover h2::after {
    width: 50px;
}

.feature-card h3 {
    font-size: 1.1em;
    font-weight: 500;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1em;
    margin-bottom: 0;
    flex: 1;
}

/* --- PREMIUM ICON ENHANCEMENTS --- */
.feature-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-badge {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon-badge.security::before {
    content: '🔒';
    font-size: 24px;
    color: #2c5aa0;
}

.feature-icon-badge.simplicity::before {
    content: '⚡';
    font-size: 24px;
    color: #2c5aa0;
}

.feature-icon-badge.savings::before {
    content: '💡';
    font-size: 24px;
    color: #2c5aa0;
}

/* --- PREMIUM ANIMATION EFFECTS --- */
@keyframes premiumFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: premiumFadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* --- PREMIUM BOTTOM DECORATION --- */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

/* --- MID-PAGE CONTACT CTA --- */
.mid-page-contact-cta {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.95), rgba(30, 58, 111, 0.95)), 
                url('images/optimized/luxury_home_hero.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.mid-page-contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-overlay {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mid-page-contact-cta h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.mid-page-contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}

.mid-page-contact-cta .cta-button {
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c5aa0;
    padding: 18px 35px;
    font-size: 1.15em;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.mid-page-contact-cta .cta-button:hover {
    background-color: white;
    color: #1e3d6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mid-page-contact-cta .cta-button:active {
    transform: translateY(0);
}

/* Animation subtile pour attirer l'attention */
.mid-page-contact-cta {
    animation: fadeInUp 1s ease-out;
}

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

/* --- NOUVELLE SECTION : NOS PRESTATIONS --- */
.services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.services-section h2 {
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.service-card {
    flex: 1 1 280px;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #007bff;
}

.service-number {
    width: 40px;
    height: 40px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
    flex-shrink: 0;
    z-index: 1;
}

.service-image {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Subtle overlay effect for service images */
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(44, 90, 160, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

/* Visual effects for service images */
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.service-card:hover .service-image img {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #2c5aa0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.service-card h4 {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.15em;
    margin-bottom: 10px;
}

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

/* --- NOUVELLE SECTION : AUTOMATISATION --- */
.automation-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #e9ecef; /* Fond légèrement contrasté pour séparer la section */
}

.automation-section h2 {
    margin-bottom: 10px;
}

.automation-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto 0 auto;
}

.automation-example {
    flex: 1 1 300px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    border-left: 5px solid #2c5aa0; /* Barre d'accentuation professionnelle */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.automation-example h4 {
    font-weight: 600;
    color: #007bff;
    font-size: 1.15em;
    margin-bottom: 10px;
}

/* --- NOUVELLE SECTION : TÉMOIGNAGES --- */
.testimonials-section {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.testimonials-section h2 {
    margin-bottom: 10px;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.testimonial-card {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #555;
    position: relative;
}

/* Ajout de guillemets stylisés */
.testimonial-card .quote::before {
    content: "“";
    font-size: 3em;
    color: #2c5aa0;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
}

.testimonial-card .client-name {
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-top: 10px;
}

/* --- SECTION DES SOLUTIONS DOMOTIQUES --- */
.domotic-solutions {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

/* SEO Domotic Content (Hidden but indexable) */
.seo-domotique {
    padding: 20px;
    background-color: white;
    color: #333;
}

.seo-domotique h3 {
    color: #1a1a1a;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.seo-domotique p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.seo-domotique ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-domotique li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.domotic-solutions h2 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.solutions-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.solution-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.solution-icon:hover {
    transform: translateY(-5px);
}

.solution-icon:hover img {
    transform: scale(1.1);
}

.solution-icon i {
    font-size: 3em;
    color: #2c5aa0;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.solution-icon:hover i {
    transform: scale(1.1);
    color: #1e3d6f;
}

.solution-icon span {
    font-weight: 500;
    color: #333;
    font-size: 0.95em;
}

/* --- SECTION DES ZONES D'INTERVENTION --- */
.service-areas-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f7f7f7;
}

.service-areas-section h2 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-areas-section .section-description {
    margin-bottom: 30px;
    color: #666;
}

.service-areas-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-area {
    background-color: rgba(44, 90, 160, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.2);
    color: #2c5aa0;
}

.service-area:hover {
    background-color: rgba(44, 90, 160, 0.25);
    transform: translateY(-2px);
}

.service-areas-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

/* Pied de Page (Footer) */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 0;
    font-size: 1em;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.footer-main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-blocks-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 20px 0;
}

.footer-contact,
.footer-contact-form,
.footer-links {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.footer-contact h3,
.footer-links h3 {
    color: #007bff;
    font-size: 1.3em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #2c5aa0;
}

.footer-contact p,
.footer-contact-form p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}

.footer-links a:hover {
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
    transform: translateY(-1px);
}

.footer-links a:focus {
    outline: none;
    box-shadow: 0 -2px 0 #2c5aa0;
}



.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    width: 100%;
}

.footer-copyright {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9em;
    color: #ccc;
    line-height: 1.4;
}



@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
}

/* --- STYLE DU FORMULAIRE DE CONTACT --- */
.footer-contact-form {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Maintain space when form is replaced */
}

.footer-contact-form h3,
.footer-contact h3,
.footer-links h3 {
    color: #007bff;
    font-size: 1.3em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

/* Form Submission States - Professional Design */
.form-submission-status,
.form-submission-success,
.form-submission-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

/* Loading State */
.form-submission-status {
    color: #2c5aa0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(44, 90, 160, 0.2);
    border-radius: 50%;
    border-top-color: #2c5aa0;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.form-submission-status h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-submission-status p {
    font-size: 1em;
    color: #666;
    margin: 0;
}

/* Success State */
.form-submission-success {
    color: #2c5aa0;
}

.success-icon {
    font-size: 3em;
    color: #4CAF50;
    margin-bottom: 15px;
    animation: pulse 1s ease-out;
}

.form-submission-success h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-submission-success p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.thank-you {
    font-style: italic;
    color: #2c5aa0;
    margin-top: 15px;
    font-weight: 500;
}

.dry-run-note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 0.9em;
    font-weight: 400;
}

/* Error State */
.form-submission-error {
    color: #2c5aa0;
}

.error-icon {
    font-size: 3em;
    color: #F44336;
    margin-bottom: 15px;
}

.form-submission-error h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-submission-error p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.retry-instruction {
    margin-top: 15px;
    font-weight: 500;
}

.retry-instruction a {
    color: #2c5aa0;
    text-decoration: underline;
    font-weight: 600;
}

.retry-instruction a:hover {
    color: #1e3d6f;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Remove old form status styles as they're no longer used */
.form-status {
    display: none !important;
}

.footer-contact-form h3::after,
.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #2c5aa0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #333;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 300;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background-color: #2c5aa0;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #1e3d6f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9em;
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
    display: block;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
    display: block;
}

/* --- Media Queries pour la Responsivité --- */
@media (max-width: 992px) {
    /* Cache le troisième témoignage sur les tablettes et mobiles pour un affichage plus propre */
    .testimonial-card.hidden-on-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5em;
    }

    .service-areas-list {
        gap: 10px;
    }

    .service-area {
        font-size: 0.85em;
        padding: 6px 12px;
    }

    .features-container > div,
    .automation-grid, 
    .testimonials-slider {
        flex-direction: column; /* Les cartes s'empilent sur mobile */
        gap: 20px;
    }

    .solutions-icons {
        gap: 20px;
    }
    
    /* Ajustements pour le footer sur mobile */
    .footer-blocks-container {
        flex-direction: column;
    }
    
    .footer-contact-form {
        order: 1; /* Placer le formulaire en premier sur mobile */
    }
    
    .footer-contact {
        order: 2;
    }
    
    .footer-links {
        order: 3;
    }
    
    /* Mobile-specific adjustments for features section */
    .features-title {
        font-size: 2em;
    }
    
    .features-subtitle {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .feature-icon-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .service-areas-list {
        gap: 8px;
        justify-content: center;
    }

    .service-area {
        font-size: 0.8em;
        padding: 5px 10px;
        white-space: nowrap;
    }

    .hero-section .service-areas-list {
        flex-direction: column;
        align-items: center;
    }

    .hero-section .service-area {
        display: block;
        margin-bottom: 8px;
    }
}

/* --- Style pour les Mots-clés (Balise <strong>) --- */
strong {
    font-weight: 700; /* Assure que le texte est bien gras */
    color: #2c5aa0; /* Utilise la couleur d'accentuation professionnelle pour les mots-clés */
}

/* --- Style pour les liens dans le contenu principal --- */
.section-description a,
.automation-section a,
.domotic-solutions a {
    color: #2c5aa0; /* Couleur bleue professionnelle */
    text-decoration: none; /* Pas de soulignement par défaut */
    font-weight: 600; /* Texte légèrement gras */
    border-bottom: 1px solid rgba(44, 90, 160, 0.3); /* Ligne subtile en dessous */
    transition: all 0.3s ease; /* Animation fluide */
    padding-bottom: 2px; /* Espacement pour la ligne */
}

.section-description a:hover,
.automation-section a:hover,
.domotic-solutions a:hover {
    color: #1e3d6f; /* Couleur plus foncée au survol */
    border-bottom-color: #2c5aa0; /* Ligne plus visible au survol */
    transform: translateY(-1px); /* Légère élévation */
}

.section-description a:focus,
.automation-section a:focus,
.domotic-solutions a:focus {
    outline: none; /* Retire l'outline par défaut */
    box-shadow: 0 -2px 0 #2c5aa0; /* Ligne d'accentuation au focus */
}

/* --- STYLE DES IMAGES D'AUTOMATISATION (Cadre Rond) --- */
.automation-icon {
    width: 60px; /* Taille de l'icône */
    height: 60px;
    border-radius: 50%; /* REND L'IMAGE PARFAITEMENT RONDE */
    object-fit: cover; /* S'assure que l'image couvre bien l'espace */
    margin-bottom: 15px; /* Espacement avec le titre */
    border: 3px solid #007bff; /* Bordure d'accentuation bleue */
    display: block; /* S'assure qu'elle prend toute la ligne pour le centrage */
    margin-left: 0; /* Alignement à gauche dans la carte */
}

/* --- STYLE DES NUMÉROS D'AUTOMATISATION --- */
.automation-number {
    width: 40px;
    height: 40px;
    background-color: #2c5aa0; /* Bleu professionnel */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* Ajustement de la carte d'automatisation pour les icônes */
.automation-example {
    /* ... (le reste du style est déjà là) ... */
    text-align: left; /* Assure que le texte reste à gauche */
}

/* --- STYLE POUR LES LIENS "VOIR PLUS" --- */
.see-more-link {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.see-more-link a {
    color: #2c5aa0; /* Couleur bleue professionnelle */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    padding: 8px 16px;
    border: 2px solid #2c5aa0;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.see-more-link a:hover {
    background-color: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.2);
}

.see-more-link a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.3);
}