/*
 * MOBIWAY CAR – STYLE PREMIUM V2
 * Design: Luxury Minimal · Couleurs: #003366 + #FF6600 + #25D366
 * Fonts: Syne (display) + DM Sans (body)
 */

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
    --blue:        #003366;
    --blue-dark:   #001a33;
    --blue-mid:    #004080;
    --orange:      #FF6600;
    --orange-dark: #e05500;
    --green:       #25D366;
    --green-dark:  #1ea952;
    --bg:          #f5f7fa;
    --bg-alt:      #eef1f6;
    --white:       #ffffff;
    --text:        #1a2332;
    --text-muted:  #5c6b7e;
    --border:      rgba(0,51,102,.1);
    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --shadow-sm:   0 2px 8px rgba(0,51,102,.08);
    --shadow-md:   0 8px 24px rgba(0,51,102,.12);
    --shadow-lg:   0 20px 48px rgba(0,51,102,.16);
    --header-h:    72px;
    --font-display:'Syne', sans-serif;
    --font-body:   'DM Sans', sans-serif;
    --transition:  all .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ============================================================
   HEADER
   ============================================================ */
.mw-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}
.mw-header.is-scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,.99);
}
.mw-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}
.mw-logo img { max-height: 46px; width: auto; }

/* Nav */
.mw-nav { display: flex; }
.mw-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}
.mw-nav__list a {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.mw-nav__list a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .2s ease;
}
.mw-nav__list a:hover { color: var(--orange); }
.mw-nav__list a:hover::after,
.mw-nav__list .current-menu-item > a::after { transform: scaleX(1); }
.mw-nav__list .current-menu-item > a { color: var(--orange); font-weight: 600; }

/* Header actions */
.mw-header__actions { display: flex; align-items: center; gap: 10px; }
.mw-header__phone {
    display: flex; align-items: center; gap: 6px;
    font-weight: 600; font-size: 15px;
    color: var(--blue);
    transition: var(--transition);
}
.mw-header__phone i { color: var(--green); font-size: 14px; }
.mw-header__phone:hover { color: var(--orange); }

/* Burger */
.mw-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.mw-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: var(--transition);
}
.mw-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mw-burger.is-open span:nth-child(2) { opacity: 0; }
.mw-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: .01em;
}
.mw-btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,102,0,.28);
}
.mw-btn--primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 10px 28px rgba(255,102,0,.36);
    transform: translateY(-2px);
    color: #fff;
}
.mw-btn--whatsapp {
    background: var(--green);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,.28);
}
.mw-btn--whatsapp:hover {
    background: var(--green-dark);
    box-shadow: 0 10px 28px rgba(37,211,102,.36);
    transform: translateY(-2px);
    color: #fff;
}
.mw-btn--outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.mw-btn--outline:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}
.mw-btn--light {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}
.mw-btn--light:hover { background: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }
.mw-btn--full { width: 100%; }
.mw-btn--sm { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   BADGE
   ============================================================ */
.mw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,102,0,.1);
    color: var(--orange-dark);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}
.mw-badge--light {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.25);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.mw-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.mw-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.15;
    margin: 12px 0 16px;
}
.mw-text-accent { color: var(--orange); }
.mw-section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   HERO
   ============================================================ */
.mw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 60px;
    overflow: hidden;
}
.mw-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.mw-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.mw-hero__slide.is-active { opacity: 1; }
.mw-hero__slide--1 {
    background-image: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?auto=format&fit=crop&w=1600&q=80');
}
.mw-hero__slide--2 {
    background-image: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1600&q=80');
}
.mw-hero__slide--3 {
    background-image: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=1600&q=80');
}
.mw-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,26,51,.88) 0%, rgba(0,51,102,.72) 60%, rgba(0,26,51,.65) 100%);
}
.mw-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 60px;
}
.mw-hero__left { color: #fff; }
.mw-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0 16px;
    color: #fff;
    letter-spacing: -.01em;
}
.mw-hero__title-accent {
    color: var(--orange);
    display: block;
}
.mw-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    margin-bottom: 36px;
}
.mw-hero__trust {
    display: flex;
    gap: 32px;
}
.mw-trust-item { text-align: center; }
.mw-trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}
.mw-trust-item span {
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

/* ============================================================
   BOOKING CARD
   ============================================================ */
.mw-booking-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: slideInRight .6s ease both;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
.mw-booking-card__header {
    background: var(--blue);
    padding: 24px 28px;
    color: #fff;
    text-align: center;
}
.mw-booking-card__header i {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 8px;
}
.mw-booking-card__header h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.mw-booking-card__header p {
    font-size: 13px;
    color: rgba(255,255,255,.7);
}

/* Form */
.mw-form { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.mw-form__group { display: flex; flex-direction: column; gap: 6px; }
.mw-form__label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mw-form__label i { color: var(--orange); font-size: 13px; }
.mw-form__input,
.mw-form__select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.mw-form__input:focus,
.mw-form__select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,51,102,.1);
}
.mw-form__input::placeholder { color: #a0aab4; }
.mw-form__input.is-error,
.mw-form__select.is-error { border-color: #e74c3c; }
.mw-form__error {
    font-size: 12.5px;
    color: #e74c3c;
    min-height: 16px;
    display: block;
}
.mw-form__hint {
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.mw-form__hint i { color: var(--green); }

/* Select wrapper */
.mw-select-wrapper { position: relative; }
.mw-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 12px;
    pointer-events: none;
}

/* Phone wrapper – intl-tel-input */
.mw-phone-wrapper .iti { width: 100%; }
.mw-phone-wrapper .iti__flag-container { z-index: 10; }
.mw-phone-wrapper input[type="tel"] {
    width: 100%;
    height: 50px;
    padding-left: 60px !important;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}
.mw-phone-wrapper input[type="tel"]:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,51,102,.1);
}

