/* =============================================
   NEXFRAME TAXI — Premium Design System v3
   Čierna · biela · zlato/meď · mobile-first
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Zlatá / medená — značka */
    --gold:        #F0B429;
    --gold-light:  #FFD166;
    --copper:      #C77B3B;
    --gold-dim:    rgba(240, 180, 41, 0.14);

    /* Čierna / antracit */
    --black-deep:  #080808;
    --black-mid:   #111111;
    --black-card:  #181818;
    --charcoal:    #2A2A2A;
    --smoke:       #3D3D3D;

    /* Svetlé plochy */
    --ice:         #F8F8F6;
    --ice-warm:    #F2F0EB;
    --muted:       #8A8A8A;
    --white:       #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --radius-sm:   6px;
    --radius-md:   14px;
    --radius-lg:   24px;

    --transition:  all 0.36s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow-gold:   0 0 0 1px rgba(240,180,41,0.18), 0 8px 32px rgba(240,180,41,0.12);
    --grad-gold:   linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--copper));
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--black-deep);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); text-align: center; margin-bottom: 2.8rem; }

.section-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

/* ═══════════════════════════ HEADER ═══════════════════════════ */
header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    min-height: 72px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(240, 180, 41, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}
.logo:hover { opacity: 0.85; }
.logo-img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--black-mid);
}
.logo span { color: var(--gold); }

nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
nav a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    transition: var(--transition);
}
nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

#lang-toggle {
    background: var(--gold);
    border: none;
    color: var(--black-deep);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: var(--transition);
    margin-left: 0.4rem;
}
#lang-toggle:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    background: var(--gold);
    color: var(--black-deep);
    padding: 0.9rem 1.9rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(240,180,41,0.3);
    white-space: nowrap;
}
.btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,180,41,0.42); }
.btn svg { width: 18px; height: 18px; }

.btn-outline {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.28);
    box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.13); box-shadow: none; transform: translateY(-2px); }

.btn-gdpr {
    padding: 0.75rem 1.4rem;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.btn-gdpr:hover {
    background: rgba(255,255,255,0.20);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-wa {
    background: #25D366;
    color: #06351b;
    box-shadow: 0 4px 20px rgba(37,211,102,0.28);
}
.btn-wa:hover { background: #34e57a; box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

.btn-block { width: 100%; margin-top: auto; }

/* ═══════════════════════════ PDF GALLERY ═══════════════════════════ */
.pdf-docs {
    padding-top: 2rem;
}

.pdf-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    width: 115%;
    margin: 2rem auto 0;
    align-items: start;
}

.pdf-card {
    display: block;
    width: 100%;
    padding: 0 0.8rem;
    box-sizing: border-box;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: none;
    box-shadow: none;
    cursor: default;
}

.pdf-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.pdf-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 1600px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    transform: none;
}

.pdf-card-body {
    padding: 1rem 0 0;
}

.pdf-card-body h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.pdf-card-body p {
    color: rgba(255,255,255,0.7);
    font-size: 0.94rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .pdf-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .pdf-card img {
        height: 280px;
        transform: none;
    }
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 7rem 5% 4rem;
    overflow: hidden;
    background: var(--black-deep);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: var(--black-deep) url('Photos/passat-black.png') right center / cover no-repeat;
    background-position: 78% center;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(8,8,8,0.97) 30%, rgba(8,8,8,0.82) 55%, rgba(8,8,8,0.45) 100%);
}
.hero-bg::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    left: clamp(320px, 44vw, 660px);
    width: 1.5px;
    background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold-light) 60%, transparent);
    opacity: 0.2;
}

.hero-content { position: relative; z-index: 1; max-width: 660px; width: 100%; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(240,180,41,0.12);
    border: 1px solid rgba(240,180,41,0.28);
    border-radius: 999px;
    padding: 0.42rem 1rem 0.42rem 0.6rem;
    margin-bottom: 1.8rem;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 8px var(--gold); flex-shrink: 0;
}
.hero-badge span {
    font-size: 0.74rem; font-weight: 600; letter-spacing: 0.13em;
    text-transform: uppercase; color: var(--gold);
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.02;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero h1 .gold-line { color: var(--gold); }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.66);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.6rem; }

