/* Variables & Couleurs */
:root {
    --primary-color: #001197;
    --accent-color: #00d4ff;
    --text-dark: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* Généralités */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

p {
    line-height: 1.8; /* Interligne confortable */
}

.text-primary-custom { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: #000c6d;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline-primary-custom {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Navbar */
.navbar {
    background: rgba(0, 17, 151, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 80px;
    background: radial-gradient(circle at top right, #eef2ff 0%, #ffffff 100%);
}

.hero-wrapper {
    margin: 0 auto;
}

/* Section Decorators */
.underline {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 10px;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent !important;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-bottom-color: var(--primary-color) !important;
}
.icon-box {
    color: var(--primary-color);
}
.w-fit { width: fit-content; }

/* Testimonials */
.testimonial-item {
    background: var(--light-bg);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
}

/* Contact Section */
.bg-dark-custom {
    background-color: #000a5a;
}
.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px;
}


/* ============================ Footer */

footer a.legal {
    font-size: .9rem;
    color: #444;
    font-style: italic;
    font-weight: 500;
    transition: color 200ms linear;
}

footer a.legal:hover {
    color: var(--primary-color);
    transition: color 200ms linear;
}