/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10%;
}

/* Header */
.top-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.contact-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.main-nav {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
}

.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    display: block;
    object-fit: contain;
}

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

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3498db;
}

.dropdown-label {
    cursor: default;
    user-select: none;
}

.nav-link:focus-visible,
a:focus-visible,
.cta-button:focus-visible,
.promo-btn:focus-visible,
.submit-btn:focus-visible,
.emergency-btn:focus-visible {
    outline: 3px solid rgba(52, 152, 219, 0.45);
    outline-offset: 3px;
    border-radius: 8px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 55px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
	color: #149414;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #e74c3c;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.cta-button.secondary:hover {
    background: #3498db;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Services Overview */
.services-overview {
    background: white;
}

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

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
    color: #6c757d;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #2980b9;
}

/* Expertise Section */
.expertise {
    background: #f8f9fa;
}

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

.expertise-item {
    text-align: center;
    padding: 30px;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.expertise-item p {
    color: #6c757d;
}

/* Testimonials */
.testimonials {
    background: white;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

/* Accreditations */
.accreditations {
    background: #f8f9fa;
}

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

.accreditation-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.accreditation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accreditation-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.accreditation-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.accreditation-item p {
    color: #6c757d;
    font-size: 14px;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    padding: 5%;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 3px;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 24px;
    min-width: 40px;
    text-align: center;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-details p {
    color: #6c757d;
    line-height: 1.6;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
}

.contact-details a:hover {
    color: #2980b9;
}

.contact-form h2 {
    padding: 20px 0;
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}
.form-group-hidden {
    display: none !important; 
    visibility: hidden; 
    position: absolute; 
    left: -9999px; 
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Emergency Section */
.emergency-section {
    background: #e74c3c;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.emergency-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.emergency-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.services-detail:nth-child(even) {
    background: #f8f9fa;
}

.services-detail h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.expertise-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.expertise-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.expertise-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.expertise-link:hover {
    color: #2980b9;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.services-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-item p {
    color: #6c757d;
    line-height: 1.8;
}

.cvac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cvac-item {
    background: white;
    padding: 20px;
    width: 167px;
    height: 51px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #2c3e50;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
}

.cvac-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
    background: white;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.promo-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.promo-card.featured {
    border: 3px solid #3498db;
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}

.promo-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.promo-subtitle {
    color: #6c757d;
    margin-bottom: 25px;
}

.promo-price {
    margin-bottom: 30px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    display: block;
}

.price-note {
    color: #6c757d;
    font-size: 16px;
}

.promo-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.promo-features li {
    padding: 8px 0;
    color: #6c757d;
}

.promo-savings {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.savings-text {
    color: #27ae60;
    font-weight: 600;
}

.promo-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.promo-btn:hover {
    background: #2980b9;
}

/* Service Detail Pages */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 40px;
    text-align: center;
}

.service-types,
.solutions-section,
.problems-section {
    margin-bottom: 60px;
}

.service-types h3,
.solutions-section h3,
.problems-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.types-grid,
.solutions-grid,
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.type-card,
.solution-card,
.problem-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.type-card:hover,
.solution-card:hover,
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.type-icon,
.solution-icon,
.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.type-card h4,
.solution-card h4,
.problem-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.type-card p,
.solution-card p,
.problem-card p {
    color: #6c757d;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    font-size: 24px;
    min-width: 30px;
}

.service-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
}

.service-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-cta p {
    margin-bottom: 30px;
}

/* Phone in Header */
.phone {
    font-size: 14px;
}

.phone strong {
    color: #3498db;
}

.phone a {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 1px 3px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #3498db;
}

.phone a:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}
/* Emergency Phone in Header */
.emergency-phone {
    font-size: 14px;
}

.emergency-phone strong {
    color: #e74c3c;
}

.emergency-phone a {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1px 3px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #e74c3c;
}

.emergency-phone a:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Warranty Section */
.warranty-section {
    margin-bottom: 60px;
}

.warranty-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.warranty-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.warranty-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.warranty-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.warranty-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Warning Section */
.warning-section {
    margin-bottom: 60px;
}

.warning-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.warning-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.warning-icon {
    font-size: 24px;
    min-width: 30px;
}

.warning-item p {
    color: #856404;
    margin: 0;
}

/* Materials Section */
.materials-section {
    margin-bottom: 60px;
}

.materials-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.material-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.material-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.material-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.material-card p {
    color: #6c757d;
    font-size: 14px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.features-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Sectors Section */
.sectors-section {
    margin-bottom: 60px;
}

.sectors-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.sector-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.sector-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.sector-item h4 {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

/* Analysis Section */
.analysis-section {
    margin-bottom: 60px;
}

.analysis-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.analysis-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.analysis-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.analysis-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.analysis-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.analysis-item p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    background: white;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thank-you-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thank-you-content p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.next-steps {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
}

.step-item p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.contact-info-box {
    background: #e8f4f8;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-info-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.quick-contact .contact-item {
    color: #6c757d;
}

.quick-contact .contact-item strong {
    color: #2c3e50;
}

.quick-contact a {
    color: #3498db;
    text-decoration: none;
}

.quick-contact a:hover {
    text-decoration: underline;
}
.return-links {
    padding: 10px;
}
.return-links h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.link-card {
    display: block;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.link-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.link-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.link-card p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Program Deadline */
.program-deadline {
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.program-deadline h4 {
    color: #856404;
    margin-bottom: 10px;
}

.program-deadline p {
    color: #856404;
    margin: 0;
    font-weight: 600;
}

/* Eligible Equipment Section */
.eligible-equipment {
    padding: 60px 0;
    background: #f8f9fa;
}

.eligible-equipment h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.equipment-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.equipment-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.equipment-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.equipment-item p {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 20px;
}

.equipment-item ul {
    list-style: none;
    padding: 0;
}

.equipment-item li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.equipment-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 600;
}

/* Deadlines Section */
.deadlines-section {
    padding: 60px 0;
    background: white;
}

.deadlines-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.deadline-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.deadline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.deadline-card.urgent {
    background: #e8f5e8;
    border: 2px solid #27ae60;
}

.deadline-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.deadline-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.deadline-date {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.deadline-card.urgent .deadline-date {
    color: #27ae60;
}

.deadline-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Estimation Result */
.estimation-result {
    background: #e8f4f8;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.estimation-result h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
}

.result-label {
    font-weight: 600;
    color: #6c757d;
}

.result-value {
    font-weight: 700;
    color: #3498db;
    font-size: 18px;
}

/* Responsive updates for subvention page */
/* Ajustement de la navigation entre 770px et 1150px */
@media (min-width: 770px) and (max-width: 1150px) {
    /* Permet au contenu principal (logo + menu) de passer sur deux lignes si nécessaire */
    .nav-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* Permet aux liens de navigation de passer sur deux lignes */
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }

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

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

    .result-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .program-deadline {
        margin: 15px 0;
    }

    .eligible-equipment,
    .deadlines-section {
        padding: 40px 0;
    }
}

/* Ajout ciblé pour garder logo à gauche et hamburger à droite sur petite écran */
@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
        justify-content: space-between; /* Pousse le logo à gauche et le hamburger à droite */
        align-items: center; /* Centre le logo et le bouton verticalement */
        gap: 12px; /* Garde l'espace quand le menu se déroule en dessous */
    }
    .nav-toggle-label {
        display: flex;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #e74c3c;
    border-color: #e74c3c;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-legal {
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: #fff;
}
/* ========================================================================
   STYLES POUR LE CENTRE DE PRÉFÉRENCES (MODALE COOKIES)
   ======================================================================== */
/* Conteneur principal de la modale */
#ckyPreferenceCenter {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    background-color: #ffffff !important;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    border-radius: 15px !important; /* Arrondi aligné sur tes autres cartes */
    border: none !important;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Empêche les éléments de déborder des coins arrondis */
    font-family: inherit; /* Utilise ton Inter/Roboto */
}

/* En-tête de la modale */
.cky-preference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f8f9fa; /* Même gris léger que tes fonds de section */
    border-bottom: 1px solid #e9ecef;
}

.cky-preference-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important; /* Ton bleu marine foncé */
    margin: 0;
}

.cky-btn-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.cky-btn-close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Corps (zone avec scroll) */
.cky-preference-body-wrapper {
    padding: 25px;
    overflow-y: auto;
    flex-grow: 1; /* Prend l'espace restant */
}

.cky-preference-content-wrapper p {
    color: #6c757d !important; /* Gris de ton texte standard */
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cky-horizontal-separator {
    height: 1px;
    background-color: #e9ecef;
    margin: 20px 0;
}

/* Catégories de cookies (Accordéons) */
.cky-accordion {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cky-accordion:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.cky-accordion-bar {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.cky-accordion-bar:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.cky-accordion-header {
    display: flex;
    flex-wrap: wrap; /* Permet au texte de passer sous le titre et le switch */
    align-items: center;
    justify-content: space-between;
}

.cky-accordion-btn {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    background: none;
    border: none;
    padding: 0;
    flex-grow: 1;
    text-align: left;
    cursor: default;
}

/* Texte explicatif sous chaque catégorie */
.cky-accordion p {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0;
    color: #6c757d !important;
    font-size: 14px;
    line-height: 1.6;
}

.cky-always-active {
    color: #27ae60 !important; /* Vert de succès pour les cookies nécessaires */
    font-size: 14px;
    font-weight: 600;
    background: #e8f5e8;
    padding: 5px 10px;
    border-radius: 20px;
}

/* ========================================================================
   SWITCHES iOS STYLE (Remplace les cases à cocher moches)
   ======================================================================== */
.cky-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.cky-switch input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    background: #e9ecef;
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 0;
}

/* Le petit cercle blanc */
.cky-switch input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* État coché */
.cky-switch input[type="checkbox"]:checked {
    background: #3498db; /* Ton bleu principal */
}

.cky-switch input[type="checkbox"]:checked::after {
    transform: translateX(22px);
}

.cky-switch input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.45);
}

/* ========================================================================
   PIED DE PAGE (BOUTONS D'ACTION)
   ======================================================================== */
.cky-footer-wrapper {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.cky-prefrence-btn-wrapper {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    flex-wrap: wrap; /* Pour les mobiles */
}

/* Styles de base pour les 3 boutons */
.cky-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
}

/* Boutons secondaires (Rejeter / Enregistrer) */
.cky-btn-reject,
.cky-btn-preferences {
    background: transparent !important;
    color: #3498db !important;
    border: 2px solid #3498db !important;
}

.cky-btn-reject:hover,
.cky-btn-preferences:hover {
    background: #3498db !important;
    color: white !important;
}

/* Bouton principal (Tout Accepter) */
.cky-btn-accept {
    background: #3498db !important; /* Ton bouton rouge pour l'action principale, ou #3498db si tu préfères bleu */
    color: white !important;
    border: 2px solid #3498db !important;
}

.cky-btn-accept:hover {
    background: transparent !important;
    color: #2980b9 !important;
}
.cky-btn-customize {
    background: #1863dc !important; /* Ton bouton rouge pour l'action principale, ou #3498db si tu préfères bleu */
    color: white !important;
    border: 2px solid #1863dc !important;
}

.cky-btn-customize:hover {
    background: transparent !important;
    color: #2980b9 !important;
}
/* Ajustements pour les écrans de téléphone */
@media (max-width: 600px) {
    .cky-consent-bar {
        /* Sur mobile, on prend toute la largeur en gardant une petite marge de 15px */
        width: calc(100% - 30px);
        max-width: none;

        /* On réduit légèrement le retrait pour gagner de la place sur l'écran */
        left: 15px;
        bottom: 15px;
    }
    .cky-preference-header {
        padding: 15px 20px;
    }

    .cky-preference-body-wrapper {
        padding: 15px 20px;
    }

    .cky-prefrence-btn-wrapper {
        flex-direction: column; /* Empile les boutons sur mobile */
    }

    .cky-btn {
        width: 100%;
    }
}
/* ========================================================================
   BANNIÈRE DE CONSENTEMENT (Style Boîte Flottante)
   ======================================================================== */

.cky-consent-bar {
    position: fixed;
    /* Retrait par rapport aux bords (gauche et bas) */
    bottom: 25px;
    left: 25px;
    /* Dimensions : 100% de l'écran, mais bloqué à 425px maximum */
    width: 100%;
    max-width: 425px;
    margin: 0;
    /* Améliorations visuelles pour une boîte détachée des bords */
    border-radius: 10px;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
}

/* Centre de préférences (Overlay) caché par défaut */
#ckyPreferenceCenter {
    display: none; /* Géré par le JS */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

/* Fond grisé derrière la modale (optionnel mais recommandé) */
.cky-overlay-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
/* Bannière consentement cookies */
.cky-consent-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cky-consent-banner {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner__actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.cookie-banner__btn--primary {
    background-color: #1863dc;
    color: #fff;
}

.cookie-banner__btn--secondary {
    background-color: transparent;
    color: #1863dc;
    border: 1px solid #1863dc;
}

@media (max-width: 480px) {
    /* Ajustements supplémentaires pour les petits écrans */
    .cvac-grid {
        grid-template-columns: 1fr;
    }
    .overview-split {
        gap: 30px; /* distanciation entre texte et image sur mobile */
    }
    .cky-consent-banner {
        padding: 20px;
    }
    .cookie-banner__actions {
        flex-direction: column;
    }
    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
}

.cky-consent-container.mode-bas-de-page {
    position: relative;
    height: auto;
    background-color: transparent;
    padding: 20px 0;
}

.cky-consent-container.mode-bas-de-page .cky-consent-banner {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
}

.cky-consent-container.mode-bas-de-page .cky-banner-text {
    display: none;
}

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

.policy-content h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.policy-content a {
    color: #3498db;
    text-decoration: none;
}

.policy-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Calculator (LogisVert) */
.calculator-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.calculator-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.calculator-section > p {
    text-align: center;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.calculator-form {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calculator-form .form-group {
    margin-bottom: 18px;
}

.calculator-form .form-group:last-child {
    margin-bottom: 0;
}

.calculator-form .form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.calculator-form select,
.calculator-form input {
    width: 100%;
    height: 48px; /* dimension standard pour toutes les boîtes */
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.calculator-form select:focus,
.calculator-form input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.18);
}

.calculator-form .calculate-btn {
    height: 52px; /* un peu plus haut que les champs pour le confort */
}

.calculator-form .form-group label {
    font-weight: 700;
}

.calculate-btn {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 22px auto 0;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color 0.2s,
        transform 0.15s;
}

.calculate-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.calculator-error {
    margin-top: 16px;
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #b02a37;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

.calculator-disclaimer {
    margin-top: 20px;
    color: #6c757d;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

/* Mobile: menu hamburger */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-label span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
}
/* --- FENÊTRE MODALE (POP-UP) --- */
.modal-overlay {
    display: none; /* Caché par défaut */
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); z-index: 9999; justify-content: center; align-items: center;
}

/* Le JavaScript ajoutera cette classe pour afficher la modale */
.modal-overlay.is-visible {
    display: flex;
}

.modal-box {
    background: #fff; padding: 40px; border-radius: 8px; text-align: center; 
    max-width: 500px; width: 90%; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.modal-icon { font-size: 50px; margin-bottom: 20px; }
.modal-title { color: #333; margin-bottom: 15px; font-family: sans-serif; }
.modal-desc { color: #666; margin-bottom: 25px; line-height: 1.6; }
.modal-close-btn { border: none; cursor: pointer; }
/* Responsive Design */
@media (max-width: 768px) {
    .contact-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .nav-toggle-label {
        display: flex;
        align-self: flex-end;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 12px 0 18px;
        border-top: 1px solid #e9ecef;
        align-items: flex-start;
    }

    #nav-toggle:checked ~ .nav-menu {
        display: flex;
    }

    /* Mobile: activer les sous-menus sans survol */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 0;
        padding: 10px 0 0 15px;
        margin-top: 0;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu a {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 18px;
    }
}

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

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 28px;
    }

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .form {
        padding: 30px 20px;
    }

    .emergency-content h2 {
        font-size: 28px;
    }
}

/* --- AMELIORATIONS VISUELLES INDEX --- */

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 2;
}
.hero-container {
    position: relative;
    z-index: 3;
}
.hero-content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
	margin-bottom: 30%;
}
.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}
.cta-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}
.cta-secondary:hover {
    background-color: white;
    color: #0a1e3c;
}

