/* ========================
   VARIABLES & COLORS
   ======================== */

:root {
    /* Couleurs WCA extraites du logo */
    --blue-wca: #2857A3;           /* Bleu foncé WCA */
    --red-wca: #E41F26;            /* Rouge vif WCA */
    --white: #FFFFFF;              /* Blanc */
    --light-bg: #f5f5f5;           /* Gris clair */
    --dark-text: #2c3e50;          /* Texte sombre */
    --light-text: #7f8c8d;         /* Texte gris */
    --gray-logo: #999999;          /* Gris pour logos clients */
    
    /* Alias pour compatibilité */
    --bleu: #2857A3;
    --rouge: #E41F26;
    
    /* Spacing */
    --spacing-unit: 1rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--white);
}

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

@media (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ========================
   SCROLL BUTTON
   ======================== */

.scroll-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--blue-wca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 87, 163, 0.3);
    opacity: 0;
    visibility: hidden;
}

.scroll-button:hover {
    background: var(--red-wca);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 31, 38, 0.4);
}

.scroll-button.active {
    opacity: 1;
    visibility: visible;
}

.scroll-icon {
    color: white;
    width: 24px;
    height: 24px;
    position: absolute;
    transition: all 0.3s ease;
}

.scroll-icon-down {
    opacity: 1;
}

.scroll-icon-up {
    opacity: 0;
}

.scroll-button.scroll-up .scroll-icon-down {
    opacity: 0;
}

.scroll-button.scroll-up .scroll-icon-up {
    opacity: 1;
}

/* ========================
   HEADER & NAVIGATION
   ======================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: all 0.4s ease;
}

.header.nav-active {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.header.nav-active .navbar-pill {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 87, 163, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.navbar-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: var(--spacing-xs) var(--spacing-lg);
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    width: 100%;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    min-width: 50px;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
    opacity: 0.9;
}

.logo-img:hover {
    opacity: 1;
}

/* Navigation Links */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link:hover {
    color: var(--red-wca);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red-wca);
    transition: width 0.3s ease;
}

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

/* Liens actifs (hors du hero) */
.header.nav-active .nav-link {
    color: var(--blue-wca) !important;
}

.header.nav-active .nav-link:hover {
    color: var(--red-wca) !important;
}

/* CTA Button */
.btn-contact {
    padding: 12px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--red-wca);
    color: white;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(228, 31, 38, 0.3);
}

.btn-text-desktop {
    display: inline;
}

.btn-icon-mobile {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(228, 31, 38, 0.4);
}

