/* ===========================================
   FRONT.CSS - SODEVITEL
   Template moderne - Bleu/Turquoise
   ========================================== */

/* Variables CSS - Nouveau Design */
:root {
    --primary: #415aa8;
    --primary-light: #1a3a5c;
    --accent: #bdc7e5;
    --accent-dark: #00b894;
    --secondary: #635bff;
    --text: #425466;
    --text-light: #8898aa;
    --bg: #f6f9fc;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #415aa8 0%, #1a3a5c 50%, #0d3b66 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #00b894 100%);
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 8px 40px rgba(10, 37, 64, 0.16);
    --radius: 12px;
    --radius-lg: 20px;

    /* Header/Navbar variables */
    --header-bg: #415aa8;
    --header-bg-scrolled: #415aa8;
    --header-link-color: #ffffff ;
    --header-link-hover: #15e0b7;
    --header-link-active: #ffffff;
    --header-height: 80px;

    /* Anciennes variables pour compatibilite */
    --primary-green: #415aa8;
    --secondary-green: #1a3a5c;
    --accent-green: #ffffff;
    --light-green: rgba(0, 212, 170, 0.1);
    --dark-gray: #2d3436;
    --light-gray: #f6f9fc;
    --text-dark: #415aa8;
    --text-muted: #8898aa;
    --primary-color: #ffffff;
    --secondary-color: #00b894;
    --success-color: #ffffff;
    --dark-color: #415aa8;
    --font-family: 'DM Sans', sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(10, 37, 64, 0.12);
    --shadow-hover: 0 8px 40px rgba(10, 37, 64, 0.16);
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.2;
}

h5, h6 {
    font-family: 'DM Sans', sans-serif;
    color: var(--primary);
    line-height: 1.3;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: var(--header-bg);
}

.navbar.scrolled {
    background: var(--header-bg-scrolled);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary) !important;
}

.navbar-nav {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--header-link-color) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 8px 16px !important;
    border-radius: 25px;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--header-link-color) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--header-link-hover) !important;
    background: rgba(0, 212, 170, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--accent) !important;
    background: rgba(0, 212, 170, 0.15);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 32px);
}

/* CTA Button Navigation */
.nav-cta,
.navbar .btn-primary {
    background: var(--accent) !important;
    color: var(--primary) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s !important;
}

.nav-cta:hover,
.navbar .btn-primary:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.nav-cta::after {
    display: none !important;
}

/* Dropdown menus */
.dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--white);
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    transition: all 0.3s;
    color: var(--text);
}

.dropdown-item:hover {
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary);
}

.dropdown-item i {
    color: var(--accent);
    margin-right: 8px;
}

/* Mobile menu toggle */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 37, 64, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================================
   HERO SECTION
   ========================================== */
.hero-section,
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before,
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4aa' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-section h1,
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
    color: #96bbe4;
    position: relative;
}

.hero-section p,
.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ===========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
    color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-primary {
    border: 2px solid var(--header-bg);
    color: var(--header-bg);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ===========================================
   STATS BAR
   ========================================== */
.stats-bar {
    background: var(--white);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--text-light), transparent);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Stats (alternative) */
.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
}

.hero-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    margin: 0 0.5rem;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===========================================
   SECTION STYLES
   ========================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2,
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header p,
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ===========================================
   SERVICES SECTION
   ========================================== */
.services-section,
.services {
    background: var(--white);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-accent);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 170, 0.2);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg,
.service-icon i {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card h3,
.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-card p,
.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300d4aa'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 12px;
}

/* ===========================================
   PORTFOLIO / REALISATIONS SECTION
   ========================================== */
.portfolio {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300d4aa' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.portfolio .section-header h2,
.portfolio .section-header p,
.portfolio .section-title {
    color: var(--white);
}

.portfolio .section-tag {
    background: rgba(0, 212, 170, 0.2);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent);
    color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect fill='%23fff' fill-opacity='0.1' x='10' y='10' width='30' height='20' rx='2'/%3E%3Crect fill='%23fff' fill-opacity='0.1' x='45' y='10' width='45' height='20' rx='2'/%3E%3Crect fill='%23fff' fill-opacity='0.1' x='10' y='35' width='80' height='55' rx='2'/%3E%3Ccircle fill='%2300d4aa' fill-opacity='0.3' cx='50' cy='62' r='15'/%3E%3C/svg%3E") no-repeat center;
    background-size: 80%;
}

