/* ========================================
   PRO NET TREMBLANT — LANDING PAGE
   Palette : Bleu Océan + Blanc (exacte)
   Signature : lignes topographiques (Mont-Tremblant)
   ======================================== */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bleu océan — palette de marque, exacte */
    --blue-logo: #006994;
    --blue-logo-light: #0088B4;
    --blue-logo-pale: #B3D9E8;
    --blue-logo-soft: #E6F2F7;

    /* Extensions pour la profondeur et le contraste (même famille) */
    --navy-deep: #043449;
    --blue-mist: rgba(255, 255, 255, 0.14);

    --white: #FFFFFF;
    --gray-light: #F5F9FC;
    --text-dark: #12202C;
    --text-light: #4A5A6E;

    --shadow: 0 10px 40px rgba(0, 105, 148, 0.15);
    --shadow-hover: 0 20px 60px rgba(0, 105, 148, 0.25);
    --shadow-soft: 0 4px 20px rgba(0, 105, 148, 0.10);

    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;

    --font-display: 'Archivo', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

.highlight {
    color: var(--blue-logo);
}

/* ----- ACCESSIBILITÉ : FOCUS VISIBLE ----- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--blue-logo-light);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ----- SIGNATURE : LIGNES TOPOGRAPHIQUES -----
   Motif récurrent inspiré des courbes de niveau du
   Mont-Tremblant. Utilisé avec parcimonie : fond du hero,
   diviseur entre sections, cachet sur la photo "À propos". */
.topo-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.topo-divider {
    display: block;
    width: 100%;
    height: 64px;
    line-height: 0;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--blue-logo);
    color: var(--white);
    border-color: var(--blue-logo);
}

.btn-primary:hover {
    background: var(--blue-logo-light);
    border-color: var(--blue-logo-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue-logo);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue-logo);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--blue-logo-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ----- HEADER / NAV ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--blue-logo-pale);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo strong {
    color: var(--blue-logo);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--blue-logo);
    transition: width 0.25s ease;
}

.nav-menu a:hover {
    color: var(--blue-logo);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--blue-logo);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--blue-logo-light); color: var(--white) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----- HERO ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(150deg, var(--navy-deep) 0%, var(--blue-logo) 45%, var(--blue-logo-light) 100%);
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-topo {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.5;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-location {
    display: block;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 500;
    margin-top: 8px;
    font-size: 0.95em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.hero-trust i {
    color: var(--white);
    margin-right: 8px;
}

/* ----- IMAGES RÉELLES : HERO ----- */
.hero-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(4, 52, 73, 0.4);
    display: block;
}

/* ----- BANDE DE CRÉDIBILITÉ ----- 
   Chevauche le bas du hero : renforce la confiance dès le
   premier écran, chiffres en police mono pour une lecture
   précise et technique. */
.trust-bar {
    position: relative;
    z-index: 3;
    margin-top: -48px;
}

.trust-bar-inner {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-stat i {
    font-size: 26px;
    color: var(--blue-logo);
    flex-shrink: 0;
}

.trust-stat .num {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.trust-stat .label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

/* ----- SECTION HEADER ----- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    background: var(--blue-logo-soft);
    color: var(--blue-logo);
    padding: 4px 16px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

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

/* ----- REVEAL AU SCROLL ----- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- SERVICES ----- */
.services {
    padding: 120px 0 100px;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--blue-logo-pale);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-logo);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blue-logo-soft);
    color: var(--blue-logo);
    font-size: 32px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    background: var(--blue-logo);
    color: var(--white);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 14px;
}

/* ----- ABOUT ----- */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: var(--blue-logo-soft);
    border-radius: 10px;
    border-left: 4px solid var(--blue-logo);
}

.value-item i {
    color: var(--blue-logo);
    font-size: 20px;
    width: 24px;
}

.value-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image .frame {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

/* ----- IMAGES RÉELLES : ABOUT ----- */
.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

/* Cachet topographique flottant sur la photo — signature du
   site, rappel du Mont-Tremblant, utilisé une seule fois. */
.about-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 128px;
    height: 128px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.about-badge .badge-inner {
    text-align: center;
}

.about-badge .badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--blue-logo);
    line-height: 1;
}

.about-badge .badge-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 4px;
    max-width: 80px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- AREAS ----- */
.areas {
    padding: 90px 0;
    background: var(--gray-light);
    position: relative;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.area-item {
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--blue-logo-pale);
}

.area-item:hover {
    border-color: var(--blue-logo);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.area-item i {
    font-size: 40px;
    color: var(--blue-logo);
    margin-bottom: 12px;
    display: block;
}

.area-item span {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

/* ----- CONTACT ----- */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 56px;
    box-shadow: var(--shadow);
    border: 1px solid var(--blue-logo-pale);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    font-size: 22px;
    color: var(--blue-logo);
    width: 24px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-mono);
    font-size: 0.95em;
}

.contact-item a:hover {
    color: var(--blue-logo);
}

/* ----- FORM ----- */
.contact-form-wrapper {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--blue-logo-pale);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue-logo);
    box-shadow: 0 0 0 4px rgba(0, 105, 148, 0.10);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

.form-feedback {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.form-feedback.is-visible { display: flex; }
.form-feedback.success { background: var(--blue-logo-soft); color: var(--blue-logo); }
.form-feedback i { font-size: 18px; }

.form-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.form-note i {
    color: var(--blue-logo);
}

/* ----- FOOTER ----- */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.footer-brand span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand strong {
    color: var(--blue-logo-pale);
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 6px;
}

.footer p i {
    color: var(--blue-logo-pale);
    width: 20px;
}

.footer p a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.95em;
}

.footer p a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image {
        max-height: 350px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        border-bottom: 3px solid var(--blue-logo);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a::after { display: none; }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 94vh;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .hero-image {
        max-height: 280px;
    }

    .trust-bar { margin-top: 24px; }
    .trust-bar-inner { padding: 24px; }

    .services { padding: 64px 0; }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-badge {
        width: 100px;
        height: 100px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .about-badge .badge-num { font-size: 1.3rem; }

    .contact-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-image-wrapper {
        max-width: 260px;
    }

    .hero-image {
        max-height: 220px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand img {
        max-width: 140px;
        height: 40px;
    }

    .about-badge {
        width: 84px;
        height: 84px;
    }

    .about-badge .badge-num { font-size: 1.05rem; }
    .about-badge .badge-label { font-size: 8px; }
}