/* -----------------------------------
   PALETTE & VARIABLES GLOBALES
----------------------------------- */
:root {
    --pro-bg: #0A1A2F;          /* Bleu nuit tech */
    --pro-primary: #00D1C7;     /* Turquoise paramédical */
    --pro-accent: #5FFFF4;      /* Aqua néon futuriste */
    --pro-text: #E5E7EB;        /* Gris clair premium */
}

/* Neutralisation Bootstrap de base */
.bg-white, .bg-light {
    background-color: transparent !important;
}
.text-dark, .text-body {
    color: var(--pro-text) !important;
}
.border, .border-light, .border-dark {
    border-color: rgba(255,255,255,0.05) !important;
}
.shadow, .shadow-sm, .shadow-lg {
    box-shadow: none !important;
}
/* Neutralisation Bootstrap sur les liens du header */
.pro-nav a,
.pro-header a {
    color: var(--pro-text) !important;
}


/* -----------------------------------
   STYLE GLOBAL
----------------------------------- */
body {
    background: var(--pro-bg);
    color: var(--pro-text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.landing-tech {
    background: var(--pro-bg);
}

/* Titres globaux */
h1, h2, h3, h4, h5 {
    color: var(--pro-text);
}

/* -----------------------------------
   HEADER TRANSLUCIDE PREMIUM
----------------------------------- */

.pro-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 0;
    backdrop-filter: blur(12px);
    background: rgba(10, 26, 47, 0.55);
    border-bottom: 1px solid rgba(0, 209, 199, 0.25);
    z-index: 999;
    transition: 0.3s;
}

.pro-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pro-text);
}

.pro-logo span {
    color: var(--pro-primary);
}

/* .pro-nav a {
    margin: 0 18px;
    color: var(--pro-text);
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s;
}

.pro-nav a:hover {
    color: var(--pro-primary);
} */

/* Liens du header — version premium */
/* .pro-nav a {
    margin: 0 18px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 0.25s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.pro-nav a:hover {
    color: var(--pro-primary);
    border-bottom: 2px solid var(--pro-primary);
    text-shadow: 0 0 8px rgba(0,209,199,0.4);
} */
/* -----------------------------------
   LIENS HEADER — VERSION ULTRA‑TECH FORCÉE
----------------------------------- */

.pro-nav a {
    position: relative;
    margin: 0 18px;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: 0.3s ease;
    padding-bottom: 4px;
}

/* Soulignement animé */
.pro-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: var(--pro-primary) !important;
    box-shadow: 0 0 8px rgba(0,209,199,0.6);
    transition: width 0.35s ease;
}

/* Hover ultra‑tech */
.pro-nav a:hover {
    color: var(--pro-primary) !important;
    text-shadow: 0 0 12px rgba(0,209,199,0.45);
    transform: translateY(-1px);
}

.pro-nav a:hover::after {
    width: 100%;
}

/* Effet scanline */
.pro-nav a:hover {
    background: linear-gradient(
        90deg,
        rgba(0,209,199,0.15) 0%,
        rgba(0,209,199,0.0) 100%
    ) !important;
    background-size: 200% 100%;
    animation: link-scan 0.8s linear;
}

@keyframes link-scan {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

.btn-header-cta {
    background: var(--pro-primary);
    color: #0A1A2F !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.25s;
}

.btn-header-cta:hover {
    background: var(--pro-accent);
    transform: translateY(-2px);
}

.pro-burger {
    font-size: 1.8rem;
    color: var(--pro-primary);
    cursor: pointer;
}

/* MENU MOBILE */
.pro-mobile-menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 70%;
    height: 100vh;
    background: rgba(10, 26, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    display: none;
    flex-direction: column;
    z-index: 998;
}

.pro-mobile-menu a {
    color: var(--pro-text);
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: block;
}

.pro-mobile-menu.open {
    display: flex;
}

/* -----------------------------------
   HERO ULTRA‑TECH
----------------------------------- */
.hero-ultratech {
    min-height: 100vh;
    background: var(--pro-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Lignes lumineuses animées */
.hero-ultratech::before,
.hero-ultratech::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pro-primary), transparent);
    opacity: 0.15;
    animation: scanline 6s linear infinite;
}

.hero-ultratech::after {
    top: 70%;
    animation-duration: 9s;
}

@keyframes scanline {
    from { transform: translateX(-50%); }
    to   { transform: translateX(50%); }
}

/* Titres & sous‑titres */
.hero-ultratech-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--pro-text);
}

.hero-ultratech-subtitle {
    font-size: 1.4rem;
    color: var(--pro-text);
    opacity: 0.7;
}

/* -----------------------------------
   BOUTONS ULTRA‑TECH
----------------------------------- */
.btn-ultratech-primary {
    background: var(--pro-primary);
    color: #0A1A2F !important;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.25s;
    box-shadow: 0 8px 20px rgba(0,209,199,0.3);
}

