/*
* VotreMutuelle - Mutuelle Santé Theme
* Main Stylesheet
* 
* This stylesheet contains all custom styles for the VotreMutuelle website
* Inspired by mcommemutuelle.com
*/

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
:root {
    /* Primary brand colors - Actualisés pour correspondre au logo Vita Mutuelle */
    --primary-color: #38b6ff;
    --primary-dark: #0099ff;
    --primary-light: #e0f4ff;
    --secondary-color: #ff5757;
    --secondary-light: #ffeeee;
    --accent-color: #5ce1e6;
    
    /* Text colors */
    --text-dark: #1A3A6D;
    --text-medium: #4A5568;
    --text-light: #718096;
    --text-white: #ffffff;
    
    /* Accent colors */
    --success: #36B37E;
    --info: #5F9EE8;
    --warning: #FFAB00;
    --danger: #FF5A5F;
    
    /* Font families */
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Spacing variables */
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--secondary-light) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.top-bar {
    font-size: 0.875rem;
    background: linear-gradient(to right, var(--primary-color), var(--info));
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #ffffff;
    text-decoration: none;
}

.top-contact i,
.top-links i {
    font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
    box-shadow: 0 2px 10px rgba(70, 137, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid var(--primary-light);
}

.navbar-brand {
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 1rem 1rem;
    color: var(--text-dark);
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link.active:after,
.navbar-nav .nav-link:hover:after {
    width: 60%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--info));
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(70, 137, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--info), var(--primary-color));
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(70, 137, 255, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(to right, var(--primary-color), var(--info));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(70, 137, 255, 0.2);
    border-color: var(--primary-color);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-secondary:hover {
    background: linear-gradient(to right, var(--secondary-color), #FF98BF);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 94, 148, 0.2);
    border-color: var(--secondary-color);
}

.btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Devis Form in Hero Section */
.devis-form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

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

.devis-title h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.devis-title span.text-primary {
    font-weight: 700;
}

.devis-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 2px 4px rgba(255, 87, 87, 0.3);
}

.devis-badge span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.devis-badge small {
    font-size: 0.75rem;
    display: block;
    margin-top: 0.1rem;
}

/* Style spécifique pour le badge sous le titre principal */
.main-badge {
    display: inline-block;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    width: auto;
    min-width: 180px;
}

.form-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile-type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.profile-type {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    white-space: normal;
}

.profile-type.active {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 991.98px) {
    .devis-form-container {
        margin-top: 2rem;
    }
    
    .devis-header {
        flex-direction: column;
    }
    
    .devis-badge {
        margin-top: 1rem;
        align-self: flex-end;
    }
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header .lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits {
    padding: var(--section-padding);
}

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

.section-header h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.benefit-card {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(70, 137, 255, 0.08);
    border: 1px solid var(--primary-light);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(70, 137, 255, 0.15);
    border-color: var(--primary-color);
}

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

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--text-medium);
}

/*--------------------------------------------------------------
# Services Overview
--------------------------------------------------------------*/
.services-overview {
    padding: var(--section-padding);
}

.service-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(70, 137, 255, 0.08);
    border: 1px solid var(--primary-light);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(70, 137, 255, 0.15);
    border-color: var(--primary-color);
}

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

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: var(--section-padding);
    background-color: var(--secondary-light);
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    position: relative;
    height: 100%;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-light);
    font-family: serif;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

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

/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--info));
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(70, 137, 255, 0.2);
}