/* ========================
   RESPONSIVE HEADER
   ======================== */

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin: 0;
    flex-shrink: 0;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--blue-wca);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-content {
        gap: var(--spacing-sm) !important;
    }

    .navbar-pill {
        padding: var(--spacing-xs) var(--spacing-sm) !important;
    }

    .logo-img {
        height: 32px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        max-height: 400px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-md);
    }

    .nav-link {
        color: var(--blue-wca) !important;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-content .btn-contact {
        padding: 6px 18px !important;
        font-size: 0.8rem !important;
        margin-left: auto;
        flex-shrink: 1;
        min-width: auto;
        max-width: 150px;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(228, 31, 38, 0.25);
        height: auto !important;
        min-height: 28px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 4px !important;
        line-height: 1.2;
        border-radius: 18px !important;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .btn-text-desktop {
        display: inline;
    }

    .btn-icon-mobile {
        display: none;
    }

    .btn-contact {
        padding: 4px 6px !important;
        font-size: 0.75rem !important;
        margin-left: auto;
        flex-shrink: 0;
        min-width: auto;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(228, 31, 38, 0.25);
        height: auto;
        min-height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px !important;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 6px var(--spacing-sm);
    }

    .navbar-pill {
        padding: 4px 6px !important;
    }

    .navbar-content {
        gap: 2px !important;
    }

    .logo-img {
        height: 24px;
    }

    .hamburger {
        gap: 4px;
        padding: 4px;
    }

    .hamburger span {
        width: 18px;
        height: 1.5px;
    }

    .btn-contact {
        padding: 8px 20px !important;
        font-size: 0.7rem !important;
        min-width: auto;
        max-width: 130px;
        height: auto;
        min-height: 28px;
        border-radius: 20px;
        gap: 4px !important;
        line-height: 1.2;
        white-space: nowrap;
        flex-shrink: 1;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .btn-text-desktop {
        display: none;
    }

    .btn-icon-mobile {
        display: inline !important;
    }

    .btn-contact span {
        display: inline;
        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .navbar-pill {
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .navbar-content {
        gap: var(--spacing-lg);
    }

    .nav-list {
        gap: var(--spacing-lg);
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .btn-contact {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .navbar-pill {
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .navbar-content {
        gap: var(--spacing-md);
    }

    .nav-list {
        gap: var(--spacing-md);
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-contact {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-contact svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-sm);
    }

    .navbar-pill {
        padding: 8px 12px;
    }

    .navbar-content {
        gap: var(--spacing-sm);
    }

    .nav-list {
        gap: var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .btn-contact {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .btn-contact svg {
        display: none;
    }
}

/* ========================
   ABOUT SECTION
   ======================== */

.about {
    background: white;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 1.6rem;
    color: var(--blue-wca);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.about-content p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================
   HERO SECTION
   ======================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    background-color: #1a1a2e;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Contenu du hero */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
}

/* Titre principal */
.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4);
    word-spacing: 0.08em;
}

/* Sous-titre */
.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.2px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-xxl);
}

.hero-cta .btn-primary:hover {
    background: var(--blue-wca);
    border-color: var(--blue-wca);
    box-shadow: 0 8px 20px rgba(40, 87, 163, 0.4);
}

.hero-cta .btn-secondary:hover {
    background: var(--red-wca);
    color: white;
    border-color: var(--red-wca);
}

/* Bouton Pill */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-start {
    background: var(--blue-wca) !important;
    color: white !important;
    border: 2px solid var(--blue-wca) !important;
    transition: all 0.3s ease !important;
}

.btn-start:hover {
    background: var(--red-wca) !important;
    border-color: var(--red-wca) !important;
}

.btn-contact {
    background: var(--red-wca) !important;
    color: white !important;
    border: 2px solid var(--red-wca) !important;
    transition: all 0.3s ease !important;
}

.btn-contact:hover {
    background: var(--blue-wca) !important;
    border-color: var(--blue-wca) !important;
}

.btn-start:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.95);
}

.btn-start svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-start:hover svg {
    transform: translate(3px, -3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse 2.5s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
    animation: slide 1.5s ease-in-out infinite;
}

/* ========================
   RESPONSIVE HERO
   ======================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn-pill {
        padding: 14px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: var(--spacing-lg);
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .btn-pill {
        padding: 13px 32px;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
        letter-spacing: -0.3px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-lg);
        line-height: 1.6;
    }

    .hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .btn-pill {
        padding: 12px 28px;
        font-size: 0.9rem;
        gap: 6px;
    }

    .btn-pill svg {
        width: 16px;
        height: 16px;
    }

    .scroll-indicator {
        bottom: var(--spacing-md);
    }

    .scroll-line {
        height: 30px;
    }
}

/* ========================
   ANIMATIONS
   ======================== */

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slide {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* ========================
   RESPONSIVE HERO
   ======================== */

@media (max-width: 1024px) {
    .hero-supertitle {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-hero-main,
    .btn-hero-secondary {
        padding: 14px 40px;
        font-size: 0.95rem;
    }

    .social-icons {
        right: var(--spacing-md);
    }

    .slide-indicators {
        left: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }

    .hero-supertitle {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-md);
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-content {
        padding: var(--spacing-md);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .btn-hero-main,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        padding: 13px 32px;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        bottom: var(--spacing-lg);
    }

    .social-icons {
        right: var(--spacing-md);
        gap: var(--spacing-md);
        bottom: var(--spacing-lg);
        top: auto;
        transform: none;
        flex-direction: row;
    }

    .slide-indicators {
        left: var(--spacing-md);
        top: auto;
        bottom: 120px;
        transform: none;
        gap: var(--spacing-sm);
        flex-direction: row;
    }

    .slide-indicator {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-header-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-md);
        align-items: flex-start;
        width: 100%;
    }

    .services-header-left {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .services-badge {
        width: fit-content;
    }

    .services-title {
        font-size: 1.6rem;
        font-weight: 950;
        width: 100%;
    }

    .services-description {
        font-size: 0.9rem;
        width: 100%;
    }

    .fleet-header-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-md);
        align-items: flex-start;
        width: 100%;
    }

    .fleet-header-left {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .fleet-badge {
        width: 100%;
    }

    .fleet-title {
        font-size: 1.6rem;
        font-weight: 950;
        width: 100%;
    }

    .fleet-description {
        font-size: 0.9rem;
        width: 100%;
    }

    .fleet-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding-top: 70px;
    }

    .hero-supertitle {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
        margin-bottom: var(--spacing-xs);
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-sm);
        letter-spacing: -0.3px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-lg);
        line-height: 1.6;
    }

    .hero-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .btn-hero-main,
    .btn-hero-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: var(--spacing-md);
    }

    .scroll-line {
        height: 30px;
    }

    .social-icons {
        right: var(--spacing-sm);
        gap: var(--spacing-sm);
        bottom: var(--spacing-md);
        top: auto;
        transform: none;
        flex-direction: row;
    }

    .social-icon-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-indicators {
        left: var(--spacing-sm);
        top: auto;
        bottom: 110px;
        transform: none;
        gap: var(--spacing-xs);
        flex-direction: row;
    }

    .slide-indicator {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
    }
}

/* ========================
   BUTTONS
   ======================== */

.btn {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--red-wca);
    color: white;
}

.btn-primary:hover {
    background: #c93c2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--blue-wca);
}

.btn-tertiary {
    background: transparent;
    color: var(--red-wca);
    border: 2px solid var(--red-wca);
}

