/* RENTCAR - 메인 스타일시트 */

:root {
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    --color-primary: #111;
    --color-secondary: #888;
    --color-bg: #fff;
    --color-bg-dark: #0a0a0f;
    --color-border: #eee;
    --color-success: #16a34a;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #6366f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-primary);
    min-height: 100vh;
}

::selection {
    background: #111;
    color: #fff;
}

input:focus, select:focus, textarea:focus {
    border-color: #111 !important;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font-family);
    cursor: pointer;
}

/* ═══════════════════════════════════════
   GLOBAL INTERACTIONS
   ═══════════════════════════════════════ */

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #111;
    color: #fff;
}

/* Disable tap highlight on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Link hover underline effect */
a {
    position: relative;
}

/* Button base transitions */
button, .btn, [class*="-btn"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button active press effect */
button:active:not(:disabled),
.btn:active:not(:disabled),
[class*="-btn"]:active:not(:disabled) {
    transform: scale(0.97) !important;
}

/* Ripple effect container */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Glow effect on focus */
.glow-focus:focus {
    box-shadow: 0 0 0 4px rgba(17,17,17,0.1);
}

/* Scale on hover */
.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Underline animation for links */
.link-underline {
    position: relative;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s;
}

.link-underline:hover::after {
    width: 100%;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes roadScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes checkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-car { animation: float 4s ease-in-out infinite; }
.pulse-dot { animation: pulse 2s ease-in-out infinite; }
.road-scroll { animation: roadScroll 4s linear infinite; }
.check-bounce { animation: checkBounce 0.6s ease-out; }
.animate-in { animation: fadeInUp 0.7s ease forwards; }

.spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom-color: #e0e0e0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: #111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 19px;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #888;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #111;
    transition: all 0.25s;
    transform: translateX(-50%);
}

.nav-btn:hover {
    background: #f5f5f5;
    color: #111;
}

.nav-btn:hover::after {
    width: 50%;
}

.nav-btn:active {
    transform: scale(0.97);
}

.nav-btn.active {
    background: #111;
    color: #fff;
}

.nav-btn.active::after {
    display: none;
}

.cta-btn {
    margin-left: 12px;
    padding: 10px 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.4s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    padding: 8px;
}

.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 24px;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
    background: #0a0a0f;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient-1 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(40,40,80,0.4) 0%, transparent 60%);
}

.hero-gradient-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 80%, rgba(30,30,60,0.3) 0%, transparent 50%);
}

.hero-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 100px 28px 80px;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
}

.hero-badge-text {
    font-size: 12px;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, #e0e0e0, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.hero-car {
    text-align: center;
    position: relative;
}

.hero-car-img {
    transform: scale(2.2);
    transform-origin: center;
    margin-top: 20px;
}

.hero-car-reflection {
    transform: scale(2.2) scaleY(-0.3);
    transform-origin: center top;
    opacity: 0.08;
    filter: blur(4px);
    margin-top: -10px;
}

/* Road Animation */
.road-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    opacity: 0.15;
}

.road-line {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 200%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #fff 0px, #fff 40px, transparent 40px, transparent 80px);
}

.road-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #333;
}

/* Search Box */
.search-box {
    margin-top: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    align-items: end;
}

.search-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-input {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    background: rgba(255,255,255,0.07);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: rgba(255,255,255,0.3) !important;
}

.search-input option {
    color: #111;
}