.cta-container {
    padding: 1rem;
    border-radius: 8px;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Detail
--------------------------------------------------------------*/
.service-detail {
    padding: var(--section-padding);
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-features ul {
    padding-left: 1.5rem;
}

.service-features ul li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.service-options {
    margin-bottom: 2rem;
}

.service-options h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.option-card {
    padding: 1rem;
    background-color: #ffffff;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.option-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.option-card p {
    margin-bottom: 0;
    color: var(--text-medium);
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/
.about-story {
    padding: var(--section-padding);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.our-values {
    padding: var(--section-padding);
}

.value-card {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

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

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

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card .icon-image img {
    width: auto;
    max-height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}

.our-team {
    padding: var(--section-padding);
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member-image {
    margin-bottom: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.our-commitment {
    padding: var(--section-padding);
}

.bg-light-blue {
    background-color: #e6f7ff;
}

.title-underline {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px 0 20px 0;
}

.commitment-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    list-style-type: none;
}

.commitment-list li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    position: relative;
    padding-left: 10px;
}

.commitment-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
    font-size: 1.2rem;
}

.commitment-graph {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.commitment-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.commitment-unity-img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.graph-container {
    width: 100%;
    position: relative;
}

.graph-line {
    width: 100%;
    height: 300px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-info {
    padding: var(--section-padding-sm);
}

.info-card {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

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

.info-card h3 {
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.contact-form {
    padding: var(--section-padding-sm);
}

.form-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.form-control {
    height: calc(2.5rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.form-control {
    height: auto;
}

.map-section {
    padding: var(--section-padding-sm);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.google-map-responsive {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 450px; /* Hauteur fixe pour la carte */
}

.google-map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.map-info-card {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.map-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.map-info-card p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.map-info-card .btn {
    margin-top: 5px;
    font-size: 0.85rem;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.map-info-card .btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-content {
    padding: var(--section-padding);
}

.faq-categories {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.category-title {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 1rem;
}

.category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-medium);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
    text-decoration: none;
}

.need-help {
    background-color: var(--primary-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.need-help h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.need-help p {
    margin-bottom: 1.5rem;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #ffffff;
    color: var(--text-dark);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    background-color: #ffffff;
}

.still-questions {
    padding: var(--section-padding-sm);
    background-color: var(--primary-light);
}

.questions-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-options {
    margin-top: 3rem;
}

.contact-option {
    text-align: center;
    margin-bottom: 2rem;
}

.option-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Mutuelle Senior Page
--------------------------------------------------------------*/
.senior-intro {
    padding: var(--section-padding);
}

.senior-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-senior {
    padding: var(--section-padding);
}

.senior-plans {
    padding: var(--section-padding);
}

.plan-categories {
    margin-bottom: 2rem;
}

.plan-categories .nav-pills {
    gap: 0.5rem;
}

.plan-categories .nav-link {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.plan-categories .nav-link:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.plan-categories .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.plan-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(70, 137, 255, 0.08);
    border: 1px solid var(--primary-light);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(70, 137, 255, 0.15);
    border-color: var(--primary-color);
}

.plan-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 94, 148, 0.15);
}

.plan-card.popular:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 94, 148, 0.2);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, var(--secondary-color), #FF98BF);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom-left-radius: 10px;
    box-shadow: 0 3px 8px rgba(255, 94, 148, 0.2);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    margin-top: 1rem;
}

.price span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.amount small {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: normal;
}

.plan-features {
    padding: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.plan-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plan-features ul li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.plan-cta {
    padding: 0 2rem 2rem;
    text-align: center;
}

.plan-notice {
    margin-top: 2rem;
}

.plan-comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.plan-comparison-table thead th {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
}

.plan-comparison-table thead th:first-child {
    text-align: left;
    background-color: var(--text-dark);
}

.plan-comparison-table tbody td {
    padding: 0.75rem 1rem;
    text-align: center;
}

.plan-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
}

.plan-table-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.senior-faqs {
    padding: var(--section-padding);
}

/*--------------------------------------------------------------
# Inscription Page
--------------------------------------------------------------*/
.inscription-section {
    padding: var(--section-padding);
}

.plan-summary {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.plan-details {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-top: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
}

.plan-info h4 {
    margin-bottom: 1rem;
}

.plan-info ol {
    padding-left: 1.5rem;
}

.plan-info ol li {
    margin-bottom: 0.75rem;
}

.inscription-form-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-header-with-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.form-header-with-image h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-image {
    flex-shrink: 0;
    max-width: 120px;
}

.form-image img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .form-header-with-image {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-image {
        margin-top: 1rem;
        max-width: 100px;
    }
}

.inscription-form {
    margin-top: 2rem;
}

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

.confirmation-card {
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.confirmation-icon {
    color: #28a745;
    margin-bottom: 1rem;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.reassurance-section {
    padding: 3rem 0;
}

.reassurance-item {
    text-align: center;
    padding: 1.5rem;
}

.reassurance-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: #212529;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.contact-info i {
    width: 24px;
    text-align: center;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .benefit-card, 
    .service-card, 
    .value-card {
        margin-bottom: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .cta-section .btn {
        margin-top: 1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-contact,
    .top-links {
        margin-bottom: 0.5rem;
    }
    
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .faq-categories {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .btn-primary,
    .btn-outline-primary,
    .btn-outline-secondary {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1rem;
    }
}
/*
 * Vita Mutuelle - Thème personnalisé
 * 
 * Ce fichier contient les personnalisations de couleurs et polices
 * pour harmoniser le site avec le logo Vita Mutuelle
 */

/* Redéfinition des couleurs principales du site selon le logo */
:root {
  --primary-color: #38b6ff;
  --primary-dark: #0099ff;
  --primary-light: #e0f4ff;
  --secondary-color: #ff5757;
  --secondary-light: #ffeeee;
  --accent-color: #5ce1e6;
}

/* Application des nouvelles polices */
body {
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Harmonisation des éléments du site avec les couleurs du logo */
.bg-primary {
  background-color: var(--primary-color) !important;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

/* Boutons secondaires */
.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #e04848;
  border-color: #e04848;
}

/* Accents et éléments de mise en valeur */
.devis-badge, .feature-tag, .pricing-badge {
  background-color: var(--secondary-color);
}

/* Zones de fond colorées */
.bg-light {
  background-color: var(--primary-light) !important;
}

.testimonials {
  background-color: #f5f9ff;
}

/* Ombres et effets de relief */
.card, .service-card, .benefit-card, .feature-card {
  box-shadow: 0 4px 12px rgba(56, 182, 255, 0.08);
  transition: all 0.3s ease;
}

.card:hover, .service-card:hover, .benefit-card:hover, .feature-card:hover {
  box-shadow: 0 8px 24px rgba(56, 182, 255, 0.12);
  transform: translateY(-5px);
}

/* Navigation principale */
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Footer */
.footer-dark {
  background-color: #1e3a5a;
}

/* Eléments de formulaire */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(56, 182, 255, 0.25);
}

.profile-type.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Accents turquoise */
.section-header h2:after {
  background-color: var(--accent-color);
}

/* Styles spécifiques pour les cartes de blog */
.blog-card .blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-meta .category {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}