.project-content {
    padding: 24px;
}

.project-tag {
    display: inline-block;
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.project-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================================
   CLIENTS SECTION
   ========================================== */
.clients {
    background: var(--white);
    text-align: center;
    padding: 80px 0;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.client-logo {
   /** width: 220px;**/
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 25px;
    transition: all 0.3s;
    filter: grayscale(100%);
    opacity: 0.6;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo span {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--bg);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.about-image-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%2300d4aa' stroke-width='2' fill='none' stroke-dasharray='10 5'/%3E%3Ccircle cx='50' cy='50' r='25' stroke='%2300d4aa' stroke-width='2' fill='none'/%3E%3Ccircle cx='50' cy='50' r='8' fill='%2300d4aa'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 250px;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.about-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg,
.about-feature-icon i {
    width: 20px;
    height: 20px;
    stroke: var(--accent-dark);
    color: var(--accent-dark);
}

.about-feature h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ===========================================
   CONTACT SECTION
   ========================================== */
.contact,
.section-contact {
    background: var(--white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg,
.contact-icon i {
    width: 24px;
    height: 24px;
    stroke: var(--accent-dark);
    color: var(--accent-dark);
}

.contact-item h5,
.contact-content h5 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 1rem;
}

.contact-item p,
.contact-item a,
.contact-content p,
.contact-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0;
}

.contact-item a:hover,
.contact-content a:hover {
    color: var(--accent-dark);
}

.contact-form {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label,
.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select,
.form-control,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    background: var(--white);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit,
#submitBtn {
    width: 100%;
    padding: 16px;
    background: #415aa8;
    color: #ffffff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
}

.form-submit:hover,
#submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

/* ===========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.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 {
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.social-links a i {
    font-size: 1rem;
    color: var(--white);
}

.social-links a:hover svg {
    fill: var(--primary);
}

.social-links a:hover i {
    color: var(--primary);
}

/* ===========================================
   CARDS GENERIQUES
   ========================================== */
.card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Articles */
.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-title a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.article-title a:hover {
    color: var(--accent);
}

.article-excerpt {
    color: var(--text-light);
    margin: 1rem 0;
    line-height: 1.6;
}

/* Placeholders pour articles sans image */
.article-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.article-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.article-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.featured-placeholder {
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-lg);
}

.featured-placeholder i {
    font-size: 4rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.featured-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 80%;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Products */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ===========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   UTILITIES
   ========================================== */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-light) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-light { background-color: var(--bg) !important; }

/* Back to Top Button */
.btn-floating,
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: var(--accent);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-floating:hover,
#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    background: var(--accent-dark);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    z-index: 1040;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

/* Toast Notifications */
.toast {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.toast-header {
    border-radius: var(--radius) var(--radius) 0 0;
}

/* Modal */
.modal-content {
    border-radius: var(--radius);
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Badges */
.badge {
    border-radius: var(--radius);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.badge.bg-primary {
    background-color: var(--accent) !important;
    color: var(--primary);
}

/* Alerts */
.alert {
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background-color: rgba(0, 212, 170, 0.15);
    color: #0a6847;
    border-left: 4px solid #00d4aa;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #842029;
    border-left: 4px solid #dc3545;
}

.alert ul {
    margin-bottom: 0;
}

.alert strong {
    font-weight: 600;
}

/* Progress bar */
.progress {
    border-radius: var(--radius);
    height: 8px;
    background: var(--bg);
}

.progress-bar {
    background: var(--gradient-accent);
    border-radius: var(--radius);
}

/* Forms improvements */
.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 170, 0.25);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--primary);
}

/* ===========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .navbar-collapse {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
    }

    .navbar-collapse .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .navbar-collapse .nav-link {
        color: var(--text) !important;
        padding: 12px 16px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .hero-section,
    .hero {
        padding-top: 100px;
    }

    main {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 24px;
    }
}

/* ===========================================
   PRINT STYLES
   ========================================== */
@media print {
    .navbar,
    .btn,
    .btn-floating,
    .cookie-notice,
    .social-links {
        display: none !important;
    }

    body {
        color: black !important;
        background: white !important;
    }

    .hero-section,
    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: none !important;
    }

    .hero h1,
    .hero p {
        color: black !important;
    }
}

/* ===========================================
   ACCESSIBILITY
   ========================================== */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 0 0 2px black;
        --shadow-md: 0 0 0 2px black;
        --shadow-lg: 0 0 0 3px black;
    }

    .service-card,
    .project-card,
    .article-card {
        border: 2px solid black;
    }
}

