* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #222; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 16px 40px; background: transparent; transition: all 0.3s; }
.navbar.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-container { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.4rem; color: #fff; }
.logo-img { height: 72px; width: auto; object-fit: contain; border-radius: 6px; }
.navbar.scrolled .logo { color: #222; }
.logo i { color: #f97316; font-size: 1.6rem; }
.logo b { color: #f97316; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.navbar.scrolled .nav-links a { color: #444; }
.nav-links a:hover, .nav-links a.active { color: #f97316; }
.nav-btn { background: #f97316; color: #fff !important; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.nav-btn:hover { background: #ea6a00; transform: translateY(-2px); }
.hamburger { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; }
.navbar.scrolled .hamburger { color: #222; }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%); display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 120px 80px 80px; position: relative; overflow: hidden; gap: 40px; width: 100%; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero-content { z-index: 1; }
.badge { background: rgba(249,115,22,0.2); color: #f97316; border: 1px solid rgba(249,115,22,0.4); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; display: inline-block; margin-bottom: 20px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-content h1 span { color: #f97316; }
.hero-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.7; margin-bottom: 35px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 50px; }
.btn-primary { background: linear-gradient(135deg, #f97316, #ea6a00); color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; box-shadow: 0 4px 20px rgba(249,115,22,0.4); border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(249,115,22,0.5); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.hero-stats { display: flex; gap: 40px; }
.hero-stats div h3 { font-size: 2rem; font-weight: 800; color: #f97316; }
.hero-stats div p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.hero-image { display: flex; justify-content: center; align-items: center; z-index: 1; }
.car-circle { width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.1), rgba(249,115,22,0.05)); border: 2px solid rgba(249,115,22,0.2); display: flex; align-items: center; justify-content: center; animation: float 4s ease-in-out infinite; overflow: hidden; }
.car-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

/* FEATURES */
.features { padding: 90px 20px; background: #f8fafc; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.section-title h2 span { color: #f97316; }
.section-title p { color: #64748b; font-size: 1.05rem; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1200px; margin: 0 auto; }
.feature-card { background: #fff; border-radius: 20px; padding: 35px 25px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #f1f5f9; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(249,115,22,0.15); border-color: #f97316; }
.feature-card .icon { width: 70px; height: 70px; background: linear-gradient(135deg, #f97316, #ea6a00); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.feature-card .icon i { font-size: 1.8rem; color: #fff; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #0f172a; }
.feature-card p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }

/* CARS */
.cars-section { padding: 90px 20px; }
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 40px; }
.car-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s; border: 1px solid #f1f5f9; }
.car-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.car-img-wrap { position: relative; overflow: hidden; height: 200px; }
.car-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.car-card:hover .car-img-wrap img { transform: scale(1.05); }
.car-badge { position: absolute; top: 15px; left: 15px; background: #f97316; color: #fff; padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.car-badge.best { background: #25D366; }
.car-info { padding: 20px; }
.car-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.car-type { color: #64748b; font-size: 0.88rem; margin-bottom: 12px; }
.car-type i { color: #f97316; margin-right: 4px; }
.car-features { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 15px; }
.car-features span { background: #f8fafc; border: 1px solid #e2e8f0; padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; color: #475569; }
.car-features span i { color: #f97316; margin-right: 4px; }
.car-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1.3rem; font-weight: 800; color: #f97316; }
.price small { font-size: 0.8rem; color: #94a3b8; font-weight: 400; }
.book-btn { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; padding: 10px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: all 0.3s; }
.book-btn:hover { transform: scale(1.05); }
.center-btn { text-align: center; }

/* HOW IT WORKS */
.how-it-works { padding: 90px 20px; background: linear-gradient(135deg, #0f172a, #1e3a5f); }
.how-it-works .section-title h2 { color: #fff; }
.how-it-works .section-title p { color: rgba(255,255,255,0.6); }
.steps { display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 900px; margin: 0 auto; flex-wrap: wrap; }
.step { background: rgba(255,255,255,0.05); border: 1px solid rgba(249,115,22,0.3); border-radius: 20px; padding: 35px 30px; text-align: center; flex: 1; min-width: 200px; position: relative; }
.step-num { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #f97316; color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.step i { font-size: 2.5rem; color: #f97316; margin-bottom: 15px; display: block; }
.step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.step-arrow { color: #f97316; font-size: 1.5rem; }

/* TESTIMONIALS */
.testimonials { padding: 90px 20px; background: #f8fafc; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; max-width: 1200px; margin: 0 auto; }
.review-card { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #f1f5f9; transition: all 0.3s; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.stars { font-size: 1.1rem; margin-bottom: 15px; }
.review-card p { color: #475569; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 45px; height: 45px; background: linear-gradient(135deg, #f97316, #ea6a00); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; }
.reviewer b { display: block; font-size: 0.95rem; }
.reviewer small { color: #94a3b8; font-size: 0.82rem; }

/* CTA */
.cta { padding: 90px 20px; background: linear-gradient(135deg, #f97316, #ea6a00); text-align: center; }
.cta h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 15px; }
.cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 35px; }
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: #fff; color: #f97316; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta .btn-primary:hover { background: #fff; }
.cta .btn-whatsapp { background: #25D366; }

/* FOOTER */
.footer { background: #0f172a; padding: 70px 20px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; max-width: 1200px; margin: 0 auto 50px; }
.footer .logo { color: #fff; font-size: 1.3rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.footer .logo-img { height: 65px; width: auto; object-fit: contain; border-radius: 6px; }
.footer p { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px; }
.footer p i { color: #f97316; margin-right: 8px; width: 16px; }
.footer p .fa-whatsapp { color: #25D366; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.3s; }
.social-links a:first-child { background: #25D366; color: #fff; }
.social-links a:nth-child(2) { background: #f97316; color: #fff; }
.social-links a:last-child { background: #0ea5e9; color: #fff; }
.social-links a:hover { transform: translateY(-3px) scale(1.1); }
.footer h4 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: #94a3b8; font-size: 0.9rem; transition: color 0.3s; }
.footer ul li a:hover { color: #f97316; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { color: #64748b; font-size: 0.88rem; }

/* FOOTER SERVICE AREAS */
.footer-areas { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; margin-top: 10px; max-width: 1200px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 30px; }
.area-block h5 { color: #f97316; font-size: 0.88rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.area-block h5 i { font-size: 0.8rem; }
.area-block p { color: #475569; font-size: 0.78rem; line-height: 1.8; }
@media(max-width:768px) { .footer-areas { grid-template-columns: 1fr; } }

/* FLOAT BUTTONS */
.float-buttons { position: fixed; bottom: 30px; right: 25px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.float-btn { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: all 0.3s; position: relative; }
.float-btn:hover { transform: scale(1.15); }
.float-btn:hover .float-label { opacity: 1; right: 70px; }
.float-label { position: absolute; right: -100px; background: #333; color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 500; white-space: nowrap; opacity: 0; transition: all 0.3s; pointer-events: none; }
.float-label::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #333; }
.whatsapp-float { background: linear-gradient(135deg, #25D366, #128C7E); animation: pulse-green 2.5s infinite; }
.call-float { background: linear-gradient(135deg, #f97316, #ea6a00); animation: pulse-orange 2.5s infinite 0.5s; }
@keyframes pulse-green { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 35px rgba(37,211,102,0.8),0 0 0 10px rgba(37,211,102,0.1)} }
@keyframes pulse-orange { 0%,100%{box-shadow:0 4px 20px rgba(249,115,22,0.4)} 50%{box-shadow:0 4px 35px rgba(249,115,22,0.8),0 0 0 10px rgba(249,115,22,0.1)} }

/* TYPEWRITER CURSOR */
.tw-cursor { color: #f97316; font-weight: 300; animation: blink 0.7s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
#typewriter { color: #f97316; }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(135deg, #0f172a, #1e3a5f); padding: 140px 20px 70px; text-align: center; }
.page-hero h1 { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero h1 span { color: #f97316; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 15px; }
.breadcrumb a, .breadcrumb span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.breadcrumb a:hover { color: #f97316; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* FORM STYLES */
.form-section { padding: 80px 20px; }
.form-wrap { max-width: 800px; margin: 0 auto; background: #fff; border-radius: 24px; box-shadow: 0 10px 50px rgba(0,0,0,0.08); padding: 50px; border: 1px solid #f1f5f9; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: #374151; }
.form-group input, .form-group select, .form-group textarea { padding: 13px 16px; border: 2px solid #e5e7eb; border-radius: 12px; font-size: 0.95rem; font-family: 'Poppins', sans-serif; outline: none; transition: border 0.3s; background: #fafafa; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #f97316; background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { grid-column: 1/-1; display: flex; gap: 15px; flex-wrap: wrap; }
.submit-wa { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; transition: all 0.3s; font-family: 'Poppins', sans-serif; }
.submit-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
@media(max-width:600px) {
  .form-wrap { padding: 24px 16px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-submit { flex-direction: column; }
  .form-submit .submit-wa, .form-submit .btn-primary { width: 100%; justify-content: center; }
}

/* CONTACT PAGE */
.contact-section { padding: 80px 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; max-width: 1100px; margin: 0 auto; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.contact-info h2 span { color: #f97316; }
.contact-info p { color: #64748b; font-size: 0.95rem; line-height: 1.7; margin-bottom: 30px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 18px; background: #f8fafc; border-radius: 16px; padding: 20px; border: 1px solid #e2e8f0; transition: all 0.3s; }
.contact-card:hover { border-color: #f97316; transform: translateX(5px); }
.contact-card .c-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.c-icon.wa { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }
.c-icon.ph { background: linear-gradient(135deg, #f97316, #ea6a00); color: #fff; }
.c-icon.em { background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #fff; }
.c-icon.mp { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: #fff; }
.contact-card h4 { font-size: 0.88rem; color: #94a3b8; margin-bottom: 4px; }
.contact-card p { font-size: 0.95rem; font-weight: 600; color: #0f172a; margin: 0; }
.contact-card a { color: #0f172a; }
.contact-card a:hover { color: #f97316; }
.map-embed { margin-top: 30px; border-radius: 16px; overflow: hidden; }
.contact-form-box { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.07); border: 1px solid #f1f5f9; }
.contact-form-box h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; color: #0f172a; }
.contact-form-box h2 span { color: #f97316; }
.contact-form-box p { color: #64748b; font-size: 0.9rem; margin-bottom: 25px; }

/* PRIVACY PAGE */
.privacy-section { padding: 80px 20px; }
.privacy-content { max-width: 900px; margin: 0 auto; }
.privacy-block { background: #fff; border-radius: 20px; padding: 35px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 25px; border: 1px solid #f1f5f9; border-left: 4px solid #f97316; }
.privacy-block h2 { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.privacy-block h2 i { color: #f97316; }
.privacy-block p, .privacy-block li { color: #64748b; font-size: 0.95rem; line-height: 1.8; }
.privacy-block ul { padding-left: 20px; }
.privacy-block ul li { margin-bottom: 6px; list-style: disc; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .cars-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; text-align: center; padding: 120px 40px 60px; }
  .hero-image { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
}
@media(max-width:768px) {
  .navbar { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%; background: #0f172a; padding: 20px; gap: 15px; }
  .nav-links.open { display: flex; }
  .nav-links a { color: #fff !important; }
  .hamburger { display: block; }
  .nav-btn { display: none; }
  .hero { padding: 110px 20px 60px; }
  .hero-content h1 { font-size: 2.4rem; }
  .cars-grid, .features-grid, .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .section-title h2 { font-size: 2rem; }
}

/* ===== 2-COLUMN CAR GRID ===== */
.cars-grid-2 { grid-template-columns: repeat(2, 1fr) !important; max-width: 900px !important; }
@media (max-width: 700px) { .cars-grid-2 { grid-template-columns: 1fr !important; } }

/* ===== FEATURED CAR CARD ===== */
.car-card-featured { border: 2px solid #f1f5f9; transition: all 0.35s; }
.car-card-featured:hover { border-color: #f97316; transform: translateY(-10px); box-shadow: 0 24px 60px rgba(249,115,22,0.15); }

/* Car name row with availability dot */
.car-name-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.car-name-row h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; }
.availability-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.availability-dot.available { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{ box-shadow: 0 0 0 3px rgba(34,197,94,0.2); } 50%{ box-shadow: 0 0 0 6px rgba(34,197,94,0.1); } }

/* Car highlights checklist */
.car-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; margin: 12px 0 16px; }
.highlight-item { font-size: 0.8rem; color: #475569; display: flex; align-items: center; gap: 5px; }
.highlight-item i { color: #22c55e; font-size: 0.75rem; }

/* Outline Book button */
.book-btn-outline { background: transparent; border: 2px solid #f97316; color: #f97316; padding: 10px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: all 0.3s; }
.book-btn-outline:hover { background: #f97316; color: #fff; }

/* ===== CAR SELECT CARDS (Booking Form) ===== */
.car-select-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
@media (max-width: 600px) { .car-select-cards { grid-template-columns: 1fr; } }

.car-select-card { cursor: pointer; }
.car-select-card input[type="radio"] { display: none; }
.csc-inner { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 16px; transition: all 0.25s; background: #fafafa; }
.car-select-card input[type="radio"]:checked + .csc-inner { border-color: #f97316; background: #fff8f3; box-shadow: 0 4px 16px rgba(249,115,22,0.15); }
.csc-inner img { width: 70px; height: 50px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.csc-info { flex: 1; }
.csc-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: #0f172a; }
.csc-info span { font-size: 0.78rem; color: #64748b; }
.csc-tick { color: #e5e7eb; font-size: 1.4rem; transition: color 0.25s; }
.car-select-card input[type="radio"]:checked + .csc-inner .csc-tick { color: #f97316; }

/* ===== FULL WIDTH 50-50 CAR LAYOUT ===== */
.cars-grid-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
}

.car-card-half {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #f1f5f9;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}

.car-card-half:hover {
  border-color: #f97316;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(249,115,22,0.15);
}

.car-half-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.car-half-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.car-card-half:hover .car-half-img img {
  transform: scale(1.05);
}

.car-half-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.car-half-info .car-footer {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.car-half-info .car-footer .book-btn {
  flex: 1;
  justify-content: center;
}

.car-half-info .car-footer .book-btn-outline {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cars-grid-full {
    grid-template-columns: 1fr;
  }
  .car-half-img {
    height: 200px;
  }
}

/* ===== FOOTER DISTRICT LINKS ===== */
.footer-areas .area-block p a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-areas .area-block p a:hover {
  color: #f97316;
  text-decoration: underline;
}

/* ===== LOCATION PAGE HERO ===== */
.loc-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
  padding: 130px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.loc-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.loc-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.loc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,0.18);
  color: #f97316;
  border: 1px solid rgba(249,115,22,0.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.loc-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.loc-hero-content h1 span { color: #f97316; }
.loc-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.loc-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ===== LOCATION INFO CARDS ===== */
.loc-info-section { padding: 60px 20px; background: #f8fafc; }
.loc-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.loc-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s, box-shadow 0.3s;
}
.loc-info-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.lic-icon {
  width: 52px;
  height: 52px;
  background: #f1f5f9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #64748b;
  margin: 0 auto 14px;
}
.lic-icon.orange { background: rgba(249,115,22,0.1); color: #f97316; }
.lic-icon.green  { background: rgba(34,197,94,0.1);  color: #22c55e; }
.lic-icon.blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.loc-info-card h4 { font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.loc-info-card p  { font-size: 0.82rem; color: #64748b; }

/* ===== LOCATION CARS SECTION ===== */
.loc-cars-section { padding: 70px 20px; }

/* ===== WHY + HOW SECTION ===== */
.loc-why-section { padding: 70px 20px; background: #f8fafc; }
.loc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.loc-why-box, .loc-how-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
}
.loc-why-box h3, .loc-how-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loc-why-box h3 i { color: #f97316; }
.loc-how-box h3 i { color: #3b82f6; }
.loc-why-list { display: flex; flex-direction: column; gap: 12px; }
.loc-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #374151;
}
.loc-why-list li i { color: #22c55e; font-size: 0.9rem; flex-shrink: 0; }

/* How to book steps */
.loc-steps { display: flex; flex-direction: column; gap: 20px; }
.loc-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.loc-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f97316, #ea6a00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.loc-step strong { display: block; font-size: 0.95rem; color: #0f172a; font-weight: 700; margin-bottom: 3px; }
.loc-step p { font-size: 0.82rem; color: #64748b; margin: 0; }

/* ===== CTA BANNER ===== */
.loc-cta { padding: 60px 20px; }
.loc-cta-inner {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  border-radius: 24px;
  padding: 48px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.loc-cta-inner h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.loc-cta-inner p  { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.loc-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .loc-info-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-two-col { grid-template-columns: 1fr; }
  .loc-cta-inner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .loc-cta-btns { justify-content: center; }
}
@media (max-width: 600px) {
  .loc-hero-content h1 { font-size: 2rem; }
  .loc-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .loc-info-grid { grid-template-columns: 1fr; }
}
