/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Animation d'apparition de la page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #0066cc;
    z-index: 1000;
    animation: fadeIn 0.8s ease-out;
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand .brand-logo {
    height: 40px;
    max-width: 120px;
    transition: transform 0.3s ease;
}

.nav-brand .brand-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

/* Bouton Info */
.info-button {
    position: fixed;
    top: 90px;
    right: 2rem;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.info-button:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: #4CAF50;
    transform: scale(1.1);
}

/* Contenu principal */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: 2rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
    overflow: hidden;
}

/* Logo central avec effet néon */
.central-logo {
    position: relative;
    margin-bottom: 2rem;
    z-index: 10;
}

.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.cmv-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.8);
    letter-spacing: 0.2em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.8);
    animation: glowPulse 2s ease-in-out infinite;
    text-align: center;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
    }
    50% {
        text-shadow: 0 0 30px rgba(52, 152, 219, 1), 0 0 40px rgba(52, 152, 219, 0.5);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

.dynamic-elements {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #3498db;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.pulse-dot:nth-child(1) {
    animation-delay: 0s;
}

.pulse-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.pulse-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(52, 152, 219, 0.8);
    }
}

.baseline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.4);
    letter-spacing: 0.1em;
}

/* Services en ligne */
.services-circle {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-block {
    position: relative;
    width: 200px;
    height: 200px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    transform: none;
}

.service-block:hover {
    transform: scale(1.05);
    z-index: 20;
}

.block-content {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 102, 204, 0.3);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.2);
}

.service-block:hover .block-content {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(0, 102, 204, 0.6);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3));
    color: #0066cc;
}

.service-block h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.service-description {
    font-size: 0.8rem;
    color: #ffffff;
    margin: 0;
}

.subtitle {
    font-size: 0.7rem;
    color: #ffffff;
    font-style: italic;
}

.service-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 1rem 0 0 0;
    text-shadow: 0 0 8px rgba(0, 102, 204, 0.3);
    letter-spacing: 0.05em;
}

/* Couleurs spécifiques pour chaque service */
.service-block.employeo .block-content {
    border-color: rgba(76, 175, 80, 0.3);
}

.service-block.website .block-content {
    border-color: rgba(76, 175, 80, 0.3);
}

.service-block.ads .block-content {
    border-color: rgba(76, 175, 80, 0.3);
}

.service-block.fideleo .block-content {
    border-color: rgba(76, 175, 80, 0.3);
}

.service-block.mobile .block-content {
    border-color: rgba(76, 175, 80, 0.3);
}

/* Particules d'arrière-plan */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 102, 204, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Section Informations */
.info-section {
    margin-top: 100px;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.1);
    border: 2px solid rgba(0, 102, 204, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.info-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.info-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.info-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.info-services-list {
    margin: 2rem 0;
}

.info-services-list p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #ffffff;
}

.info-services-list strong {
    color: #0066cc;
}

.info-conclusion {
    font-size: 1rem;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 204, 0.3);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    color: #333333;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #333333;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 3rem 2rem 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333333;
}

.modal-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333333;
}

.modal-services-intro {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333333;
}

.modal-services-list {
    margin-bottom: 1.5rem;
}

.modal-services-list p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: #666666;
}

.modal-services-list strong {
    color: #4CAF50;
}

.modal-conclusion {
    font-size: 1rem;
    font-style: italic;
    color: #666666;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(76, 175, 80, 0.3);
}

/* Responsive */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
            }
            
            .info-section {
                margin: 2rem 1rem;
                padding: 2rem;
            }
            
            .info-title {
                font-size: 1.5rem;
            }
            
            .info-subtitle {
                font-size: 1rem;
            }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-item {
        padding: 0.5rem 2rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #ffffff;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .info-button {
        top: 80px;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .cmv-text {
        font-size: 2.5rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .dynamic-elements {
        bottom: -15px;
        gap: 6px;
    }
    
    .pulse-dot {
        width: 5px;
        height: 5px;
    }
    
    .service-subtitle {
        font-size: 1rem;
        margin: 0.8rem 0 0 0;
    }
    
    .baseline {
        font-size: 1.2rem;
    }
    
    .services-circle {
        width: 100%;
        max-width: 800px;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .service-block {
        width: 150px;
        height: 150px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-block h3 {
        font-size: 0.9rem;
    }
    
    .service-description {
        font-size: 0.7rem;
    }
    
    .baseline {
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cmv-text {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
        margin: 0.6rem 0 0 0;
    }
    
    .dynamic-elements {
        bottom: -12px;
        gap: 4px;
    }
    
    .pulse-dot {
        width: 4px;
        height: 4px;
    }
    
    .services-circle {
        width: 100%;
        max-width: 100%;
        gap: 0.5rem;
        padding: 0 0.5rem;
        margin-top: 0.5rem;
    }
    
    .service-block {
        width: 120px;
        height: 120px;
    }
    
    .service-icon {
        font-size: 1.8rem;
    }
    
    .service-block h3 {
        font-size: 0.85rem;
    }
    
    .service-description {
        font-size: 0.7rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(0, 102, 204, 0.3);
    padding: 2rem 0;
    margin-top: auto;
    position: relative;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 102, 204, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    min-width: 300px;
}

.footer-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    letter-spacing: 0.05em;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.footer-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #3498db, #ffffff);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(52, 152, 219, 0.6);
}

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

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-social-link:hover {
    background: rgba(52, 152, 219, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    border-color: rgba(52, 152, 219, 0.5);
}

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(52, 152, 219, 0.3));
}

.footer-social-link:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.6));
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .footer-info {
        min-width: auto;
        width: 100%;
    }
    
    .footer-contact {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.25rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
        gap: 1.25rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-separator {
        font-size: 0.8rem;
    }
    
    .footer-social-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .footer-contact {
        gap: 0.5rem;
    }
}

@media (max-width: 360px) {
    .footer-content {
        padding: 0 0.75rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
    
    .footer-social-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
} 