.btn-tertiary:hover {
    background: var(--red-wca);
    color: white;
}

.info-card .btn-tertiary {
    background: transparent;
    color: var(--blue-wca);
    border: 2px solid transparent;
    border-radius: 30px;
    padding: var(--spacing-xs) var(--spacing-lg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
}

.info-card .btn-tertiary::after {
    content: '↗';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.info-card .btn-tertiary:hover {
    background: transparent;
    color: var(--red-wca);
    border-color: transparent;
}

.info-card .btn-tertiary:hover::after {
    transform: translate(4px, -4px);
}

.btn-large {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: 1.05rem;
}

/* Responsive Button Styles */
@media (max-width: 767px) {
    .btn {
        font-size: 0.95rem;
        padding: 12px var(--spacing-md);
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-large {
        width: 100%;
        padding: 14px var(--spacing-md);
        font-size: 1rem;
    }

    .contact-form .btn-primary,
    .quote-form .btn-primary,
    .careers-form .btn-large {
        width: 100%;
        min-height: 48px;
    }
}

/* ========================
   ABOUT SECTION
   ======================== */

.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: var(--spacing-xxl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 87, 163, 0.3), transparent);
}

/* Header avec badge et titre */
.about-header {
    margin-bottom: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(40, 87, 163, 0.2);
    background: linear-gradient(135deg, 
        rgba(40, 87, 163, 0.15) 0%, 
        rgba(228, 31, 38, 0.08) 100%);
    color: var(--blue-wca);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
    transition: all 0.3s ease;
}

.about-badge:hover {
    border-color: rgba(228, 31, 38, 0.3);
    background: linear-gradient(135deg, 
        rgba(40, 87, 163, 0.2) 0%, 
        rgba(228, 31, 38, 0.12) 100%);
}

.about-badge svg {
    width: 14px;
    height: 14px;
    animation: pulse-icon 2.5s ease-in-out infinite;
}

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

.about-title {
    font-size: 2.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, var(--blue-wca) 0%, #1a3f7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: -2px;
    margin: 0;
}

/* Layout 2 colonnes */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: var(--spacing-xxl);
    align-items: flex-start;
    margin-bottom: var(--spacing-xxl);
}

/* Colonne gauche : contenu texte */
.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding-right: var(--spacing-lg);
}

.about-text {
    font-size: 1.08rem;
    color: #5a6b7a;
    line-height: 1.95;
    letter-spacing: 0.45px;
    margin: 0;
    text-align: left;
}

.about-text-expandable {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    max-height: 0;
    opacity: 0;
    margin-bottom: var(--spacing-lg);
}

.about-text-expandable.expanded {
    max-height: 800px;
    opacity: 1;
}

.about-text-hidden {
    font-size: 1.06rem;
    color: #5a6b7a;
    line-height: 2;
    letter-spacing: 0.45px;
    margin: 0;
}

.about-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    background: transparent;
    color: var(--blue-wca);
    border: none;
    border-bottom: 2px solid var(--blue-wca);
    border-radius: 0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    width: fit-content;
}

.about-toggle-btn:hover {
    color: var(--red-wca);
    border-bottom-color: var(--red-wca);
    transform: none;
}

.about-toggle-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    stroke-width: 2.5;
}

.about-toggle-btn.expanded svg {
    transform: rotate(180deg);
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #E41F26 0%, #c71b1f 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(228, 31, 38, 0.3);
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(228, 31, 38, 0.45);
}

.about-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.about-cta:hover svg {
    transform: translateX(4px);
}

/* Image Section */
.about-image {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Chiffres Clés - Grille Simple */
.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.metric-item {
    text-align: center;
    padding: var(--spacing-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.metric-item:hover {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--red-wca);
    line-height: 1;
}

.metric-name {
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 600;
}

.metric-desc {
    font-size: 0.82rem;
    color: var(--light-text);
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* Bouton "En savoir plus" dans About */
.about-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px !important;
    background: var(--blue-wca) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none !important;
}

.btn-learn-more:hover {
    background: var(--red-wca) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(228, 31, 38, 0.3) !important;
    color: white !important;
}

.btn-learn-more:hover svg {
    transform: translateY(2px);
}

/* ========================
   SERVICES SECTION
   ======================== */

.services {
    background: #ffffff;
    padding: var(--spacing-xxl) var(--spacing-lg);
    position: relative;
}

/* Services Header */
.services-header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.services-header-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(40, 87, 163, 0.2);
    background: linear-gradient(135deg, 
        rgba(40, 87, 163, 0.15) 0%, 
        rgba(228, 31, 38, 0.08) 100%);
    color: var(--blue-wca);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}

.services-badge svg {
    width: 14px;
    height: 14px;
}

.services-title {
    font-size: 2.2rem;
    font-weight: 950;
    color: var(--blue-wca);
    line-height: 1.3;
    letter-spacing: -2px;
    margin: 0;
}

.services-description {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.9;
    letter-spacing: 0.4px;
    margin: 0;
    font-weight: 400;
    max-width: 800px;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E41F26 0%, #c71b1f 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(228, 31, 38, 0.3);
    text-decoration: none;
}

.services-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(228, 31, 38, 0.45);
}