/* Booking success */
.mw-booking-success {
    padding: 40px 28px;
    text-align: center;
}
.mw-booking-success__icon {
    font-size: 56px;
    color: var(--green);
    margin-bottom: 16px;
    animation: popIn .4s ease;
}
@keyframes popIn {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}
.mw-booking-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 8px;
}
.mw-booking-success p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ============================================================
   BRANDS BAND
   ============================================================ */
.mw-brands {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
}
.mw-brands__track {
    display: flex;
    width: fit-content;
    animation: brandScroll 28s linear infinite;
}
@keyframes brandScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.mw-brands__slide { display: flex; gap: 0; }
.mw-brands__logo {
    padding: 0 40px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .08em;
    opacity: .55;
    transition: var(--transition);
    white-space: nowrap;
}
.mw-brands__logo:hover { opacity: 1; color: var(--orange); }

/* ============================================================
   STATS
   ============================================================ */
.mw-stats {
    background: var(--blue);
    padding: 56px 0;
}
.mw-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.mw-stat { text-align: center; }
.mw-stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}
.mw-stat__label {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    letter-spacing: .02em;
}

/* ============================================================
   FLEET
   ============================================================ */
.mw-fleet { padding: 100px 0; background: var(--bg); }

.mw-fleet__filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.mw-filter-btn {
    padding: 10px 22px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: #fff;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.mw-filter-btn:hover,
.mw-filter-btn.is-active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.mw-fleet__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Vehicle Card */
.mw-vehicle-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.mw-vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,51,102,.2);
}
.mw-vehicle-card.is-hidden { display: none; }
.mw-vehicle-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-alt);
}
.mw-vehicle-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.mw-vehicle-card:hover .mw-vehicle-card__img-wrap img { transform: scale(1.04); }
.mw-vehicle-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    opacity: .25;
    font-size: 48px;
}
.mw-vehicle-card__price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--blue);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    box-shadow: var(--shadow-sm);
}
.mw-vehicle-card__price strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--orange);
}
.mw-vehicle-card__body { padding: 20px; }
.mw-vehicle-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}
.mw-vehicle-card__specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.mw-vehicle-card__specs span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.mw-vehicle-card__specs i { color: var(--orange); font-size: 12px; }
.mw-vehicle-card__actions { display: flex; gap: 8px; }

.mw-fleet__cta { text-align: center; margin-top: 48px; }

/* ============================================================
   SERVICES
   ============================================================ */
.mw-services {
    padding: 100px 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}
.mw-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,102,0,.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.mw-services .mw-section-header { position: relative; }
.mw-services .mw-badge {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.2);
}
.mw-services .mw-section-title { color: #fff; }
.mw-services .mw-text-accent { color: var(--orange); }

.mw-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.mw-service-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.mw-service-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.24);
    transform: translateY(-4px);
}
.mw-service-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: rgba(255,102,0,.18);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--orange);
    transition: var(--transition);
}
.mw-service-card:hover .mw-service-card__icon { background: var(--orange); color: #fff; }
.mw-service-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.mw-service-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   CTA BAND
   ============================================================ */
.mw-cta-band {
    background: linear-gradient(135deg, var(--orange) 0%, #e05500 100%);
    padding: 64px 0;
}
.mw-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.mw-cta-band__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.mw-cta-band__text p { color: rgba(255,255,255,.8); font-size: 16px; }
.mw-cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.mw-faq { padding: 100px 0; background: #fff; }
.mw-faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.mw-faq__item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.mw-faq__item:hover { border-color: rgba(0,51,102,.2); }
.mw-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--blue);
    transition: var(--transition);
}
.mw-faq__question:hover { color: var(--orange); }
.mw-faq__question[aria-expanded="true"] { color: var(--orange); }
.mw-faq__icon { flex-shrink: 0; font-size: 14px; color: var(--orange); transition: transform .2s ease; }
.mw-faq__question[aria-expanded="true"] .mw-faq__icon { transform: rotate(45deg); }
.mw-faq__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}
.mw-faq__answer[hidden] { display: none; }