.hero-stats {
    display: flex; flex-wrap: wrap; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.8rem;
}
.stat-item {
    padding-right: 2.2rem; margin-right: 2.2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-num {
    display: block; font-family: var(--font-display);
    font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-top: 0.35rem; display: block;
}

/* ═══════════════════════════ SECTION SHELL ═══════════════════════════ */
.section { padding: 5.5rem 5%; }
.section-dark  { background: var(--black-deep); }
.section-mid   { background: #0E0E0E; }
.wrap { max-width: 1180px; margin: 0 auto; }

/* ═══════════════════════════ SLUŽBY ═══════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 1.2rem;
}
.service-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.6rem;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    position: relative; overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,180,41,0.25);
    box-shadow: 0 18px 48px rgba(0,0,0,0.5), var(--glow-gold);
}
.service-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.22);
    margin-bottom: 1.1rem;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.service-card h3 {
    font-family: var(--font-display); font-size: 1.2rem;
    color: var(--white); margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.service-card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; }
.service-card-link:hover { color: var(--gold-light); }

/* ═══════════════════════════ TRANSFERY (pricing) ═══════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 1.1rem;
}
.price-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: flex; flex-direction: column; gap: 0.8rem;
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    position: relative; overflow: hidden;
}
.price-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.32s ease;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(240,180,41,0.22); box-shadow: 0 18px 48px rgba(0,0,0,0.45); }
.price-card:hover::before { opacity: 1; }
.price-card h3 {
    font-family: var(--font-body); font-size: 1.08rem; font-weight: 700;
    color: var(--white); letter-spacing: 0.03em;
    display: flex; align-items: center; gap: 0.45rem;
}
.price-card h3 svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.price-values {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.6rem 0.9rem;
    background: rgba(255,255,255,0.035);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}
.price-values span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.price-values small { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.price-note { font-size: 0.86rem; color: rgba(255,255,255,0.45); }
.transfers-foot { text-align: center; margin-top: 2rem; font-size: 0.92rem; color: rgba(255,255,255,0.55); }

/* ═══════════════════════════ VOZOVÝ PARK ═══════════════════════════ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.car-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
    display: flex; flex-direction: column;
}
.car-card:hover {
    transform: translateY(-7px);
    border-color: rgba(240,180,41,0.22);
    box-shadow: 0 22px 52px rgba(0,0,0,0.55), var(--glow-gold);
}
.car-img-wrap { position: relative; overflow: hidden; background: #0a0a0a; }
.car-img-wrap img {
    width: 100%; height: 210px; object-fit: cover; display: block;
    transition: transform 0.55s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.05); }
.car-img-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-gold);
}
.car-tag {
    position: absolute; top: 0.9rem; left: 0.9rem;
    background: rgba(8,8,8,0.78); backdrop-filter: blur(6px);
    border: 1px solid rgba(240,180,41,0.3);
    color: var(--gold);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 999px;
}
.car-body { padding: 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.car-body h3 { font-family: var(--font-display); font-size: 1.18rem; color: var(--white); margin-bottom: 0.35rem; }
.car-body p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.car-spec { display: flex; gap: 1.1rem; margin-top: 0.9rem; flex-wrap: wrap; }
.car-spec span { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.car-spec svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.7; }

/* ═══════════════════════════ PREČO MY ═══════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.why-card {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.why-card:hover { border-color: rgba(240,180,41,0.22); transform: translateY(-3px); }
.why-ico {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    background: var(--grad-gold);
}
.why-ico svg { width: 22px; height: 22px; stroke: var(--black-deep); fill: none; stroke-width: 2; }
.why-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ═══════════════════════════ NAŠE VÝHODY (BENEFITS) ═══════════════════════════ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}
.benefit-card {
    background: var(--black-card);
    border: 1.2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.38s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 180, 41, 0.28);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.45), var(--glow-gold);
    background: linear-gradient(135deg, var(--black-card) 0%, rgba(240, 180, 41, 0.04) 100%);
}
.benefit-card:hover::before {
    opacity: 1;
}
.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotateY(5deg);
    box-shadow: 0 12px 36px rgba(240, 180, 41, 0.25);
}
.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--grad-gold);
    margin-bottom: 0.4rem;
    transition: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}
.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--black-deep);
    fill: none;
    stroke-width: 1.6;
}
.benefit-icon svg[fill="currentColor"] {
    fill: var(--black-deep);
    stroke: none;
}
.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}
.benefit-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════ PODMIENKY / CENNÍK MESTO ═══════════════════════════ */
.cond-wrap { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 1.5rem; align-items: start; }

.tariff-card {
    background: var(--grad-gold);
    color: var(--black-deep);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
}
.tariff-card .t-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; }
.tariff-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0.3rem 0 1.2rem; }
.tariff-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.75rem 0; border-bottom: 1px solid rgba(8,8,8,0.18);
}
.tariff-row:last-of-type { border-bottom: none; }
.tariff-row b { font-weight: 600; font-size: 0.96rem; }
.tariff-row .t-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.tariff-note { margin-top: 1rem; font-size: 0.8rem; line-height: 1.55; opacity: 0.8; }

.rules-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
}
.rules-card > p.intro {
    font-weight: 600; color: var(--gold); font-size: 0.95rem; margin-bottom: 1.2rem;
    display: flex; gap: 0.55rem; align-items: center;
}
.rules-card > p.intro svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.7; flex-shrink: 0; }
.rules-list { list-style: none; counter-reset: r; display: grid; gap: 0.85rem; }
.rules-list li {
    counter-increment: r; position: relative; padding-left: 2.4rem;
    font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6;
}
.rules-list li::before {
    content: counter(r); position: absolute; left: 0; top: 0;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(240,180,41,0.12); border: 1px solid rgba(240,180,41,0.3);
    color: var(--gold); font-size: 0.78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.rules-list li strong { color: var(--white); }
.rules-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
.pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
    color: rgba(255,255,255,0.78);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem; border-radius: 999px;
}
.pill svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

