/* ============================================================
   VU RENTAL CARS — PREMIUM DESIGN SYSTEM
   ============================================================ */
:root {
  --orange:        #FF6B1A;
  --orange-dark:   #E05A0F;
  --orange-light:  rgba(255,107,26,0.08);
  --orange-border: rgba(255,107,26,0.25);
  --dark:          #1A1A2E;
  --text:          #374151;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --bg:            #FFFFFF;
  --bg-light:      #F8F9FA;
  --bg-section:    #F3F4F6;
  --bg-dark:       #111827;
  --border:        #E5E7EB;
  --border-light:  #F3F4F6;
  --shadow-xs:     0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm:     0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:     0 16px 50px rgba(0,0,0,0.12);
  --shadow-xl:     0 24px 60px rgba(0,0,0,0.16);
  --font-head:     'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --container:     1200px;
  --header-h:      72px;
  --ease:          0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ===== UTILS ===== */
.hidden { display: none !important; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn-orange { background: var(--orange); color: #fff; border: none; border-radius: var(--radius-sm); padding: 0.6rem 1.5rem; font-family: var(--font-head); font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: background var(--ease), box-shadow var(--ease), transform var(--ease); white-space: nowrap; }
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 4px 20px rgba(255,107,26,0.35); transform: translateY(-1px); }
.btn-orange.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-orange.btn-lg { padding: 0.85rem 2.5rem; font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: var(--bg); border-bottom: 1px solid var(--border); transition: box-shadow var(--ease); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; height: var(--header-h); gap: 2rem; }

.logo-wrap { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-shield { width: 40px; height: 40px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 900; font-size: 1rem; color: #fff; flex-shrink: 0; }
.logo-text-block { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--dark); letter-spacing: -0.01em; }
.logo-brand em { color: var(--orange); font-style: normal; }
.logo-tagline { font-size: 0.6rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 0.25rem; flex: 1; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); padding: 0.4rem 0.85rem; border-radius: var(--radius-sm); transition: color var(--ease), background var(--ease); white-space: nowrap; border-bottom: 2px solid transparent; display: inline-block; }
.nav-link:hover { color: var(--orange); }
.nav-link.active { color: var(--orange); font-weight: 600; border-bottom-color: var(--orange); border-radius: 0; }

.header-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.header-phone-link { display: flex; align-items: center; gap: 0.45rem; font-size: 0.875rem; font-weight: 600; color: var(--text); transition: color var(--ease); }
.header-phone-link i { color: var(--orange); }
.header-phone-link:hover { color: var(--orange); }

.hamburger-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 0.4rem; margin-left: auto; }
.hamburger-btn span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--ease); }

