/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1A1F3A;
    background-color: #FFFFFF;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #56C3FF;
    --dark-blue: #1A1F3A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-blue);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #45B3EF;
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 200px;
    height: 230px;
    object-fit: contain;
    border-radius: 5px;
}

.logo-text h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 0;
}

.logo-text span {
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.cta-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-link.cta-btn:hover {
    background: #45B3EF;
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(74, 144, 226, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-blue);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f8fbff 0%, var(--white) 50%, #f0f8ff 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animations supprimées */

.delay-1 {
    opacity: 1;
}

.delay-2 {
    opacity: 1;
}

.delay-3 {
    opacity: 1;
}

.delay-4 {
    opacity: 1;
}

/* Simplified hero section styles */
.hero-background-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 2rem;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

/* Logo text styles */
.logo-text {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Language selector styles */
.lang-code {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-blue), #45B3EF);
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
}

.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 40%;
    right: 10%;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
}

.particle-1 {
    top: 20%;
    left: 15%;
}

.particle-2 {
    top: 40%;
    left: 80%;
}

.particle-3 {
    top: 70%;
    left: 25%;
}

.particle-4 {
    top: 15%;
    left: 70%;
}

.particle-5 {
    top: 80%;
    left: 60%;
}

.particle-6 {
    top: 50%;
    left: 5%;
}

/* Animation float supprimée */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(86, 195, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(86, 195, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Animation shimmer supprimée */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(86, 195, 255, 0.1);
}

.trust-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.trust-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-blue);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(86, 195, 255, 0.1);
    font-size: 0.95rem;
}

.feature-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(86, 195, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-blue);
}

.feature-item i {
    color: #4CAF50;
    font-size: 1rem;
}

.hero-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-gap: 1rem;
    margin-bottom: 1rem;
}

.hero-buttons .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(86, 195, 255, 0.3);
}

/* Enhanced Buttons */
.btn-enhanced {
    position: relative;
    overflow: hidden;
}

.btn-enhanced:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.btn-enhanced:hover .btn-glow {
    left: 100%;
}

/* Urgent CTA */
.urgent-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    cursor: pointer;
}

.urgent-cta:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.urgent-cta i {
}

.hero-buttons .btn-secondary {
    box-shadow: 0 4px 15px rgba(26, 31, 58, 0.1);
}

.hero-trust {
    margin-top: 2rem;
}

.hero-trust p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    border: 1px solid #eee;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-main-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(86, 195, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #45B3EF);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.card-header h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin: 0;
}

.chart-placeholder {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-blue), #45B3EF);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

/* Animation growUp supprimée */

.chart-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.stat-row strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(86, 195, 255, 0.1);
}

.stat-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.stat-content h3 {
    font-size: 1.7rem;
    color: var(--dark-blue);
    margin: 0 0 0.2rem 0;
    font-weight: 700;
}

