/* ============================================================
   AUTOSHARE — MAIN STYLESHEET
   Design: Modern editorial, warm neutrals, bold contrast
   Fonts: Syne (headings) + DM Sans (body)
   ============================================================ */

:root {
    --black:      #0f0f0f;
    --dark:       #1a1a1a;
    --dark-2:     #2a2a2a;
    --mid:        #555;
    --muted:      #888;
    --border:     #e5e5e5;
    --bg:         #fafaf8;
    --white:      #ffffff;
    --accent:     #1a56db;
    --accent-2:   #e63757;
    --success:    #0c9a4e;
    --warning:    #f59e0b;
    --danger:     #dc2626;

    --font-head:  'Syne', sans-serif;
    --font-body:  'DM Sans', sans-serif;

    --radius-sm:  6px;
    --radius:     12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

    --nav-height: 70px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--mid); line-height: 1.7; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-dark {
    background: var(--black);
    color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-white {
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--border);
}
.btn-white:hover { border-color: var(--black); }
.btn-accent {
    background: var(--accent);
    color: var(--white);
}
.btn-accent:hover { background: #1447c0; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,86,219,0.3); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; justify-content: center; }
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--black);
    color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ---- NAV ---- */
.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.topnav.scrolled {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.topnav.nav-transparent {
    background: transparent;
    border-color: transparent;
}
.topnav.nav-transparent .nav-logo,
.topnav.nav-transparent .nav-link,
.topnav.nav-transparent .nav-host { color: var(--white); }
.topnav.nav-transparent .btn-dark { background: var(--white); color: var(--black); }

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 16px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--black);
    flex-shrink: 0;
}
.logo-icon {
    font-size: 1.6rem;
    color: var(--accent);
    line-height: 1;
}
.nav-center { flex: 1; max-width: 600px; margin: 0 24px; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    transition: background var(--transition);
}
.nav-link:hover { background: rgba(0,0,0,0.05); }
.nav-host { font-weight: 600; }

/* Nav search pill (shown on results page) */
.nav-search-form { width: 100%; }
.nav-search-pill {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
    height: 46px;
}
.nav-search-pill:focus-within {
    border-color: var(--black);
    box-shadow: var(--shadow);
}
.ns-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 16px;
    min-width: 0;
    flex: 1;
}
.ns-field label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 2px;
}
.ns-field input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    color: var(--dark);
    padding: 0;
    width: 100%;
}
.ns-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}
.ns-submit {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: background var(--transition), transform var(--transition);
}
.ns-submit:hover { background: #1447c0; transform: scale(1.05); }

/* User menu */
.nav-user-menu { position: relative; }
.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 6px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    transition: box-shadow var(--transition);
    position: relative;
}
.nav-user-btn:hover { box-shadow: var(--shadow); }
.nav-hamburger { color: var(--mid); font-size: 0.9rem; }
.nav-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-badge {
    position: absolute;
    top: 4px; right: 4px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--accent-2);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}
.user-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.dropdown-header {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dropdown-header strong { font-family: var(--font-head); font-size: 0.95rem; }
.dropdown-header small { color: var(--muted); font-size: 0.8rem; }
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 0.9rem;
    color: var(--dark);
    transition: background var(--transition);
}
.user-dropdown a:hover { background: var(--bg); }
.user-dropdown a i { width: 16px; color: var(--muted); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.15) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--nav-height);
}
.hero-text {
    max-width: 680px;
    animation: fadeUp 0.8s ease forwards;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em {
    font-style: normal;
    color: #93c5fd;
}
.hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 520px;
}

/* Hero Search Box */
.hero-search {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 740px;
    animation: fadeUp 0.8s 0.15s ease both;
}
.hs-field {
    flex: 1;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--border);
    cursor: pointer;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.hs-field:hover { background: var(--bg); }
