/* ============================================
   CSS VARIABLES - Couleurs du logo BTP CONSULTING
============================================ */
:root {
    --orange: #F37021;
    --orange-light: #FF8C42;
    --orange-dark: #D85A10;
    --blue: #1B3A6D;
    --blue-light: #4A90C2;
    --blue-dark: #0D2240;
    --dark: #1a1a2e;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #D1D5DB;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(243, 112, 33, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(243, 112, 33, 0.5);
    }
}

@keyframes floatMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active,
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CONTAINER & SECTIONS
============================================ */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Container pleine largeur */
.container-fluid {
    width: 100%;
    padding: 0 60px;
}

/* Desktop large - exploiter toute la largeur */
@media (min-width: 1400px) {
    .container {
        max-width: 1800px;
        padding: 0 60px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1920px;
        padding: 0 80px;
    }
}

.section {
    padding: 120px 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 2px;
}

.section-title {
    font-size: 3rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,250,252,0.95));
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(27, 58, 109, 0.08);
    padding: 6px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}

.logo img {
    height: 55px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(243, 112, 33, 0.4);
    transition: all 0.3s ease;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(243, 112, 33, 0.5);
}

/* Bouton Rejoignez-nous */
.nav-careers {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%) !important;
    color: var(--white) !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}

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

.nav-careers:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4);
}

.nav-careers.active {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%) !important;
}

/* Bouton Espace Collaborateurs */
.nav-admin {
    background: transparent !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}

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

.nav-admin:hover {
    background: var(--white) !important;
    color: var(--blue) !important;
}

.navbar.scrolled .nav-admin {
    border-color: var(--blue) !important;
    color: var(--blue) !important;
}

.navbar.scrolled .nav-admin:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* Nav Toggle Active State - Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

/* ============================================
   NAV DROPDOWN
============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.1), rgba(255, 140, 66, 0.1));
    color: var(--orange);
    transform: translateX(4px);
}

.dropdown-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Mobile dropdown */
@media (max-width: 991px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        border-radius: 12px;
        margin-top: 10px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        display: none;
        grid-template-columns: 1fr;
        max-height: 300px;
        overflow-y: auto;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown.active > .nav-link svg {
        transform: rotate(180deg);
    }

    .nav-dropdown-toggle {
        justify-content: center;
    }

    .dropdown-item {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-light) 70%, var(--orange) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: gridMove 40s linear infinite;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-orange {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.35) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: floatMove 25s ease-in-out infinite;
}

.hero-glow-blue {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatMove 25s ease-in-out infinite;
    animation-delay: -10s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding-top: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(243, 112, 33, 0.15);
    border: 1px solid rgba(243, 112, 33, 0.3);
    color: var(--orange-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--orange);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Hero Tagline Button Animation */
.hero-tagline {
    margin-bottom: 60px;
    text-align: center;
}

.tagline-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
    background-size: 200% 200%;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(243, 112, 33, 0.5);
    animation: taglineBtnPulse 2s ease-in-out infinite, taglineBtnGradient 3s ease infinite;
    transition: all 0.3s ease;
}

.tagline-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(243, 112, 33, 0.6);
}

.tagline-btn i {
    font-size: 1rem;
    animation: taglineBtnArrow 1.5s ease-in-out infinite;
}

@keyframes taglineBtnPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(243, 112, 33, 0.5);
    }
    50% {
        box-shadow: 0 15px 50px rgba(243, 112, 33, 0.7);
    }
}