.btn-ultratech-primary:hover {
    background: var(--pro-accent);
    transform: translateY(-3px);
}

.btn-ultratech-secondary {
    border: 1px solid var(--pro-primary);
    color: var(--pro-primary) !important;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.25s;
}

.btn-ultratech-secondary:hover {
    background: rgba(0,209,199,0.1);
    transform: translateY(-3px);
}

/* -----------------------------------
   FEATURES MINIMALISTES
----------------------------------- */
.features-tech {
    background: var(--pro-bg);
    padding: 80px 0;
}

.feature-item {
    padding: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.25s;
}

.feature-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(0, 209, 199, 0.15);
}

.feature-item h3 {
    color: var(--pro-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--pro-text);
    opacity: 0.7;
}

/* -----------------------------------
   ZONES COUVERTES
----------------------------------- */
.zone-item {
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--pro-text);
    transition: 0.25s;
}

.zone-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
}

.zone-item h3 {
    color: var(--pro-primary);
    font-weight: 700;
    margin: 0;
}

/* -----------------------------------
   FAQ TRANSPORTEURS — VERSION ULTRA-TECH
----------------------------------- */

/* On écrase toutes les variables Bootstrap */
.accordion {
    --bs-accordion-bg: transparent !important;
    --bs-accordion-border-color: rgba(255,255,255,0.05) !important;
    --bs-accordion-btn-bg: transparent !important;
    --bs-accordion-btn-color: var(--pro-text) !important;
    --bs-accordion-active-bg: rgba(0,209,199,0.08) !important;
    --bs-accordion-active-color: var(--pro-primary) !important;
    --bs-accordion-btn-focus-box-shadow: none !important;
}

/* Bloc FAQ */
.accordion-item {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

/* Bouton question */
.accordion-button {
    background: transparent !important;
    color: var(--pro-text) !important;
    font-weight: 600;
    padding: 18px 20px;
    border: none !important;
    box-shadow: none !important;
}

/* Bouton ouvert */
.accordion-button:not(.collapsed) {
    background: rgba(0,209,199,0.05) !important;
    color: var(--pro-primary) !important;
    box-shadow: none !important;
}

/* Icône flèche */
.accordion-button::after {
    filter: invert(1) brightness(1.5) !important;
    opacity: 0.7 !important;
}

/* Corps de réponse */
.accordion-body {
    background: rgba(255,255,255,0.03) !important;
    color: var(--pro-text) !important;
    padding: 20px 25px !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}

/* -----------------------------------
   CTA FINAL
----------------------------------- */
.cta-tech {
    background: #050b14;
}

.cta-title {
    color: var(--pro-text);
    font-size: 2.2rem;
    font-weight: 700;
}

.cta-subtitle {
    color: var(--pro-text);
    opacity: 0.75;
}

/* -----------------------------------
   FOOTER PRO
----------------------------------- */
.footer-tech {
    background: #07101D;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--pro-text);
}

.footer-tech p {
    margin: 4px 0;
    font-size: 0.95rem;
}

.footer-tech a {
    color: var(--pro-primary);
    text-decoration: none;
}

.footer-tech a:hover {
    text-decoration: underline;
}

/* -----------------------------------
   ANIMATIONS REVEAL
----------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 768px) {
    .hero-ultratech-title {
        font-size: 2.6rem;
    }

    .feature-item {
        padding: 24px;
    }
}

/* -----------------------------------
   BANDEAU OFFRE DE LANCEMENT
----------------------------------- */

.launch-offer-banner {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(
        90deg,
        rgba(0,209,199,0.15),
        rgba(0,209,199,0.35),
        rgba(0,209,199,0.15)
    );
    color: var(--pro-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,209,199,0.25);
    backdrop-filter: blur(6px);
    animation: bannerPulse 4s infinite ease-in-out;
    position: relative;
    z-index: 1001;
}

@keyframes bannerPulse {
    0% { opacity: 0.85; }
    50% { opacity: 1; }
    100% { opacity: 0.85; }
}

/* Formulaire PRO */
.pro-form {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-section-title {
    color: var(--pro-primary);
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
}

.vehicle-options label {
    display: block;
    margin-bottom: 6px;
    color: var(--pro-text);
}

.offer-box {
    background: rgba(0,209,199,0.12);
    border: 1px solid rgba(0,209,199,0.25);
    padding: 12px 20px;
    border-radius: 10px;
    color: var(--pro-primary);
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
}
.pro-footer {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

.pro-footer a {
    color: var(--pro-primary);
    margin: 0 8px;
    text-decoration: none;
}
/* -----------------------------------
   PAGES LÉGALES — STYLE PREMIUM
----------------------------------- */

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.legal-container h1 {
    font-size: 2rem;
    color: var(--pro-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.legal-container p,
.legal-container li {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-size: 1rem;
}

.legal-container ul {
    margin-left: 20px;
}

.legal-container a {
    color: var(--pro-primary);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}