.hs-field:last-of-type { border-right: none; }
.hs-field label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--dark);
}
.hs-field input, .hs-field select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    padding: 0;
    width: 100%;
    appearance: none;
}
.hs-field input::placeholder { color: var(--muted); font-weight: 400; }
.hs-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
    margin: 2px;
}
.hs-btn:hover { background: #1447c0; transform: scale(1.02); }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--white);
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ---- SECTION HELPERS ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.6); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
}
.section-head h2 { margin-bottom: 6px; }
.section-head p { color: var(--muted); }
.section-head .btn { flex-shrink: 0; }

.label-tag {
    display: inline-block;
    background: rgba(26,86,219,0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.section-dark .label-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* ---- CATEGORY STRIP ---- */
.category-strip { padding: 32px 0; border-bottom: 1px solid var(--border); }
.category-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.category-list::-webkit-scrollbar { display: none; }
.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mid);
    white-space: nowrap;
    transition: all var(--transition);
    flex-shrink: 0;
}
.category-btn .cat-icon { font-size: 1.6rem; }
.category-btn:hover, .category-btn.active {
    border-color: var(--black);
    color: var(--black);
    background: var(--bg);
}
.category-btn.active { background: var(--black); color: var(--white); }

/* ---- VEHICLE CARDS ---- */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.vc-photos {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}
.vc-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vehicle-card:hover .vc-photos img { transform: scale(1.04); }
.vc-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--black);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 50px;
}
.vc-badge.instant { background: var(--success); }
.vc-badge.new     { background: var(--accent); }
.vc-favorite {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--mid);
    transition: all var(--transition);
    border: none;
    backdrop-filter: blur(4px);
}
.vc-favorite:hover, .vc-favorite.active { color: var(--accent-2); transform: scale(1.1); }
.vc-photo-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}
.vc-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
.vc-dot.active { background: var(--white); }

.vc-body { padding: 16px; }
.vc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}
.vc-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.3;
}
.vc-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.82rem;
    font-weight: 600;
    flex-shrink: 0;
}
.vc-rating i { color: #f59e0b; font-size: 0.75rem; }
.vc-rating .trips { color: var(--muted); font-weight: 400; }

.vc-location {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.vc-features {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.vc-feature {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.75rem;
    color: var(--mid);
    font-weight: 500;
}
.vc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.vc-price { display: flex; align-items: baseline; gap: 4px; }
.vc-price .amount {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--black);
}
.vc-price .period { font-size: 0.8rem; color: var(--muted); }
.vc-host {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--mid);
}
.vc-host img {
    width: 24px; height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* ---- HOW IT WORKS ---- */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.how-step {
    background: var(--white);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background var(--transition);
}
.how-step:hover { background: var(--bg); }
.how-number {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    opacity: 0.3;
}
.how-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    background: rgba(26,86,219,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.how-step h3 { font-size: 1.15rem; }
.how-step p { font-size: 0.9rem; }

/* ---- CITIES / DESTINATIONS ---- */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 240px;
    gap: 12px;
}
.city-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.city-card:nth-child(1) { grid-column: span 5; grid-row: span 1; }
.city-card:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.city-card:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.city-card:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.city-card:nth-child(5) { grid-column: span 4; grid-row: span 1; }
.city-card:nth-child(6) { grid-column: span 5; grid-row: span 1; }
.city-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.city-card:hover .city-img { transform: scale(1.06); }
.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
.city-name {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}
.city-count { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); }
.t-stars { margin-bottom: 14px; color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }
.t-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}
.t-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}
.t-meta { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ---- HOST CTA BANNER ---- */
.host-cta {
    background: var(--black);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    margin: 0 24px;
}
.host-cta-text {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.host-cta-text h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.host-cta-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
}
.host-cta-stats {
    display: flex;
    gap: 28px;
    margin-top: 8px;
}
.hc-stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--white);
}
.hc-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.host-cta-image {
    position: relative;
    overflow: hidden;
}
.host-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.host-cta-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 40%);
    z-index: 1;
}

