/* ================================================================
   GOFLY TRANSFERS – theme.css
   Weiß + Blau + Mintgrün
   CSS Custom Properties werden über app.blade.php injiziert.
   Präfix aller Klassen: gf-
================================================================ */

/* ── Statische Fallback-Werte ── */
:root {
    --primary:       #0054E3;
    --primary-dark:  #0040B8;
    --secondary:     #00C896;
    --font-body:     'Nunito', sans-serif;
    --font-heading:  'Sora', sans-serif;

    /* Interne Ableitungen */
    --primary-light:    #E8F0FF;
    --primary-mid:      #C2D4FF;
    --secondary-light:  #E0FBF3;
    --dark:             #0F1923;
    --dark-mid:         #1E2D3D;
    --text:             #1A2332;
    --text-muted:       #6B7C93;
    --text-light:       #A0AEBA;
    --bg:               #FFFFFF;
    --bg-soft:          #F5F7FA;
    --bg-alt:           #EEF2FF;
    --border:           #E2E8F0;
    --shadow-sm:        0 2px 8px rgba(0,84,227,0.08);
    --shadow-md:        0 8px 30px rgba(0,84,227,0.12);
    --shadow-lg:        0 20px 60px rgba(0,84,227,0.15);
    --radius-sm:        8px;
    --radius-md:        14px;
    --radius-lg:        22px;
    --radius-xl:        32px;
}

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


/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.gf-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.gf-header--scrolled { box-shadow: var(--shadow-md); }
.gf-header__inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 2rem; height: 72px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}
.gf-header__logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.gf-header__logo-img { height: 40px; width: auto; object-fit: contain; }
.gf-header__logo-icon {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gf-header__logo-icon svg { width: 20px; height: 20px; }
.gf-header__logo-name {
    font-family: var(--font-heading); font-size: 1.2rem;
    font-weight: 700; color: var(--dark); letter-spacing: -0.02em;
}
.gf-header__nav { display: flex; align-items: center; gap: 0; }
.gf-header__nav a {
    display: block; padding: 0.5rem 0.9rem; font-size: 0.88rem;
    font-weight: 600; color: var(--text-muted);
    text-decoration: none; border-radius: var(--radius-sm); transition: all 0.2s;
}
.gf-header__nav a:hover { color: var(--primary); background: var(--primary-light); }
.gf-header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.gf-lang-group {
    display: flex; background: var(--bg-soft);
    border-radius: var(--radius-sm); padding: 3px; gap: 2px;
}
.gf-lang-btn {
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; color: var(--text-muted);
    padding: 5px 10px; border-radius: 6px; transition: all 0.2s;
}
.gf-lang-btn:hover, .gf-lang-btn.active {
    background: #fff; color: var(--primary); box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.gf-header__cta {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--primary); color: #fff;
    padding: 0.6rem 1.3rem; border-radius: var(--radius-xl);
    font-family: var(--font-body); font-size: 0.83rem; font-weight: 700;
    text-decoration: none; transition: all 0.25s; white-space: nowrap;
}
.gf-header__cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.gf-header__cta svg { width: 14px; height: 14px; }
.gf-header__toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.gf-header__toggle span {
    display: block; width: 24px; height: 2.5px;
    background: var(--dark); border-radius: 3px; transition: all 0.3s;
}
.gf-header__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.gf-header__toggle--active span:nth-child(2) { opacity: 0; }
.gf-header__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.gf-hero {
    min-height: 100vh; padding-top: 72px;
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    background: var(--bg);
}
.gf-hero__blob-1 {
    position: absolute; top: -80px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, var(--primary-mid) 0%, transparent 70%);
    opacity: 0.4; pointer-events: none; z-index: 0;
}
.gf-hero__blob-2 {
    position: absolute; bottom: -60px; left: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.gf-hero__dots {
    position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background-image: radial-gradient(circle, var(--primary-mid) 1px, transparent 1px);
    background-size: 28px 28px; opacity: 0.25; z-index: 0; pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}
.gf-hero__inner {
    max-width: 1280px; margin: 0 auto; width: 100%;
    padding: 5rem 2rem; display: grid;
    grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
.gf-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--secondary-light); color: #059669;
    border: 1px solid rgba(0,200,150,0.3);
    padding: 6px 14px; border-radius: var(--radius-xl);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 1.5rem;
}
.gf-hero__badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #059669; flex-shrink: 0;
    animation: gf-pulse 2s ease-in-out infinite;
}
@keyframes gf-pulse {
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:0.6;transform:scale(0.8)}
}
.gf-hero__title {
    font-family: var(--font-heading); font-size: clamp(2.4rem,4.5vw,3.8rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
    color: var(--dark); margin-bottom: 1.4rem;
}
.gf-hero__highlight {
    color: var(--primary); position: relative; display: inline-block;
}
.gf-hero__highlight::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.gf-hero__subtitle {
    font-size: 1.05rem; line-height: 1.8; color: var(--text-muted);
    max-width: 460px; margin-bottom: 2rem;
}
.gf-hero__features { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gf-hero__feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 600; color: var(--text);
}
.gf-feat-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gf-feat-icon svg { width: 16px; height: 16px; }
.gf-hero__cta-row { display: flex; gap: 12px; align-items: center; }
.gf-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff;
    padding: 0.9rem 2rem; border-radius: var(--radius-xl);
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,84,227,0.3);
}
.gf-btn-primary:hover {
    background: var(--primary-dark); transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,84,227,0.4);
}
.gf-btn-primary svg { width: 18px; height: 18px; transition: transform 0.2s; }
.gf-btn-primary:hover svg { transform: translateX(3px); }
.gf-btn-ghost {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--text-muted); font-size: 0.9rem; font-weight: 600;
    text-decoration: none; transition: color 0.2s;
}
.gf-btn-ghost:hover { color: var(--primary); }


