/* ================================
   KAJAR GROUP - Corporate Website
   Modern & Professional Design
   ================================ */

/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Corporate & Professional */
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-gold: #d4af37;
    --accent-light: #4a90e2;
    --dark-bg: #0f1419;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-light: #718096;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #e5c248;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== SECTIONS ===== */
.section-light {
    background: var(--light-bg);
    padding: var(--section-padding);
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: inherit;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== ABOUT SECTION ===== */
.about-text {
    margin-bottom: 60px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent-gold);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== VISION & MISSION ===== */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--font-display);
}

.vm-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== DOMAINS SECTION ===== */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.domain-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--accent-gold);
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.domain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-light));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.domain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.4;
}

.domain-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== APPROACH SECTION ===== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.approach-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.approach-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.approach-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--accent-gold), #e5c248);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: var(--primary-color);
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-color);
}

/* ===== RSE SECTION ===== */
.rse-intro {
    text-align: center;
    margin-bottom: 50px;
}

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

.rse-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.rse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rse-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.rse-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.rse-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.rse-quote {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.1);
}
.team-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.team-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--white);
}

.team-position {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.team-quote {
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
    margin-top: 20px;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
/* ================================
   HERO CINEMATIC SECTION
   ================================ */

.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background image avec animation zoom */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 10s ease-in-out infinite alternate;
}

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

/* Overlay bleu foncé */
.hero-overlay-cinematic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002B45;
    opacity: 0.38;
    z-index: 2;
}

/* Contenu textuel */
.hero-content-cinematic {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: -5vh;
}

.hero-title-cinematic {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 1.2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
}

.hero-text-cinematic {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 75%;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

/* Bouton CTA doré */
.btn-cinematic {
    display: inline-block;
    padding: 16px 50px;
    background-color: #C9A73E;
    color: #002B45;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(201, 167, 62, 0.4);
    animation: fadeInUp 1.4s ease-out;
}

.btn-cinematic:hover {
    background-color: #ffffff;
    color: #C9A73E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 167, 62, 0.6);
}

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


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
           }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
    }

           /* Hero cinematic responsive tablet */
    .hero-cinematic {
        min-height: 600px;
    }

    .hero-content-cinematic {
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }

    .hero-title-cinematic {
        font-size: 2.8rem;
    }

    .hero-text-cinematic {
        font-size: 1.1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-cinematic {
        padding: 14px 40px;
    }

    /* Désactiver l'animation zoom sur mobile (performance) */
    .hero-bg-image {
        animation: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .domains-grid,
    .values-grid,
    .approach-grid,
    .rse-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-card {
        padding: 35px 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
       /* Hero cinematic responsive mobile */
    .hero-cinematic {
        min-height: 100vh;
        height: auto;
    }

    .hero-content-cinematic {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .hero-title-cinematic {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: 0.8px;
    }

    .hero-text-cinematic {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .btn-cinematic {
        padding: 12px 35px;
        font-size: 0.95rem;
        width: auto;
    }

    /* Overlay plus prononcé sur mobile pour meilleure lisibilité */
    .hero-overlay-cinematic {
        opacity: 0.45;
    }

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

/* ===== ACCESSIBILITY ===== */
:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .language-selector,
    .mobile-menu-toggle,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 50px 0;
    }
}
/* ============================================
   SWIPER CAROUSEL CUSTOMIZATION
   ============================================ */

/* Container général pour les carousels */
.swiper {
    width: 100%;
    padding: 40px 0;
    margin: 0 auto;
}

.swiper-wrapper {
    padding-bottom: 40px;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* Assurer que les cartes prennent toute la hauteur du slide */
.swiper-slide .approach-card,
.swiper-slide .domain-card,
.swiper-slide .rse-card {
    height: 100%;
    width: 100%;
    margin: 0;
}

/* Navigation Buttons - Style corporate */
.swiper-button-next,
.swiper-button-prev {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* Pagination - Style corporate */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive - Ajustement pour mobile */
@media (max-width: 768px) {
    .swiper {
        padding: 20px 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }

    /* Masquer les boutons de navigation sur très petit écran */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Configuration spécifique pour chaque carousel */

/* Carousel Approche - 4 slides */
.approche-swiper .swiper-slide {
    width: 100%;
}

@media (min-width: 768px) {
    .approche-swiper .swiper-slide {
        width: 50%;
    }
}

@media (min-width: 968px) {
    .approche-swiper .swiper-slide {
        width: 33.333%;
    }
}

/* Carousel Domaines - 7 slides */
.domaines-swiper .swiper-slide {
    width: 100%;
}

@media (min-width: 768px) {
    .domaines-swiper .swiper-slide {
        width: 50%;
    }
}

@media (min-width: 968px) {
    .domaines-swiper .swiper-slide {
        width: 33.333%;
    }
}

/* Carousel RSE - 4 slides */
.rse-swiper .swiper-slide {
    width: 100%;
}

@media (min-width: 768px) {
    .rse-swiper .swiper-slide {
        width: 50%;
    }
}

@media (min-width: 968px) {
    .rse-swiper .swiper-slide {
        width: 33.333%;
    }
}

/* Animation au survol des cartes dans carousel */
.swiper-slide .approach-card:hover,
.swiper-slide .domain-card:hover,
.swiper-slide .rse-card:hover {
    transform: translateY(-10px);
}
