@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #7C3AED;  /* Violet vif */
    --secondary-color: #5B21B6; /* Violet foncé */
    --accent-color: #8B5CF6;   /* Violet clair */
    --text-color: #1F2937;
    --bg-color: #ffffff;
    --gradient: linear-gradient(135deg, #7C3AED 0%, #C084FC 100%);
    --card-gradient: linear-gradient(145deg, #ffffff 0%, #F5F3FF 100%);
    --glow: 0 0 20px rgba(124, 58, 237, 0.3);
    --section-bg: #F5F3FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--bg-color);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 10%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED 0%, #C084FC 100%);
    opacity: 0.15;
}

.circle1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.circle2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
}

.circle3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Services Section */
.services {
    padding: 6rem 10%;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* About Section */
.about {
    background: var(--section-bg);
    padding: 6rem 10%;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.member-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-placeholder::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(255,255,255,0.2));
    animation: shine 3s infinite;
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--glow);
}

.member-description {
    color: #666;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Amélioration des cartes d'expérience */
.experience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.exp-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.exp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.exp-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.exp-item:hover::before {
    opacity: 0.05;
}

.exp-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.exp-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.exp-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.exp-label {
    font-size: 1.1rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Animation du code */
.code-animation {
    margin-top: 1.5rem;
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 10px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.code-animation pre {
    margin: 0;
    position: relative;
    z-index: 2;
    white-space: pre-wrap;
    word-spacing: normal;
    word-break: normal;
    tab-size: 4;
    hyphens: none;
}

.code-animation code {
    display: block;
    color: #d4d4d4;
    line-height: 1.6;
    font-family: 'Fira Code', monospace;
    letter-spacing: 0;
    word-spacing: normal;
    position: relative;
}

/* Style du curseur JavaScript */
.code-cursor {
    display: inline-block;
    color: #d4d4d4;
    animation: blink 1s infinite;
    font-family: 'Fira Code', monospace;
    margin-left: 0;
    position: relative;
    top: 0;
}

/* Couleurs de la syntaxe inspirées de VS Code */
.code-animation .keyword {
    color: #c586c0;
}

.code-animation .builtin {
    color: #4ec9b0;
}

.code-animation .string {
    color: #ce9178;
}

.code-animation .number {
    color: #b5cea8;
}

.code-animation .operator {
    color: #d4d4d4;
}

.code-animation .punctuation {
    color: #d4d4d4;
}

.code-animation .function {
    color: #dcdcaa;
}

.code-animation .property {
    color: #9cdcfe;
}

/* Ajustement des marges pour les sauts de ligne */
.code-animation code br + span {
    margin-left: 0;
    display: inline-block;
    min-height: 1.6em;
}

/* Tailles fixes pour les blocs de code */
.team-member:first-child .code-animation {
    min-height: 163px;
    height: 163px;
}

.team-member:last-child .code-animation {
    min-height: 186px;
    height: 186px;
}

/* Réorganisation de la section About */
.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: 1;
}

.about-text p {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--text-color) 0%, #4b5563 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}

/* Ajout d'un effet de particules pour le fond */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Badge de collaboration */
.collaboration-badge {
    background: var(--card-gradient);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 10%;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.info-item p {
    color: #666;
    margin-bottom: 1rem;
    word-break: break-all;
    overflow-wrap: break-word;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    color: var(--secondary-color);
}

.social-links {
    grid-column: span 2;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 60px);
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.social-icon:hover {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #C084FC 0%, #7C3AED 100%);
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    color: #666;
    font-size: 1.1rem;
}

.input-container textarea + .input-icon {
    top: 1.2rem;
    transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.footer-logo .logo-img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
}

.footer-logo .logo:hover .logo-img {
    transform: rotate(360deg);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Media Queries */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-links.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 4rem 5%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-column: auto;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .experience {
        grid-template-columns: 1fr;
    }
    
    .exp-item {
        min-height: 200px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: repeat(2, 50px);
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Messages du formulaire */
.form-message {
    margin-top: 1rem;
    text-align: center;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

.error-message {
    background: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mise à jour des skills tags */
.skills span {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.25rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

/* Animation des boutons */
.cta-button, .submit-btn, .social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet de survol amélioré pour les cartes */
.service-card, .team-member, .exp-item, .info-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.service-card:hover, .team-member:hover, .exp-item:hover, .info-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

/* Animation du logo au scroll */
.navbar.scrolled .logo-img {
    transform: scale(0.9);
}

/* Section présence locale */
.local-presence {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: var(--section-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.local-presence h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.city-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.city-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.city-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.city-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.city-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .local-presence {
        padding: 1.5rem;
        margin-top: 3rem;
    }
    
    .local-presence h3 {
        font-size: 1.8rem;
    }
}

/* Accessibilité - Masquage visuel */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
} 