/* ═══════════════════════════ KONTAKT ═══════════════════════════ */
.contact { position: relative; overflow: hidden; }
.contact::after {
    content: ''; position: absolute; bottom: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,180,41,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2rem; align-items: start; position: relative; z-index: 1; }

.contact-cards { display: grid; gap: 0.8rem; }
.contact-card {
    display: flex; align-items: center; gap: 1rem;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.3rem;
    text-decoration: none; color: var(--white);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover { border-color: rgba(240,180,41,0.3); transform: translateX(3px); }
.contact-card .c-ico {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.22);
}
.contact-card .c-ico svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.contact-card .c-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.contact-card .c-val { font-size: 0.98rem; font-weight: 600; color: var(--white); }

form { display: grid; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
input, textarea {
    width: 100%;
    padding: 1rem 1.15rem;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.32); }
input:focus, textarea:focus {
    outline: none; border-color: var(--gold);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(240,180,41,0.1);
}
textarea { resize: vertical; min-height: 120px; }

.captcha-box {
    display: grid; grid-template-columns: 1fr 120px; gap: 1rem; align-items: center;
    padding: 1rem 1.15rem;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}
.captcha-box label { color: rgba(255,255,255,0.6); font-size: 0.86rem; font-weight: 500; }
.captcha-box input {
    background: rgba(255,255,255,0.94); color: var(--black-deep);
    border-color: transparent; text-align: center; font-weight: 700;
    border-radius: var(--radius-sm); padding: 0.65rem;
}
.captcha-box input:focus { box-shadow: 0 0 0 3px rgba(240,180,41,0.38); }

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer {
    padding: 2.4rem 5%;
    background: #050505;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer p { color: rgba(255,255,255,0.3); font-size: 0.83rem; }
.footer-logo {
    color: rgba(255,255,255,0.4); font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    display: flex; align-items: center; gap: 0.4rem; text-decoration: none;
}
.footer-gold { color: var(--gold); }
footer a.foot-link { color: rgba(255,255,255,0.3); font-size: 0.83rem; text-decoration: none; }
footer a.foot-link:hover { color: var(--gold); }

/* ═══════════════════════════ SCROLL ANIM ═══════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in  { transform: scale(0.97); }
.slide-up { transform: translateY(30px); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ═══════════════════════════ FLOATING WHATSAPP ═══════════════════════════ */
.wa-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 1100;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
    transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 980px) {
    .cond-wrap { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    header { flex-wrap: wrap; padding: 0.7rem 4%; gap: 0.5rem; }
    nav { width: 100%; justify-content: center; gap: 0.1rem; }
    nav a { font-size: 0.8rem; padding: 0.35rem 0.6rem; }
    .hero { padding-top: 8.5rem; text-align: left; }
    .hero-bg { background-position: 70% center; }
    .hero-bg::before { background: linear-gradient(180deg, rgba(8,8,8,0.9) 40%, rgba(8,8,8,0.78) 100%); }
    .hero-bg::after { display: none; }
    .hero-actions .btn { flex: 1 1 100%; }
    .stat-item { padding-right: 1.4rem; margin-right: 1.4rem; }
    .form-row { grid-template-columns: 1fr; }
    .captcha-box { grid-template-columns: 1fr; }
    footer { justify-content: center; text-align: center; }
    .section { padding: 4rem 6%; }
}
@media (prefers-reduced-motion: reduce) {
    *, .animate-on-scroll { transition: none !important; animation: none !important; }
}

/* ═══════════════════════════ PRIVACY PAGE (light) ═══════════════════════════ */
.priv-page { background: var(--white); color: var(--black-deep); }
.priv-hero { padding: 9rem 5% 5rem; background: var(--black-deep); position: relative; overflow: hidden; }
.priv-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('Photos/passat-black.png') center/cover no-repeat; opacity: 0.08;
}
.priv-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--gold-light) 65%, transparent); opacity: 0.5;
}
.priv-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.priv-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
}
.priv-eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }
.priv-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: var(--white); margin-bottom: 1rem; line-height: 1.1; }
.priv-hero h1 em { font-style: italic; color: var(--gold); }
.priv-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 500px; line-height: 1.75; }

.priv-chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 0.85rem; margin: 3rem 5% 0; }
.priv-chip { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-md); padding: 1.1rem 1.3rem; transition: box-shadow 0.28s ease; }
.priv-chip:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.priv-chip-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.priv-chip strong { font-size: 0.92rem; font-weight: 600; color: var(--black-deep); }
.priv-chip a { color: var(--copper); text-decoration: none; border-bottom: 1px solid rgba(199,123,59,0.3); }
.priv-chip a:hover { border-color: var(--copper); }

