* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

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

.top-bar {
    background: #0f172a;
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
}

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

.top-bar a {
    color: #e2e8f0;
    text-decoration: none;
    margin-left: 15px;
}

.header {
    background: #0f172a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #38bdf8;
}

.nav a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: #38bdf8;
}

.btn-whatsapp-nav {
    background: #25d366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* BANDEAU DÉFILANT SUR TOUTES LES PAGES */
.ticker-wrap {
    background: #0284c7;
    color: #fff;
    overflow: hidden;
    height: 38px;
    line-height: 38px;
    font-weight: 600;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1500&q=80') center/cover;
    color: #fff;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-features span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    color: #38bdf8;
}

.booking-card {
    background: #fff;
    color: #1e293b;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.booking-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #475569;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-calc {
    width: 100%;
    background: #0284c7;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.route-result {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.price-box {
    margin-top: 5px;
    font-size: 1.1rem;
    color: #0369a1;
}

.price-box strong { font-size: 1.4rem; }

.separator {
    margin: 15px 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.btn-submit-email {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.btn-submit-wa {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.seo-section, .fleet-section, .faq-section, .page-content {
    padding: 60px 0;
}

.seo-section h2, .fleet-section h2, .faq-section h2, .page-content h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0f172a;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.seo-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.seo-box img, .fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.seo-box h3, .seo-box p {
    padding: 15px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.fleet-card h3, .fleet-card p {
    padding: 0 20px;
    margin-top: 10px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.faq-item h4 {
    color: #0284c7;
    margin-bottom: 5px;
}

.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer h4 { color: #fff; margin-bottom: 15px; }

.footer-links a {
    color: #38bdf8;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}