.stat-content p {
    color: var(--text-gray);
    font-size: 0.65rem;
    margin: 0;
    line-height: 1.3;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(86, 195, 255, 0.1);
    border: 2px solid rgba(86, 195, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.floating-1 {
    top: 10%;
    right: 10%;
}

.floating-2 {
    bottom: 30%;
    right: 20%;
}

.floating-3 {
    top: 60%;
    right: 5%;
}

/* Services Overview */
.services-overview {
    position: relative;
}

/* AI Featured Card Styles */
.ai-featured {
    background: linear-gradient(135deg, rgba(86, 195, 255, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 2px solid rgba(86, 195, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.ai-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 195, 255, 0.1), transparent);
}

.ai-featured:hover::before {
    left: 100%;
}

.ai-badge-small {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 3;
}

.ai-glow {
    background: radial-gradient(circle, rgba(86, 195, 255, 0.4) 0%, transparent 70%);
}

/* Animation aiPulse supprimée */

.ai-tag {
    background: rgba(86, 195, 255, 0.2);
    color: var(--primary-blue);
    border: 1px solid rgba(86, 195, 255, 0.3);
}

.ai-link {
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    color: white;
}

.ai-link:hover {
    background: linear-gradient(135deg, #45B3EF, var(--primary-blue));
    box-shadow: 0 8px 25px rgba(86, 195, 255, 0.3);
}

.services-overview {
    padding: 0 0 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    margin-top: -6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(86, 195, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.enhanced-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.enhanced-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.featured {
    border: 2px solid var(--primary-blue);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 20px 0 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--white);
    font-size: 2rem;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
}

.enhanced-card:hover .icon-glow {
    opacity: 0.3;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(86, 195, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(86, 195, 255, 0.2);
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(86, 195, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(86, 195, 255, 0.2);
}

.enhanced-link:hover {
    background: var(--primary-blue);
    color: white;
    gap: 1rem;
}

/* Sectors Section */
.sectors-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, var(--white) 100%);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(86, 195, 255, 0.1);
    cursor: pointer;
}

.sector-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sector-item:hover .sector-icon {
    box-shadow: 0 5px 15px rgba(86, 195, 255, 0.4);
}

.sector-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.sector-item h3 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header .section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(86, 195, 255, 0.1);
}

.mission-card:hover, .vision-card:hover {
    box-shadow: 0 20px 40px rgba(86, 195, 255, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    margin-bottom: 3rem;
    text-align: center;
}

.values-title {
    color: var(--primary-blue);
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(86, 195, 255, 0.1);
}

.value-item:hover {
    box-shadow: 0 15px 30px rgba(86, 195, 255, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(86, 195, 255, 0.1), rgba(86, 195, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.value-item h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #64748b;
    line-height: 1.5;
}

/* Story Section */
.story-section {
    margin-bottom: 5rem;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-description {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-card {
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(86, 195, 255, 0.3);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.story-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-card p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    text-align: center;
}

.team-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(86, 195, 255, 0.1);
}

.team-member:hover {
    box-shadow: 0 20px 40px rgba(86, 195, 255, 0.2);
}

.member-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.member-info h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(86, 195, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(86, 195, 255, 0.2);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(86, 195, 255, 0.1);
    border: 1px solid rgba(86, 195, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.current-lang:hover {
    background: rgba(86, 195, 255, 0.2);
}

.current-lang i.fa-globe {
    font-size: 1rem;
}

.current-lang i.fa-chevron-down {
    font-size: 0.8rem;
}

.current-lang.active i.fa-chevron-down {
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(86, 195, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    min-width: 150px;
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(86, 195, 255, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(86, 195, 255, 0.1);
}

.lang-option img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-option span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .language-selector {
        position: absolute;
        top: 20px;
        right: 60px;
        margin: 0;
        z-index: 1001;
    }
    
    .nav-container {
        position: relative;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .nav-logo {
        margin-top: -5px;
    }
 }

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-selector {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .trust-indicators {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .current-lang {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-option {
    flex-direction: row-reverse;
}

.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.values {
    margin-bottom: 2rem;
}

.values h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.values-list i {
    color: var(--primary-blue);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.location h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.location p {
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.location i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-card h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark-blue);
}

.sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.sector-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Detailed Services */
.services {
    padding: 80px 0;
    background: var(--white);
}

.service-section {
    margin-bottom: 4rem;
}

.service-section-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.service-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.5;
}

.training-tools {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    min-width: 120px;
}

.tool-item:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.tool-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.tool-item:hover i {
    color: var(--white);
}

.tool-item span {
    font-weight: 500;
    text-align: center;
}

.training-info {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.training-info p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--primary-blue);
    font-weight: 500;
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-blue);
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content h3 {
    margin: 1rem 0;
    color: var(--dark-blue);
    font-size: 1.3rem;
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.blog-link:hover {
    color: #45B3EF;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--dark-blue);
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.social-links a:hover {
    background: #45B3EF;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--dark-blue);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* RDV Section */
.rdv {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #45B3EF 100%);
    text-align: center;
}

.rdv-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rdv-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.rdv .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
}

.rdv .btn-primary:hover {
    background: var(--light-gray);
}

/* Calendly Widget Styling */
.calendly-inline-widget {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 2rem auto 0;
}

/* Newsletter Form Styling */
.newsletter-form {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.newsletter-form input[type="email"] {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 12px 15px;
    background: var(--primary-blue);
    color: var(--white);
    border: 1px solid var(--primary-blue);
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #45B3EF;
    border-color: #45B3EF;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.popup-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a365d 50%, #0f172a 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), #45B3EF, #06b6d4, var(--primary-blue));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Footer Brand Section */
.footer-brand {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-brand:hover::before {
    left: 100%;
}

.footer-brand:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-section h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #45B3EF);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4); }
    to { box-shadow: 0 2px 15px rgba(59, 130, 246, 0.8); }
}

.footer-section h5 {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Company Credentials */
.company-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.credential-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

/* Contact Info Compact */
.contact-info-compact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item-compact:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: var(--primary-blue);
}

.contact-item-compact i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item-compact a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-compact a:hover {
    color: var(--primary-blue);
}

.contact-item-compact span {
    color: #e2e8f0;
}

/* Services Section */
.footer-services {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.footer-services:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category ul li {
    margin-bottom: 1rem;
}

.service-category ul li a {
    color: #cbd5e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.service-category ul li a:hover {
    color: var(--primary-blue);
    padding-left: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
}

.service-category ul li a i {
    color: var(--primary-blue);
    width: 18px;
    font-size: 1rem;
}

/* Contact Section */
.footer-contact {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.footer-contact:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), #45B3EF);
    transition: width 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.contact-item:hover::before {
    width: 8px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-details strong {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-details span,
.contact-details a {
    color: #cbd5e0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-blue);
}

/* Newsletter Section */
.footer-newsletter {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.footer-newsletter:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter-signup {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transform: scale(1.02);
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF, #06b6d4);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #45B3EF, #06b6d4, var(--primary-blue));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

/* Social Links */
.social-section {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link span {
    display: none;
}

.social-icon {
    width: 1.2rem;
    height: 1.2rem;
    transition: all 0.3s ease;
    display: block;
    fill: currentColor;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* LinkedIn */
.social-link.linkedin:hover {
    background: #0077b5;
    transform: translateY(-3px) scale(1.1);
}

.social-link.linkedin:hover .social-icon {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* Twitter */
.social-link.twitter:hover {
    background: #1da1f2;
    transform: translateY(-3px) scale(1.1);
}

.social-link.twitter:hover .social-icon {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* Facebook */
.social-link.facebook:hover {
    background: #1877f2;
    transform: translateY(-3px) scale(1.1);
}

.social-link.facebook:hover .social-icon {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* Instagram */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-3px) scale(1.1);
}

.social-link.instagram:hover .social-icon {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* WhatsApp */
.social-link.whatsapp:hover {
    background: #25d366;
    transform: translateY(-3px) scale(1.1);
}

.social-link.whatsapp:hover .social-icon {
    transform: scale(1.2);
    filter: brightness(1.1);
}

/* Responsivité pour les icônes sociales */
@media (max-width: 768px) {
    .social-links {
        gap: 1.2rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .social-icon {
        width: 1.4rem;
        height: 1.4rem;
    }
    
    .social-section {
        text-align: center;
        margin-top: 2rem;
    }
    
    .social-section h5 {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .social-section {
        margin-top: 1.5rem;
    }
    
    .social-links {
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 1rem;
        height: 1rem;
    }
    
    .social-link:hover {
        transform: translateY(-2px) scale(1.05);
    }
}

@media (max-width: 320px) {
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 0.9rem;
        height: 0.9rem;
    }
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright p {
    color: #a0aec0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-links .separator {
    color: #4a5568;
    font-size: 0.8rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    color: #86efac;
    font-size: 0.85rem;
}

.badge-item i {
    font-size: 0.9rem;
}

/* Newsletter Popup */
.popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-popup {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.close-popup:hover {
    color: var(--dark-blue);
}

.popup-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.popup-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Animations supprimées */

/* AI Section */
.ai-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 50%, #F0F8FF 100%);
    color: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2356C3FF" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.ai-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.ai-header .section-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ai-icon {
    font-size: 3.5rem;
}

.ai-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.ai-domains {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.ai-domain-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(86, 195, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 195, 255, 0.1), transparent);
}

.ai-domain-card:hover::before {
    left: 100%;
}

.ai-domain-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(86, 195, 255, 0.2);
}

.featured-ai {
    border: 2px solid var(--primary-blue);
    background: rgba(86, 195, 255, 0.1);
}

.ai-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.ai-domain-icon {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.ai-domain-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
}

.ai-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(86, 195, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.ai-domain-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-domain-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ai-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.ai-tag {
    background: rgba(86, 195, 255, 0.2);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(86, 195, 255, 0.3);
}

.ai-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ai-cta-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(86, 195, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.ai-cta-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ai-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-ai {
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 1.1rem;
}

.btn-ai:hover {
    box-shadow: 0 10px 30px rgba(86, 195, 255, 0.4);
    background: linear-gradient(135deg, #45B3EF, var(--primary-blue));
}

.btn-ai i {
    font-size: 1rem;
}

/* AI Service Items */
.ai-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(86, 195, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 195, 255, 0.1), transparent);
}

.ai-item:hover::before {
    left: 100%;
}

.ai-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(86, 195, 255, 0.2);
}

.ai-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.ai-item h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* AI Technologies Grid */
.ai-technologies {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(86, 195, 255, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-technologies h4 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(86, 195, 255, 0.3);
    border-radius: 12px;
    min-width: 120px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tech-item:hover {
    border-color: var(--primary-blue);
    background: rgba(86, 195, 255, 0.1);
    box-shadow: 0 10px 20px rgba(86, 195, 255, 0.15);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.tech-item span {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

/* AI Info Section */
.ai-info {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.ai-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ai-btn {
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.ai-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.ai-btn:hover::before {
    left: 100%;
}

.ai-btn:hover {
    box-shadow: 0 15px 35px rgba(86, 195, 255, 0.4);
    background: linear-gradient(135deg, #45B3EF, var(--primary-blue));
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1F3A 0%, #2D3748 100%);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-testimonial {
    border: 2px solid var(--primary-blue);
    background: rgba(86, 195, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(59, 59, 59, 0.9);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #45B3EF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: white;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testimonials-stats .stat-item p {
    color: rgba(29, 28, 28, 0.8);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-overview {
        margin-top: 1.5rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 1.5rem 0;
        z-index: 1000;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgent-cta {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 140px 0 40px;
        min-height: 85vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    /* Masquer l'image hero sur mobile et tablette */
    .hero-visual,
    .hero-background-image {
        display: none;
    }
    
    .stat-item {
        padding: 1.2rem;
        min-height: 80px;
    }
    
    .stat-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-content p {
        font-size: 0.8rem;
        line-height: 1.7;
        word-wrap: break-word;
    }
    
    .hero-main-card {
        padding: 1.5rem;
    }
    
    .chart-placeholder {
        height: 80px;
        padding: 0.8rem;
    }
    
    .trust-logos {
        justify-content: center;
    }
    
    .hero-shapes {
        display: none;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sector-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .sector-icon {
        width: 50px;
        height: 50px;
    }
    
    .sector-icon i {
        font-size: 1.5rem;
    }
    
    .sector-item h3 {
        font-size: 1rem;
    }
    
    .service-items {
        grid-template-columns: 1fr;
    }
    
    .training-tools {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info-compact {
        margin-top: 1.5rem;
    }
    
    .contact-item-compact {
        justify-content: center;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .brand-logo {
        justify-content: center;
    }
    
    .company-credentials {
        align-items: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .nav-logo .logo-img {
        width: 120px;
        height: 120px;
    }
    
    .nav-logo .logo-text h2 {
        font-size: 1.6rem;
    }
    
    .nav-menu li {
        margin: 0.6rem 0;
    }
    
    .nav-menu a {
        padding: 10px 16px;
        font-size: 1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(74, 144, 226, 0.08);
        color: var(--primary-blue);
    }
}

@media (max-width: 480px) {
    .services-overview {
        margin-top: 3rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Réduction de l'espacement des sections */
    section {
        padding: 2rem 0 !important;
    }
    
    .hero {
        padding: 140px 0 40px;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Masquer l'image hero sur mobile */
    .hero-visual,
    .hero-background-image {
        display: none;
    }
    
    .stat-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-main-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .service-card,
    .contact-form,
    .about-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .btn {
        flex: 1;
        min-width: 130px;
        max-width: 170px;
        text-align: center;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 80px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-logo .logo-img {
        width: 90px;
        height: 90px;
    }
    
    .nav-logo .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        top: 0px;
        padding: 1.2rem 0;
    }
    
    .nav-menu li {
        margin: 0.4rem 0;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        font-size: 1.1rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(74, 144, 226, 0.1);
        color: var(--primary-blue);
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-technologies .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .tech-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; /* Évite le zoom sur iOS */
        padding: 15px;
        border-radius: 8px;
    }
    
    /* Amélioration des boutons sur mobile */
    .btn {
        min-height: 44px; /* Taille minimale recommandée pour le tactile */
        touch-action: manipulation;
    }
    
    /* Optimisation des cartes de service */
    .service-card {
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Amélioration de la lisibilité */
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    /* Optimisation des images */
    .hero-background-image img {
        object-fit: cover;
        width: 100%;
        height: auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .company-credentials {
        align-items: center;
    }
    
    .credential-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.18);
        border: 2px solid rgba(255, 255, 255, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-icon {
        width: 1.35rem;
        height: 1.35rem;
    }
    
    .social-section {
        text-align: center;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .social-section h5 {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
        color: #ffffff;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-links .separator {
        display: none;
    }
    
    .footer-badges {
         justify-content: center;
         gap: 0.8rem;
     }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
         width: 100%;
         margin-bottom: 0.5rem;
     }
 }

/* Très petits écrans (320px et moins) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .nav-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .nav-logo .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .nav-logo .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        top: 55px;
    }
    
    .hero {
        padding: 70px 0 50px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .about-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .ai-technologies .tech-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .tech-item {
        padding: 0.6rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Amélioration de l'espacement vertical */
    section {
        padding: 3rem 0;
    }
    
    /* Optimisation du footer */
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
}

/* Optimisations globales pour mobile */
@media (max-width: 768px) {
    /* Amélioration des performances de défilement */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Optimisation des transitions pour mobile */
    .btn, .social-link, .service-card {
        transition: all 0.2s ease;
    }
    
    /* Amélioration de la zone de clic */
    .nav-menu a {
        padding: 15px 20px;
        display: block;
    }
    
    /* Optimisation des formulaires */
    input, textarea, select {
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* Prévention du zoom automatique sur iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px !important;
    }
    
    /* Optimisations spécifiques iPhone */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Amélioration du scroll sur iOS */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix pour les boutons sur iOS */
    .btn {
        -webkit-appearance: none;
        -webkit-border-radius: 0;
        border-radius: 8px;
    }
}

/* Styles spécifiques pour Internet Explorer */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .hero-container {
        display: block;
    }
    
    .hero-content {
        width: 50%;
        float: left;
    }
    
    .hero-visual {
        width: 50%;
        float: right;
    }
    
    .hero-buttons {
        display: block;
    }
    
    .hero-buttons .btn {
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    
    .clearfix::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* Optimisations pour les très petits écrans */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    /* Réduction maximale de l'espacement des sections */
    section {
        padding: 1.5rem 0 !important;
    }
    
    .hero {
        padding: 90px 0 30px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.8rem;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.85rem;
        margin: 0;
    }
    
    .service-card,
    .contact-form,
    .about-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
        width: 100%;
        gap: 0.8rem;
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.4);
    }
    
    .social-icon {
        width: 1.3rem;
        height: 1.3rem;
    }
    
    .social-section {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .social-section h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 12px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-logo .logo-img {
        width: 95px;
        height: 95px;
    }
    
    .nav-logo {
        margin-top: -10px;
    }
    
    .language-selector {
        position: absolute;
        top: 15px;
        right: 50px;
        margin: 0;
        z-index: 1001;
    }
    
    .current-lang {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        top: 70px;
        padding: 1rem 0;
    }
    
    .nav-menu a {
        padding: 15px 25px;
        font-size: 1.05rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .nav-menu a:hover {
        background-color: rgba(74, 144, 226, 0.15);
        color: var(--primary-blue);
        transform: translateX(5px);
    }
}

/* Form Status Messages */
.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-status.loading {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.form-status.success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-status.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.form-status i {
    margin-right: 8px;
}