.services-cta-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.services-cta-btn:hover svg {
    transform: translateX(2px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    justify-content: flex-end;
    text-align: left;
}

.service-card-title {
    font-size: 18px;
    font-weight: 900;
    color: #FFFFFF !important;
    margin: 0 !important;
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: left;
    text-transform: uppercase;
    transition: transform 0.3s ease, margin-bottom 0.3s ease;
}

.service-card:hover .service-card-title {
    transform: translateY(-30px);
    margin-bottom: 16px;
}

.service-card-description {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    text-align: left;
}

.service-card:hover .service-card-description {
    opacity: 1;
}

/* Bouton "Demandez un devis" dans les cartes services */
.btn-service-cta {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0.2s;
    margin-top: auto;
    align-self: flex-start;
    padding: 10px 24px !important;
    background: var(--blue-wca) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: none !important;
    cursor: pointer !important;
}

.service-card:hover .btn-service-cta {
    opacity: 1;
    visibility: visible;
}

.btn-service-cta:hover {
    background: var(--red-wca) !important;
    color: white !important;
    transform: translateY(-2px);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #E41F26;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-card-link:hover {
    gap: 14px;
}

.service-card-link svg {
    width: 18px;
    height: 18px;
    stroke: #E41F26;
    transition: transform 0.3s ease;
}

.service-card-link:hover svg {
    transform: translateX(3px);
}

/* ========================
   RESPONSIVE SERVICES
   ======================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card {
        height: 380px;
    }

    .service-card-title {
        font-size: 24px;
    }

    .service-card-description {
        font-size: 14px;
    }

    .service-card-content {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: 340px;
    }

    .service-card-title {
        font-size: 22px;
    }

    .service-card-description {
        font-size: 13px;
    }

    .service-card-content {
        padding: 28px 20px;
        gap: 12px;
    }

    .service-card-link {
        font-size: 13px;
    }
}

/* ========================
   RESPONSIVE ABOUT
   ======================== */

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-title {
        font-size: 2.2rem;
    }

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

@media (max-width: 768px) {
    .services-header-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-md);
        align-items: flex-start;
        width: 100%;
    }

    .services-header-left {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .services-badge {
        width: fit-content;
    }

    .services-title {
        font-size: 1.8rem;
        font-weight: 950;
        width: 100%;
    }

    .services-description {
        font-size: 0.95rem;
        width: 100%;
    }

    .fleet-header-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-md);
        align-items: flex-start;
        width: 100%;
    }

    .fleet-header-left {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .fleet-badge {
        width: fit-content;
    }

    .fleet-title {
        font-size: 1.8rem;
        font-weight: 950;
        width: 100%;
    }

    .fleet-description {
        font-size: 0.95rem;
        width: 100%;
    }

    .about-wrapper {
        margin-bottom: var(--spacing-xl);
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .metric-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-metrics-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-lg);
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .metric-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-metrics {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }

    .metric-card:nth-child(5) {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .about-wrapper {
        gap: var(--spacing-lg);
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }

    .about-text {
        font-size: 1rem;
    }

    .about-metrics {
        grid-template-columns: 1fr;
    }

    .metric-card:nth-child(5) {
        grid-column: 1;
        width: 100%;
    }

    .metric-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .about-narrative {
        padding: 0;
    }

    .about-supertitle {
        font-size: 0.8rem;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-metrics {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .metric-card {
        padding: var(--spacing-md);
    }

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

    .metric-number {
        font-size: 1.4rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }
}

/* ========================
   PARTNERS SECTION
   ======================== */

.partners-section {
    background: white;
    padding: var(--spacing-xxl) var(--spacing-lg);
    border-top: none;
    border-bottom: none;
}

.partners-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 950;
    color: var(--blue-wca);
    line-height: 1.3;
    letter-spacing: -2px;
    margin: 0 0 var(--spacing-xxl) 0;
}

.partners-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.partners-track {
    display: flex;
    gap: var(--spacing-xxl);
    animation: scrollPartners 30s linear infinite;
    padding: var(--spacing-lg) 0;
}

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

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

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.65;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    flex-shrink: 0;
    min-width: auto;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========================
   RESPONSIVE PARTNERS
   ======================== */

@media (max-width: 1024px) {
    .partners-title {
        font-size: 2rem;
    }

    .partners-container {
        gap: var(--spacing-lg);
    }

    .partner-logo {
        height: 50px;
    }
}

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

    .partners-section {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .partners-container {
        gap: var(--spacing-md);
    }

    .partner-logo {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 1.6rem;
    }

    .partners-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .partners-container {
        gap: var(--spacing-sm);
    }

    .partner-logo {
        height: 40px;
    }
}

/* ========================
   KEY FIGURES SECTION
   ======================== */

.key-figures {
    background: var(--light-bg);
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
}

.figure-card {
    background: white;
    padding: var(--spacing-lg);
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.figure-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.figure-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red-wca);
    margin-bottom: var(--spacing-xs);
}

.figure-label {
    color: var(--blue-wca);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================
   SERVICES SECTION
   ======================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--blue-wca);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.header-line {
    width: 50px;
    height: 3px;
    background: var(--red-wca);
    margin: 0 auto;
}

.services {
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    border-color: var(--red-wca);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 75, 135, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--blue-wca);
}