@keyframes taglineBtnGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes taglineBtnArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(243, 112, 33, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 112, 33, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    display: block;
    font-family: 'Inter', 'Aptos', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-number::after {
    content: '+';
    color: var(--orange);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 80px 0;
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.stat-number {
    font-family: 'Inter', 'Aptos', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ============================================
   DOMAINS SECTION
============================================ */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.domain-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(27, 58, 109, 0.15);
    border-color: var(--orange);
}

.domain-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.domain-code-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.domain-content {
    padding: 24px;
}

.domain-content h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.domain-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-label {
    justify-content: flex-start;
}

.about-title {
    font-size: 2.75rem;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.about-feature-content h4 {
    color: var(--gray-900);
    margin-bottom: 4px;
}

.about-feature-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(232, 93, 4, 0.4);
}

.about-image-badge span {
    display: block;
    font-family: 'Inter', 'Aptos', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.about-image-badge small {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   ABOUT PAGE SPECIFIC GRIDS
============================================ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(27, 58, 109, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.mv-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   SERVICE DETAIL PAGE GRIDS
============================================ */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--gray-900);
}

.service-detail-desc {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
}

.service-features li i {
    color: var(--orange);
    margin-top: 4px;
}

.service-detail-image .image-wrapper {
    position: relative;
}

.service-detail-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--orange);
    border-radius: 20px;
    z-index: -1;
}

/* ============================================
   PAGE HEADER (internal pages)
============================================ */
.page-header {
    position: relative;
    padding: 200px 0 100px;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-badge {
    display: inline-block;
    background: rgba(243, 112, 33, 0.2);
    color: var(--orange-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.breadcrumb i {
    font-size: 0.75rem;
}

/* ============================================
   SECTION BADGES
============================================ */
.section-badge {
    display: inline-block;
    background: rgba(243, 112, 33, 0.1);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Desktop large - about & services pages */
@media (min-width: 1600px) {
    .about-intro-grid {
        gap: 120px;
    }

    .mission-vision-grid {
        gap: 40px;
    }

    .mv-card {
        padding: 50px;
    }

    .service-detail-grid {
        gap: 120px;
    }

    .page-header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .about-intro-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-header {
        padding: 150px 0 80px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* ============================================
   MAP SECTION
============================================ */
.map-section {
    padding: 120px 0;
    background: var(--gray-50);
}

#projects-map {
    height: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 50px;
    border-radius: 24px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 93, 4, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--orange);
    font-size: 1.25rem;
}

.contact-item-content h4 {
    font-family: 'Inter', 'Aptos', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.contact-legal {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-legal h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', 'Aptos', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.1);
}

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

/* ============================================
   FOOTER
============================================ */
.footer {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--blue-dark) 100%);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about .logo img {
    height: 160px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--orange);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
============================================ */
/* Desktop très large - plus de colonnes */
@media (min-width: 1600px) {
    .domains-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 35px;
    }

    .metiers-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }

    .stats-grid {
        gap: 50px;
    }

    .stat-card {
        padding: 50px 30px;
    }

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

    .section-title {
        font-size: 3.5rem;
    }

    .about-grid {
        gap: 100px;
    }

    .contact-grid {
        gap: 80px;
    }

    .footer-grid {
        gap: 80px;
    }
}

@media (min-width: 1400px) {
    .domains-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .metiers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

@media (max-width: 1200px) {
    .domains-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--gray-800);
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

/* ============================================
   METIERS SECTION
============================================ */
.metiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metier-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.metier-card:active {
    transform: scale(0.98);
}

.metier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(27, 58, 109, 0.15);
    border-color: var(--orange);
}

.metier-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.metier-card h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 15px;
    line-height: 1.3;
}

.metier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.metier-card ul li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
}

.metier-card ul li:last-child {
    border-bottom: none;
}

.metier-card-link {
    display: block;
    margin-top: 16px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.metier-card:hover .metier-card-link {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .metiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .metiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    /* Modal Mobile */
    .metier-modal-content {
        width: 95%;
        padding: 24px;
        margin: 10px;
        max-height: 90vh;
        border-radius: 16px;
    }

    .metier-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .metier-modal-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }

    .metier-modal-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
        padding-bottom: 16px;
        padding-right: 30px;
    }

    .metier-modal-body {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .metier-modal-body h4 {
        font-size: 1rem;
        margin: 20px 0 10px 0;
    }

    .metier-modal-body ul li {
        padding: 6px 0 6px 24px;
        font-size: 0.9rem;
    }

    .metier-modal-cta {
        margin-top: 24px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .metier-modal-content {
        width: 100%;
        margin: 0;
        padding: 20px;
        max-height: 100vh;
        border-radius: 0;
    }

    .metier-modal-icon {
        font-size: 2.5rem;
    }

    .metier-modal-title {
        font-size: 1.25rem;
    }

    .metier-modal-body h4 {
        font-size: 0.95rem;
    }

    .metier-modal-body ul li {
        font-size: 0.85rem;
    }
}

/* ============================================
   MODAL METIER
============================================ */
.metier-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.metier-modal.active {
    display: flex;
}

.metier-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.metier-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease;
}

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

.metier-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.metier-modal-close:hover {
    background: var(--orange);
    color: var(--white);
    transform: rotate(90deg);
}

.metier-modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.metier-modal-title {
    font-size: 1.8rem;
    color: var(--blue);
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
}

.metier-modal-body {
    color: var(--gray-700);
    line-height: 1.8;
}

.metier-modal-body h4 {
    color: var(--orange);
    font-size: 1.1rem;
    margin: 24px 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metier-modal-body h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 2px;
}

.metier-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.metier-modal-body ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}

.metier-modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

.metier-modal-body ul li:last-child {
    border-bottom: none;
}

.metier-modal-body p {
    margin-bottom: 16px;
}

.metier-modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    width: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   SERVICES PAGE - OVERVIEW GRID
============================================ */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-overview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: block;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(27, 58, 109, 0.15);
    border-color: var(--orange);
}

.service-overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-overview-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(243, 112, 33, 0.4);
}

.service-overview-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.service-overview-card h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-overview-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICE TOOLS BADGES
============================================ */
.service-tools {
    margin: 24px 0;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
}

.tools-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.tool-badge:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* ============================================
   SERVICE PLACEHOLDER IMAGES
============================================ */
.service-placeholder-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.service-placeholder-image i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
}

.service-placeholder-image span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
}

.service-placeholder-image.hydraulique {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.service-placeholder-image.opc {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
}

.service-placeholder-image.environnement {
    background: linear-gradient(135deg, #2D6A4F 0%, #52B788 100%);
}

.service-placeholder-image.electricite {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

/* ============================================
   CLIENTS TYPES SECTION
============================================ */
.clients-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-type {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.client-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(27, 58, 109, 0.15);
}

.client-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.client-type-icon i {
    font-size: 2rem;
    color: var(--white);
}

.client-type h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.client-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-type ul li {
    padding: 10px 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}

.client-type ul li:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .clients-types {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   CTA SECTION ENHANCEMENTS
============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-white {
    background: var(--white);
    color: var(--blue);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-contact-item i {
    color: var(--orange);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.75rem;
    }

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

    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   PROCESS SECTION
============================================ */
.process-section {
    background: var(--gray-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gray-200));
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.process-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

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

/* ============================================
   PAGE HEADER SUBTITLE
============================================ */
.page-header-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