.search-btn {
    padding: 14px 36px;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    min-height: 52px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.search-info {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.search-info strong {
    color: #fff;
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */

.section {
    padding: 100px 28px;
}

.section-dark {
    background: #0a0a0f;
    color: #fff;
}

.section-gray {
    background: #f8f8f8;
}

.section-pattern {
    position: relative;
    overflow: hidden;
}

.section-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(#111 1px, transparent 1px);
    background-size: 24px 24px;
}

.section-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #f5f5f5;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-badge-dark {
    background: rgba(255,255,255,0.06);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #111;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section-title-white {
    color: #fff;
}

.section-desc {
    font-size: 16px;
    color: #888;
    max-width: 520px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
}

.benefit-card {
    padding: 36px 32px;
    background: #fafafa;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    background: #111;
    border-color: #111;
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.benefit-card:hover .benefit-title { color: #fff; }
.benefit-card:hover .benefit-desc { color: rgba(255,255,255,0.6); }
.benefit-card:hover .benefit-highlight {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.benefit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.benefit-icon {
    font-size: 36px;
}

.benefit-highlight {
    padding: 4px 12px;
    background: rgba(17,17,17,0.06);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #111;
    transition: all 0.4s;
}

.benefit-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    transition: color 0.4s;
}

.benefit-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    transition: color 0.4s;
}

/* ═══════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════ */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.process-card {
    padding: 40px 28px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    transition: all 0.3s;
}

.process-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}

.process-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.process-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   VEHICLE CARDS
   ═══════════════════════════════════════ */

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.vehicle-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s;
}

.vehicle-card:hover {
    border-color: #ccc;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.vehicle-card.unavailable {
    opacity: 0.5;
    cursor: default;
}

.vehicle-card.unavailable:hover {
    transform: none;
    box-shadow: none;
}

.vehicle-visual {
    background: #f5f5f5;
    padding: 44px 32px 36px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.vehicle-card:hover .vehicle-visual {
    background: #f0f0f0;
}

.vehicle-svg {
    transition: transform 0.4s;
}

.vehicle-card:hover .vehicle-svg {
    transform: scale(1.05);
}

.vehicle-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
}

.vehicle-badge {
    padding: 4px 12px;
    background: #111;
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.vehicle-badge.popular {
    background: #f59e0b;
}

.vehicle-badge.remaining {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    background: #ef4444;
}

.vehicle-sold-out {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
}

.vehicle-sold-out span {
    padding: 10px 24px;
    background: #e53e3e;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
}

.vehicle-info {
    padding: 24px 28px 28px;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.vehicle-name {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    transition: color 0.2s;
    display: inline-block;
}

a.vehicle-name {
    position: relative;
}

a.vehicle-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #111;
    transition: width 0.3s ease;
}

a.vehicle-name:hover {
    color: #333;
}

a.vehicle-name:hover::after {
    width: 100%;
}

.vehicle-year {
    font-size: 13px;
    color: #999;
}

.vehicle-specs {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.vehicle-feature {
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.vehicle-pricing {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.vehicle-hourly {
    font-size: 11px;
    color: #aaa;
}

.vehicle-hourly-price {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-left: 4px;
}

.vehicle-total-label {
    font-size: 11px;
    color: #aaa;
    display: block;
}

.vehicle-total-price {
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.vehicle-btn {
    width: 100%;
    margin-top: 16px;
    padding: 15px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vehicle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vehicle-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.vehicle-btn:hover::before {
    width: 300px;
    height: 300px;
}

.vehicle-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.vehicle-btn:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vehicle-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.vehicle-btn:disabled::before {
    display: none;
}

/* ═══════════════════════════════════════
   FILTERS
   ═══════════════════════════════════════ */

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #111;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.filter-btn:hover {
    border-color: #bbb;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.filter-btn:hover::after {
    width: 60%;
}

.filter-btn:active {
    transform: translateY(0) scale(0.97);
}

.filter-btn.active {
    border-color: #111;
    background: #111;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.filter-btn.active::after {
    display: none;
}

.filter-btn.active:hover {
    background: #222;
    transform: translateY(-2px);
}

.sort-select {
    padding: 9px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.sort-select:hover {
    border-color: #ccc;
}

.sort-select:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17,17,17,0.08);
}

/* ═══════════════════════════════════════
   FORM STYLES
   ═══════════════════════════════════════ */

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    color: #111;
    outline: none;
    box-sizing: border-box;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:hover {
    border-color: #ccc;
}

.form-input:focus {
    border-color: #111;
    box-shadow: 0 0 0 4px rgba(17,17,17,0.06);
}

.form-input::placeholder {
    color: #bbb;
    transition: color 0.2s;
}

.form-input:focus::placeholder {
    color: #999;
}

/* Input with icon */
.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .form-input {
    padding-left: 44px;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: color 0.2s;
}

.input-icon-wrap:focus-within .input-icon {
    color: #111;
}

.form-group {
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════ */

.booking-page {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.back-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-title {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 36px;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid #eee;
}

.booking-card-gray {
    background: #f8f8f8;
}

.booking-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

/* Vehicle Summary */
.vehicle-summary {
    display: flex;
    gap: 24px;
    align-items: center;
}

.vehicle-summary-img {
    width: 120px;
    flex-shrink: 0;
}

.vehicle-summary-name {
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.vehicle-summary-info {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.vehicle-summary-features {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.vehicle-summary-feature {
    padding: 3px 8px;
    background: #eee;
    border-radius: 5px;
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

/* Period */
.period-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.period-box {
    padding: 16px;
    background: #f8f8f8;
    border-radius: 12px;
    text-align: center;
}

.period-label {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 4px;
}

.period-date {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.period-time {
    font-size: 20px;
    font-weight: 900;
    color: #111;
}

.period-arrow {
    font-size: 24px;
    color: #ccc;
}

.period-total {
    margin-top: 14px;
    padding: 10px 16px;
    background: #111;
    border-radius: 8px;
    text-align: center;
}

.period-total span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Insurance */
.insurance-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insurance-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.insurance-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #111;
    transform: scaleY(0);
    transition: transform 0.3s;
}

.insurance-option:hover {
    border-color: #bbb;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.insurance-option:active {
    transform: translateX(2px) scale(0.99);
}

.insurance-option.selected {
    border-color: #111;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.insurance-option.selected::before {
    transform: scaleY(1);
}

.insurance-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.insurance-option:hover .insurance-radio {
    border-color: #999;
}

.insurance-option.selected .insurance-radio {
    border-color: #111;
    background: #111;
}

.insurance-radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.insurance-option.selected .insurance-radio-inner {
    transform: scale(1);
}

.insurance-icon {
    font-size: 26px;
    transition: transform 0.3s;
}

.insurance-option:hover .insurance-icon {
    transform: scale(1.15);
}

.insurance-option.selected .insurance-icon {
    transform: scale(1.1);
}

.insurance-content {
    flex: 1;
}

.insurance-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.insurance-desc {
    font-size: 12px;
    color: #888;
}

.insurance-price {
    font-size: 15px;
    font-weight: 800;
    color: #999;
    white-space: nowrap;
}

.insurance-option.selected .insurance-price {
    color: #111;
}

.insurance-price.free {
    color: #16a34a;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    border: 2px solid #ccc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checkbox.checked {
    border-color: #111;
    background: #111;
}

.checkbox-check {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: none;
}

.checkbox.checked .checkbox-check {
    display: block;
}

.checkbox-text {
    font-size: 13px;
    color: #555;
}

/* Summary */
.booking-summary {
    position: sticky;
    top: 96px;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #eee;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.summary-title {
    font-size: 18px;
    font-weight: 900;
    color: #111;
    margin-bottom: 28px;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
}

.summary-label {
    font-size: 14px;
    color: #888;
}

.summary-value {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.summary-value.free {
    color: #16a34a;
}

.summary-total {
    border-top: 2px solid #111;
    padding-top: 16px;
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.summary-total-label {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.summary-total-price {
    font-size: 28px;
    font-weight: 900;
    color: #111;
}

.summary-total-price span {
    font-size: 16px;
}

.summary-warning {
    padding: 14px 16px;
    background: #fef2f2;
    border-radius: 10px;
    margin-bottom: 16px;
}

.summary-warning p {
    font-size: 13px;
    color: #dc2626;
    font-weight: 600;
}

.pay-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pay-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.pay-btn:hover {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.pay-btn:hover::before {
    left: 100%;
}

.pay-btn:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.pay-btn:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pay-btn:disabled::before {
    display: none;
}

.pay-info {
    margin-top: 12px;
    font-size: 11px;
    color: #bbb;
    text-align: center;
}

/* Pay button loading state */
.pay-btn.loading {
    pointer-events: none;
    color: transparent;
}

.pay-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ═══════════════════════════════════════
   PAYMENT PAGE
   ═══════════════════════════════════════ */

.payment-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.payment-title {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    margin-bottom: 8px;
}

.payment-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 36px;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-method {
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.payment-method:hover {
    border-color: #ccc;
}

.payment-method.selected {
    border-color: #111;
    background: #fafafa;
}

.payment-method-icon {
    font-size: 26px;
    margin-bottom: 6px;
}

.payment-method-name {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.payment-method.selected .payment-method-name {
    color: #111;
}

/* ═══════════════════════════════════════
   COMPLETE PAGE
   ═══════════════════════════════════════ */

.complete-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px 28px;
    text-align: center;
}

.complete-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.complete-title {
    font-size: 34px;
    font-weight: 900;
    color: #111;
    margin-bottom: 8px;
}

.complete-order {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.complete-order strong {
    color: #111;
}

.complete-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    margin-bottom: 32px;
    border: 1px solid #eee;
}

.complete-vehicle {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.complete-vehicle-img {
    width: 80px;
    flex-shrink: 0;
}

.complete-vehicle-name {
    font-size: 20px;
    font-weight: 900;
    color: #111;
}

.complete-vehicle-info {
    font-size: 13px;
    color: #888;
}

.complete-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.complete-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.complete-row-label {
    font-size: 14px;
    color: #888;
}

.complete-row-value {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.home-btn {
    padding: 16px 48px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
}

/* ═══════════════════════════════════════
   ADMIN PAGE
   ═══════════════════════════════════════ */

.admin-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.admin-title {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.5px;
}

.admin-subtitle {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

.view-btns {
    display: flex;
    gap: 8px;
}

.view-btn {
    padding: 10px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    color: #666;
    font-size: 13px;
    font-weight: 700;
}

.view-btn.active {
    border-color: #111;
    background: #111;
    color: #fff;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    padding: 24px;
    background: #f8f8f8;
    border-radius: 16px;
    border: 1px solid #eee;
}

.stat-card.success { background: #f0fdf4; }
.stat-card.warning { background: #fffbeb; }
.stat-card.info { background: #f5f3ff; }

.stat-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: #111;
}

.stat-value.success { color: #16a34a; }
.stat-value.warning { color: #f59e0b; }
.stat-value.info { color: #6366f1; }

.stat-suffix {
    font-size: 14px;
    font-weight: 600;
}

/* Table */
.table-container {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
}

.table-scroll {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: #888;
    font-size: 11px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: #f8f8f8;
    border-bottom: 2px solid #eee;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.admin-table tr:hover {
    background: #fafafa;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.status-badge.confirmed { background: #16a34a; }
.status-badge.pending { background: #f59e0b; }
.status-badge.cancelled { background: #ef4444; }
.status-badge.completed { background: #6366f1; }

.manage-btn {
    padding: 6px 14px;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
}

.modal-id {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-id-text {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.modal-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.modal-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.modal-row-label {
    font-size: 14px;
    color: #888;
}

.modal-row-value {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.status-actions-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    margin-bottom: 10px;
}

.status-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.status-btn {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.status-btn:hover:not(.active) {
    border-color: #ccc;
}

.status-btn.active {
    color: #fff;
}

.status-btn.active.confirmed { border-color: #16a34a; background: #16a34a; }
.status-btn.active.pending { border-color: #f59e0b; background: #f59e0b; }
.status-btn.active.cancelled { border-color: #ef4444; background: #ef4444; }
.status-btn.active.completed { border-color: #6366f1; background: #6366f1; }

/* ═══════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════ */

.shop-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.shop-title {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    margin-bottom: 8px;
}

.shop-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 36px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.product-visual {
    background: #f5f5f5;
    padding: 48px;
    text-align: center;
    font-size: 56px;
}

.product-info {
    padding: 24px 28px;
}

.product-category {
    font-size: 11px;
    font-weight: 700;
    color: #888;
}

.product-name {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-top: 4px;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: 900;
    color: #111;
}

.product-btn {
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

/* ═══════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════ */

.faq-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.faq-title {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    margin-bottom: 28px;
}

.tab-btns {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 10px 24px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 700;
}

.tab-btn.active {
    border-color: #111;
    background: #111;
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.2s;
}

.faq-item.open .faq-question {
    background: #f8f8f8;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.faq-question-prefix {
    color: #999;
    margin-right: 8px;
}

.faq-arrow {
    font-size: 18px;
    color: #999;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    background: #f8f8f8;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

.faq-answer-prefix {
    color: #111;
    font-weight: 700;
    margin-right: 8px;
}

/* Notice List */
.notice-list {
    display: flex;
    flex-direction: column;
}

.notice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.notice-item:hover {
    background: #fafafa;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-badge {
    padding: 3px 10px;
    background: #111;
    color: #fff;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.notice-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.notice-date {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
    margin-left: 16px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
    background: #0a0a0f;
    color: #fff;
    padding: 60px 28px 36px;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 17px;
    font-weight: 900;
}

.footer-logo-text span {
    color: #555;
}

.footer-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.9;
}

.footer-section-title {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: #888;
    cursor: pointer;
}

.footer-link:hover {
    color: #fff;
}

.footer-phone {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.footer-hours {
    font-size: 13px;
    color: #555;
    line-height: 1.9;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 12px;
    color: #444;
}

.footer-legal {
    font-size: 12px;
    color: #444;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */

.cta-section {
    background: #111;
    padding: 100px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 32px 32px;
}

.cta-content {
    position: relative;
}

.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 40px;
}

.cta-btn {
    padding: 18px 56px;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(255,255,255,0.1);
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   POPULAR VEHICLES SECTION
   ═══════════════════════════════════════ */

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.popular-btn {
    padding: 12px 28px;
    border: 2px solid #111;
    border-radius: 12px;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.popular-btn:hover {
    background: #111;
    color: #fff;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.popular-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.popular-card-visual {
    background: #f5f5f5;
    padding: 36px 32px;
    border-bottom: 1px solid #eee;
}

.popular-card-info {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.popular-card-name {
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.popular-card-category {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.popular-card-price {
    font-size: 17px;
    font-weight: 900;
    color: #111;
}

.popular-card-price span {
    font-size: 11px;
    color: #999;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-car {
        display: none;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        order: -1;
        position: static;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   NEW FEATURES - v2.0
   ═══════════════════════════════════════ */

/* Promotions Banner */
.promo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.promo-banner-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.promo-banner-btn {
    padding: 6px 16px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

/* Event Cards */
.event-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.event-slider::-webkit-scrollbar {
    display: none;
}

.event-card {
    min-width: 300px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border: 1px solid #eee;
    scroll-snap-align: start;
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.event-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.event-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.event-desc {
    font-size: 13px;
    color: #888;
}

/* Rating Stars */
.stars {
    color: #f59e0b;
    letter-spacing: -2px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-score {
    font-size: 14px;
    font-weight: 800;
    color: #111;
}

.rating-count {
    font-size: 12px;
    color: #888;
}

/* Wishlist Button */
.wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #ef4444;
    color: #fff;
}

/* Compare Button */
.compare-btn {
    padding: 8px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.compare-btn:hover {
    border-color: #111;
}

.compare-btn.active {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* Compare Float */
.compare-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 90;
}

.compare-float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.compare-float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.compare-float-count {
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

/* Quick Menu */
.quick-menu {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 100;
}

.quick-menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.quick-menu-toggle:hover {
    transform: rotate(45deg);
}

.quick-menu-items {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.quick-menu.open .quick-menu-items {
    display: flex;
}

.quick-menu.open .quick-menu-toggle {
    transform: rotate(45deg);
}

.quick-menu-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.quick-menu-item:hover {
    transform: scale(1.1);
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 100px;
    right: 28px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 16px 24px;
    background: #111;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.success { background: #16a34a; }
.toast.error { background: #ef4444; }
.toast.warning { background: #f59e0b; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Coupon Input */
.coupon-input-wrap {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.coupon-apply-btn {
    padding: 12px 24px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.coupon-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f0fdf4;
    border: 1px solid #16a34a;
    border-radius: 8px;
    font-size: 13px;
    color: #16a34a;
    font-weight: 600;
}

.coupon-tag-remove {
    background: none;
    border: none;
    color: #16a34a;
    cursor: pointer;
    font-size: 16px;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.option-card {
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-card:hover {
    border-color: #ccc;
}

.option-card.selected {
    border-color: #111;
    background: #fafafa;
}

.option-icon {
    font-size: 24px;
}

.option-content {
    flex: 1;
}

.option-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.option-desc {
    font-size: 11px;
    color: #888;
}

.option-price {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

/* Location Picker */
.location-picker {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
}

.location-map {
    height: 200px;
    background: #f5f5f5;
}

.location-list {
    max-height: 250px;
    overflow-y: auto;
}

.location-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-item:hover {
    background: #fafafa;
}

.location-item.selected {
    background: #f0f0f0;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.location-info {
    flex: 1;
}

.location-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.location-address {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.location-hours {
    font-size: 11px;
    color: #16a34a;
    margin-top: 4px;
}

/* Review Card */
.review-card {
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.review-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.review-rating {
    font-size: 14px;
}

.review-content {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-helpful-btn {
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-helpful-btn:hover {
    background: #eee;
}

/* Membership Card */
.membership-card {
    padding: 32px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.membership-level {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.membership-level.bronze { background: #cd7f32; }
.membership-level.silver { background: #c0c0c0; color: #333; }
.membership-level.gold { background: #ffd700; color: #333; }
.membership-level.platinum { background: #e5e4e2; color: #333; }
.membership-level.vip { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }

.membership-name {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.membership-email {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.membership-stats {
    display: flex;
    gap: 32px;
}

.membership-stat-value {
    font-size: 28px;
    font-weight: 900;
}

.membership-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Login Form */
.login-page {
    max-width: 440px;
    margin: 0 auto;
    padding: 60px 28px 100px;
}

.login-title {
    font-size: 32px;
    font-weight: 900;
    color: #111;
    text-align: center;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 40px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.social-btn {
    padding: 14px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.social-btn:hover::before {
    width: 300%;
    height: 300%;
}

.social-btn:active {
    transform: translateY(0) scale(0.98);
}

.social-btn.kakao {
    background: #fee500;
    border-color: #fee500;
    color: #000;
}

.social-btn.kakao:hover {
    background: #ffd900;
    box-shadow: 0 6px 20px rgba(254,229,0,0.4);
}

.social-btn.naver {
    background: #03c75a;
    border-color: #03c75a;
    color: #fff;
}

.social-btn.naver:hover {
    background: #02b350;
    box-shadow: 0 6px 20px rgba(3,199,90,0.4);
}

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #eee;
}

.divider-text {
    font-size: 12px;
    color: #888;
}

/* Compare Page */
.compare-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
}

.compare-table th,
.compare-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.compare-table th {
    background: #f8f8f8;
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-align: left;
}

.compare-table td {
    font-size: 14px;
    color: #111;
}

.compare-vehicle-header {
    padding: 28px;
    text-align: center;
}

.compare-vehicle-name {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-top: 16px;
}

.compare-vehicle-price {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin-top: 8px;
}

.compare-remove-btn {
    margin-top: 12px;
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    color: #888;
}

/* Vehicle Detail Page */
.vehicle-detail {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
}

.vehicle-gallery {
    background: #f8f8f8;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    margin-bottom: 32px;
}

.vehicle-detail-title {
    font-size: 32px;
    font-weight: 900;
    color: #111;
    margin-bottom: 12px;
}

.vehicle-detail-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.vehicle-detail-category {
    padding: 6px 14px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.vehicle-detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.vehicle-detail-feature {
    padding: 10px 18px;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

.vehicle-detail-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    position: relative;
}

.tab-btn.active {
    color: #111;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #111;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* MyPage */
.mypage {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 28px 100px;
}

.mypage-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.mypage-sidebar {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 24px;
    height: fit-content;
}

.mypage-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mypage-menu-item {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.mypage-menu-item:hover {
    background: #f5f5f5;
}

.mypage-menu-item.active {
    background: #111;
    color: #fff;
}

.mypage-content {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 32px;
}

/* Coupon List */
.coupon-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-card {
    display: flex;
    border: 2px dashed #eee;
    border-radius: 16px;
    overflow: hidden;
}

.coupon-left {
    padding: 24px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.coupon-value {
    font-size: 28px;
    font-weight: 900;
    color: #111;
}

.coupon-type {
    font-size: 12px;
    color: #888;
}

.coupon-right {
    flex: 1;
    padding: 20px 24px;
}

.coupon-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.coupon-condition {
    font-size: 12px;
    color: #888;
}

.coupon-expiry {
    font-size: 11px;
    color: #ef4444;
    margin-top: 8px;
}

/* Point History */
.point-history {
    display: flex;
    flex-direction: column;
}

.point-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.point-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.point-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.point-date {
    font-size: 12px;
    color: #888;
}

.point-value {
    font-size: 16px;
    font-weight: 800;
}

.point-value.plus {
    color: #16a34a;
}

.point-value.minus {
    color: #ef4444;
}

/* Vehicle Actions (Wishlist/Compare buttons on card) */
.vehicle-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-actions {
    opacity: 1;
    transform: translateY(0);
}

.vehicle-actions .wishlist-btn,
.vehicle-actions .compare-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.vehicle-actions .compare-btn {
    font-size: 15px;
}

.vehicle-actions .wishlist-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(239,68,68,0.3);
}

.vehicle-actions .compare-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.vehicle-actions .wishlist-btn:active,
.vehicle-actions .compare-btn:active {
    transform: scale(1.05);
}

.vehicle-actions .wishlist-btn.active {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    animation: heartBeat 0.4s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

.vehicle-actions .compare-btn.active {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Extra Options */
.extra-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.extra-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.extra-option:hover {
    border-color: #bbb;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.extra-option:hover::before {
    opacity: 1;
}

.extra-option:active {
    transform: translateX(2px) scale(0.99);
}

.extra-option.selected {
    border-color: #111;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.extra-option.selected::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #111;
}

.extra-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.extra-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.extra-option:hover .extra-checkbox {
    border-color: #999;
}

.extra-option.selected .extra-checkbox {
    background: #111;
    border-color: #111;
    transform: scale(1.05);
}

.extra-checkbox-check {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s;
}

.extra-option.selected .extra-checkbox-check {
    opacity: 1;
    transform: scale(1);
}

.extra-icon {
    font-size: 28px;
    transition: transform 0.3s;
}

.extra-option:hover .extra-icon {
    transform: scale(1.15);
}

.extra-option.selected .extra-icon {
    transform: scale(1.1);
}

.extra-content {
    flex: 1;
}

.extra-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    transition: color 0.2s;
}

.extra-option.selected .extra-name {
    color: #000;
}

.extra-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.extra-price {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s;
}

.extra-option.selected .extra-price {
    background: #111;
    color: #fff;
}

/* Event Grid */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.event-card {
    padding: 28px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.event-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    color: inherit;
    margin-bottom: 16px;
}

.event-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.event-desc {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.event-period {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.event-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: inherit;
    transition: all 0.2s;
}

.event-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Toast styles update */
.toast {
    position: fixed;
    top: 100px;
    right: 28px;
    padding: 16px 24px;
    background: #111;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast-success { background: #16a34a; }
.toast-error { background: #ef4444; }
.toast-warning { background: #f59e0b; }
.toast-info { background: #6366f1; }

.toast-icon {
    font-size: 18px;
}

.toast-message {
    flex: 1;
}

/* ═══════════════════════════════════════
   QUICK MENU - PREMIUM DESIGN
   ═══════════════════════════════════════ */

.quick-menu {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
}

/* Overlay */
.quick-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.quick-menu.open .quick-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Toggle Button */
.quick-menu-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    cursor: pointer;
    position: relative;
    z-index: 10;
    box-shadow:
        0 4px 15px rgba(0,0,0,0.3),
        0 0 0 0 rgba(17,17,17,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.quick-menu-toggle:hover {
    transform: scale(1.08);
    box-shadow:
        0 8px 30px rgba(0,0,0,0.4),
        0 0 0 8px rgba(17,17,17,0.1);
}

.quick-menu-toggle:active {
    transform: scale(1.02);
}

.quick-menu-toggle-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.quick-menu.open .quick-menu-toggle-bg {
    opacity: 1;
}

.quick-menu-toggle-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-menu-toggle-icon span {
    position: absolute;
    width: 20px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-menu-toggle-icon span:first-child {
    transform: rotate(90deg);
}

.quick-menu.open .quick-menu-toggle-icon span:first-child {
    transform: rotate(180deg);
    opacity: 0;
}

.quick-menu.open .quick-menu-toggle-icon span:last-child {
    transform: rotate(180deg);
}

/* Menu Items Container */
.quick-menu-items {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-menu.open .quick-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Individual Menu Item */
.quick-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.04);
    text-decoration: none;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.quick-menu-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.quick-menu-item:hover::before {
    opacity: 1;
}

.quick-menu.open .quick-menu-item {
    transform: translateX(0);
    opacity: 1;
}

.quick-menu-item:hover {
    transform: translateX(-8px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(0,0,0,0.18),
        0 0 0 1px rgba(0,0,0,0.06);
}

.quick-menu-item:active {
    transform: translateX(-4px) scale(0.98);
}

/* Item Icon */
.quick-menu-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}

.quick-menu-item:hover .quick-menu-item-icon {
    transform: scale(1.1) rotate(-5deg);
}

.quick-menu-item-icon.chat {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.quick-menu-item-icon.wishlist {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: #fff;
}

.quick-menu-item-icon.compare {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
}

.quick-menu-item-icon.top {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
}

/* Pulse Effect */
.quick-menu-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #fff;
}

.quick-menu-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #10b981;
    animation: quickPulse 2s infinite;
}

@keyframes quickPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 0; }
}

/* Badge */
.quick-menu-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ef4444;
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(239,68,68,0.4);
}

/* Item Labels */
.quick-menu-item-label {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    display: block;
    transition: color 0.2s;
}

.quick-menu-item-sub {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 2px;
}

.quick-menu-item:hover .quick-menu-item-label {
    color: #000;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #111 0%, #333 100%);
    z-index: 9999;
    transition: width 0.1s;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-menu {
        bottom: 20px;
        right: 20px;
    }

    .quick-menu-toggle {
        width: 56px;
        height: 56px;
    }

    .quick-menu-item {
        min-width: 160px;
        padding: 12px 16px 12px 14px;
    }

    .quick-menu-item-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .quick-menu-item-label {
        font-size: 13px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .vehicle-detail-grid {
        grid-template-columns: 1fr;
    }

    .mypage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .compare-float {
        bottom: 80px;
        right: 16px;
    }

    .quick-menu {
        bottom: 16px;
        right: 16px;
    }

    .toast {
        right: 16px;
        left: 16px;
        width: auto;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }
}
