﻿/* SETHEC Branding */
:root {
    --primary-color: #FDCC0D; /* Yellow from logo approx */
    --secondary-color: #333333; /* Dark Grey */
    --accent-color: #1a1a1a; /* Black */
    --text-color: #4a4a4a;
    --light-bg: #f8f9fa;
    --hero-overlay: rgba(0, 0, 0, 0.65);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.3;
}

/* Section Styles */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 60px; /* Adjust based on logo aspect ratio */
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-left: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    background-color: var(--primary-color) !important;
    color: var(--accent-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Bouton Accès Pro - style par défaut (inactif) */
.navbar .btn-primary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.navbar .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Bouton Accès Pro actif - même logique que nav-link */
.navbar .btn-primary.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #e5b80b;
    border-color: #e5b80b;
    color: black;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url('/img/sethec_image_accueil_hd.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: white;
    padding: 3rem 0;
    margin-top: auto;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* ================================
   BREADCRUMB SECTION
   ================================ */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
}

/* ================================
   PAGE HERO SECTION
   ================================ */
.page-hero {
    position: relative;
    min-height: 350px;
    background: url('../../img/sethec_bg_haut_1_nb.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, 0.55);
}

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

.page-hero-content {
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.page-hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 250px;
    }
    .page-hero-content h1 {
        font-size: 2rem;
    }
    .page-hero-content p {
        font-size: 1rem;
    }
}

/* ================================
   KEY FIGURES
   ================================ */
.key-figures {
    background: var(--accent-color);
}

.figure-item {
    padding: 1.5rem;
}

.figure-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.figure-label {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ================================
   SERVICE CARDS
   ================================ */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e5b80b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

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

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

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ================================
   WHY US CARDS
   ================================ */
.why-card {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.why-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ================================
   VALUE CARDS (Qui sommes-nous)
   ================================ */
.value-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ================================
   MISSION LIST
   ================================ */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.mission-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* ================================
   TEAM STATS
   ================================ */
.team-stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ================================
   EXPERIENCE BADGE
   ================================ */
.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* ================================
   CERTIFICATIONS
   ================================ */
.certification-item {
    text-align: center;
    padding: 1rem;
}

.certification-item img {
    max-height: 60px;
    margin-bottom: 0.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.certification-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.certification-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-color);
}

/* ================================
   ACTIVITY SECTION
   ================================ */
.activity-image {
    position: relative;
}

.activity-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.activity-badge.bg-success {
    background: #28a745;
}

.activity-badge.bg-success i {
    color: white;
}

.activity-badge.bg-info {
    background: #17a2b8;
}

.activity-badge.bg-info i {
    color: white;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.activity-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* ================================
   CONTRACT CARDS
   ================================ */
.contract-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
}

.contract-card h6 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contract-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ================================
   ADVANTAGE CARDS
   ================================ */
.advantage-card {
    padding: 1.5rem;
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.advantage-card h5 {
    color: white;
    margin-bottom: 0.75rem;
}

.advantage-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ================================
   PROJECT CARDS (Réalisations)
   ================================ */
.filter-buttons .btn-filter {
    background: white;
    border: 1px solid #dee2e6;
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    border-radius: 30px;
    transition: var(--transition);
}

.filter-buttons .btn-filter:hover,
.filter-buttons .btn-filter.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}

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

.project-image {
    position: relative;
    height: 220px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.project-category {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-content {
    padding: 1.5rem;
}

.project-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.project-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.project-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-details li {
    font-size: 0.85rem;
    color: var(--text-color);
}

.project-details li i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

/* ================================
   STATS LIGHT
   ================================ */
.stat-item-light {
    padding: 1rem;
}

.stat-item-light .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.stat-item-light .stat-label {
    color: var(--accent-color);
    font-size: 0.95rem;
    display: block;
    margin-top: 0.5rem;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: block;
}

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

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-info strong {
    display: block;
    color: var(--accent-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-form-wrapper,
.contact-info-wrapper {
    height: 100%;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(253,204,13,0.25);
}

.contact-info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon.bg-danger {
    background: #dc3545;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-icon.bg-danger i {
    color: white;
}

.contact-details h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.social-link i {
    font-size: 1.2rem;
}

/* ================================
   MAP SECTION
   ================================ */
.map-wrapper {
    line-height: 0;
}

.map-wrapper iframe {
    filter: grayscale(50%);
}

/* ================================
   DEPARTMENTS GRID
   ================================ */
.departments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.department-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    min-width: 150px;
}

.department-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.dept-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.dept-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ================================
   LOGIN PAGE (Accès Pro)
   ================================ */
.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 3rem;
}

.login-logo {
    max-height: 60px;
    margin-bottom: 1.5rem;
}

.login-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-form .form-control {
    padding: 0.75rem 1rem;
}

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

.login-footer a:hover {
    color: var(--primary-color);
}

.pro-service-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition);
}

.pro-service-card:hover {
    border-color: var(--primary-color);
}

.pro-service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.pro-service-card h6 {
    margin-bottom: 0.5rem;
}

/* ================================
   LEGAL CONTENT (Mentions légales)
   ================================ */
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content ul {
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cta-section h2 {
    font-size: 2rem;
    color: #ffffff;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
}

.cta-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #1a1a1a;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.cta-section .btn-outline-light {
    border-width: 2px;
}

.cta-section .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
}

/* ================================
   FOOTER ENHANCEMENTS
   ================================ */
.footer-logo {
    height: 50px;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.contact-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

/* ================================
   ACCORDION (FAQ)
   ================================ */
.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--accent-color);
}

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

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 991px) {
    .experience-badge {
        right: 15px;
        bottom: -15px;
        padding: 1rem;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .figure-number {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-info-card {
        margin-top: 2rem;
    }
}
/* ================================
   HERO ENHANCEMENTS
   ================================ */
.hero-badge {
    display: inline-block;
    background: rgba(253, 204, 13, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-features span {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.hero-features span i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ================================
   URGENCY BANNER
   ================================ */
.urgency-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 1rem 0;
    color: white;
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-content > i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.urgency-content div {
    display: flex;
    flex-direction: column;
}

.urgency-content strong {
    font-size: 1.1rem;
}

.urgency-content span {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

/* ================================
   FLOATING CARD
   ================================ */
.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-card-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card-content span {
    font-weight: 600;
    color: var(--accent-color);
}

/* ================================
   MINI FEATURES
   ================================ */
.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mini-feature i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.mini-feature span {
    font-weight: 500;
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* ================================
   SERVICE CARD ENHANCEMENTS
   ================================ */
.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.service-list li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    position: relative;
    padding-left: 1.25rem;
}

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

/* ================================
   BRANDS CAROUSEL
   ================================ */
.brands-carousel {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.brand-item {
    flex: 0 0 150px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-height: 50px;
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item.brand-text {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 0 0.5rem;
}

.brand-item.brand-text span {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brands-carousel:hover .brands-track {
    animation-play-state: paused;
}

/* ================================
   TESTIMONIALS CAROUSEL
   ================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-slide {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar i {
    font-size: 3rem;
    color: #ccc;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.author-info span {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
}

.rating {
    margin-top: 0.25rem;
}

.rating i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-icon i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.carousel-indicators {
    position: relative;
    margin-top: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: var(--primary-color);
}

/* ================================
   REALISATION CARDS
   ================================ */
.realisation-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.realisation-image {
    position: relative;
    height: 200px;
    background: #eee;
    overflow: hidden;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.realisation-card:hover .realisation-image img {
    transform: scale(1.05);
}

.realisation-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.realisation-tag {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.realisation-content {
    padding: 1.5rem;
}

.realisation-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.realisation-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.realisation-stats {
    display: flex;
    gap: 1.5rem;
}

.realisation-stats span {
    font-size: 0.85rem;
    color: var(--text-color);
}

.realisation-stats i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

/* ================================
   DEPARTMENT BADGES
   ================================ */
.dept-badge {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.dept-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.dept-badge span {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ================================
   CERTIFICATION CARDS
   ================================ */
.certification-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.certification-card img {
    max-height: 60px;
    margin-bottom: 0.75rem;
}

.certification-card span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
}

/* ================================
   FAQ SECTION ENHANCEMENTS
   ================================ */
.faq-section .accordion-header h3 {
    margin: 0;
    font-size: 1rem;
}

.faq-section .accordion-button {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
}

.faq-section .accordion-body {
    padding: 1.5rem;
}

.faq-section .accordion-body p:last-child {
    margin-bottom: 0;
}

/* ================================
   CTA DARK SECTION
   ================================ */
.cta-section-dark {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2d2d2d 100%);
}

/* ================================
   MAP IDF
   ================================ */
.map-idf {
    position: relative;
}

.map-idf img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ================================
   RESPONSIVE ENHANCEMENTS
   ================================ */
@media (max-width: 991px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .floating-card {
        right: 10px;
        bottom: 10px;
        padding: 0.75rem 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-features {
        gap: 0.75rem;
    }
    
    .hero-features span {
        font-size: 0.85rem;
    }
    
    .testimonial-slide {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .brand-item {
        flex: 0 0 120px;
        padding: 0.5rem 1rem;
    }
    
    .brand-item img {
        max-height: 40px;
    }
}

/* ============================================== */
/* Cookie Banner RGPD - Style Pimkie              */
/* ============================================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.cookie-banner.show {
    display: block;
    animation: slideIn 0.4s ease-out;
}

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

.cookie-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    width: 420px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6b800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.cookie-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.cookie-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cookie-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.cookie-box p:last-of-type {
    margin-bottom: 1.5rem;
}

.cookie-box a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-box a:hover {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-cookie-settings {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-settings:hover {
    background: #f5f5f5;
}

.btn-cookie-accept {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
    background: #e6b800;
    border-color: #e6b800;
}

.cookie-refuse-link {
    display: block;
    text-align: left;
    color: #777 !important;
    font-size: 0.85rem;
    font-weight: 500 !important;
    text-decoration: underline !important;
}

.cookie-refuse-link:hover {
    color: #1a1a1a !important;
}

/* Responsive mobile */
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .cookie-box {
        width: auto;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .cookie-icon i {
        font-size: 1.25rem;
    }
    
    .cookie-box h4 {
        font-size: 1.1rem;
    }
    
    .cookie-box p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie-settings,
    .btn-cookie-accept {
        padding: 0.75rem 1rem;
    }
}

/* Cookie Settings Modal */
#cookie-settings-modal .modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

#cookie-settings-modal .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#cookie-settings-modal .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #1a1a1a;
    font-weight: 600;
}

#cookie-settings-modal .btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

#cookie-settings-modal .btn-success {
    background-color: #198754;
}

/* Cookie Policy Page */
.cookie-policy code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
    color: #d63384;
}

/* Toast Notifications */
#toast-container {
    z-index: 10000;
}