/* ============================================
   Agora Market Center - Page en construction
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bleu-principal: #1a5276;
    --bleu-fonce: #0e3a5c;
    --orange-cuivre: #c0692b;
    --orange-clair: #d4863e;
    --gris: #6c7a89;
    --gris-clair: #f4f6f8;
    --blanc: #ffffff;
    --texte-sombre: #2c3e50;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--texte-sombre);
    background-color: var(--blanc);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------- Header ---------- */

.header {
    background: linear-gradient(135deg, var(--bleu-principal) 0%, var(--bleu-fonce) 100%);
    padding: 20px 0;
    text-align: center;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    max-width: 220px;
    height: auto;
    background: var(--blanc);
    padding: 12px 20px;
    border-radius: 8px;
}

/* ---------- Hero / Section principale ---------- */

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(26, 82, 118, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(192, 105, 43, 0.04) 0%, transparent 60%),
        var(--gris-clair);
}

.hero-content {
    max-width: 720px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 82, 118, 0.08);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-cuivre), var(--orange-clair));
    color: var(--blanc);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--bleu-principal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--orange-cuivre);
}

.hero p {
    font-size: 1.15rem;
    color: var(--gris);
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ---------- Ligne de separation decorative ---------- */

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.separator-line {
    width: 60px;
    height: 2px;
    background: var(--bleu-principal);
    opacity: 0.3;
}

.separator-diamond {
    width: 10px;
    height: 10px;
    background: var(--orange-cuivre);
    transform: rotate(45deg);
}

/* ---------- Services apercu ---------- */

.services {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.service-card {
    background: var(--blanc);
    border: 1px solid rgba(26, 82, 118, 0.1);
    border-radius: 12px;
    padding: 32px 28px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 82, 118, 0.12);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.service-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bleu-principal);
    letter-spacing: 0.5px;
}

/* ---------- Contact rapide ---------- */

.contact-section {
    background: var(--blanc);
    padding: 56px 24px;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.6rem;
    color: var(--bleu-principal);
    margin-bottom: 12px;
}

.contact-section p {
    color: var(--gris);
    margin-bottom: 36px;
    font-size: 1rem;
}

.contact-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bleu-principal), var(--bleu-fonce));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--blanc);
}

.contact-detail {
    text-align: left;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gris);
    font-weight: 600;
}

.contact-value {
    font-size: 1rem;
    color: var(--texte-sombre);
    font-weight: 500;
}

.contact-value a {
    color: var(--bleu-principal);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: var(--orange-cuivre);
}

/* ---------- Footer ---------- */

.footer {
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, #091f30 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    background: var(--blanc);
    padding: 10px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--blanc);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange-cuivre);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange-cuivre);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--orange-cuivre);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--orange-cuivre);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--orange-cuivre);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

/* ---------- Animations ---------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.service-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.35s both; }
.service-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.service-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.65s both; }

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .hero {
        padding: 56px 20px;
    }

    .hero-logo {
        max-width: 240px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services {
        gap: 20px;
    }

    .service-card {
        width: 160px;
        padding: 24px 20px;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 280px;
    }
}