.priv-toc { margin: 2.5rem 5% 0; background: var(--ice-warm); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 2.2rem 2.4rem; }
.priv-toc-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.priv-toc-title::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.08); }
.priv-toc ol { list-style: none; counter-reset: toc; display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 0.5rem 1.5rem; }
.priv-toc li { counter-increment: toc; font-size: 0.88rem; color: var(--charcoal); display: flex; align-items: baseline; gap: 0.5rem; padding: 0.2rem 0; }
.priv-toc li::before { content: counter(toc, decimal-leading-zero); font-size: 0.68rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }

.priv-body { padding: 4rem 5% 6rem; max-width: 860px; }
.priv-section { margin-bottom: 3.2rem; padding-bottom: 3.2rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.priv-section:last-child { border-bottom: none; }
.priv-section-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.2rem; }
.priv-section-num { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--gold); border-radius: 999px; font-size: 0.72rem; font-weight: 700; color: var(--black-deep); flex-shrink: 0; }
.priv-section-head h2 { font-family: var(--font-display); font-size: 1.35rem; color: var(--black-deep); text-align: left; margin-bottom: 0; }
.priv-body h3 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 1.4rem 0 0.6rem; }
.priv-body p { font-size: 0.96rem; color: #4A4A4A; line-height: 1.85; margin-bottom: 0.55rem; }
.priv-body strong { color: var(--black-deep); }
.priv-body a { color: var(--copper); text-decoration: none; border-bottom: 1px solid rgba(199,123,59,0.3); transition: border-color 0.2s; }
.priv-body a:hover { border-color: var(--copper); }
.priv-list { margin: 0.5rem 0; }
.priv-list p { padding-left: 1.1rem; position: relative; }
.priv-list p::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.priv-highlight { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.22); border-radius: var(--radius-sm); padding: 0.55rem 1rem; margin: 0.5rem 0; font-size: 0.9rem; font-weight: 600; color: var(--black-deep); }
.priv-highlight-icon { color: var(--gold); font-size: 1rem; }

/* ═══════════════════════════ O NÁS (ABOUT) ═══════════════════════════ */
.about-hero {
    padding: 8.5rem 5% 4rem;
    background: var(--black-deep);
    position: relative; overflow: hidden;
}
.about-hero::after {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,180,41,0.07), transparent 70%);
    pointer-events: none;
}
.about-hero-grid {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 3rem; align-items: center;
    position: relative; z-index: 1;
}
.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    color: var(--white); line-height: 1.1; margin: 0.6rem 0 1.2rem;
}
.about-hero h1 em { font-style: italic; color: var(--gold); }
.about-lead { font-size: 1.08rem; color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 560px; }
.about-lead strong { color: var(--white); }

.about-portrait { position: relative; }
.about-portrait img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(240,180,41,0.25);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
    background: #0a0a0a;
}
.about-portrait::before {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 -90px 80px -40px rgba(8,8,8,0.85);
    pointer-events: none;
}
.about-portrait figcaption {
    position: absolute; left: 1.2rem; bottom: 1.2rem; right: 1.2rem; z-index: 2;
}
.about-portrait .pc-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.about-portrait .pc-role { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 0.15rem; }

/* stat highlights */
.about-highlights {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem; padding: 0 5% 1rem;
}
.ah-card {
    background: var(--black-card); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md); padding: 1.5rem 1.4rem;
}
.ah-card .ah-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ah-card .ah-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; line-height: 1.45; }

/* prose */
.about-prose { max-width: 820px; }
.about-prose p { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.9; margin-bottom: 1.1rem; }
.about-prose p strong { color: var(--white); }

/* feature/value lists */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 0.7rem; margin-top: 1rem; }
.feat-item {
    display: flex; align-items: center; gap: 0.75rem;
    background: var(--black-card); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); padding: 0.95rem 1.1rem;
    font-size: 0.94rem; color: rgba(255,255,255,0.82);
}
.feat-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* airports + 24h notice */
.airport-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.2rem 0 1.4rem; }
.airport-tag {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px; padding: 0.5rem 1rem;
    font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85);
}
.airport-tag svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.notice-24h {
    display: flex; align-items: center; gap: 0.85rem;
    background: var(--grad-gold); color: var(--black-deep);
    border-radius: var(--radius-md); padding: 1rem 1.3rem;
    font-weight: 600; font-size: 0.96rem; line-height: 1.4;
}
.notice-24h svg { width: 26px; height: 26px; stroke: var(--black-deep); fill: none; stroke-width: 2; flex-shrink: 0; }

@media (max-width: 860px) {
    .about-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-portrait { max-width: 360px; }
}

/* ═══════════════════════════ LOGO (wide image) ═══════════════════════════ */
.logo-img-wide {
    height: 46px; width: auto; max-width: 210px;
    object-fit: contain; display: block;
}
@media (max-width: 760px) { .logo-img-wide { height: 40px; max-width: 170px; } }

