/* ================================================================
   MERIDIAN TRANSFER – theme.css
   Waldgrün + Elfenbein + Kupfer
   CSS Custom Properties werden über app.blade.php injiziert.
   Präfix aller Klassen: m-
================================================================ */

/* ── Statische Fallback-Werte (überschrieben durch app.blade.php) ── */
:root {
    --primary:          #0B3528;
    --primary-mid:      #0F4533;
    --primary-light:    #155C44;
    --accent:           #B87333;
    --accent-light:     #D4904C;
    --font-body:        'Plus Jakarta Sans', sans-serif;
    --font-heading:     'DM Serif Display', serif;

    /* Interne Ableitungen (nicht aus DB) */
    --ivory:            #FAF8F3;
    --ivory-mid:        #F0EBE1;
    --ivory-dark:       #E3DAD0;
    --text:             #1A1410;
    --text-mid:         #4A3F34;
    --text-muted:       #8C7E72;
    --text-light:       #B8ADA4;
    --border:           rgba(0,0,0,0.09);
    --border-strong:    rgba(0,0,0,0.16);
    --primary-pale:     #E8F1ED;
    --accent-pale:      #F5EDE0;
    --surface-dark:     #1C1C27;
    --border-subtle:    rgba(255,255,255,0.07);
    --border-gold:      rgba(184,115,51,0.22);
    --shadow-sm:        0 2px 12px rgba(11,53,40,0.08);
    --shadow-md:        0 8px 32px rgba(11,53,40,0.12);
    --shadow-lg:        0 24px 64px rgba(11,53,40,0.18);
    --radius-sm:        6px;
    --radius-md:        12px;
    --radius-lg:        20px;
}

/* ── Base ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
.theme-meridian {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.m-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
/* Transparent über Hero */
.m-header { background: transparent; }
/* Solid beim Scrollen – Klasse wird per JS gesetzt */
.m-header--solid {
    background: rgba(250,248,243,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.m-header__inner {
    max-width: 1400px; margin: 0 auto;
    padding: 0 2.5rem; height: 76px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}

/* Logo */
.m-header__logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; flex-shrink: 0;
}
.m-header__logo-img { height: 44px; width: auto; object-fit: contain; }
.m-header__logo-mark {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
    transition: all 0.3s;
}
.m-header--solid .m-header__logo-mark {
    background: var(--accent-pale); border-color: var(--ivory-dark);
}
.m-header__logo-mark svg { width: 22px; height: 22px; color: #fff; }
.m-header--solid .m-header__logo-mark svg { color: var(--accent); }
.m-header__logo-texts { display: flex; flex-direction: column; line-height: 1.1; }
.m-header__logo-name {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 400;
    color: #fff; transition: color 0.3s;
}
.m-header--solid .m-header__logo-name { color: var(--text); }
.m-header__logo-tagline {
    font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); transition: color 0.3s;
}
.m-header--solid .m-header__logo-tagline { color: var(--text-muted); }

/* Nav */
.m-header__nav { display: flex; align-items: center; gap: 0.4rem; }
.m-header__nav a {
    font-size: 0.83rem; font-weight: 500; padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm); text-decoration: none;
    color: rgba(255,255,255,0.8); transition: all 0.2s;
}
.m-header__nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.m-header--solid .m-header__nav a { color: var(--text-mid); }
.m-header--solid .m-header__nav a:hover { color: var(--primary); background: var(--primary-pale); }

.m-header__right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.m-lang-group {
    display: flex; gap: 2px; padding: 3px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1); transition: background 0.3s;
}
.m-header--solid .m-lang-group { background: var(--ivory-mid); }
.m-lang-btn {
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.07em; padding: 5px 9px; border-radius: 4px;
    color: rgba(255,255,255,0.55); transition: all 0.2s;
}
.m-lang-btn:hover, .m-lang-btn.active {
    background: rgba(255,255,255,0.2); color: #fff;
}
.m-header--solid .m-lang-btn { color: var(--text-muted); }
.m-header--solid .m-lang-btn:hover,
.m-header--solid .m-lang-btn.active { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }

.m-header__cta {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 0.6rem 1.3rem; border-radius: 40px;
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
    text-decoration: none; transition: all 0.25s; white-space: nowrap;
    background: #fff; color: var(--primary);
}
.m-header__cta:hover { background: var(--accent-pale); color: var(--accent); }
.m-header--solid .m-header__cta { background: var(--primary); color: #fff; }
.m-header--solid .m-header__cta:hover { background: var(--primary-light); box-shadow: var(--shadow-md); }
.m-header__cta svg { width: 14px; height: 14px; }

/* Mobile Toggle */
.m-header__toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.m-header__toggle span {
    display: block; width: 24px; height: 2px; border-radius: 2px;
    background: #fff; transition: all 0.3s ease;
}
.m-header--solid .m-header__toggle span { background: var(--text); }
.m-header__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.m-header__toggle--active span:nth-child(2) { opacity: 0; }
.m-header__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.m-hero {
    min-height: 100vh; position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: var(--primary);
    overflow: hidden; padding-top: 76px; padding-bottom: 120px;
}
.m-hero__pattern {
    position: absolute; inset: 0; z-index: 0; opacity: 0.065;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.7'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='7'/%3E%3Cline x1='10' y1='40' x2='70' y2='40'/%3E%3Cline x1='40' y1='10' x2='40' y2='70'/%3E%3Cline x1='18' y1='18' x2='62' y2='62'/%3E%3Cline x1='62' y1='18' x2='18' y2='62'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.m-hero__glow {
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%; z-index: 0;
    background: radial-gradient(circle, rgba(184,115,51,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.m-hero__fade-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px; z-index: 1;
    background: linear-gradient(to top, var(--primary) 0%, transparent 100%);
    pointer-events: none;
}
.m-hero__content {
    position: relative; z-index: 2; text-align: center;
    max-width: 900px; padding: 0 2rem;
}
.m-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    padding: 7px 18px; border-radius: 40px;
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); font-weight: 600;
}
.m-hero__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-light); flex-shrink: 0;
}
.m-hero__title {
    font-family: var(--font-heading); font-size: clamp(3rem,7vw,7rem);
    font-weight: 400; line-height: 1.0; color: #fff;
    letter-spacing: -0.02em; margin-bottom: 1.8rem;
}
.m-hero__title em { font-style: italic; color: var(--accent-light); display: block; }
.m-hero__subtitle {
    font-size: clamp(1rem,1.5vw,1.15rem); font-weight: 400;
    color: rgba(255,255,255,0.62); max-width: 560px;
    margin: 0 auto 3rem; line-height: 1.85;
}
.m-hero__stats {
    display: flex; justify-content: center;
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
    overflow: hidden; max-width: 600px; margin: 0 auto;
}
.m-hero__stat {
    flex: 1; padding: 1.2rem 1.5rem; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.m-hero__stat:last-child { border-right: none; }
.m-hero__stat-num {
    font-family: var(--font-heading); font-size: 1.8rem;
    color: var(--accent-light); line-height: 1; display: block; margin-bottom: 4px;
}
.m-hero__stat-label {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); font-weight: 500;
}
.m-hero__scroll-indicator {
    position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.35); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase; z-index: 2;
    animation: m-bounce 2s ease-in-out infinite;
}
.m-hero__scroll-indicator svg { width: 20px; height: 20px; }
@keyframes m-bounce {
    0%,100%{transform:translateX(-50%) translateY(0)}
    50%{transform:translateX(-50%) translateY(8px)}
}


/* ═══════════════════════════════════════════════════════
   BOOKING STRIP
═══════════════════════════════════════════════════════ */
.m-booking-strip-wrapper {
    position: relative; z-index: 10;
    margin-top: -80px;
    padding: 0 2.5rem 5rem;
}
.m-booking-strip {
    max-width: 1300px; margin: 0 auto;
    background: var(--ivory);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ivory-dark);
    overflow: hidden;
}
.m-booking-strip__header {
    background: var(--primary); padding: 1.3rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.m-booking-strip__title {
    font-family: var(--font-heading); font-size: 1.25rem;
    color: #fff; font-weight: 400;
}
.m-booking-strip__guarantee {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500;
}
.m-booking-strip__guarantee svg { width: 14px; height: 14px; color: var(--accent-light); flex-shrink: 0; }
.m-booking-strip__body { padding: 2.5rem; }

/* ─────────────────────────────────────────────────────
   m-input / m-btn
   Diese Klassen werden als inputClass / buttonClass
   an <x-frontend.booking-form /> übergeben.
────────────────────────────────────────────────────── */
.m-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1.5px solid var(--ivory-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.m-input::placeholder { color: var(--text-light); }
.m-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.m-input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
/* Select-Pfeil */
select.m-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C7E72' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
select.m-input option { background: #fff; }

.m-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 1rem 1.5rem;
    background: var(--accent);
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ivory); cursor: pointer;
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
/* Kupfer-Bodenakzent */
.m-btn::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: rgba(0,0,0,0.15);
}
.m-btn:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(184,115,51,0.35);
}
.m-btn:active { transform: translateY(0); }
.m-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }


/* ═══════════════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════════════ */
.m-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); font-weight: 700; margin-bottom: 0.7rem; display: block;
}
.m-eyebrow--light { color: var(--accent-light); }
.m-section-title {
    font-family: var(--font-heading); font-size: clamp(2rem,3.5vw,3rem);
    font-weight: 400; color: var(--text); letter-spacing: -0.01em; line-height: 1.15;
}
.m-section-title em { font-style: italic; color: var(--primary); }
.m-section-header {
    max-width: 1400px; margin: 0 auto 3.5rem;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.m-section-link {
    font-size: 0.85rem; font-weight: 700; color: var(--primary);
    text-decoration: none; display: flex; align-items: center; gap: 6px;
    white-space: nowrap; transition: gap 0.2s;
}
.m-section-link:hover { gap: 10px; }
.m-section-link svg { width: 16px; height: 16px; }

/* Scroll Reveal */
.m-svc-card, .m-veh-row, .m-process__step, .m-about__stat-card {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.m-revealed { opacity: 1 !important; transform: translateY(0) !important; }


/* ═══════════════════════════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════════════════════════ */
.m-services { padding: 6rem 2.5rem; background: #fff; }
.m-services__grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.m-svc-card {
    background: var(--ivory); border-radius: var(--radius-md);
    padding: 2rem 1.8rem; border: 1px solid var(--ivory-dark);
    transition: all 0.35s ease; position: relative; overflow: hidden;
}
.m-svc-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary); transform: scaleX(0);
    transition: transform 0.3s ease; transform-origin: left;
}
.m-svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); background: #fff; }
.m-svc-card:hover::after { transform: scaleX(1); }
.m-svc-card__icon {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    background: var(--primary-pale); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem; transition: all 0.3s;
}
.m-svc-card:hover .m-svc-card__icon { background: var(--primary); color: #fff; }
.m-svc-card__icon svg { width: 24px; height: 24px; }
.m-svc-card__title {
    font-family: var(--font-heading); font-size: 1.15rem;
    font-weight: 400; color: var(--text); margin-bottom: 0.6rem;
}
.m-svc-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }


/* ═══════════════════════════════════════════════════════
   ÜBER UNS
═══════════════════════════════════════════════════════ */
.m-about {
    padding: 7rem 2.5rem; background: var(--primary);
    position: relative; overflow: hidden;
}
.m-about__pattern {
    position: absolute; inset: 0; z-index: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6'%3E%3Crect x='10' y='10' width='40' height='40'/%3E%3Crect x='20' y='20' width='20' height='20'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.m-about__inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    position: relative; z-index: 1;
}
.m-about__title {
    font-family: var(--font-heading); font-size: clamp(2rem,3.5vw,3rem);
    font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 1.5rem;
}
.m-about__title em { font-style: italic; color: var(--accent-light); }
.m-about__desc { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 2.5rem; }
.m-about__list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.m-about__item { display: flex; gap: 1rem; align-items: flex-start; }
.m-about__item-icon {
    width: 40px; height: 40px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    color: var(--accent-light); display: flex; align-items: center; justify-content: center;
}
.m-about__item-icon svg { width: 18px; height: 18px; }
.m-about__item strong { font-weight: 700; font-size: 0.95rem; color: #fff; display: block; margin-bottom: 3px; }
.m-about__item p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.m-about__panel { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.m-about__stat-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); padding: 2rem; transition: all 0.3s;
}
.m-about__stat-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.m-about__stat-num {
    font-family: var(--font-heading); font-size: 3rem;
    color: var(--accent-light); line-height: 1; display: block; margin-bottom: 6px;
}
.m-about__stat-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.m-about__stat-desc { font-size: 0.78rem; color: rgba(255,255,255,0.32); margin-top: 6px; line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   FAHRZEUGE
═══════════════════════════════════════════════════════ */
.m-vehicles { padding: 6rem 2.5rem; background: var(--ivory); }
.m-vehicles__inner { max-width: 1400px; margin: 0 auto; }
.m-vehicles__list {
    display: flex; flex-direction: column; gap: 1px;
    border: 1px solid var(--ivory-dark); border-radius: var(--radius-md);
    overflow: hidden; margin-top: 2rem;
}
.m-veh-row {
    display: grid; grid-template-columns: 90px 1fr auto;
    background: #fff; border-bottom: 1px solid var(--ivory-dark);
    transition: background 0.25s;
}
.m-veh-row:last-child { border-bottom: none; }
.m-veh-row:hover { background: var(--ivory); }
.m-veh-row--featured { background: var(--ivory); }
.m-veh-row__ilu {
    background: var(--primary-pale); display: flex; align-items: center;
    justify-content: center; padding: 1rem 0.8rem; min-height: 100px;
}
.m-veh-row--featured .m-veh-row__ilu { background: var(--accent-pale); }
.m-veh-row__ilu svg { width: 54px; height: 35px; color: var(--primary); }
.m-veh-row__info { padding: 1.5rem 2rem; }
.m-veh-row__cat {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent); font-weight: 700; display: block; margin-bottom: 4px;
}
.m-veh-row__cat--accent { color: var(--primary); }
.m-veh-row__name {
    font-family: var(--font-heading); font-size: 1.2rem;
    font-weight: 400; margin-bottom: 4px;
}
.m-veh-row__ex { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.m-veh-row__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.m-veh-tag {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--ivory-mid); border: 1px solid var(--ivory-dark);
    padding: 3px 10px; border-radius: 40px;
    font-size: 0.72rem; color: var(--text-mid); font-weight: 600;
}
.m-veh-row__price { padding: 1.5rem 2rem; text-align: right; white-space: nowrap; }
.m-veh-row__from { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; display: block; margin-bottom: 3px; }
.m-veh-row__amt { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); line-height: 1; }
.m-veh-row__amt--accent { color: var(--accent); }


/* ═══════════════════════════════════════════════════════
   BUCHUNGSABLAUF
═══════════════════════════════════════════════════════ */
.m-process { padding: 6rem 2.5rem; background: #fff; }
.m-process__inner { max-width: 1400px; margin: 0 auto; }
.m-process__steps {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
    border-left: 1px solid var(--ivory-dark); margin-top: 2rem;
}
.m-process__step {
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    border: 1px solid var(--ivory-dark); border-left: none;
    transition: background 0.25s;
}
.m-process__step:hover { background: var(--primary-pale); }
.m-process__step-num {
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 400;
    color: var(--ivory-dark); line-height: 1; margin-bottom: 1.2rem;
    display: block; transition: color 0.3s;
}
.m-process__step:hover .m-process__step-num { color: var(--primary); }
.m-process__step-title {
    font-family: var(--font-heading); font-size: 1.1rem;
    color: var(--text); margin-bottom: 0.5rem; font-weight: 400;
}
.m-process__step-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }


/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.m-faq { padding: 6rem 2.5rem; background: var(--ivory); }
.m-faq__inner { max-width: 860px; margin: 0 auto; }
.m-faq__list { border-top: 1px solid var(--ivory-dark); }
.m-faq__item { border-bottom: 1px solid var(--ivory-dark); }
.m-faq__q {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 1.4rem 0; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    color: var(--text); text-align: left; transition: color 0.2s;
}
.m-faq__q:hover { color: var(--primary); }
.m-faq__icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    border: 1.5px solid var(--ivory-dark); display: flex;
    align-items: center; justify-content: center;
    color: var(--text-muted); transition: all 0.3s;
}
.m-faq__item--open .m-faq__icon { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }
.m-faq__icon svg { width: 14px; height: 14px; }
.m-faq__a {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
    padding: 0;
}
.m-faq__item--open .m-faq__a { max-height: 300px; padding-bottom: 1.4rem; }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.m-footer {
    background: var(--primary); padding: 5rem 2.5rem 2.5rem;
    font-family: var(--font-body);
}
.m-footer__inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.m-footer__logo-img { height: 44px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.m-footer__logo-text {
    font-family: var(--font-heading); font-size: 1.4rem;
    color: #fff; font-weight: 400; display: block; margin-bottom: 1rem;
}
.m-footer__about { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.85; max-width: 260px; }
.m-footer__social { display: flex; gap: 12px; margin-top: 1.2rem; }
.m-footer__social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.m-footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.m-footer__social svg { width: 14px; height: 14px; }
.m-footer__col-title {
    font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent-light); font-weight: 700; margin-bottom: 1.3rem; display: block;
}
.m-footer__col ul { list-style: none; }
.m-footer__col ul li + li { margin-top: 0.65rem; }
.m-footer__col ul li a,
.m-footer__col ul li span {
    font-size: 0.85rem; color: rgba(255,255,255,0.48);
    text-decoration: none; transition: color 0.2s;
}
.m-footer__col ul li a:hover { color: rgba(255,255,255,0.9); }
.m-footer__bottom {
    max-width: 1400px; margin: 2rem auto 0;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.m-footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.m-footer__legal { display: flex; gap: 1.5rem; }
.m-footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.m-footer__legal a:hover { color: rgba(255,255,255,0.85); }


/* ═══════════════════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════════════════ */
.m-floating {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
    display: flex; flex-direction: column; gap: 10px;
}
.m-float-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.m-float-phone { background: var(--primary); color: #fff; }
.m-float-wa    { background: #25D366; color: #fff; }
.m-float-btn:hover { transform: scale(1.1); }
.m-float-btn svg { width: 22px; height: 22px; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .m-services__grid       { grid-template-columns: repeat(2,1fr); }
    .m-process__steps       { grid-template-columns: repeat(2,1fr); }
    .m-about__inner         { grid-template-columns: 1fr; gap: 3rem; }
    .m-footer__inner        { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .m-header__inner    { height: 65px; padding: 0 1.2rem; }
    .m-header__nav {
        display: none; position: absolute; top: 65px; left: 0; right: 0;
        flex-direction: column; align-items: flex-start;
        padding: 1rem 1.2rem; border-bottom: 1px solid var(--border);
    }
    .m-header--solid .m-header__nav { background: var(--ivory); box-shadow: var(--shadow-md); }
    .m-header:not(.m-header--solid) .m-header__nav { background: var(--primary); }
    .m-header__nav--open { display: flex; }
    .m-header__nav a { width: 100%; padding: 0.7rem 0.5rem; }
    .m-header__toggle  { display: flex; }
    .m-header__cta     { display: none; }
    .m-hero__title     { font-size: 3rem; }
    .m-hero__stats     { flex-direction: column; max-width: 280px; gap: 1px; }
    .m-hero__stat      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .m-hero__stat:last-child { border-bottom: none; }
    .m-booking-strip-wrapper { padding: 0 1rem 3rem; }
    .m-booking-strip__header { padding: 1rem 1.2rem; }
    .m-booking-strip__body   { padding: 1.5rem 1.2rem; }
    .m-services        { padding: 4rem 1.2rem; }
    .m-services__grid  { grid-template-columns: 1fr; }
    .m-section-header  { flex-direction: column; align-items: flex-start; }
    .m-about           { padding: 4rem 1.2rem; }
    .m-about__panel    { display: grid; grid-template-columns: 1fr 1fr; }
    .m-vehicles        { padding: 4rem 1.2rem; }
    .m-veh-row         { grid-template-columns: 70px 1fr; }
    .m-veh-row__price  { display: none; }
    .m-process         { padding: 4rem 1.2rem; }
    .m-process__steps  { grid-template-columns: 1fr; }
    .m-process__step   { border-left: 1px solid var(--ivory-dark); }
    .m-faq             { padding: 4rem 1.2rem; }
    .m-footer          { padding: 3rem 1.2rem 1.5rem; }
    .m-footer__inner   { grid-template-columns: 1fr; gap: 2rem; }
    .m-footer__bottom  { flex-direction: column; text-align: center; gap: 0.8rem; }
    .m-floating        { bottom: 1.2rem; right: 1.2rem; }
}