.expertise-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: white;
}
.expertise-card:hover {
    transform: translateY(-10px);
}
.expertise-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.expertise-content {
    padding: 25px;
}

.section-header-left {
    margin-bottom: 40px;
    max-width: 800px;
}

.overview-split {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.overview-text {
    flex: 1.2;
    min-width: 300px;
}

.overview-image {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 769px) {
    /* 1. Configuration du conteneur parent */
    .nav-content {
        display: flex;
        flex-wrap: wrap; /* ESSENTIEL : permet au menu de "tomber" sur la ligne suivante */
        justify-content: space-between; /* Pousse le logo à gauche et le bouton à droite */
        align-items: center; /* Aligne le logo et le bouton exactement à la même hauteur */
    }

    /* 2. Affichage du bouton hamburger */
    .nav-toggle-label {
        display: flex; /* Fait apparaître le bouton */
    }

    /* 3. Comportement du menu déroulant */
    .nav-menu {
        display: none; /* Caché par défaut */
        width: 100%; /* ESSENTIEL : Force le menu à prendre 100% de la largeur, ce qui le pousse sous le logo/bouton */
        flex-direction: column;
        gap: 10px;
        padding: 12px 0 18px;
        border-top: 1px solid #e9ecef;
        margin-top: 15px; /* Ajoute un petit espace entre le logo/bouton et le menu ouvert */
    }

    /* 4. Affichage du menu quand le bouton est cliqué */
    #nav-toggle:checked ~ .nav-menu {
        display: flex;
    }
}
.rounded-shadow-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cvac-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.tag {
    background: #f0f4f8;
    color: #1863dc;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
}

.promo-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.promo-image-wrapper {
    background-color: #f8f9fa;
    padding: 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.promo-content {
    padding: 25px;
}
.bg-light {
    background-color: #f4f7f6;
    padding: 60px 0;
}
/* 1. Force le fond blanc et le texte noir sur l'élément principal */

gmpx-place-autocomplete-element,
gmp-place-autocomplete {
    /* On force les couleurs du mode clair manuellement */
    --gmpx-color-surface: #ffffff !important;
    --gmpx-color-on-surface: #202124 !important;
    --gmpx-color-outline: #dadce0 !important;
    background-color: #ffffff;
    display: block;
    border-radius: 4px;
    /* On neutralise le schéma de couleur au niveau de l'élément */
    color-scheme: light !important;
}
/* 2. Style précis de l'input interne (le champ de texte) */
gmpx-place-autocomplete-element::part(input) {
    background-color: #ffffff !important;
    color: #202124 !important;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 4px;
    box-shadow: none;
}
/* 3. Style de la liste de suggestions (le menu qui descend) */
.pac-container {
    background-color: #ffffff !important;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}
