/* ===== PAGE ACCUEIL - MCSC SARL ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
header {
    background: #0a2a3a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background: #051e2a;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text strong {
    display: block;
    color: #d4af37;
    font-size: 1.3rem;
}

.logo-text span {
    font-size: 0.7rem;
    color: #cbd5e1;
    letter-spacing: 1px;
}

/* Navigation */
nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #d4af37;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-premium {
    background: linear-gradient(135deg, #0a2a3a 0%, #114a60 100%);
    color: white;
    padding: 120px 0 80px;
    position: center;
    overflow: hidden;
}

.hero-premium::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" opacity="0.05"><path fill="white" d="M10,30 L30,10 L70,50 L50,70 Z"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.text-gradient {
    background: linear-gradient(135deg, #d4af37, #f5e6a3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #2e7d32;
    color: white;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46,125,50,0.4);
}

.btn-outline {
    border: 2px solid #2e7d32;
    color: #2e7d32;
    background: transparent;
}

.btn-outline:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-3px);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: #f8fafc;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0a2a3a;
}

.stat-label {
    color: #475569;
    font-weight: 500;
    margin-top: 8px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2e7d32;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a2a3a;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.about-features i {
    color: #2e7d32;
    font-size: 1.2rem;
}

.about-image {
    background: linear-gradient(135deg, #0a2a3a, #114a60);
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.solution-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, #d4af37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2e7d32;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.solution-icon {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #0a2a3a;
}

.btn-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 12px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #0a2a3a;
}

.service-list {
    list-style: none;
    margin-top: 15px;
}

.service-list li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #2e7d32;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a2a3a, #114a60);
    color: white;
}

.why-us-section .section-title,
.why-us-section .section-subtitle {
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.why-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

/* ===== CTA SECTION ===== */
.contact-cta {
    padding: 70px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #0a2a3a;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-phone {
    background: #1e293b;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-white {
    background: white;
    color: #0a2a3a;
    border: 1px solid #e2e8f0;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-text strong {
    display: block;
    color: #d4af37;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #d4af37;
    margin-bottom: 16px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0a2a3a;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
        z-index: 99;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-lead {
        font-size: 1rem;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 16px;
    }
}