* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: #111; color: #fff; padding-bottom: 140px; }

.back-bar { background: rgba(245,158,11,0.15); padding: 12px 16px; position: sticky; top: 0; z-index: 100; }

.hero { position: relative; padding: 64px 20px 40px; text-align: center; color: #fff; overflow: hidden; }
.hero::before { content: none; }
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-particle { position: absolute; width: 4px; height: 4px; background: rgba(245,158,11,.6); border-radius: 50%; animation: heroFloat 6s infinite ease-in-out; box-shadow: 0 0 8px rgba(245,158,11,.4); }
.hero-particle:nth-child(2n) { width: 3px; height: 3px; background: rgba(251,191,36,.7); animation-duration: 8s; }
.hero-particle:nth-child(3n) { width: 5px; height: 5px; background: rgba(254,215,170,.5); animation-duration: 10s; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) translateX(0); opacity:.3; } 25% { transform: translateY(-30px) translateX(10px); opacity:.9; } 50% { transform: translateY(-15px) translateX(-8px); opacity:.6; } 75% { transform: translateY(-40px) translateX(5px); opacity:.8; } }
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 20px; }
.hero h1 { font-size: 36px; font-weight: 800; margin: 0 0 16px; letter-spacing: 2px; line-height: 1.3; text-shadow: 0 3px 12px rgba(0,0,0,.5); }
.hero h1 span { color: #fbbf24; }
.hero p { font-size: clamp(13px, 2vw, 16px); color: rgba(255,255,255,.92); margin: 0 0 28px; letter-spacing: 1px; line-height: 1.7; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-btns a { display: inline-flex; align-items: center; justify-content: center; padding: 12px 32px; border-radius: 40px; font-size: 15px; font-weight: 700; transition: all .3s; text-decoration: none; }
.hero-btns .btn-primary { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #1a1a1a; border: 1px solid rgba(255,255,255,.1); }
.hero-btns .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.45); }
.hero-btns .btn-outline { background: rgba(0,0,0,.4); color: #fbbf24; border: 1px solid rgba(251,191,36,.5); }
.hero-btns .btn-outline:hover { background: rgba(245,158,11,.15); transform: translateY(-2px); }
@media (max-width: 600px) {
    .hero { padding: 48px 16px 28px; }
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 13px !important; margin-bottom: 22px !important; }
    .hero-btns a { padding: 10px 22px; font-size: 13px; }
}

.brand-logo { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; background: #fff; padding: 2px; margin-right: 8px; vertical-align: middle; }
.car-name { display: flex; align-items: center; }
.back-link { color: #f59e0b; text-decoration: none; font-size: 14px; }

.car-img { width: 100%; height: 200px; object-fit: cover; background: #1a1a1a; }

.car-header { padding: 16px; background: rgba(255,255,255,0.03); }
.car-name { font-size: 18px; font-weight: bold; margin-bottom: 8px; }
.car-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag { background: rgba(245,158,11,0.15); color: #f59e0b; padding: 3px 10px; border-radius: 10px; font-size: 11px; }

.service-info { padding: 16px; background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.05)); border-top: 1px solid rgba(245,158,11,0.2); border-bottom: 1px solid rgba(245,158,11,0.2); }
.service-title { font-size: 14px; color: #f59e0b; margin-bottom: 10px; font-weight: bold; }
.service-list { display: flex; flex-wrap: wrap; gap: 8px; }
.service-item { background: rgba(0,0,0,0.3); padding: 6px 12px; border-radius: 16px; font-size: 12px; color: #ddd; }

.form-section { padding: 16px; }
.form-title { font-size: 15px; font-weight: bold; margin-bottom: 14px; color: #f59e0b; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; color: #888; margin-bottom: 6px; }
.form-input { width: 100%; padding: 14px; border-radius: 10px; border: 1px solid #333; background: rgba(0,0,0,0.4); color: #fff; font-size: 15px; box-sizing: border-box; }
.form-input:focus { outline: none; border-color: #f59e0b; }
.form-input.date-input { width: auto; min-width: 160px; max-width: 60%; }
.form-group.mt { margin-top: 22px; }
.form-group.inline-code { display: flex; gap: 8px; }
.form-group.inline-code input { flex: 1; }
.btn-code { background: #f59e0b; color: #1a1a1a; border: none; padding: 0 14px; border-radius: 10px; font-size: 13px; font-weight: 600; white-space: nowrap; cursor: pointer; }
.btn-code:disabled { background: #555; color: #999; cursor: not-allowed; }
.member-info { background: rgba(245,158,11,0.1); border: 1px solid #f59e0b; border-radius: 10px; padding: 12px; margin-bottom: 16px; font-size: 13px; color: #f59e0b; }
.member-info b { color: #fff; }

.type-btns { display: flex; gap: 10px; }
.type-btn { flex: 1; padding: 12px; text-align: center; border: 2px solid #444; border-radius: 10px; font-size: 14px; color: #888; transition: all 0.2s; }
.type-btn.active { border-color: #f59e0b; background: rgba(245,158,11,0.15); color: #f59e0b; font-weight: bold; }

.oneway-display { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: 10px; padding: 14px; margin-top: 10px; display: none; }
.oneway-display.show { display: block; }
.oneway-price { font-size: 24px; color: #10b981; font-weight: bold; }
.oneway-desc { font-size: 12px; color: #888; margin-top: 4px; }

.days-hint { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); border-radius: 10px; padding: 12px; margin-top: 10px; font-size: 13px; color: #60a5fa; }
.days-hint strong { color: #f59e0b; }

.date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.price-detail { background: rgba(0,0,0,0.4); border-radius: 12px; padding: 16px; margin: 16px; border: 1px solid #333; }
.detail-title { font-size: 14px; color: #f59e0b; margin-bottom: 12px; font-weight: bold; }
.detail-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: #888; }
.detail-row .val { font-weight: bold; }
.detail-row.total { margin-top: 10px; padding-top: 12px; border-top: 2px solid #f59e0b; }
.detail-row.total .val { color: #f59e0b; font-size: 20px; }

.bottom-bar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 0; width: 100%; max-width: 1200px; background: rgba(17,17,17,0.98); padding: 16px; border-top: 1px solid #333; display: flex; gap: 12px; z-index: 99; align-items: stretch; box-sizing: border-box; }
.price-summary { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 16px; border: 1px solid #f59e0b; border-radius: 10px; height: 76px; box-sizing: border-box; }
.price-summary .label { font-size: 11px; color: #888; }
.price-summary .amount { font-size: 22px; color: #f59e0b; font-weight: bold; }
.btn-book { padding: 0 28px; background: linear-gradient(135deg, #f59e0b, #d97706); color: #000; border: none; border-radius: 10px; font-size: 16px; font-weight: bold; flex: 1; height: 76px; display: flex; align-items: center; justify-content: center; }

.modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 200; align-items: flex-end; }
.modal.show { display: flex; }
.modal-content { background: #1a1a1a; width: 100%; border-radius: 20px 20px 0 0; padding: 20px; max-height: 80vh; overflow-y: auto; }
.modal-title { font-size: 18px; font-weight: bold; margin-bottom: 16px; text-align: center; }
.close-modal { position: absolute; right: 20px; top: 20px; color: #888; font-size: 24px; }

.m-footer { display: none !important; }

.ldc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 0; }
.ldc-main { min-width: 0; padding-top: 40px; }
.ldc-side {
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-left: 1px solid rgba(245,158,11,0.2);
    position: sticky;
    top: 60px;
    align-self: start;
    max-height: none;
    overflow: visible;
}
.side-title {
    font-size: 15px;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 14px;
}
.more-cars { display: flex; flex-direction: column; gap: 12px; }
.more-cars-loading {
    text-align: center;
    color: #888;
    padding: 20px;
    font-size: 13px;
}
.more-car-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #161616, #111);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.2s, transform 0.2s;
}
.more-car-card:hover { border-color: #fbbf24; transform: translateY(-2px); }
.more-car-card:active { transform: scale(0.98); }
.more-car-img-wrap {
    width: 100%;
    aspect-ratio: 5/3;
    overflow: hidden;
    background: #222;
    position: relative;
}
.more-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.more-car-placeholder {
    width: 100%;
    aspect-ratio: 5/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}
.more-car-brand-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.65);
    color: #fbbf24;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.more-car-info {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.more-car-name {
    font-size: 13px;
    font-weight: 700;
    color: #f5f5f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.more-car-meta {
    font-size: 11px;
    color: #888;
}
.more-car-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.more-car-price {
    font-size: 14px;
    color: #f59e0b;
    font-weight: 800;
}
.more-car-price span {
    font-size: 10px;
    color: #888;
    font-weight: 400;
    margin-left: 1px;
}
.more-car-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .ldc-layout { grid-template-columns: 1fr; }
    .ldc-side {
        border-left: none;
        border-top: 1px solid rgba(245,158,11,0.2);
        position: static;
        max-height: none;
    }
}

.ldc-side .side-block { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(245,158,11,0.12); }
.ldc-side .side-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ldc-side .side-block-title { font-size: 14px; font-weight: 700; color: #f59e0b; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.ldc-side .side-block-title::before { content: ''; width: 3px; height: 14px; background: #f59e0b; border-radius: 2px; }

.ldc-contact-bar { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); border-radius: 12px; padding: 14px; text-align: center; color: #1a1a1a; }
.ldc-contact-bar .ldc-phone { display: block; font-size: 20px; font-weight: 800; text-decoration: none; letter-spacing: 1px; color: #1a1a1a; }
.ldc-contact-bar .ldc-hours { font-size: 11px; margin-top: 4px; color: #4a3800; }
.ldc-contact-bar .ldc-cta { display: block; margin-top: 10px; background: #1a1a2e; color: #fbbf24; border-radius: 8px; padding: 8px 16px; font-size: 12px; font-weight: 700; text-decoration: none; }

.ldc-feature-box { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border: 1px solid rgba(251,191,36,.15); border-radius: 12px; padding: 14px; }
.ldc-feature-list { list-style: none; padding: 0; margin: 0; }
.ldc-feature-list li { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; border-bottom: 1px dashed rgba(255,255,255,0.06); font-size: 12px; color: #cbd5e1; line-height: 1.5; }
.ldc-feature-list li:last-child { border-bottom: none; }
.ldc-feature-list li::before { content: '✓'; color: #fbbf24; font-weight: 700; flex-shrink: 0; font-size: 13px; margin-top: 1px; }

.ldc-guide-card { display: block; background: linear-gradient(135deg, #161616, #111); border: 1px solid #222; border-radius: 10px; overflow: hidden; text-decoration: none; color: #fff; margin-bottom: 10px; transition: border-color 0.2s; }
.ldc-guide-card:hover { border-color: #fbbf24; }
.ldc-guide-card:last-child { margin-bottom: 0; }
.ldc-guide-img { width: 100%; aspect-ratio: 5/3; object-fit: contain; display: block; background: #0f172a; }
.ldc-guide-img-fallback { width: 100%; min-height: 100px; display: flex; align-items: center; justify-content: center; font-size: 36px; background: linear-gradient(135deg, #1e293b 0%, #334155 100%); }
.ldc-guide-body { padding: 10px 12px; }
.ldc-guide-title { font-size: 12px; font-weight: 600; color: #e2e8f0; margin: 0 0 4px; line-height: 1.4; }
.ldc-guide-summary { font-size: 11px; color: #94a3b8; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ldc-guide-empty { padding: 16px; text-align: center; color: #64748b; font-size: 12px; background: rgba(255,255,255,0.02); border-radius: 10px; }