/* ---- APP DOWNLOAD ---- */
.app-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.app-text { display: flex; flex-direction: column; gap: 20px; }
.app-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.app-links { display: flex; gap: 12px; flex-wrap: wrap; }
.app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: transform var(--transition);
}
.app-link:hover { transform: translateY(-2px); }
.app-link i { font-size: 1.3rem; }
.app-link span small { display: block; font-size: 0.7rem; opacity: 0.6; }
.app-link span strong { font-family: var(--font-head); }
.app-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.app-mockup img { max-height: 480px; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.2)); }

/* ---- FOOTER ---- */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
    margin-top: 80px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-col h4 {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ---- STARS ---- */
.stars { display: inline-flex; gap: 1px; }
.star { font-style: normal; color: #f59e0b; }
.star.empty { color: #d1d5db; }
.rating-num { font-weight: 600; margin-left: 4px; color: var(--dark); font-size: 0.85rem; }

/* ---- FORMS ---- */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
.form-control.error { border-color: var(--danger); }
.form-hint { font-size: 0.8rem; color: var(--muted); }
.form-error { font-size: 0.8rem; color: var(--danger); }

/* ---- ALERTS ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    border: 1px solid;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-success { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.alert-error   { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.alert-info    { background: #eff6ff; border-color: #93c5fd; color: #1d4ed8; }
.alert-warning { background: #fffbeb; border-color: #fcd34d; color: #92400e; }

/* ---- PAGINATION ---- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.page-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    font-size: 0.9rem;
    color: var(--dark);
    transition: all var(--transition);
    font-weight: 500;
}
.page-btn:hover { border-color: var(--black); }
.page-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ---- BADGES ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger  { background: #fee2e2; color: #dc2626; }
.badge-info    { background: #dbeafe; color: #1d4ed8; }
.badge-dark    { background: var(--dark); color: var(--white); }

/* ---- SEARCH PAGE LAYOUT ---- */
.search-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
}
.search-sidebar {
    border-right: 1px solid var(--border);
    padding: 24px;
    position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    background: var(--white);
}
.search-main { padding: 24px; overflow-y: auto; }
.filter-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tag {
    padding: 6px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
}
.filter-tag:hover { border-color: var(--dark); }
.filter-tag.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.price-range { display: flex; gap: 12px; align-items: center; }
.price-range input[type=range] { flex: 1; accent-color: var(--accent); }

/* ---- MAP ---- */
.search-map {
    height: calc(100vh - var(--nav-height));
    position: sticky;
    top: var(--nav-height);
}
#map { width: 100%; height: 100%; }

/* ---- MODAL ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.96);
    transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--mid);
    transition: background var(--transition);
}
.modal-close:hover { background: var(--bg); }
.modal-body { padding: 24px; }
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(0.85); }
}
@keyframes shimmer {
    from { background-position: -200% 0; }
    to   { background-position: 200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius);
}

/* ---- TOAST ---- */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.toast {
    background: var(--black);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
}
.toast.success { background: var(--success); }
.toast.error   { background: var(--danger); }
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: span 3; }
    .cities-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
    }
    .city-card { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
    .host-cta { margin: 0; border-radius: 0; }
}

@media (max-width: 900px) {
    .hero-search { flex-wrap: wrap; border-radius: var(--radius); }
    .hs-field { border-right: none; border-bottom: 1px solid var(--border); flex: 0 0 calc(50% - 4px); }
    .hs-btn { width: 100%; margin: 0; border-radius: var(--radius-sm); }
    .search-layout { grid-template-columns: 1fr; }
    .search-sidebar { display: none; }
    .host-cta { grid-template-columns: 1fr; }
    .host-cta-image { height: 240px; }
    .app-section { grid-template-columns: 1fr; gap: 40px; }
    .app-mockup { display: none; }
}

@media (max-width: 640px) {
    :root { --nav-height: 60px; }
    .nav-center { display: none; }
    .nav-host { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-search .hs-field { flex: 1 0 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .section { padding: 48px 0; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .host-cta-text { padding: 36px 24px; }
    .host-cta-stats { flex-wrap: wrap; gap: 16px; }
}
