/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ===== DESIGN TOKENS — Deep Indigo Luxury Theme ===== */
:root {
  --bg-body: #f5f5f7;
  --bg-white: #ffffff;
  --bg-cream: #fafafe;
  --bg-light: #eeeef2;
  --bg-accent-light: #ede9fe;
  --bg-green-light: #f0fdf4;
  
  --primary: #6c3ce0;
  --primary-dark: #5429c4;
  --primary-light: #8b5cf6;
  
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --accent: #06b6d4;
  
  --green: #10b981;
  --green-dark: #059669;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ea952;
  --blue: #2563eb;
  
  --text-dark: #1a1a2e;
  --text-body: #3d3d56;
  --text-muted: #7c7c96;
  --text-light: #a8a8be;
  
  --border: rgba(0,0,0,0.06);
  --border-light: rgba(0,0,0,0.03);
  
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 24px rgba(108, 60, 224, 0.3);
  --shadow-gold: 0 8px 24px rgba(245, 158, 11, 0.3);
  
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 8px;
  
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1280px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; transition: opacity 0.3s ease; }
img[loading] { opacity: 1; }
img.loaded, img[loading="eager"] { opacity: 1; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; border: none; font-family: inherit; -webkit-tap-highlight-color: transparent; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.15; color: var(--text-dark); letter-spacing: -0.02em; }
::selection { background: var(--primary); color: #fff; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 16px; padding: 8px 20px; background: rgba(108, 60, 224, 0.06); border: none; border-radius: 50px;
}
.section-title { font-size: 2.5rem; margin-bottom: 16px; color: var(--text-dark); }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; line-height: 1.6; margin-bottom: 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 1rem; padding: 16px 32px; border-radius: 50px; transition: all var(--transition); width: 100%; text-align: center; border: none; position: relative; overflow: hidden; font-family: 'Outfit', sans-serif;
}
.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 ease; }
.btn:hover::before { left: 100%; }
.btn:active { transform: scale(0.96) !important; }
.btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35); }