.mobile-nav-drawer { display: none; flex-direction: column; background: var(--bg); border-top: 1px solid var(--border); padding: 0.5rem 1.5rem 1rem; box-shadow: var(--shadow-md); }
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer .nav-link { padding: 0.7rem 0; border-radius: 0; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; display: block; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.mobile-phone-link { font-size: 0.875rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 0.5rem; }
.mobile-phone-link i { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section { background: linear-gradient(120deg,#F9FAFB 0%,#FFFFFF 45%,#FFF8F4 100%); padding: 3.5rem 0 1rem; overflow: hidden; position: relative; }
.hero-section::after { content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: radial-gradient(ellipse at 80% 50%,rgba(255,107,26,0.05) 0%,transparent 65%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; min-height: 400px; position: relative; z-index: 1; }
.hero-headline { font-family: var(--font-head); font-size: 3.75rem; font-weight: 900; color: var(--dark); line-height: 1.0; letter-spacing: -0.025em; margin-bottom: 1.25rem; }
.hero-orange { color: var(--orange); }
.hero-subtext { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 440px; margin-bottom: 2rem; }
.trust-strip { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.trust-item i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.hero-right { display: flex; align-items: center; justify-content: flex-end; }
.hero-img-wrapper { position: relative; width: 100%; max-width: 580px; }
.hero-car-img { width: 100%; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.14)); animation: floatY 4s ease-in-out infinite; }
.hero-img-shadow { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 70%; height: 30px; background: radial-gradient(ellipse,rgba(0,0,0,0.12) 0%,transparent 70%); border-radius: 50%; pointer-events: none; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================================================
   SEARCH SECTION
   ============================================================ */
.search-section { padding: 0 0 2.5rem; margin-top: -1.5rem; position: relative; z-index: 10; }
.search-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 1.75rem 2rem 1.5rem; }
.search-card-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.25rem; }
.search-card-bar { display: inline-block; width: 3px; height: 18px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.search-card-title { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--orange); letter-spacing: 0.14em; text-transform: uppercase; }
.search-fields-row { display: flex; gap: 0.85rem; align-items: flex-end; flex-wrap: nowrap; }
.search-field-group { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.search-field-group label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; }
.search-input-wrap { position: relative; display: flex; align-items: center; }
.search-input-wrap i { position: absolute; left: 0.75rem; color: var(--orange); font-size: 0.8rem; pointer-events: none; z-index: 1; }
.search-input-wrap input, .search-input-wrap select { width: 100%; padding: 0.65rem 0.65rem 0.65rem 2.15rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.84rem; color: var(--text); background: var(--bg-light); outline: none; transition: border-color var(--ease),box-shadow var(--ease),background var(--ease); -webkit-appearance: none; }
.search-input-wrap input:focus, .search-input-wrap select:focus { border-color: var(--orange); background: var(--bg); box-shadow: 0 0 0 3px var(--orange-light); }
.search-input-wrap input[type="date"]::-webkit-calendar-picker-indicator, .search-input-wrap input[type="time"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.5; }
.btn-search-cars { background: var(--orange); color: #fff; border: none; border-radius: var(--radius-sm); padding: 0.7rem 1.6rem; font-family: var(--font-head); font-weight: 700; font-size: 0.875rem; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; transition: background var(--ease),box-shadow var(--ease),transform var(--ease); align-self: flex-end; }
.btn-search-cars:hover { background: var(--orange-dark); box-shadow: 0 4px 18px rgba(255,107,26,0.35); transform: translateY(-1px); }
.search-result-notice { margin-top: 0.85rem; padding: 0.65rem 1rem; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.search-result-notice.success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.search-result-notice.warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-section { padding: 4rem 0 4.5rem; background: var(--bg-section); }
.section-row-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.section-title-h2 { font-family: var(--font-head); font-size: 1.9rem; font-weight: 900; color: var(--dark); display: flex; align-items: center; gap: 0.75rem; }
.title-accent-bar { display: inline-block; width: 40px; height: 5px; background: var(--orange); border-radius: 3px; }
.btn-view-all { background: none; border: none; color: var(--orange); font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 0.4rem; transition: gap var(--ease),opacity var(--ease); }
.btn-view-all:hover { gap: 0.7rem; opacity: 0.8; }
.fleet-filter-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-pill { background: var(--bg); border: 1.5px solid var(--border); color: var(--text-muted); border-radius: 50px; padding: 0.4rem 1.1rem; font-size: 0.8rem; font-weight: 600; font-family: var(--font-head); cursor: pointer; transition: all var(--ease); white-space: nowrap; }
.filter-pill:hover { border-color: var(--orange); color: var(--orange); }
.filter-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 3px 12px rgba(255,107,26,0.25); }
.fleet-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ============================================================
   CAR CARD
   ============================================================ */
.car-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: transform var(--ease),box-shadow var(--ease),border-color var(--ease); position: relative; }
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--orange-border); }
.car-card-img-box { background: #F9FAFB; height: 165px; display: flex; align-items: center; justify-content: center; padding: 1rem; overflow: hidden; position: relative; }
.car-card-img { max-height: 140px; max-width: 100%; object-fit: contain; transition: transform 0.4s ease; }
.car-card:hover .car-card-img { transform: scale(1.07); }
.car-card-badge-tag { position: absolute; top: 10px; left: 10px; font-family: var(--font-head); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.18rem 0.55rem; border-radius: 50px; border: 1px solid; pointer-events: none; }
.car-card-body { padding: 1rem 1rem 0.5rem; }
.car-card-name { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 0.25rem; }
.car-card-type-color { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.car-card-specs { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.car-spec-tag { display: flex; align-items: center; gap: 0.28rem; font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.car-spec-tag i { color: var(--orange); font-size: 0.72rem; }
.car-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-top: 1px solid var(--border-light); }
.car-card-price-wrap { display: flex; align-items: baseline; gap: 0.2rem; }
.car-card-price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 900; color: var(--orange); }
.car-card-per-day { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.btn-card-view-details { background: transparent; border: 1.5px solid var(--orange); color: var(--orange); border-radius: var(--radius-sm); padding: 0.38rem 0.9rem; font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: all var(--ease); }
.btn-card-view-details:hover { background: var(--orange); color: #fff; box-shadow: 0 3px 14px rgba(255,107,26,0.3); }
.car-card.unavailable { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.car-card.unavailable .car-card-img-box::after { content: 'UNAVAILABLE'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-20deg); font-family: var(--font-head); font-size: 0.85rem; font-weight: 900; color: rgba(220,38,38,0.65); border: 2px solid rgba(220,38,38,0.5); padding: 0.2rem 0.6rem; border-radius: 6px; letter-spacing: 0.1em; white-space: nowrap; }
.no-cars-msg { grid-column: 1/-1; text-align: center; padding: 3rem 1rem; color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-section { padding: 4.5rem 0; background: var(--bg); border-top: 1px solid var(--border); }
.section-center-header { text-align: center; margin-bottom: 3rem; }
.section-center-header .section-title-h2 { justify-content: center; }
.section-center-header p { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step-card { text-align: center; padding: 2rem 1.25rem; }
.step-num { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.step-icon { width: 64px; height: 64px; background: var(--orange-light); border: 2px solid var(--orange-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem; color: var(--orange); transition: all var(--ease); }
.step-card:hover .step-icon { background: var(--orange); color: #fff; border-color: var(--orange); transform: scale(1.08); }
.step-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { padding: 4rem 0; background: var(--bg-section); }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.benefit-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: transform var(--ease),box-shadow var(--ease),border-color var(--ease); }
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange-border); }
.benefit-icon-wrap { width: 58px; height: 58px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem; color: var(--orange); transition: all var(--ease); }
.benefit-card:hover .benefit-icon-wrap { background: var(--orange); color: #fff; }
.benefit-card h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { background: var(--bg-dark); padding: 4rem 0; overflow: hidden; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.cta-headline { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 0.75rem; }
.cta-subtext { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 1.75rem; line-height: 1.6; }
.cta-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.cta-feature-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.cta-feature-list i { color: var(--orange); width: 16px; }
.cta-right { display: flex; align-items: center; justify-content: flex-end; }
.cta-car-img { max-width: 540px; width: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); animation: floatY 5s ease-in-out infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0F172A; color: rgba(255,255,255,0.6); padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo-brand { color: #fff; }
.footer-desc { font-size: 0.84rem; line-height: 1.75; margin-bottom: 1.25rem; color: rgba(255,255,255,0.5); }
.footer-social-row { display: flex; gap: 0.55rem; margin-bottom: 1rem; }
.footer-social-row a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all var(--ease); }
.footer-social-row a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-col-title { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.84rem; }
.footer-contact-list i { color: var(--orange); width: 14px; flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-list a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-contact-list a:hover { color: var(--orange); }
.footer-contact-list span { color: rgba(255,255,255,0.55); }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.04); padding: 1rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 0.5rem; }

/* ============================================================
   MODAL OVERLAYS
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(17,24,39,0.65); z-index: 5000; display: flex; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(6px); animation: fadeOverlay 0.2s ease; }
@keyframes fadeOverlay { from { opacity: 0; } to { opacity: 1; } }
.modal-box { background: var(--bg); border-radius: var(--radius-xl); position: relative; animation: slideUpModal 0.3s cubic-bezier(0.16,1,0.3,1); max-height: 92vh; overflow-y: auto; }
@keyframes slideUpModal { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close-btn { position: absolute; top: 1rem; right: 1rem; z-index: 10; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-light); border: 1.5px solid var(--border); color: var(--text-muted); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--ease); }
.modal-close-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ============================================================
   CAR DETAIL MODAL
   ============================================================ */
.car-detail-modal { width: 100%; max-width: 960px; padding: 2rem; }
.car-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 0.5rem; }
.car-detail-img-box { background: #F9FAFB; border-radius: var(--radius-lg); padding: 1.75rem; display: flex; align-items: center; justify-content: center; min-height: 200px; margin-bottom: 1rem; }
.car-detail-img-box img { max-height: 190px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.15)); }
.car-detail-spec-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1rem; }
.spec-tile { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.6rem 0.75rem; display: flex; flex-direction: column; gap: 0.15rem; }
.spec-tile-label { font-size: 0.62rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; }
.spec-tile-val { font-size: 0.84rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 0.35rem; }
.spec-tile-val i { color: var(--orange); font-size: 0.78rem; }
.terms-scroll-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.85rem; max-height: 120px; overflow-y: auto; font-size: 0.68rem; color: var(--text-muted); line-height: 1.55; }
.terms-scroll-box h5 { font-size: 0.72rem; color: var(--text); font-weight: 700; margin-bottom: 0.4rem; font-family: var(--font-head); display: flex; align-items: center; gap: 0.35rem; }
.terms-scroll-box ul { padding-left: 1rem; }
.terms-scroll-box li { margin-bottom: 0.25rem; }

.car-detail-header-info { margin-bottom: 1rem; }
.car-detail-type-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; color: var(--orange); background: var(--orange-light); border: 1px solid var(--orange-border); border-radius: 50px; padding: 0.18rem 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.car-detail-name { font-family: var(--font-head); font-size: 1.7rem; font-weight: 900; color: var(--dark); text-transform: uppercase; line-height: 1.1; margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.car-detail-color { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.car-detail-price-row { display: flex; align-items: baseline; gap: 0.3rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.car-detail-price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--orange); }
.car-detail-per-day { font-size: 0.9rem; color: var(--text-muted); }

.booking-form { display: flex; flex-direction: column; }
.booking-form-section-label { font-size: 0.72rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.09em; margin: 0.75rem 0 0.5rem; display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-head); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.form-field-group { display: flex; flex-direction: column; gap: 0.28rem; margin-bottom: 0.5rem; }
.form-field-group label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); }
.form-field-group input, .form-field-group textarea { padding: 0.58rem 0.75rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.84rem; color: var(--text); background: var(--bg-light); outline: none; width: 100%; transition: border-color var(--ease),box-shadow var(--ease),background var(--ease); }
.form-field-group input:focus, .form-field-group textarea:focus { border-color: var(--orange); background: var(--bg); box-shadow: 0 0 0 3px var(--orange-light); }
.form-field-group textarea { resize: none; }
.form-field-group input[type="date"]::-webkit-calendar-picker-indicator, .form-field-group input[type="time"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.6; }

.price-summary-box { background: #F0FDF4; border: 1.5px solid #BBF7D0; border-radius: var(--radius-sm); padding: 0.85rem; margin: 0.5rem 0 0.65rem; }
.price-summary-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.price-summary-row strong { color: var(--text); font-weight: 600; }
.price-summary-total { border-top: 1px solid #BBF7D0; padding-top: 0.45rem; margin-top: 0.2rem; margin-bottom: 0; font-size: 0.95rem; font-weight: 700; }
.price-summary-total strong { color: var(--orange); font-size: 1.1rem; font-weight: 800; }

.terms-checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text); margin-bottom: 0.65rem; cursor: pointer; line-height: 1.4; }
.terms-checkbox-label input { accent-color: var(--orange); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
.terms-checkbox-label a { color: var(--orange); }

.form-error-block { background: #FEF2F2; border: 1.5px solid #FECACA; color: #DC2626; font-size: 0.78rem; padding: 0.6rem 0.85rem; border-radius: var(--radius-sm); margin-bottom: 0.65rem; line-height: 1.4; }
.btn-confirm-booking { background: var(--orange); color: #fff; border: none; border-radius: var(--radius-sm); padding: 0.85rem; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all var(--ease); }
.btn-confirm-booking:hover:not(:disabled) { background: var(--orange-dark); box-shadow: 0 4px 20px rgba(255,107,26,0.35); }
.btn-confirm-booking:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-spinner { display: flex; align-items: center; gap: 0.4rem; }

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.success-modal-box { max-width: 520px; width: 100%; padding: 2.5rem 2rem; text-align: center; }
.success-check-icon { font-size: 4.5rem; color: #10B981; margin-bottom: 1rem; display: block; animation: popIn 0.45s cubic-bezier(0.16,1,0.3,1); }
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-title { font-family: var(--font-head); font-size: 1.85rem; font-weight: 900; color: var(--dark); margin-bottom: 0.4rem; }
.success-subtitle { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.success-booking-id-tag { display: inline-block; background: var(--orange-light); border: 1.5px dashed var(--orange); border-radius: var(--radius-sm); padding: 0.85rem 2rem; margin-bottom: 1.25rem; }
.success-booking-id-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.2rem; }
.success-booking-id-val { display: block; font-family: var(--font-head); font-size: 1.65rem; font-weight: 900; color: var(--orange); letter-spacing: 0.06em; }
.success-details-box { background: var(--bg-light); border-radius: var(--radius-sm); padding: 1rem; text-align: left; margin-bottom: 1.5rem; }
.success-detail-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border-light); }
.success-detail-row:last-child { border-bottom: none; }
.success-detail-row span { color: var(--text-muted); }
.success-detail-row strong { color: var(--text); font-weight: 600; text-align: right; max-width: 60%; word-break: break-word; }
.success-total-row strong { color: var(--orange); font-size: 1.05rem; font-weight: 800; }
.btn-success-close { background: var(--bg-light); border: 1.5px solid var(--border); color: var(--text); border-radius: var(--radius-sm); padding: 0.75rem 2rem; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; transition: all var(--ease); }
.btn-success-close:hover { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in-section { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .fleet-cards-grid { grid-template-columns: repeat(3,1fr); }
  .hero-headline { font-size: 3.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-actions { display: none; }
  .hamburger-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 2rem 0; text-align: center; gap: 1.5rem; }
  .hero-right { order: -1; justify-content: center; }
  .hero-car-img { max-width: 75%; margin: 0 auto; }
  .hero-headline { font-size: 2.75rem; }
  .trust-strip { justify-content: center; }
  .hero-subtext { margin-left: auto; margin-right: auto; }
  .search-section { margin-top: 0; }
  .search-fields-row { flex-wrap: wrap; }
  .search-field-group { flex: 1; min-width: calc(50% - 0.5rem); }
  .btn-search-cars { width: 100%; justify-content: center; }
  .fleet-cards-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .cta-right { justify-content: center; }
  .cta-car-img { max-width: 340px; }
  .cta-feature-list { align-items: center; }
  .car-detail-modal { padding: 1.5rem; }
  .car-detail-grid { grid-template-columns: 1fr; }
  .car-detail-img-box { min-height: 170px; }
}

/* ============================================================
   POLICY MODAL
   ============================================================ */
.policy-modal-box {
  max-width: 760px;
  width: 95%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
}

.policy-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 2px solid var(--border);
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b3e 100%);
  position: relative;
  flex-shrink: 0;
}

.policy-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(255, 107, 26, 0.15);
  border: 1.5px solid rgba(255, 107, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}

.policy-modal-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.policy-modal-updated {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}

.policy-close-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  flex-shrink: 0;
}
.policy-close-btn:hover {
  background: rgba(255,107,26,0.2);
  border-color: var(--orange);
  color: var(--orange);
}

.policy-modal-body {
  overflow-y: auto;
  padding: 1.75rem;
  flex: 1;
}
.policy-modal-body::-webkit-scrollbar { width: 5px; }
.policy-modal-body::-webkit-scrollbar-track { background: var(--bg-light); }
.policy-modal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* Policy intro banner */
.policy-intro {
  background: linear-gradient(135deg, rgba(255,107,26,0.06) 0%, rgba(255,107,26,0.02) 100%);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Policy sections */
.policy-section {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.25rem;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.policy-section-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
}

.policy-section-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.policy-section-body {
  padding: 1rem 1.25rem;
  background: var(--bg);
}

.policy-section-body p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.policy-section-body p:last-child { margin-bottom: 0; }

.policy-section-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.policy-section-body ul li {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.65;
  padding: 0.3rem 0 0.3rem 1.3rem;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.policy-section-body ul li:last-child { border-bottom: none; }
.policy-section-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.policy-section-body ul li strong {
  color: var(--dark);
  font-weight: 600;
}

/* Highlight box inside policy */
.policy-highlight-box {
  background: #fff8f0;
  border: 1px solid rgba(255,107,26,0.25);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.84rem;
  color: #7a3a00;
  line-height: 1.6;
}
.policy-highlight-box strong { color: #c45000; }

/* Policy table */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-top: 0.5rem;
}
.policy-table th {
  background: var(--bg-section);
  color: var(--dark);
  font-weight: 700;
  font-family: var(--font-head);
  padding: 0.6rem 0.85rem;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.policy-table td {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border-light);
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}
.policy-table tr:nth-child(even) td { background: var(--bg-light); }
.policy-table .td-orange { color: var(--orange); font-weight: 700; }
.policy-table .td-green  { color: #16a34a; font-weight: 600; }
.policy-table .td-red    { color: #dc2626; font-weight: 600; }

/* Policy modal footer */
.policy-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
  flex-shrink: 0;
}
.policy-modal-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.policy-modal-footer p i { color: var(--orange); }

@media (max-width: 600px) {
  .hero-headline { font-size: 2.2rem; }
  .fleet-cards-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .car-card-img-box { height: 130px; }
  .section-title-h2 { font-size: 1.55rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .car-detail-spec-tiles { grid-template-columns: 1fr 1fr; }
  .success-modal-box { padding: 1.75rem 1.25rem; }
  .cta-headline { font-size: 1.8rem; }
  .policy-modal-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .policy-modal-header { padding: 1.1rem 1.25rem; }
  .policy-modal-body { padding: 1.25rem; }
}

@media (max-width: 420px) {
  .fleet-cards-grid { grid-template-columns: 1fr; }
  .search-field-group { min-width: 100%; }
  .car-card-footer { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .btn-card-view-details { width: 100%; justify-content: center; text-align: center; display: block; }
}
