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

:root {
    --primary-green: #008C44;
    --primary-dark: #211D1E;
    --primary-white: #FFFFFF;
    --transition-speed: 0.6s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--primary-white);
    overflow: hidden;
    height: 100vh;
}

.presentation-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-green);
    width: 8.33%;
    transition: width var(--transition-speed) ease;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
    padding: 80px 60px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 1400px;
    width: 100%;
}

.slide-content.centered {
    text-align: center;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h2.subtitle {
    font-size: 2rem;
    opacity: 0.8;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.accent-line {
    width: 120px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 2rem auto;
}

.slide-content:not(.centered) .accent-line {
    margin: 2rem 0;
}

/* SLIDE 2: K-CONSTRUCTION - MODERN VISUAL LAYOUT */
.company-visual-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.company-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.1), rgba(0, 140, 68, 0.05));
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 140, 68, 0.3);
}

.stat-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.75rem;
}

.stat-breakdown {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.5;
}

.map-section {
    width: 100%;
}

.map-container-modern {
    width: 100%;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

/* SLIDE 3: ORGANISATION - VISUAL */
.organization-visual {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.org-structure-diagram {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.org-svg {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.tools-ecosystem h3 {
    color: var(--primary-white);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.tools-visual-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.tool-card {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.1), rgba(0, 140, 68, 0.05));
    padding: 1.5rem 1rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    background-color: rgba(0, 140, 68, 0.2);
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 140, 68, 0.3);
}

.tool-card svg {
    margin-bottom: 1rem;
}

.tool-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-white);
}

/* SLIDE 4: PROJETS - TIMELINE */
.projects-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.timeline-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-svg {
    width: 100%;
    max-width: 900px;
}

.projects-cards-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.project-minimal {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.1), rgba(0, 140, 68, 0.05));
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-minimal:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 140, 68, 0.3);
}

.project-icon-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.project-minimal h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.project-minimal p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* SLIDE 5: JDS - VISUAL FLOW */
.jds-visual-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.company-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.flow-card {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.1), rgba(0, 140, 68, 0.05));
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 10px;
    min-width: 220px;
    transition: all 0.3s ease;
}

.flow-card.highlight {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.2), rgba(0, 140, 68, 0.1));
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 140, 68, 0.3);
}

.flow-card h3 {
    color: var(--primary-white);
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem 0;
}

.flow-card p {
    font-size: 1rem;
    opacity: 0.8;
}

.flow-arrow {
    display: flex;
    align-items: center;
}

.jds-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card-modern {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.1), rgba(0, 140, 68, 0.05));
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-card-modern:hover {
    transform: scale(1.05);
    border-color: var(--primary-green);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card-modern h4 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.info-card-modern p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* SLIDE 6: MISSIONS K-CONSTRUCTION - VISUAL CARDS */
.missions-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2.5rem;
}

.mission-card-visual {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.15), rgba(0, 140, 68, 0.05));
    padding: 3rem 2.5rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.mission-card-visual:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 140, 68, 0.4);
}

.mission-icon-large {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.mission-card-visual h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mission-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag {
    background-color: rgba(0, 140, 68, 0.2);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 140, 68, 0.4);
}

/* SLIDE 7: MISSIONS JDS - MODERN BLOCKS */
.jds-missions-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.mission-block-modern {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.15), rgba(0, 140, 68, 0.05));
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 15px;
    position: relative;
    transition: all 0.4s ease;
}

.mission-block-modern:hover {
    transform: scale(1.05);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 140, 68, 0.4);
}

.mission-number-large {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    opacity: 0.3;
}

.mission-icon-circle {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.mission-block-modern h3 {
    color: var(--primary-green);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.mission-block-modern p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* SLIDE 8: INSPECTIONS - CENTRAL VISUAL */
.inspections-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.inspection-icon-central {
    display: flex;
    justify-content: center;
}

.inspection-skills {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-pill {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.2), rgba(0, 140, 68, 0.1));
    padding: 1.5rem 3rem;
    border-radius: 50px;
    border: 2px solid rgba(0, 140, 68, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.skill-pill:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(0, 140, 68, 0.4);
}

.pill-icon {
    font-size: 2rem;
}

.pill-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-white);
}

/* SLIDE 9: MARCHÉ LUXEMBOURG - VISUAL */
.market-visual-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: center;
}

.profit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profit-chart {
    width: 100%;
    max-width: 300px;
}

.market-insights-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-card {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.1), rgba(0, 140, 68, 0.05));
    padding: 2rem;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: var(--primary-green);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 140, 68, 0.3);
}

.insight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-card h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.insight-card p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* SLIDE 10: COMPÉTENCES - MODERN VISUAL */
.skills-radar-layout {
    margin-top: 2rem;
}

.skills-visual-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.skill-card-modern {
    background: linear-gradient(135deg, rgba(0, 140, 68, 0.15), rgba(0, 140, 68, 0.05));
    padding: 3rem 2.5rem;
    text-align: center;
    border: 2px solid rgba(0, 140, 68, 0.3);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.skill-card-modern:hover {
    transform: scale(1.05);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 140, 68, 0.4);
}

.skill-icon-large {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.skill-card-modern h3 {
    color: var(--primary-green);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.skill-card-modern p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* SLIDE 11: CONCLUSION */
.conclusion-content {
    margin-top: 2.5rem;
}

.conclusion-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.conclusion-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-top: 3px solid var(--primary-green);
    text-align: center;
    transition: all 0.3s ease;
}

.conclusion-item:hover {
    background-color: rgba(0, 140, 68, 0.1);
    transform: translateY(-5px);
}

.conclusion-item h3 {
    color: var(--primary-white);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.conclusion-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* SLIDE 12: THANK YOU */
.closing-text {
    font-size: 1.8rem;
    margin-top: 2rem;
    opacity: 0.7;
}

/* NAVIGATION */
.navigation {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(33, 29, 30, 0.95);
    padding: 1rem 2rem;
    border: 1px solid rgba(0, 140, 68, 0.3);
    z-index: 100;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--primary-white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    color: var(--primary-green);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    color: var(--primary-white);
}

.slide-counter {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-white);
    min-width: 100px;
    text-align: center;
}

.slide-counter #currentSlide {
    color: var(--primary-green);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .slide-content {
        max-width: 1200px;
    }

    .tools-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .slide {
        padding: 60px 40px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .company-stats-row,
    .jds-info-cards,
    .missions-visual-grid,
    .skills-visual-grid-modern,
    .conclusion-points {
        grid-template-columns: 1fr;
    }

    .projects-cards-minimal {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-visual-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jds-missions-modern {
        grid-template-columns: 1fr;
    }

    .market-visual-layout {
        grid-template-columns: 1fr;
    }

    .company-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .tools-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-cards-minimal {
        grid-template-columns: 1fr;
    }

    .jds-missions-modern {
        grid-template-columns: 1fr;
    }

    .inspection-skills {
        flex-direction: column;
        align-items: center;
    }

    .navigation {
        bottom: 20px;
        padding: 0.75rem 1.5rem;
        gap: 1rem;
    }

    .map-container-modern {
        height: 300px;
    }
}