/* ═══════════════════════════ PRENÁJOM (RENTAL) ═══════════════════════════ */
.rent-hero {
    min-height: 78vh;
    padding: 9rem 5% 4rem;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: var(--black-deep);
}
.rent-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: var(--black-deep) url('Photos/wedding-2.png') center/cover no-repeat;
}
.rent-hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(8,8,8,0.96) 35%, rgba(8,8,8,0.72) 62%, rgba(8,8,8,0.42) 100%);
}
.rent-hero-inner { position: relative; z-index: 1; max-width: 660px; }
.rent-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
    color: var(--white); line-height: 1.1; margin: 0.7rem 0 1.1rem;
}
.rent-hero h1 em { font-style: italic; color: var(--gold); }
.rent-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 540px; margin-bottom: 1.8rem; }

/* big price card */
.rent-price-card {
    display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 1.4rem;
    background: var(--grad-gold); color: var(--black-deep);
    border-radius: var(--radius-lg); padding: 1.3rem 1.8rem; margin-bottom: 1.8rem;
}
.rent-price-card .rp-main { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.rent-price-card .rp-plus { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.rent-price-card .rp-note { width: 100%; font-size: 0.82rem; font-weight: 600; opacity: 0.82; margin-top: 0.3rem; }

/* two vehicle options sharing price */
.rent-cars { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.rent-occasions { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.4rem 0 0; }
.occasion-tag {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px; padding: 0.5rem 1rem;
    font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85);
}
.occasion-tag svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.car-price-row {
    display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.7rem;
    color: var(--gold); font-family: var(--font-display);
}
.car-price-row b { font-size: 1.5rem; }
.car-price-row span { font-size: 0.82rem; color: var(--muted); font-family: var(--font-body); }

/* ═══════════════════════════ GOOGLE RECENZIE ═══════════════════════════ */
.review-card {
    display: flex; align-items: center; gap: 1.4rem;
    background: var(--black-card);
    border: 1px solid rgba(240,180,41,0.22);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    margin-top: 0.8rem;
}
.review-qr {
    flex-shrink: 0; width: 104px; height: 104px;
    border-radius: var(--radius-md); padding: 7px;
    background: var(--white); display: block;
}
.review-qr img { width: 100%; height: 100%; display: block; object-fit: contain; }
.review-logo { flex-shrink: 0; width: 88px; height: 88px; display: block; }
.review-logo img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 0; background: transparent; padding: 0; }
.review-info { flex: 1; min-width: 0; }
.review-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; line-height: 1; margin-bottom: 0.4rem; }
.review-info h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: 0.25rem; }
.review-info p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 0.8rem; }
.btn-google {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: var(--white); color: #1a1a1a;
    padding: 0.7rem 1.3rem; border-radius: 999px;
    font-weight: 700; font-size: 0.88rem; text-decoration: none;
    transition: var(--transition); box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.btn-google:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,0.45); }
.btn-google svg { width: 18px; height: 18px; }
@media (max-width: 520px) {
    .review-card { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
    .review-logo { width: 71px; height: 71px; margin: 0 auto 0.6rem; }
}

/* ═══════════════════════════ REKLAMA NA VOZIDLÁCH ═══════════════════════════ */
.ad-hero-bg { background: var(--black-deep) url('Photos/passat-black.png') center/cover no-repeat !important; }
.price-card.best { border-color: rgba(240,180,41,0.45); box-shadow: 0 18px 48px rgba(0,0,0,0.45), var(--glow-gold); }
.price-card.best::before { opacity: 1; }
.price-best-badge {
    position: absolute; top: 0.9rem; right: 0.9rem;
    background: var(--grad-gold); color: var(--black-deep);
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.28rem 0.6rem; border-radius: 999px;
}
.ad-conditions {
    background: var(--black-card); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg); padding: 1.9rem; max-width: 860px; margin: 0 auto;
}
.ad-conditions p { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.85; margin-bottom: 0.9rem; }
.ad-conditions p:last-child { margin-bottom: 0; }
.ad-conditions strong { color: var(--white); }
.ad-note {
    display: flex; gap: 0.7rem; align-items: flex-start;
    background: rgba(240,180,41,0.08); border: 1px solid rgba(240,180,41,0.22);
    border-radius: var(--radius-md); padding: 1rem 1.2rem; margin-top: 1.2rem;
    font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.6;
}
.ad-note svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════ FORM — VÝBER TYPU ═══════════════════════════ */
.form-label {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 0.55rem;
}
.form-choices { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.choice span {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.6rem 1.1rem; border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600;
    transition: var(--transition);
}
.choice:hover span { border-color: rgba(240,180,41,0.4); color: var(--white); }
.choice input:checked + span {
    background: var(--grad-gold); color: var(--black-deep); border-color: transparent;
    box-shadow: 0 4px 18px rgba(240,180,41,0.28);
}
.choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(240,180,41,0.4); }