/* ═══════════════════════════════════════════════════════
   BOOKING CARD
═══════════════════════════════════════════════════════ */
.gf-booking-card {
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 2.4rem;
    border: 1px solid var(--border);
}
.gf-booking-card__pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-light); color: var(--primary);
    padding: 6px 14px; border-radius: var(--radius-xl);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}
.gf-booking-card__pill svg { width: 13px; height: 13px; }
.gf-booking-card__title {
    font-family: var(--font-heading); font-size: 1.6rem;
    font-weight: 700; color: var(--dark); margin-bottom: 4px; letter-spacing: -0.02em;
}
.gf-booking-card__sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.6rem; }
.gf-booking-card__trust {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 1rem;
}
.gf-trust-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.74rem; color: var(--text-light); font-weight: 600;
}
.gf-trust-item svg { width: 13px; height: 13px; color: var(--secondary); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   gf-input / gf-btn
   Diese Klassen werden als inputClass / buttonClass
   an <x-frontend.booking-form /> übergeben.
────────────────────────────────────────────────────── */
.gf-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.gf-input::placeholder { color: var(--text-light); }
.gf-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,84,227,0.1);
}
.gf-input:focus-visible { outline: 2px solid var(--primary); outline-offset: 1px; }
select.gf-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='%236B7C93' 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.gf-input option { background: #fff; }

.gf-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2B6EFD 100%);
    border: none; border-radius: var(--radius-xl);
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
    color: #fff; cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,84,227,0.35);
    margin-top: 1rem;
}
.gf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,84,227,0.45);
}
.gf-btn:active { transform: translateY(0); }
.gf-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }


/* ═══════════════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════════════ */
.gf-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-light); color: var(--primary);
    padding: 6px 16px; border-radius: var(--radius-xl);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 1rem;
}
.gf-section-title {
    font-family: var(--font-heading); font-size: clamp(1.8rem,3vw,2.6rem);
    font-weight: 700; letter-spacing: -0.02em; color: var(--dark);
}
.gf-section-title span { color: var(--primary); }
.gf-section-header {
    max-width: 1280px; margin: 0 auto 3rem;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.gf-section-header--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.gf-text-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;
}
.gf-text-link:hover { gap: 10px; }
.gf-text-link svg { width: 16px; height: 16px; }

/* Scroll Reveal */
.gf-how__step, .gf-why-card, .gf-v-card {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.gf-revealed { opacity: 1 !important; transform: translateY(0) !important; }


/* ═══════════════════════════════════════════════════════
   SO FUNKTIONIERTS
═══════════════════════════════════════════════════════ */
.gf-how { padding: 6rem 2rem; background: var(--bg-soft); }
.gf-how__inner { max-width: 1280px; margin: 0 auto; }
.gf-how__steps {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
    margin-top: 2rem; position: relative;
}
.gf-how__steps::before {
    content: ''; position: absolute;
    top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
    height: 2px; background: var(--primary-mid); z-index: 0;
}
.gf-how__step { position: relative; z-index: 1; text-align: center; }
.gf-how__step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: #fff; border: 3px solid var(--primary-mid);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
    color: var(--primary); transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.gf-how__step:hover .gf-how__step-num {
    background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.1);
}
.gf-how__step-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.gf-how__step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   WARUM WIR
═══════════════════════════════════════════════════════ */
.gf-why { padding: 6rem 2rem; background: #fff; }
.gf-why__inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.gf-why__desc { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin: 1.2rem 0 2rem; max-width: 400px; }
.gf-stats-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.gf-stat__num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; display: block; }
.gf-stat__label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; display: block; }
.gf-why__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gf-why-card {
    background: var(--bg-soft); border-radius: var(--radius-md);
    padding: 1.5rem; transition: all 0.3s; cursor: default;
}
.gf-why-card:hover { background: var(--primary-light); transform: translateY(-2px); }
.gf-why-card__icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: #fff; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; box-shadow: var(--shadow-sm);
}
.gf-why-card__icon svg { width: 22px; height: 22px; }
.gf-why-card__title { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.gf-why-card__desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   FAHRZEUGE
═══════════════════════════════════════════════════════ */
.gf-vehicles { padding: 6rem 2rem; background: var(--bg-soft); }
.gf-vehicles__inner { max-width: 1280px; margin: 0 auto; }
.gf-vehicles__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1rem; }
.gf-v-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border); transition: all 0.35s;
}
.gf-v-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.gf-v-card--featured { border-color: var(--primary); }
.gf-v-card__img {
    height: 160px; background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.gf-v-card__img--primary { background: var(--primary-light); }
.gf-v-card__img svg { width: 70px; height: auto; color: var(--primary-mid); }
.gf-v-card__tag {
    position: absolute; top: 12px; left: 12px;
    background: #fff; color: var(--primary);
    padding: 4px 12px; border-radius: var(--radius-xl);
    font-size: 0.72rem; font-weight: 700;
    box-shadow: var(--shadow-sm); border: 1px solid var(--primary-mid);
}
.gf-v-card__tag--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.gf-v-card__body { padding: 1.4rem; }
.gf-v-card__name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.gf-v-card__ex { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.gf-v-card__pills { display: flex; gap: 6px; flex-wrap: wrap; }
.gf-pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--bg-soft); border-radius: var(--radius-xl);
    padding: 4px 10px; font-size: 0.76rem; font-weight: 600; color: var(--text-muted);
}
.gf-v-card__price-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.gf-v-card__from { font-size: 0.78rem; color: var(--text-muted); }
.gf-v-card__price { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--primary); }