/* Main content spacing */
main {
    margin-top: 0;
}

/* Pages internes sans hero - ajouter padding-top */
.section-intro:first-child,
.section-services:first-child,
.section-contact:first-child,
.section-categories:first-child,
.section-empty:first-child,
main > section:first-child:not(.hero):not(.stats-bar),
main > .py-5:first-child {
    padding-top: 120px !important;
}

/* Titre de page pour les pages internes */
.page-header {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.page-header .breadcrumb-link:hover {
    color: var(--accent);
}

.page-header .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
}

.page-header .breadcrumb-current {
    color: var(--accent);
}

/* Hero styles pour pages internes (hero-content dans layout) */
.hero-content.text-center {
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--gradient-hero);
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-content .hero-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero-content .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-content .hero-breadcrumb {
    color: rgba(255, 255, 255, 0.7);
}

.hero-content .hero-breadcrumb .breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.hero-content .hero-breadcrumb .breadcrumb-link:hover {
    color: var(--accent);
}

.hero-content .hero-breadcrumb .breadcrumb-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.hero-content .hero-breadcrumb .breadcrumb-current {
    color: var(--accent);
}

/* ===========================================
   SERVICES PAGE - STYLES SPECIFIQUES
   ========================================== */

/* Section Stats / Chiffres clés */
.section-stats {
    padding: 60px 0;
}

.section-stats .stat-item {
    padding: 20px;
}

.section-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.section-stats .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Process / Méthodologie */
.section-process {
    padding: 80px 0;
}

.process-step {
    padding: 30px 20px;
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.process-icon {
    margin-bottom: 15px;
}

.process-icon i {
    color: var(--primary);
}

.process-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Section Technologies */
.section-technologies {
    padding: 80px 0;
}

.tech-category {
    transition: all 0.3s ease;
    height: 100%;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tech-category h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.tech-icon {
    display: inline-block;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.tech-tags .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
}

/* Service Card amélioré */
.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.service-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.service-body {
    padding: 25px;
}

.service-tech {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.service-tech .tech-tags {
    justify-content: flex-start;
}

.service-target {
    padding-top: 10px;
}

.service-actions {
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-badges .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
}

/* Service Item Small (dans catégories) */
.service-item-small {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    height: 100%;
}

.service-item-small:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.service-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-icon i {
    font-size: 1.25rem;
    color: var(--accent-dark);
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.service-item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-item-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-item-link:hover {
    gap: 10px;
    color: var(--primary);
}

/* Category Section */
.category-section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.category-section:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.category-title i {
    color: var(--accent-dark);
}

.category-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials */
.section-testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    font-size: 0.9rem;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
}

.testimonial-author small {
    font-size: 0.85rem;
}

/* FAQ Section */
.section-faq {
    padding: 80px 0;
}

.section-faq .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.section-faq .accordion-button {
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    padding: 20px 25px;
}

.section-faq .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary);
    box-shadow: none;
}

.section-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.section-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b894'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.section-faq .accordion-body {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.section-cta {
    padding: 80px 0;
}

.section-cta.bg-primary {
    background: var(--gradient-hero) !important;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn-light {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.cta-buttons .btn-light:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Empty State */
.section-empty {
    padding: 100px 0;
}

.empty-state {
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-state i {
    display: block;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Section description générique */
.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments pour services */
@media (max-width: 768px) {
    .section-stats .stat-number {
        font-size: 2.5rem;
    }

    .process-step {
        padding: 20px 15px;
    }

    .process-number {
        font-size: 2.5rem;
    }

    .service-item-small {
        flex-direction: column;
        text-align: center;
    }

    .service-item-icon {
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .tech-category {
        padding: 20px !important;
    }

    .testimonial-card {
        padding: 20px;
    }

    .empty-state {
        padding: 40px 20px;
    }
}