/* ═══════════════════════════ FORM — ÚSPEŠNÉ ODOSLANIE ═══════════════════════════ */
.form-success {
    background: var(--black-card);
    border: 1px solid rgba(240,180,41,0.3);
    border-radius: var(--radius-lg);
    padding: 2.6rem 2rem; text-align: center;
}
.form-success .fs-ico {
    width: 62px; height: 62px; border-radius: 50%;
    margin: 0 auto 1.1rem; display: flex; align-items: center; justify-content: center;
    background: var(--grad-gold);
}
.form-success .fs-ico svg { width: 30px; height: 30px; stroke: var(--black-deep); fill: none; stroke-width: 2.5; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.6; }

/* ═══════════════════════════ TRANSFERY (airport subpage) ═══════════════════════════ */
.tr-hero {
    padding: 8.5rem 5% 2.5rem;
    background: var(--black-deep);
    position: relative; overflow: hidden;
}
.tr-hero::after {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,180,41,0.07), transparent 70%);
    pointer-events: none;
}
.tr-hero-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.tr-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    color: var(--white); line-height: 1.12; margin: 0.6rem 0 1rem;
}
.tr-hero h1 em { font-style: italic; color: var(--gold); }
.tr-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.66); line-height: 1.75; max-width: 620px; }
.tr-hero-sub strong { color: var(--white); }

/* selector */
.tr-select { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.tr-select-label {
    display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem;
}
.tr-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tr-pill {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82); font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    padding: 0.6rem 1.1rem; border-radius: 999px; transition: var(--transition);
}
.tr-pill svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.tr-pill:hover { border-color: rgba(240,180,41,0.4); color: var(--white); transform: translateY(-1px); }
.tr-pill.active {
    background: var(--grad-gold); color: var(--black-deep); border-color: transparent;
    box-shadow: 0 4px 18px rgba(240,180,41,0.28);
}
.tr-pill.active svg { stroke: var(--black-deep); }

/* panel */
.tr-panel-wrap { max-width: 1180px; margin: 1.8rem auto 0; padding: 0 5%; }
.tr-panel {
    background: var(--black-card);
    border: 1px solid rgba(240,180,41,0.18);
    border-radius: var(--radius-lg);
    padding: 2.2rem; position: relative; overflow: hidden;
}
.tr-panel.hidden { display: none; }
.tr-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-gold);
}
.tr-panel-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.6rem; }
.tr-code {
    flex-shrink: 0; width: 58px; height: 58px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.04em;
    background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.3); color: var(--gold);
}
.tr-panel-head h2 {
    font-family: var(--font-display); font-size: 1.55rem; color: var(--white);
    text-align: left; margin: 0 0 0.15rem; line-height: 1.15;
}
.tr-panel-head .tr-sub { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

.tr-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 1.4rem; }
.tr-stat {
    background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); padding: 1.1rem 1.3rem;
    display: flex; flex-direction: column; gap: 0.35rem;
}
.tr-stat-ico { display: inline-flex; align-items: center; gap: 0.5rem; }
.tr-stat-ico svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.tr-stat-lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.tr-stat-num { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--white); line-height: 1.1; }

.tr-prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 0.9rem; margin-bottom: 1.4rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1); }
.tr-onrequest {
    grid-column: 1 / -1;
    background: rgba(240,180,41,0.08); border: 1px solid rgba(240,180,41,0.25);
    border-radius: var(--radius-md); padding: 1rem 1.3rem;
    font-weight: 600; color: var(--gold); font-size: 0.96rem; line-height: 1.5;
}
.tr-desc { font-size: 0.98rem; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 1.4rem; }

.tr-caps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.8rem; margin-bottom: 1.4rem; }
.tr-cap {
    background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); padding: 1rem 1.2rem;
}
.tr-cap-name { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; }
.tr-cap-specs { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.tr-cap-specs > span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.86rem; color: rgba(255,255,255,0.75); }
.tr-cap-specs svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.7; }