/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.gf-cta-banner { padding: 0 2rem 5rem; background: #fff; }
.gf-cta-banner__inner {
    max-width: 1280px; margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, #2B6EFD 100%);
    border-radius: var(--radius-lg); padding: 3.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; position: relative; overflow: hidden;
}
.gf-cta-banner__inner::before {
    content: ''; position: absolute; top: -40px; right: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.06); pointer-events: none;
}
.gf-cta-banner__title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.gf-cta-banner__sub { font-size: 0.95rem; color: rgba(255,255,255,0.78); }
.gf-cta-banner__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--primary);
    padding: 0.9rem 2rem; border-radius: var(--radius-xl);
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
    text-decoration: none; transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
}
.gf-cta-banner__btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.gf-footer { background: var(--dark); padding: 4rem 2rem 2rem; font-family: var(--font-body); }
.gf-footer__inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gf-footer__logo-img { height: 38px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.gf-footer__logo-name {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
    color: #fff; display: block; margin-bottom: 1rem;
}
.gf-footer__about { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; }
.gf-footer__social { display: flex; gap: 12px; margin-top: 1.2rem; }
.gf-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;
}
.gf-footer__social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.gf-footer__social svg { width: 14px; height: 14px; }
.gf-footer__col h4 {
    font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.38); margin-bottom: 1.2rem; display: block;
}
.gf-footer__col ul { list-style: none; }
.gf-footer__col ul li + li { margin-top: 0.65rem; }
.gf-footer__col ul li a,
.gf-footer__col ul li span { font-size: 0.88rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.gf-footer__col ul li a:hover { color: #fff; }
.gf-footer__bottom {
    max-width: 1280px; margin: 2rem auto 0;
    display: flex; justify-content: space-between; align-items: center;
}
.gf-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.gf-footer__legal { display: flex; gap: 1.5rem; }
.gf-footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.gf-footer__legal a:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════════════════ */
.gf-floating { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.gf-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 16px rgba(0,0,0,0.2); }
.gf-float-phone { background: var(--primary); color: #fff; }
.gf-float-wa    { background: #25D366; color: #fff; }
.gf-float-btn:hover { transform: scale(1.1) translateY(-2px); }
.gf-float-btn svg { width: 22px; height: 22px; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gf-why__inner       { grid-template-columns: 1fr; }
    .gf-footer__inner    { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .gf-how__steps       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .gf-how__steps::before { display: none; }
    .gf-vehicles__grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .gf-header__inner    { height: 65px; gap: 1rem; padding: 0 1.2rem; }
    .gf-header__nav {
        display: none; position: absolute; top: 65px; left: 0; right: 0;
        flex-direction: column; background: #fff; padding: 1rem 1.2rem;
        border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    }
    .gf-header__nav--open { display: flex; }
    .gf-header__nav a { width: 100%; padding: 0.8rem 0.5rem; }
    .gf-header__toggle  { display: flex; }
    .gf-hero__inner     { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.2rem 4rem; }
    .gf-hero__title     { font-size: 2.2rem; }
    .gf-hero__cta-row   { flex-wrap: wrap; }
    .gf-how__steps      { grid-template-columns: 1fr; }
    .gf-why__cards      { grid-template-columns: 1fr; }
    .gf-vehicles__grid  { grid-template-columns: 1fr; }
    .gf-cta-banner      { padding: 0 1.2rem 4rem; }
    .gf-cta-banner__inner { flex-direction: column; text-align: center; padding: 2rem; }
    .gf-footer__inner   { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.2rem 2rem; }
    .gf-footer          { padding: 3rem 1.2rem 1.5rem; }
    .gf-footer__bottom  { flex-direction: column; gap: 0.8rem; text-align: center; padding: 0 1.2rem; }
    .gf-section-header  { flex-direction: column; align-items: flex-start; }
}
