/* ==========================================
   RESET & VARIABLES
   ========================================== */
:root {
    --bg-dark: #0a111e;
    --bg-card: #111a2e;
    --primary: #1e3a8a;
    --primary-light: #2563eb;
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(10, 25, 47, 0.18);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: #fafbfc;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    padding: 14px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    max-height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-btn {
    background: var(--bg-dark);
    color: var(--text-light) !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: transform 0.2s, background 0.2s !important;
}

.nav-btn:hover {
    background: var(--primary) !important;
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #070d18 0%, #0f1c35 60%, #172a4d 100%);
    color: var(--text-light);
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* BOUTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #b89228 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
}

/* STATS HERO */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   SECTIONS & TITRES
   ========================================== */
section {
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.section-tag.light {
    color: var(--gold);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--bg-dark);
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================
   SERVICES
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

.service-card.highlight {
    border: 2px solid var(--primary-light);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary-light);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.card-list {
    list-style: none;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.card-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.card-list li::before {
    content: "•";
    color: var(--primary-light);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ==========================================
   À PROPOS
   ========================================== */
.about {
    background: #f1f5f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.about-content p.lead {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.value-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
}

.check-icon {
    background: #dcfce7;
    color: #16a34a;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.about-card-visual {
    background: linear-gradient(135deg, #0f1c35 0%, #172a4d 100%);
    padding: 40px;
    border-radius: var(--radius);
    color: var(--white);
    position: relative;
    box-shadow: var(--shadow);
}

.quote-symbol {
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    font-family: serif;
}

.quote-box p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.quote-author {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    padding: 80px 0;
}

.contact-card {
    background: linear-gradient(135deg, #070d18 0%, #0f1c35 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 16px;
}

.contact-card p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

.btn-contact {
    background: var(--gold);
    color: #000000;
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-contact:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.contact-note {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 20px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #030712;
    color: #64748b;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    max-height: 36px;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.85rem;
}

.footer-copy p {
    font-size: 0.85rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .nav-links { display: none; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { display: none; }
}