.tr-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.tr-note { max-width: 1180px; margin: 1.2rem auto 0; padding: 0 5%; font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ═══════════════════════════ SEO LANDING PAGES ═══════════════════════════ */
.route-page { background: var(--black-deep); }
.landing-hero { padding-bottom: 3.2rem; }
.landing-breadcrumb {
    display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center;
    font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 1.1rem;
}
.landing-breadcrumb a { color: var(--gold); text-decoration: none; }
.landing-breadcrumb a:hover { color: var(--gold-light); }
.landing-hero h1 { max-width: 900px; }
.landing-hero-lead { max-width: 760px; font-size: 1.06rem; line-height: 1.8; color: rgba(255,255,255,0.7); }
.landing-hero-lead strong { color: var(--white); }
.landing-price-strip {
    display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.8rem 0 0;
}
.landing-price-chip {
    display: flex; align-items: baseline; gap: 0.55rem;
    padding: 0.7rem 1rem; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(240,180,41,0.24);
}
.landing-price-chip strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); }
.landing-price-chip span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.landing-section { padding-top: 4.7rem; padding-bottom: 4.7rem; }
.landing-section h2 { text-align: left; margin-bottom: 1.25rem; }
.landing-copy { max-width: 800px; }
.landing-copy p { color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 1rem; }
.landing-copy p:last-child { margin-bottom: 0; }
.landing-copy strong { color: var(--white); }
.landing-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem;
    max-width: 980px;
}
.landing-card {
    background: var(--black-card); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg); padding: 1.6rem;
}
.landing-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.55rem; }
.landing-card p { color: rgba(255,255,255,0.62); font-size: 0.92rem; line-height: 1.7; }
.landing-card-label { color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.55rem; }
.landing-route-price {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem;
    max-width: 560px; margin: 1.4rem 0 1.7rem;
}
.landing-route-price .price-values { background: rgba(255,255,255,0.05); }
.landing-list { list-style: none; display: grid; gap: 0.65rem; margin-top: 1.2rem; }
.landing-list li { position: relative; padding-left: 1.35rem; color: rgba(255,255,255,0.68); line-height: 1.65; }
.landing-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.landing-faq { max-width: 900px; border-top: 1px solid rgba(255,255,255,0.1); }
.landing-faq details { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
.landing-faq summary { cursor: pointer; color: var(--white); font-weight: 700; padding-right: 1.5rem; }
.landing-faq p { color: rgba(255,255,255,0.64); line-height: 1.75; padding-top: 0.75rem; max-width: 780px; }
.landing-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    max-width: 980px; padding: 1.8rem; background: var(--grad-gold); color: var(--black-deep);
    border-radius: var(--radius-lg);
}
.landing-cta h2 { color: var(--black-deep); margin: 0 0 0.35rem; font-size: 1.7rem; }
.landing-cta p { color: rgba(8,8,8,0.72); line-height: 1.55; }
.landing-cta .btn { background: var(--black-deep); color: var(--white); box-shadow: none; flex-shrink: 0; }
.landing-cta .btn:hover { background: var(--black-mid); }
.landing-note { max-width: 900px; color: rgba(255,255,255,0.46); font-size: 0.86rem; line-height: 1.7; margin-top: 1.2rem; }
.operation-strip { background: var(--black-mid); border-top: 1px solid rgba(240,180,41,0.12); border-bottom: 1px solid rgba(240,180,41,0.12); padding: 1.15rem 5%; }
.operation-strip-inner { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.45rem 1.2rem; }
.operation-strip-title { color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.operation-strip-text { flex: 1 1 700px; min-width: 0; color: rgba(255,255,255,0.66); font-size: 0.88rem; line-height: 1.6; }
.operation-strip-text strong { color: var(--white); }

@media (max-width: 600px) {
    .tr-panel { padding: 1.6rem 1.3rem; }
    .tr-actions .btn { flex: 1 1 100%; }
    .landing-grid { grid-template-columns: 1fr; }
    .landing-cta { align-items: stretch; flex-direction: column; }
    .landing-cta .btn { width: 100%; }
}

/* ============================================================
   NEXFRAME TAXI — RESPONSIVE PATCH
   ============================================================ */
html{width:100%;min-width:0;overflow-x:clip;-webkit-text-size-adjust:100%}
body{width:100%;min-width:0;overflow-x:clip}
img,svg,video,canvas{max-width:100%}
a,button,input,textarea,select{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}
.wrap,.hero-content,.rent-hero-inner,.tr-hero-inner{min-width:0}
header{width:100%;max-width:100vw;padding-left:clamp(1rem,5vw,5%);padding-right:clamp(1rem,5vw,5%)}
.logo{min-width:0}.logo-img-wide{width:auto;max-width:min(210px,30vw);height:46px}nav{min-width:0}nav a,#lang-toggle{white-space:nowrap}nav a.active{color:var(--gold)}
.section,.wrap{width:100%;min-width:0}
.rent-hero{width:100%;min-height:78svh}.rent-hero-inner{width:min(100%,660px)}
.rent-hero h1,.rent-hero-sub,.service-card h3,.service-card p,.pdf-card-body h3,.pdf-card-body p,.ad-conditions p{overflow-wrap:anywhere}
.btn{max-width:100%;min-height:44px}
.rent-occasions,.form-choices,.airport-tags,.tr-pills{min-width:0}.occasion-tag{max-width:100%;overflow-wrap:anywhere;text-align:center}
.services-grid,.pricing-grid,.fleet-grid,.why-grid,.benefits-grid,.rent-cars,.tr-meta,.tr-prices,.tr-caps{width:100%;min-width:0}
.service-card,.price-card,.car-card,.why-card,.benefit-card{min-width:0}
.pdf-gallery{width:100%;max-width:100%;margin-left:auto;margin-right:auto;min-width:0}
.pdf-card{min-width:0;padding-left:0;padding-right:0}.pdf-card img,.pdf-image{width:100%;max-width:100%;height:auto;max-height:none;object-fit:contain}
.pdf-card-body,.ad-conditions{min-width:0}.ad-conditions{width:100%;max-width:860px}
footer{width:100%;max-width:100vw}footer p,footer a{overflow-wrap:anywhere}
.wa-float{right:max(14px,env(safe-area-inset-right));bottom:max(14px,env(safe-area-inset-bottom))}
@media(max-width:980px){header{min-height:68px}.rent-hero{padding-left:6%;padding-right:6%}.section{padding-left:6%;padding-right:6%}.pdf-gallery{grid-template-columns:1fr;gap:2rem}.pdf-card img,.pdf-image{height:auto;max-height:none}}
@media(max-width:760px){
header{position:fixed;min-height:0;padding:.65rem 1rem;display:flex;flex-direction:column;align-items:stretch;gap:.55rem}
.logo{justify-content:center;width:100%}.logo-img-wide{height:38px;max-width:min(175px,72vw)}
nav{width:100%;display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:.15rem}
nav a{font-size:.72rem;line-height:1.2;padding:.38rem .5rem}nav .btn-gdpr{padding:.42rem .65rem}#lang-toggle{margin-left:0;padding:.42rem .65rem;font-size:.72rem}
.rent-hero{min-height:100svh;padding:10.5rem 1rem 4rem;align-items:center}.rent-hero-bg{background-position:62% center}.rent-hero-bg::before{background:linear-gradient(180deg,rgba(8,8,8,.94) 0%,rgba(8,8,8,.82) 48%,rgba(8,8,8,.70) 100%)}
.rent-hero-inner{width:100%;max-width:680px;margin:0 auto}.rent-hero h1{font-size:clamp(2rem,10vw,3rem);line-height:1.08;margin-top:.6rem;margin-bottom:1rem}.rent-hero-sub{font-size:.96rem;line-height:1.65;margin-bottom:1.5rem}
.hero-actions{width:100%;margin-bottom:0}.hero-actions .btn{width:100%;flex:1 1 100%}
.section{padding:3.5rem 1rem}h2{font-size:clamp(1.7rem,8vw,2.35rem);margin-bottom:2rem}.section-eyebrow{font-size:.65rem;letter-spacing:.16em}
.services-grid,.pricing-grid,.fleet-grid,.why-grid,.benefits-grid,.rent-cars{grid-template-columns:1fr}
.service-card,.price-card,.benefit-card{padding:1.35rem;border-radius:18px}.rent-occasions{justify-content:center!important;gap:.5rem}.occasion-tag{flex:1 1 auto;justify-content:center;min-width:0;padding:.55rem .8rem;font-size:.82rem}
.ad-conditions{padding:1.35rem;border-radius:18px}.ad-note{align-items:flex-start;padding:.9rem 1rem}
.pdf-docs{padding-top:3.5rem}.pdf-gallery{grid-template-columns:1fr;gap:2.2rem;margin-top:1.5rem}.pdf-card{width:100%}.pdf-card img,.pdf-image{width:100%;height:auto;max-width:100%;max-height:none}.pdf-card-body{padding-top:.8rem}.pdf-card-body h3{font-size:1.15rem}.pdf-card-body p{font-size:.88rem}
footer{padding:2rem 1rem;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:.75rem}.wa-float{width:52px;height:52px}.wa-float svg{width:27px;height:27px}
}
@media(max-width:480px){
header{padding-left:.65rem;padding-right:.65rem}.logo-img-wide{height:34px;max-width:155px}nav{gap:.05rem}nav a{font-size:.66rem;padding:.32rem .38rem}nav .btn-gdpr,#lang-toggle{padding:.35rem .5rem;font-size:.66rem}
.rent-hero{padding-top:10rem;padding-left:.85rem;padding-right:.85rem}.rent-hero h1{font-size:clamp(1.85rem,10vw,2.5rem)}.rent-hero-sub{font-size:.9rem}.btn{width:100%;padding:.82rem 1rem;white-space:normal;text-align:center}
.service-card,.price-card,.benefit-card,.ad-conditions{padding:1.15rem}.occasion-tag{width:100%;flex-basis:100%}.pdf-gallery{gap:1.8rem}.pdf-card-body p{font-size:.84rem}
}
@media(max-width:360px){.logo-img-wide{height:31px;max-width:140px}nav a{font-size:.61rem;padding:.28rem .32rem}nav .btn-gdpr,#lang-toggle{font-size:.61rem;padding:.3rem .42rem}.rent-hero{padding-top:9.5rem}.rent-hero h1{font-size:1.8rem}.section{padding-left:.8rem;padding-right:.8rem}}
@media(hover:none) and (pointer:coarse){.service-card:hover,.price-card:hover,.benefit-card:hover,.car-card:hover,.why-card:hover,.contact-card:hover,.btn:hover,.btn-outline:hover,.btn-wa:hover,.wa-float:hover{transform:none}.car-card:hover .car-img-wrap img{transform:none}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.animate-on-scroll{opacity:1;transform:none}}
