body {
    font-family: Arial, sans-serif;
    background:#f8f8f8;
    margin:0;
    padding:0;
    line-height:1.6;
}

/* HERO SECTION PREMIUM */
.hero {
    position: relative;
    height: 80vh;
    background: url('images/canada-work.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

/* Overlay sombre pour lisibilité */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1;
}

/* Contenu centré */
.hero-content {
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1.2s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Bouton CTA premium */
.hero-btn {
    background: #ff2e63;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #d61c4e;
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}


/* SECTIONS */
section {
    width:90%;
    max-width:800px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 0 12px rgba(0,0,0,0.1);
}

h2 {
    border-left:4px solid #0056c7;
    padding-left:10px;
}

ul li { margin-bottom:6px; }

/* ABOUT SECTION PREMIUM */
.about {
    width: 90%;
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 800;
    color: #003f9e;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* CARD */
.about-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* Icones premium */
.about-icon {
    width: 70px;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Texte */
.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0044cc;
}

.about-card p {
    font-size: 1rem;
    opacity: 0.82;
    line-height: 1.5;
}

.about-card ul {
    text-align: left;
    padding-left: 20px;
}
.about-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Banner info */
.about-banner {
    display: flex;
    gap: 15px;
    align-items: start;
    padding: 20px;
    background: #eaf1ff;
    border-left: 6px solid #0056d6;
    border-radius: 12px;
    margin-top: 40px;
}

.about-banner img {
    width: 35px;
}

.about-banner p {
    font-size: 1.05rem;
    line-height: 1.5;
}


/* HOW IT WORKS */
.steps {
    display:flex;
    flex-direction:column;
    gap:10px;
}
.step {
    background:#e9f1ff;
    padding:12px;
    border-radius:6px;
}

/* FORM */
input, select, textarea {
    width:100%;
    padding:12px;
    margin:10px 0 20px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:16px;
}

button {
    background:#0056c7;
    color:white;
    padding:15px;
    width:100%;
    border:none;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
}

button:hover {
    background:#003f9e;
}

.hidden {
    display:none;
    margin-top:20px;
    padding:15px;
    background:#d4ffd4;
    border-left:5px solid #39c139;
}




/* SECTION HOW */
.how {
    width: 90%;
    max-width: 1100px;
    margin: 80px auto;
}

.timeline {
    position: relative;
    margin-top: 50px;
    padding-left: 30px;
    border-left: 4px solid #d0d7ff;
}

/* POINTS SUR LA LIGNE */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: .2s; }
.timeline-item:nth-child(3) { animation-delay: .4s; }
.timeline-item:nth-child(4) { animation-delay: .6s; }
.timeline-item:nth-child(5) { animation-delay: .8s; }

/* ICÔNES */
.timeline-icon {
    position: absolute;
    left: -33px;
    top: 0;
    background: #0044cc;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.timeline-icon img {
    width: 27px;
}

/* CONTENU */
.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
}

.timeline-content h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    color: #003f9e;
}

.timeline-content p {
    margin: 0;
    opacity: 0.85;
    line-height: 1.5;
}

/* ANIMATION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .timeline {
        padding-left: 20px;
    }
    .timeline-item {
        padding-left: 30px;
    }
    .timeline-icon {
        left: -28px;
        width: 45px;
        height: 45px;
    }
    .timeline-icon img {
        width: 22px;
    }
}





.form-section {
    background: #f7f9fc;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
}

.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #003566;
}

.form-desc {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    font-size: 1rem;
}

/* --- NOUVELLE GRILLE PRO --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* deux colonnes parfaitement équilibrées */
    gap: 20px;
    margin-bottom: 20px;
}

/* Forcer les champs à ne jamais déborder */
.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;   /* items sur toute la largeur */
}

label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #003566;
}

input, select, textarea {
    width: 100%;        /* empêcher tout débordement */
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #0077b6;
    background: white;
    box-shadow: 0 0 8px rgba(0,119,182,0.15);
    outline: none;
}

.btn-submit {
    width: 100%;
    margin-top: 25px;
    background: linear-gradient(135deg, #0077b6, #023e8a);
    padding: 15px;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0096c7, #0353a4);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;   /* une colonne sur mobile */
    }

    .form-group.full {
        grid-column: span 1;
    }
}

/* ================= FOOTER ================= */

.site-footer {
    background: #0a1a2f;
    color: #e0e0e0;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.1rem;
}

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

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

.footer-links ul li a {
    color: #cfd8ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact a {
    color: #cfd8ff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive footer */
@media (max-width: 600px) {
    .site-footer {
        text-align: center;
    }
}