/* ============================================================
   BLOG
   ============================================================ */
.mw-blog { padding: 100px 0; background: var(--bg); }
.mw-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mw-blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.mw-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mw-blog-card__img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.mw-blog-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.mw-blog-card:hover .mw-blog-card__img { transform: scale(1.04); }
.mw-blog-card__body { padding: 20px 24px; }
.mw-blog-card__date { font-size: 12px; color: var(--text-muted); }
.mw-blog-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue);
    margin: 8px 0 10px;
    line-height: 1.35;
}
.mw-blog-card__title a:hover { color: var(--orange); }
.mw-blog-card__excerpt { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.mw-blog-card__link { font-size: 13.5px; font-weight: 600; color: var(--orange); }
.mw-blog-card__link:hover { color: var(--orange-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.mw-footer {
    background: var(--blue-dark);
    color: #fff;
    padding: 80px 0 0;
}
.mw-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mw-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.mw-footer__brand img { margin-bottom: 16px; }
.mw-footer__brand p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.mw-footer__social { display: flex; gap: 10px; }
.mw-footer__social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.7);
    font-size: 16px;
    transition: var(--transition);
}
.mw-footer__social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.mw-footer__col h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.mw-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.mw-footer__col ul a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.mw-footer__col ul a::before { content: '›'; color: var(--orange); font-size: 16px; }
.mw-footer__col ul a:hover { color: #fff; padding-left: 4px; }
.mw-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.mw-footer__contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,.55);
    transition: var(--transition);
}
.mw-footer__contact-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.mw-footer__contact-item:hover { color: #fff; }
.mw-footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.mw-footer__bottom p { font-size: 13px; color: rgba(255,255,255,.4); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.mw-wa-float {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 58px; height: 58px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,211,102,.5);
    z-index: 900;
    transition: var(--transition);
    animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); }
    50% { box-shadow: 0 8px 36px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.08); }
}
.mw-wa-float:hover {
    transform: scale(1.1) translateY(-2px);
    color: #fff;
    animation: none;
    box-shadow: 0 12px 32px rgba(37,211,102,.6);
}
.mw-wa-float__tooltip {
    position: absolute;
    right: 70px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mw-wa-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--blue);
}
.mw-wa-float:hover .mw-wa-float__tooltip { opacity: 1; }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mw-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 800;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.mw-mobile-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}
.mw-mobile-bar__btn i { font-size: 20px; }
.mw-mobile-bar__btn--phone { color: var(--blue); }
.mw-mobile-bar__btn--phone i { color: var(--blue); }
.mw-mobile-bar__btn--whatsapp { background: var(--green); color: #fff; }
.mw-mobile-bar__btn--whatsapp i { color: #fff; }
.mw-mobile-bar__btn--email { color: var(--orange); }
.mw-mobile-bar__btn--email i { color: var(--orange); }
.mw-mobile-bar__btn:hover { opacity: .85; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .mw-hero__content { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .mw-hero { text-align: center; }
    .mw-hero__trust { justify-content: center; }
    .mw-booking-card { max-width: 480px; margin: 40px auto 0; }
    .mw-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .mw-services__grid { grid-template-columns: repeat(2, 1fr); }
    .mw-blog__grid { grid-template-columns: repeat(2, 1fr); }
    .mw-footer__grid { grid-template-columns: 1fr 1fr; }
    .mw-nav { display: none; }
    .mw-header__phone { display: none; }
    .mw-burger { display: flex; }
    /* Mobile nav */
    .mw-nav.is-open {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .mw-nav.is-open .mw-nav__list { flex-direction: column; width: 100%; gap: 2px; }
    .mw-nav.is-open .mw-nav__list a { padding: 14px 16px; font-size: 16px; border-radius: var(--radius-sm); }
}

@media (max-width: 768px) {
    .mw-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .mw-services__grid { grid-template-columns: 1fr; }
    .mw-blog__grid { grid-template-columns: 1fr; }
    .mw-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .mw-footer__bottom { flex-direction: column; text-align: center; }
    .mw-cta-band__inner { flex-direction: column; text-align: center; }
    .mw-cta-band__actions { justify-content: center; }
    .mw-mobile-bar { display: flex; }
    .mw-wa-float { bottom: 90px; right: 16px; width: 52px; height: 52px; }
    .mw-fleet__grid { grid-template-columns: 1fr; }
    .page-wrapper { padding-bottom: 60px; }
}

@media (max-width: 480px) {
    .mw-hero__title { font-size: 2rem; }
    .mw-hero__trust { gap: 20px; }
    .mw-trust-item strong { font-size: 1.3rem; }
    .mw-form { padding: 20px 16px; }
    .mw-booking-card__header { padding: 20px 16px; }
    .mw-stats__grid { grid-template-columns: repeat(2,1fr); }
    .mw-footer__social a { width: 34px; height: 34px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.mw-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.mw-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