.btn-call { background: var(--text-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-call:hover { background: #000; transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); }

.btn-red { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: var(--shadow-primary); }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(108, 60, 224, 0.4); }

.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text-dark); }
.btn-outline:hover { border-color: var(--text-dark); background: var(--text-dark); color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 12px 24px; font-size: 0.9rem; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--glass-border); transition: all var(--transition); }
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 14px; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--text-dark); letter-spacing: -0.03em; }
.logo-text { background: linear-gradient(135deg, var(--text-dark), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; box-shadow: 0 10px 24px rgba(108, 60, 224, 0.35); border: 2px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; transform: translateY(0); transition: transform 0.3s ease; }
.logo:hover .logo-icon { transform: translateY(-3px) rotate(-5deg); box-shadow: 0 14px 28px rgba(108, 60, 224, 0.45); }
.logo-icon::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); animation: shine 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.nav { display: none; position: fixed; top: 80px; left: 0; width: 100%; height: calc(100vh - 80px); background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 30px 24px; gap: 8px; overflow-y: auto; }
.nav.open { display: flex; animation: fadeInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.nav a { padding: 16px 20px; border-radius: var(--radius-sm); font-weight: 600; color: var(--text-dark); transition: all var(--transition); font-size: 1.1rem; }
.nav a:hover, .nav a.active { background: rgba(0,0,0,0.04); color: var(--primary); padding-left: 28px; }
.hamburger { display: flex; flex-direction: column; gap: 6px; padding: 10px; }
.hamburger span { width: 28px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.header-cta { display: none; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar { background: linear-gradient(90deg, #0b0c10, #1f2833, #0b0c10); padding: 12px 24px; text-align: center; font-size: 0.8rem; font-weight: 700; color: #fff; position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; letter-spacing: 0.5px; background-size: 200% 100%; animation: shimmer 4s infinite linear; font-family: 'Outfit', sans-serif; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.announce-bar a { color: var(--gold); text-decoration: none; border-bottom: 1px dashed var(--gold); }
.has-announce .header { top: 43px; }
.has-announce .hero { padding-top: 150px; }

/* ===== HERO ===== */
.hero { padding: 120px 0 40px; position: relative; overflow: hidden; background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%); color: #fff; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(108, 60, 224, 0.15) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; font-size: 0.8rem; font-weight: 800; color: var(--gold); margin-bottom: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); animation: fadeInDown 0.8s ease; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(10px); }
.hero-badge .pulse { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 4px rgba(108, 60, 224, 0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(108, 60, 224, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(108, 60, 224, 0); } 100% { box-shadow: 0 0 0 0 rgba(108, 60, 224, 0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; color: #fff; animation: fadeInUp 0.8s ease 0.1s both; }
.hero h1 span { background: linear-gradient(135deg, var(--primary-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-sub strong { color: var(--gold); font-weight: 800; }

.hero-price-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(108, 60, 224, 0.2); color: var(--gold); padding: 14px 32px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.4rem; margin-bottom: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); animation: fadeInUp 0.8s ease 0.25s both; letter-spacing: 0.5px; border: 1px solid rgba(108, 60, 224, 0.3); backdrop-filter: blur(10px); }
.hero-price-tag small { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.8); letter-spacing: 0; }


.hero-buttons { display: flex; flex-direction: column; gap: 14px; max-width: 400px; margin: 0 auto 40px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-image { position: relative; max-width: 700px; margin: 0 auto; animation: fadeInUp 0.9s ease 0.4s both; z-index: 1; }
.hero-image img { transform: scale(1.05); filter: drop-shadow(0 30px 50px rgba(108, 60, 224, 0.2)); }
.hero-image-badge { position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: #34d399; padding: 10px 28px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); white-space: nowrap; z-index: 5; box-shadow: 0 8px 20px rgba(0,0,0,0.25); font-family: 'Outfit', sans-serif; letter-spacing: 0.5px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 600px; margin: 30px auto 0; position: relative; z-index: 2; }
.stat-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.2); transition: var(--transition); }
.stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); border-color: rgba(212, 175, 55, 0.3); }
.stat-card .num { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 900; color: #fff; }
.stat-card:nth-child(2) .num { color: var(--primary-light); }
.stat-card:nth-child(3) .num { color: var(--gold); }
.stat-card .label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-family: 'Outfit', sans-serif; }

.safety-bar { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 24px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; margin-top: 30px; font-size: 0.85rem; color: #fff; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.2); backdrop-filter: blur(5px); }

/* ===== MARQUEE ===== */
.marquee-strip { background: var(--primary); padding: 16px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.marquee-track { display: inline-flex; animation: marquee 25s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; padding: 0 32px; font-size: 0.9rem; font-weight: 700; color: #fff; font-family: 'Outfit', sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.marquee-track span b { color: var(--gold); }
.marquee-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; display: inline-block; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== BOOKING FORM ===== */
.booking-section { background: var(--bg-cream); position: relative; }
.booking-form { background: var(--bg-white); border: 1px solid var(--border); border-radius: 24px; padding: 40px 30px; max-width: 600px; margin: 0 auto; box-shadow: var(--shadow-lg); position: relative; }
.form-grid { display: flex; flex-direction: column; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); font-family: 'Outfit', sans-serif; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-light); border: 1px solid transparent; border-radius: var(--radius-sm); padding: 16px 20px; color: var(--text-dark); font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { background: var(--bg-white); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(108, 60, 224, 0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23343a40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; padding-right: 48px; cursor: pointer; }

/* Modal tweaks */
.lead-modal { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.lead-modal.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lead-modal-card { width: min(100%, 560px); max-height: 90vh; overflow-y: auto; background: var(--bg-white); border-radius: 24px; padding: 32px 24px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.3); animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid var(--border); }
@keyframes scaleUp { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.lead-modal-card h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--text-dark); }
.lead-modal-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; }
.lead-modal-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--bg-light); color: var(--text-dark); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.lead-modal-close:hover { background: var(--text-dark); color: #fff; transform: rotate(90deg); }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.category-card { background: var(--bg-white); border-radius: 24px; overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(108, 60, 224, 0.2); }
.category-card img { width: 100%; height: 220px; object-fit: cover; transition: transform var(--transition-slow); }
.category-card:hover img { transform: scale(1.05); }
.category-card-body { padding: 24px; text-align: center; }
.category-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.category-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.category-price { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--primary); margin-bottom: 20px; background: rgba(108, 60, 224, 0.06); padding: 8px 20px; border-radius: 50px; }
.category-price small { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }

/* ===== FILTERS ===== */
.filter-bar { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 16px; margin-bottom: 32px; scrollbar-width: none; -ms-overflow-style: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-pill { flex-shrink: 0; padding: 12px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; font-family: 'Outfit', sans-serif; background: var(--bg-white); border: 1px solid var(--border); color: var(--text-muted); transition: var(--transition); cursor: pointer; white-space: nowrap; box-shadow: var(--shadow-xs); }
.filter-pill:hover, .filter-pill.active { background: var(--text-dark); color: #fff; border-color: var(--text-dark); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

/* ===== VEHICLE CARDS ===== */
.vehicles-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.vehicle-card { background: var(--bg-white); border: none; border-radius: var(--radius); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.vehicle-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.vehicle-card-img { position: relative; height: 280px; overflow: hidden; background: radial-gradient(circle, #fff, var(--bg-light)); display: flex; align-items: center; justify-content: center; padding: 0; }
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }
.vehicle-badge { position: absolute; top: 16px; left: 16px; padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-family: 'Outfit', sans-serif; z-index: 2; box-shadow: var(--shadow-sm); }
.badge-popular { background: var(--text-dark); color: var(--gold); }
.badge-premium { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; }
.badge-value { background: var(--primary); color: #fff; }
.vehicle-card-body { padding: 32px 24px 24px; display: flex; flex-direction: column; flex: 1; position: relative; }
.vehicle-card-body::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.vehicle-card-body h3 { font-size: 1.5rem; margin-bottom: 6px; font-family: 'Outfit', sans-serif; color: var(--text-dark); }
.vehicle-card-best { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; }
.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.spec-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-body); padding: 10px 14px; background: var(--bg-body); border-radius: var(--radius-sm); font-weight: 600; }
.condition-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-green-light); border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 0.8rem; color: var(--green-dark); font-weight: 700; margin-top: auto; }
.vehicle-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.vehicle-price { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: var(--text-dark); display: flex; align-items: baseline; gap: 4px; }
.vehicle-price small { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; }
.vehicle-buttons { display: grid; grid-template-columns: 1fr; gap: 12px; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--text-dark); color: #fff; }
.why-section .section-title { color: #fff; }
.why-section .section-subtitle { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 32px 24px; text-align: center; transition: all var(--transition); }
.why-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
.why-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold); border: 1px solid rgba(212, 175, 55, 0.3); transition: transform var(--transition); }
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); background: rgba(212, 175, 55, 0.1); }
.why-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: #fff; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: flex; flex-direction: column; gap: 0; max-width: 600px; margin: 0 auto; position: relative; }
.steps-grid::before { content: ''; position: absolute; left: 28px; top: 30px; bottom: 30px; width: 2px; background: var(--border); border-radius: 2px; }
.step-card { display: flex; gap: 24px; align-items: flex-start; padding: 24px 0; position: relative; }
.step-num { flex-shrink: 0; width: 56px; height: 56px; background: var(--bg-white); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--primary); box-shadow: 0 0 0 8px var(--bg-body); position: relative; z-index: 1; transition: var(--transition); }
.step-card:hover .step-num { background: var(--primary); color: #fff; transform: scale(1.1); box-shadow: 0 0 0 8px rgba(217, 4, 41, 0.1); }
.step-content { background: var(--bg-white); border: 1px solid var(--border); border-radius: 20px; padding: 24px; flex: 1; box-shadow: var(--shadow-sm); transition: var(--transition); }
.step-card:hover .step-content { border-color: rgba(217, 4, 41, 0.2); transform: translateX(10px); box-shadow: var(--shadow); }
.step-content h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step-content p { font-size: 0.95rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gallery-item { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

/* ===== TESTIMONIALS ===== */
.testimonials-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 20px 0 40px; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card { flex-shrink: 0; width: 85vw; max-width: 400px; scroll-snap-align: start; background: var(--bg-white); border: 1px solid var(--border); border-radius: 24px; padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-light); }
.testimonial-card::before { content: '"'; position: absolute; top: -10px; left: 24px; font-family: 'Outfit', sans-serif; font-size: 5rem; font-weight: 900; color: rgba(108, 60, 224, 0.1); line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; display: flex; gap: 4px; }
.testimonial-card p { font-size: 1rem; color: var(--text-body); margin-bottom: 24px; font-style: italic; line-height: 1.7; position: relative; z-index: 1; }
.testimonial-author { font-weight: 800; font-size: 1rem; color: var(--text-dark); font-family: 'Outfit', sans-serif; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(108, 60, 224, 0.2); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 24px; cursor: pointer; font-weight: 700; font-size: 1.05rem; transition: var(--transition); gap: 16px; color: var(--text-dark); font-family: 'Outfit', sans-serif; }
.faq-q:hover { color: var(--primary); }
.faq-q svg { flex-shrink: 0; width: 24px; height: 24px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); color: var(--text-muted); background: var(--bg-light); border-radius: 50%; padding: 4px; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: #fff; background: var(--text-dark); }
.faq-item.open { border-color: var(--text-dark); box-shadow: var(--shadow-sm); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 24px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ===== TERMS ===== */
.terms-content { max-width: 800px; margin: 0 auto; background: var(--bg-white); border: 1px solid var(--border); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-sm); }
.terms-content li { padding: 16px 0; font-size: 0.95rem; color: var(--text-body); border-bottom: 1px dashed var(--border); display: flex; align-items: flex-start; gap: 12px; }
.terms-content li:last-child { border-bottom: none; padding-bottom: 0; }

/* ===== FOOTER ===== */
.footer { background: #0b0c10; color: #fff; padding: 80px 0 120px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); }
.footer h4 { color: #fff; font-size: 1.1rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; }
.footer-brand .logo { justify-content: center; margin-bottom: 20px; color: #fff; font-size: 1.8rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 400px; margin: 0 auto; line-height: 1.7; }
.footer-links h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 24px; }
.footer-links a { display: inline-block; padding: 8px 0; font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-links a:hover { color: #fff; transform: translateX(5px); }
.footer-contact-item { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 0; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-contact-item span { color: var(--gold); font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 24px; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-powered { text-align: center; margin-top: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-powered a { color: var(--gold); text-decoration: none; font-weight: 700; opacity: 0.8; transition: opacity var(--transition); }
.footer-powered a:hover { opacity: 1; text-decoration: underline; }

.hero-powered { position: relative; text-align: center; margin-top: 24px; font-size: 0.75rem; color: rgba(255,255,255,0.4); z-index: 10; white-space: nowrap; }
.hero-powered a { color: var(--gold); font-weight: 700; text-decoration: none; opacity: 0.8; }
.hero-powered a:hover { opacity: 1; text-decoration: underline; }

/* ===== MEDIA QUERIES ===== */
.float-whatsapp { position: fixed; bottom: 90px; right: 20px; z-index: 999; width: 64px; height: 64px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); transition: all var(--transition); }
.float-whatsapp::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, 0.4); animation: pulseRing 2s ease-out infinite; }
.float-whatsapp:hover { transform: scale(1.1) rotate(-5deg); background: var(--whatsapp-dark); }
.float-whatsapp svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulseRing { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } }

/* ===== PRICING SECTION ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--bg-white); border-radius: var(--radius); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-featured { background: linear-gradient(135deg, #0f0f1a, #1a1a2e); color: #fff; box-shadow: var(--shadow-lg); transform: scale(1.02); }
.pricing-featured:hover { transform: scale(1.02) translateY(-8px); }
.pricing-featured .pricing-header h3 { color: var(--gold); }
.pricing-featured .pricing-amount { color: #fff; }
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-popular { position: absolute; top: 20px; right: -30px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; padding: 6px 40px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; transform: rotate(45deg); }
.pricing-header h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 16px; font-family: 'Outfit', sans-serif; }
.pricing-amount { font-size: 3rem; font-weight: 900; font-family: 'Outfit', sans-serif; color: var(--text-dark); margin-bottom: 32px; }
.pricing-amount small { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.pricing-features li { font-size: 0.95rem; color: var(--text-body); font-weight: 600; }

/* ===== LOCATIONS SECTION ===== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.location-card { background: var(--bg-white); padding: 32px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.location-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.location-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.location-card h4 { font-size: 1.2rem; margin-bottom: 8px; font-family: 'Outfit', sans-serif; color: var(--text-dark); }
.location-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== TRUST SECTION ===== */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.trust-card { background: var(--bg-white); padding: 40px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.trust-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.trust-card span { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.trust-card h4 { font-size: 1.15rem; margin-bottom: 10px; font-family: 'Outfit', sans-serif; color: var(--text-dark); }
.trust-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 998; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 12px 16px; display: flex; gap: 12px; box-shadow: 0 -4px 24px rgba(0,0,0,0.08); padding-bottom: max(12px, env(safe-area-inset-bottom)); }
.sticky-bottom .btn { font-size: 0.95rem; padding: 14px 20px; border-radius: 12px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero h1 { font-size: 2.4rem; }
  .btn { min-height: 52px; }
  .vehicle-buttons { grid-template-columns: 1fr; }
  .terms-content { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== TABLET ===== */
@media (min-width: 768px) {
  .hero { padding: 160px 0 60px; }
  .has-announce .hero { padding-top: 190px; }
  .hero h1 { font-size: 4rem; }
  .hero-buttons { flex-direction: row; justify-content: center; max-width: none; }
  .btn { width: auto; }
  
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-grid .form-full { grid-column: 1 / -1; }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; text-align: left; }
  .footer-brand .logo { justify-content: flex-start; }
  .footer-brand p { margin: 0; }
  .footer-contact-item { justify-content: flex-start; }
}

/* ===== STATUS SELECT ===== */
.status-select { padding: 6px 10px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-light); font-size: 0.8rem; font-weight: 700; cursor: pointer; color: var(--text-dark); outline: none; transition: var(--transition); }
.status-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108, 60, 224, 0.1); }

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  .header-inner { height: 90px; }
  .nav { display: flex; position: static; width: auto; height: auto; background: none; flex-direction: row; padding: 0; gap: 8px; backdrop-filter: none; }
  .nav a { font-size: 0.95rem; padding: 10px 16px; border-radius: 50px; }
  .nav a:hover, .nav a.active { padding-left: 16px; background: rgba(0,0,0,0.05); }
  .hamburger { display: none; }
  .header-cta { display: flex; }
  
  .hero-image { max-width: 900px; margin-top: 20px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 800px; margin-top: 50px; }
  .stat-card { padding: 32px 24px; }
  
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  
  .sticky-bottom { display: none; }
  .float-whatsapp { bottom: 40px; right: 40px; width: 72px; height: 72px; }
  .float-whatsapp svg { width: 36px; height: 36px; }
  .footer { padding-bottom: 60px; }
  
  .car-detail-page .container { max-width: 900px; }
}

/* ===== CAR DETAIL PAGE ===== */
.car-detail-page { padding: 120px 0 60px; background: var(--bg-body); min-height: 100vh; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); text-decoration: none; font-weight: 700; margin-bottom: 24px; transition: var(--transition); }
.back-link:hover { color: var(--primary); transform: translateX(-5px); }

.car-detail-hero { background: var(--bg-white); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; margin-bottom: 40px; }
.car-detail-gallery { position: relative; background: radial-gradient(circle, #fff, var(--bg-light)); height: 400px; display: flex; align-items: center; justify-content: center; }
.car-detail-main-img img { width: 100%; height: 100%; object-fit: contain; max-height: 350px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); }
.car-detail-badge { position: absolute; top: 24px; left: 24px; background: var(--text-dark); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-family: 'Outfit', sans-serif; }

.car-detail-info { padding: 40px; }
.car-detail-info h1 { font-size: 2.5rem; font-family: 'Outfit', sans-serif; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
.car-detail-best { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }

.car-detail-price-box { display: flex; align-items: center; justify-content: space-between; padding: 24px; background: var(--bg-body); border-radius: var(--radius-sm); margin-bottom: 30px; }
.car-detail-price { font-size: 2.5rem; font-weight: 900; font-family: 'Outfit', sans-serif; color: var(--text-dark); display: flex; align-items: baseline; gap: 6px; }
.car-detail-price small { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
.car-detail-avail { color: var(--green-dark); font-weight: 700; background: var(--bg-green-light); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; }

.car-detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.car-detail-specs-section { background: var(--bg-white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); margin-bottom: 40px; }
.car-detail-specs-section h2 { font-size: 1.8rem; margin-bottom: 24px; font-family: 'Outfit', sans-serif; }
.car-detail-specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.car-detail-spec { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--bg-body); border-radius: var(--radius-sm); font-weight: 600; color: var(--text-body); }
.spec-icon { font-size: 1.4rem; }

.car-detail-condition { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 40px; }
.condition-item { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--bg-white); border-radius: var(--radius-sm); font-weight: 700; color: var(--text-dark); box-shadow: var(--shadow-sm); }
.condition-item span { font-size: 1.2rem; }

.car-detail-booking { background: var(--bg-white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); border: 2px solid var(--border); margin-bottom: 60px; }
.car-detail-booking h2 { font-size: 2rem; font-family: 'Outfit', sans-serif; margin-bottom: 8px; }
.car-detail-booking p { color: var(--text-muted); margin-bottom: 32px; }
.car-detail-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 767px) { .car-detail-form .form-row { grid-template-columns: 1fr; } }
.car-detail-similar h2 { font-size: 2rem; font-family: 'Outfit', sans-serif; margin-bottom: 24px; }