.service-card h3 {
    color: #FFFFFF !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.5px !important;
}

.service-card p {
    color: #FFFFFF !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
}

/* ========================
   HSEQ SIGNATURE SECTION
   ======================== */

.hseq-signature {
    background: linear-gradient(135deg, var(--blue-wca) 0%, #003d6b 100%);
    color: white;
    padding: var(--spacing-xxl) var(--spacing-lg);
    text-align: center;
}

.hseq-signature h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

.hseq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.hseq-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 1.05rem;
}

.hseq-icon {
    font-size: 1.8rem;
    color: var(--red-wca);
    font-weight: 700;
    min-width: 30px;
}

/* ========================
   OPERATIONAL SECTION
   ======================== */

.operational {
    background: white;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.operational-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.operational-block {
    padding: var(--spacing-xl);
    background: var(--light-bg);
    border-radius: 20px;
    border-left: 4px solid var(--red-wca);
}

.operational-block h3 {
    color: var(--blue-wca);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.operational-block p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.7;
}

/* ========================
   FLEET DETAILS SECTION
   ======================== */

.fleet-details {
    background: var(--light-bg);
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.fleet-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.fleet-text h3 {
    color: var(--blue-wca);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.fleet-text p {
    color: var(--light-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.fleet-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.fleet-features li {
    color: var(--dark-text);
    padding-left: var(--spacing-lg);
    position: relative;
    line-height: 1.6;
}

.fleet-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red-wca);
    font-weight: 700;
    font-size: 1.1rem;
}

.fleet-visual {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 20px;
    background: var(--light-bg);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red-wca);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    display: block;
    color: var(--blue-wca);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fleet-details-content {
        grid-template-columns: 1fr;
    }

    .fleet-stats {
        grid-template-columns: 1fr;
    }
}

/* ========================
   TECHNOLOGY SECTION
   ======================== */

.technology {
    background: var(--light-bg);
    padding: var(--spacing-xxl) var(--spacing-lg);
    text-align: center;
}

.technology h2 {
    color: var(--blue-wca);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.tech-description {
    color: var(--light-text);
    font-size: 1.05rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--blue-wca);
    font-weight: 600;
    font-size: 0.95rem;
}

.separator {
    color: var(--light-text);
}

/* ========================
   CLIENTS SECTION
   ======================== */

.clients {
    background: white;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.clients .section-header {
    margin-bottom: var(--spacing-xl);
}

.clients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.client-item {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    color: var(--gray-logo);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.client-item:hover {
    background: white;
    border: 1px solid var(--red-wca);
    color: var(--red-wca);
}

/* ========================
   FINAL CTA SECTION
   ======================== */

.final-cta {
    background: linear-gradient(135deg, var(--blue-wca) 0%, #003d6b 100%);
    color: white;
    padding: var(--spacing-xxl) var(--spacing-lg);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

/* ========================
   FOOTER
   ======================== */

.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column 1: Logo & Description */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    display: block;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    margin-top: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-social-icon:hover {
    background: var(--rouge);
    transform: translateY(-3px);
}

/* Column 2, 3, 4 */
.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--bleu);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

/* Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: white;
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-label {
    font-size: 12px;
    color: var(--bleu);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer-text a:hover {
    color: var(--rouge);
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    margin-top: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.newsletter-input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--bleu);
}

.newsletter-btn {
    padding: 12px 24px;
    background: var(--bleu);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.newsletter-btn:hover {
    background: var(--rouge);
    transform: translateY(-2px);
}

/* Badges */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(40, 87, 163, 0.15);
    border: 1px solid rgba(40, 87, 163, 0.3);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.badge-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 24px var(--spacing-lg);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    margin-top: 8px !important;
    font-size: 11px;
    opacity: 0.7;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px var(--spacing-sm) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 16px var(--spacing-sm);
    }
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

@media (max-width: 768px) {
    :root {
        --spacing-xxl: 2.5rem;
        --spacing-xl: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .hseq-items {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .figure-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        padding: var(--spacing-lg);
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-proof {
        font-size: 0.85rem;
    }

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

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

    .figure-number {
        font-size: 1.6rem;
    }
}

/* ========================
   ANIMATIONS
   ======================== */

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

.figure-card,
.service-card,
.operational-block,
.client-item {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================
   PRINT STYLES
   ======================== */

/* ========================
   NOTRE FLOTTE SECTION
   ======================== */

.fleet-section {
    background: #f8f9fa;
    padding: var(--spacing-xxl) var(--spacing-lg);
    position: relative;
}

.fleet-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.fleet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(40, 87, 163, 0.2);
    background: linear-gradient(135deg, 
        rgba(40, 87, 163, 0.15) 0%, 
        rgba(228, 31, 38, 0.08) 100%);
    color: var(--blue-wca);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}

.fleet-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--blue-wca);
}

/* Header avec titre et description */
.fleet-header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.fleet-header-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.fleet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(40, 87, 163, 0.2);
    background: linear-gradient(135deg, 
        rgba(40, 87, 163, 0.15) 0%, 
        rgba(228, 31, 38, 0.08) 100%);
    color: var(--blue-wca);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}

.fleet-badge svg {
    width: 14px;
    height: 14px;
}

.fleet-title {
    font-size: 2.2rem;
    font-weight: 950;
    color: var(--blue-wca);
    line-height: 1.3;
    letter-spacing: -2px;
    margin: 0;
}

.fleet-description {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

/* Split Layout */
.fleet-split {
    display: none;
}

/* Fleet Items Alternating Layout */
.fleet-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
}

.fleet-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.fleet-item-reverse {
    grid-template-columns: 1fr 1fr;
}

.fleet-item-reverse .fleet-item-image {
    order: 2;
}

.fleet-item-reverse .fleet-item-content {
    order: 1;
}

.fleet-item-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.fleet-item-header {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.fleet-item-number {
    font-size: 3.5rem;
    font-weight: 950;
    color: var(--red-wca);
    line-height: 1;
}

.fleet-item-label {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--red-wca);
    text-transform: lowercase;
}

.fleet-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.fleet-item-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.fleet-item-capacity {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

.fleet-item-detail {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
    line-height: 1.3;
}

.fleet-item-age {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
    margin-top: var(--spacing-sm);
}

.fleet-item-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    min-height: 30px;
}

/* Côté Gauche: Statistiques */
.fleet-stats-side {
    display: none;
}

.fleet-stat-row {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(40, 87, 163, 0.1);
}

.fleet-stat-row:last-child {
    border-bottom: none;
}

.stat-number {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-number-value {
    font-size: 3.5rem;
    font-weight: 950;
    color: var(--red-wca);
    line-height: 1;
    min-width: 100px;
}

.stat-number-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-wca);
    text-transform: lowercase;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    justify-content: center;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

.stat-info-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-info {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

.stat-breakdown {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
    padding-left: var(--spacing-md);
    line-height: 1.3;
}

/* Côté Droit: Slider */
.fleet-slider-side {
    display: none;
}

.fleet-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-item-large {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 400px;
}

.gallery-item-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 190px;
}

.carousel-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    height: 100%;
    animation: none;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex: 0 0 100%;
    display: block;
}

@keyframes carouselSlide {
    0% {
        transform: translateX(0);
    }
}

.carousel-container:hover .carousel-images {
    animation-play-state: paused;
}

/* Galerie responsive */
@media (max-width: 1024px) {
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }

    .gallery-item-small {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .fleet-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .fleet-item-reverse {
        direction: ltr;
    }

    .fleet-item-image {
        min-height: 100px;
    }

    .fleet-item-number {
        font-size: 2.5rem;
    }

    .fleet-item-title {
        font-size: 1.1rem;
    }

    .fleet-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large,
    .gallery-item-small {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 250px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .fleet-item {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .fleet-title {
        font-size: 2.8rem;
    }

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

@media (max-width: 768px) {
    .fleet-section {
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .fleet-title {
        font-size: 2.2rem;
    }

    .fleet-stat-card {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 2.5rem;
        min-width: 80px;
    }

    .stat-type {
        font-size: 0.95rem;
    }

    .stat-capacity {
        font-size: 0.85rem;
    }

    .fleet-gallery {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .gallery-legend {
        font-size: 0.85rem;
    }
}

/* ==================== Commitments Section ==================== */

.commitments-section {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.commitments-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 87, 163, 0.15);
    border: 1px solid rgba(40, 87, 163, 0.2);
    color: var(--blue-wca);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: var(--spacing-lg);
}

.commitments-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--blue-wca);
}

.commitments-header-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.commitments-main-title {
    font-size: 2.2rem;
    font-weight: 950;
    color: var(--blue-wca);
    line-height: 1.3;
    letter-spacing: -2px;
    margin: 0;
}

.commitments-main-subtitle {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Commitments Items Grid */
.commitments-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
}

.commitment-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-xxl);
    padding-right: var(--spacing-xxl);
    border-bottom: 2px solid rgba(40, 87, 163, 0.1);
    border-right: 2px solid rgba(40, 87, 163, 0.1);
}

.commitment-item:last-child {
    border-right: none;
    padding-right: 0;
}

.commitment-item-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue-wca);
    margin: 0;
    line-height: 1.2;
}

.commitment-item-subtitle {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
}

.commitment-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.commitment-item-list li {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.5;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.commitment-icon {
    flex-shrink: 0;
    color: var(--blue-wca);
    stroke: var(--blue-wca);
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(99%) saturate(1269%) hue-rotate(187deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .commitments-items {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    .commitments-header-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .commitments-items {
        grid-template-columns: 1fr;
    }

    .commitments-main-title {
        font-size: 1.8rem;
    }

    .commitments-main-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .commitments-section {
        padding: var(--spacing-xl) 0;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .commitments-title {
        font-size: 1.8rem;
    }

    .commitments-description {
        font-size: 0.95rem;
    }

    .commitment-title {
        font-size: 1.1rem;
    }
}

@media print {
    .header,
    .footer {
        display: none;
    }
}

/* ==================== CONTACT & QUOTE PAGES ==================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2857A3 0%, #1a3a7a 100%);
    color: white;
    padding: 100px var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 400px;
}

.contact-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 5% auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-hero-title {
    font-size: 52px;
    font-weight: 900;
    margin: 0 auto 30px auto;
    padding: 0;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    width: 100%;
    text-align: center;
}

.contact-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    text-align: center;
}

.contact-page-section {
    padding: 60px var(--spacing-lg);
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    padding: 50px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-wca);
    margin: 0 0 12px 0;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.form-header p {
    color: var(--red-wca);
    margin: 0;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    color: #333;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-wca);
    box-shadow: 0 0 0 4px rgba(40, 87, 163, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.form-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.form-disclaimer input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-disclaimer label {
    cursor: pointer;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.btn-secondary {
    background: var(--rouge);
    color: white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #b81620;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
}

.contact-success {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--bleu) 0%, #1a3a7a 100%);
    color: white;
    border-radius: 12px;
    grid-column: 1 / -1;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    color: var(--rouge);
    margin-bottom: 20px;
}

.contact-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.contact-success p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Contact Info Sidebar */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--bleu);
    box-shadow: 0 10px 30px rgba(40, 87, 163, 0.1);
}

.info-card.featured {
    border: 2px solid var(--bleu);
    background: linear-gradient(135deg, #f9fbff 0%, #fff5f5 100%);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bleu);
    margin-bottom: 20px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

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

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0;
}

.info-item a.info-value:hover {
    color: var(--rouge);
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span {
    color: #666;
    font-size: 14px;
}

.hour-item strong {
    color: var(--bleu);
    font-weight: 700;
}

.hours-note {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin: 0;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bleu);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--rouge);
    transform: translateY(-3px);
}

/* Benefits Section */
.contact-benefits {
    padding: 80px var(--spacing-lg);
    background: linear-gradient(135deg, #f9fbff 0%, #fff5f5 100%);
}

.contact-benefits h2 {
    font-size: 40px;
    text-align: center;
    color: var(--bleu);
    margin-bottom: 60px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 18px;
    color: var(--bleu);
    margin-bottom: 12px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.benefit-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px var(--spacing-sm) 50px;
        min-height: auto;
    }

    .contact-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .contact-hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .contact-page-section {
        padding: 40px var(--spacing-sm);
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper .form-header h2 {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-group label {
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }

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

    .contact-benefits h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* ==================== QUOTE PAGE ==================== */

.quote-hero {
    background: linear-gradient(135deg, #2857A3 0%, #1a3a7a 100%);
    color: white;
    padding: 100px var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 400px;
}

.quote-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 5% auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-hero-title {
    font-size: 52px;
    font-weight: 900;
    margin: 0 auto 30px auto;
    padding: 0;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    width: 100%;
    text-align: center;
}

.quote-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    text-align: center;
}

.quote-page-section {
    padding: 60px var(--spacing-lg);
    background: white;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.quote-form-wrapper {
    padding: 50px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.quote-form-wrapper .form-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.quote-form-wrapper .form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-wca);
    margin: 0 0 12px 0;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.quote-form-wrapper .form-header p {
    color: var(--red-wca);
    margin: 0;
    font-size: 14px;
}

.form-section-header {
    margin: 40px 0 24px 0;
    padding: 16px 0;
    border-bottom: 2px solid var(--blue-wca);
}

.form-section-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-wca);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    color: #333;
    background: white;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    padding-right: 40px;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%232857A3%22 stroke-width=%222%22%3e%3cpath d=%22M6 9l6 6 6-6%22/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-wca);
    box-shadow: 0 0 0 4px rgba(40, 87, 163, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.form-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 32px 0 24px 0;
}

.quote-form .btn-large {
    width: 100%;
    margin-top: 24px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.contact-form .btn-primary,
.quote-form .btn-primary {
    width: 100%;
    background: var(--red-wca);
    color: white;
    border: 2px solid var(--red-wca);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover,
.quote-form .btn-primary:hover {
    background: var(--blue-wca);
    border-color: var(--blue-wca);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 87, 163, 0.4);
}

.contact-success .btn-secondary,
.quote-success .btn-secondary {
    transition: all 0.3s ease;
}

.contact-success .btn-secondary:hover,
.quote-success .btn-secondary:hover {
    background: white;
    color: var(--blue-wca);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.quote-success {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--bleu) 0%, #1a3a7a 100%);
    color: white;
    border-radius: 12px;
}

.quote-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
}

.quote-success p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .quote-hero {
        padding: 60px var(--spacing-sm) 50px;
        min-height: auto;
    }

    .quote-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .quote-hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .quote-page-section {
        padding: 40px var(--spacing-sm);
    }

    .quote-form-wrapper {
        padding: 30px 20px;
    }

    .quote-form-wrapper .form-header h2 {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-group label {
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-section-header {
        margin: 28px 0 16px 0;
    }

    .form-disclaimer {
        margin: 24px 0 20px 0;
    }

    .quote-form .btn-large {
        margin-top: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ========================
   CAREERS PAGE
   ======================== */

.careers-hero {
    background: linear-gradient(135deg, var(--blue-wca) 0%, #1a3a7a 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.careers-hero-title {
    font-size: 52px;
    font-weight: 900;
    margin: 0 auto 30px auto;
    padding: 0;
    font-family: 'Neue Plak', system-ui, -apple-system, sans-serif;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    width: 100%;
    text-align: center;
}

.careers-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    line-height: 1.6;
}

.careers-why {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.why-item:last-child {
    border-bottom: none;
}

.why-item:hover {
    transform: translateX(8px);
}

.why-item-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item-content h3 {
    color: var(--blue-wca);
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 1.1rem;
}

.why-item-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.careers-professions {
    padding: var(--spacing-xxl) 0;
}

.professions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.profession-card {
    background: white;
    border: 2px solid #f0f0f0;
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.profession-card:hover {
    border-color: var(--red-wca);
    box-shadow: 0 4px 12px rgba(228, 31, 38, 0.2);
}

.profession-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.profession-card h3 {
    color: var(--blue-wca);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 600;
}

.profession-card p {
    color: #999;
    font-size: 0.85rem;
}

.careers-conditions {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
}

.condition-icon {
    color: var(--red-wca);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.condition-item p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

.careers-offers {
    padding: var(--spacing-xxl) 0;
}

.offers-container {
    margin-top: var(--spacing-xl);
}

.no-offers {
    text-align: center;
    padding: var(--spacing-xxl);
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.no-offers p {
    color: #666;
    font-size: 1rem;
    margin: var(--spacing-sm) 0;
}

.no-offers .link-emphasis {
    color: var(--red-wca);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-offers .link-emphasis:hover {
    text-decoration: underline;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.offer-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.offer-card:hover {
    border-color: var(--red-wca);
    box-shadow: 0 4px 12px rgba(228, 31, 38, 0.15);
}

.offer-title {
    color: var(--blue-wca);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.offer-meta {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-sm) 0 var(--spacing-lg) 0;
    font-size: 0.9rem;
}

.offer-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
}

.offer-card .btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

.careers-application {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.application-form-wrapper {
    max-width: 700px;
    margin: var(--spacing-xl) auto 0;
    background: white;
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.careers-form {
    display: grid;
    gap: var(--spacing-md);
}

.careers-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.careers-form .full-width {
    grid-column: 1 / -1;
}

.careers-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.careers-form input,
.careers-form textarea,
.careers-form select {
    width: 100%;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.careers-form input:focus,
.careers-form textarea:focus,
.careers-form select:focus {
    outline: none;
    border-color: var(--red-wca);
    box-shadow: 0 0 0 3px rgba(228, 31, 38, 0.1);
}

.careers-form textarea {
    resize: vertical;
}

.form-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: var(--spacing-md) 0;
    grid-column: 1 / -1;
}

.form-disclaimer input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.careers-form .btn-large {
    width: 100%;
    grid-column: 1 / -1;
}

.application-success {
    text-align: center;
    padding: var(--spacing-xxl);
    background: linear-gradient(135deg, var(--blue-wca) 0%, #1a3a7a 100%);
    color: white;
    border-radius: 12px;
    grid-column: 1 / -1;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    color: var(--red-wca);
    margin-bottom: var(--spacing-md);
}

.success-container h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.success-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.success-container .btn {
    margin-top: var(--spacing-md);
}

.careers-closing {
    padding: var(--spacing-xxl) 0;
}

.closing-message {
    background: linear-gradient(135deg, rgba(40, 87, 163, 0.1) 0%, rgba(228, 31, 38, 0.05) 100%);
    padding: var(--spacing-xl);
    border-radius: 12px;
    border-left: 4px solid var(--blue-wca);
    text-align: center;
}

.closing-message p {
    font-size: 1.2rem;
    color: var(--blue-wca);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .professions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .careers-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .careers-hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .why-item {
        padding: var(--spacing-md) 0;
    }

    .why-item-icon {
        font-size: 2rem;
    }

    .why-item-content h3 {
        font-size: 1rem;
    }

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

    .careers-form .form-row {
        grid-template-columns: 1fr;
    }

    .application-form-wrapper {
        padding: var(--spacing-lg);
    }

    .careers-closing .closing-message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .professions-grid {
        grid-template-columns: 1fr;
    }

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