/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --red: #ff004f;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a26;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ===== HIGHLIGHT ===== */
.highlight { color: var(--gold); }

/* ===== PARTICLES ===== */
#particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(245, 197, 24, 0.3);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-car {
  text-align: center;
  animation: pulse 1s ease-in-out infinite alternate;
}
.loader-car i {
  font-size: 64px; color: var(--gold);
  display: block; margin-bottom: 16px;
}
.loader-car p {
  font-size: 18px; font-weight: 700;
  color: var(--gold); letter-spacing: 3px;
}
@keyframes pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,15,0.95);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 4px;
}
.nav-link {
  color: #cbd5e1; font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.3s ease; position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245,197,24,0.3);
  display: flex; align-items: center; gap: 6px;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.5);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 280px; z-index: 999;
  background: rgba(17,17,24,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  padding: 80px 24px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  cursor: pointer; color: var(--text-muted);
  font-size: 24px; transition: color 0.2s;
}
.mobile-close:hover { color: var(--gold); }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 8px; }
.mob-link {
  display: block; padding: 12px 16px;
  color: #cbd5e1; font-size: 16px; font-weight: 500;
  border-radius: 10px; transition: all 0.3s ease;
}
.mob-link:hover { background: var(--glass); color: var(--gold); }
.cta-mob {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important; font-weight: 700;
  margin-top: 16px; text-align: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f 0%, #111118 50%, #1a0a1f 100%);
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,0,79,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-content {
  flex: 1; max-width: 580px;
  position: relative; z-index: 2;
  animation: slideInLeft 0.9s ease both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.hero-subtitle {
  color: var(--text-muted); font-size: 16px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 50%, #94a3b8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 18px; color: var(--text-muted);
  margin-bottom: 24px; letter-spacing: 1px;
}
.hero-features {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
.hero-features span {
  display: flex; align-items: center; gap: 6px;
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 8px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 500; color: #cbd5e1;
}
.hero-features span i { color: var(--gold); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary-hero {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(245,197,24,0.4);
}
.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,197,24,0.6);
}
.btn-whatsapp-hero {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn-whatsapp-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
.hero-image {
  flex: 1; display: flex; justify-content: center;
  position: relative; z-index: 2;
  animation: slideInRight 0.9s ease both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-img-wrap {
  position: relative; display: inline-block;
}
.hero-img-wrap img {
  width: 100%; max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 2px solid var(--glass-border);
}
.hero-card-float {
  position: absolute; bottom: 24px; left: -24px;
  background: rgba(17,17,24,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-card-float i { font-size: 24px; color: var(--gold); }
.hero-card-float span { font-size: 13px; font-weight: 600; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.scroll-indicator span {
  display: block; width: 2px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

@media (max-width: 768px) {
  .hero-section { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-features { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-image { margin-top: 40px; }
  .hero-card-float { left: 0; bottom: 12px; }
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--gold) 0%, #ff8c00 100%);
  padding: 48px 5%;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s ease;
}
.stats-section.visible { opacity: 1; transform: translateY(0); }
.stats-container {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-item h3 {
  font-size: 48px; font-weight: 800; color: #000; line-height: 1;
}
.stat-item p { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.7); margin-top: 4px; }
@media (max-width: 600px) {
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ===== SECTION COMMONS ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.title-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px; margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--dark2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: center;
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s ease;
}
.about-grid.visible { opacity: 1; transform: translateY(0); }
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 2px solid var(--glass-border);
  width: 100%;
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 40px rgba(245,197,24,0.4);
}
.about-badge-float i { font-size: 28px; }
.about-badge-float strong { display: block; font-size: 14px; font-weight: 700; }
.about-badge-float span { font-size: 12px; font-weight: 500; opacity: 0.7; }
.about-content h3 {
  font-size: 28px; font-weight: 700; color: #fff;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 16px; font-size: 15px;
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 28px 0;
}
.highlight-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 12px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  transition: all 0.3s ease;
}
.highlight-item:hover {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.3);
}
.highlight-item i { color: var(--gold); font-size: 18px; width: 20px; }
.about-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(245,197,24,0.3);
}
.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,197,24,0.5);
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { bottom: -10px; right: 10px; }
  .about-highlights { grid-template-columns: 1fr; }
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--dark3); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-bottom: 64px;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(245,197,24,0.07);
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(245,197,24,0.2), rgba(255,140,0,0.1));
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.service-icon i { font-size: 24px; color: var(--gold); }
.service-card:hover .service-icon i { color: #000; }
.service-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Safety Banner */
.safety-banner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(255,0,79,0.05));
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 20px; padding: 40px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s ease;
}
.safety-banner.visible { opacity: 1; transform: translateY(0); }
.safety-item {
  display: flex; align-items: center; gap: 16px;
}
.safety-item i { font-size: 32px; color: var(--gold); flex-shrink: 0; }
.safety-item strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.safety-item span { font-size: 13px; color: var(--text-muted); }

/* ===== CARS SECTION ===== */
.cars-section { background: var(--dark2); }
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.car-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 20px; overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.car-card.visible { opacity: 1; transform: translateY(0); }
.car-card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.car-img-wrap {
  position: relative; overflow: hidden; height: 200px;
}
.car-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.08); }
.car-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-size: 12px; font-weight: 800;
  padding: 5px 12px; border-radius: 50px;
  letter-spacing: 1px;
}
.car-info { padding: 24px; }
.car-info h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.car-specs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.car-specs span {
  display: flex; align-items: center; gap: 5px;
  background: var(--glass); border: 1px solid var(--glass-border);
  font-size: 12px; font-weight: 500; color: #94a3b8;
  padding: 4px 10px; border-radius: 50px;
}
.car-specs span i { color: var(--gold); }
.car-info p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.car-book-btn {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: 50px;
  transition: all 0.3s ease;
}
.car-book-btn:hover {
  box-shadow: 0 8px 25px rgba(245,197,24,0.4);
  transform: scale(1.02);
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--dark3); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s ease;
}
.contact-grid.visible { opacity: 1; transform: translateY(0); }
.contact-info h3 {
  font-size: 26px; font-weight: 700; color: #fff;
  margin-bottom: 32px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold); font-size: 18px; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-muted); margin: 0; }
.contact-item a { color: var(--text-muted); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.contact-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn-whatsapp-contact, .btn-call-contact {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px;
  padding: 12px 22px; border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-whatsapp-contact {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.25);
}
.btn-call-contact {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 6px 20px rgba(245,197,24,0.25);
}
.btn-whatsapp-contact:hover, .btn-call-contact:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }

/* Contact Form */
.contact-form-wrap h3 {
  font-size: 26px; font-weight: 700; color: #fff;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 14px 18px;
  color: #fff; font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none; transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245,197,24,0.05);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #4a5568; }
.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-weight: 700; font-size: 16px;
  padding: 15px; border-radius: 12px;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245,197,24,0.3);
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245,197,24,0.5);
}
#formMessage { margin-top: 12px; font-size: 14px; font-weight: 600; text-align: center; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #050508;
  border-top: 1px solid var(--glass-border);
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 5% 40px;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-links h4::after, .footer-contact h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--gold);
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 14px;
  margin-bottom: 12px;
}
.footer-contact i { color: var(--gold); width: 16px; }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 5%; text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column;
  gap: 12px; z-index: 999;
}
.fab-whatsapp, .fab-call, .fab-top {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; transition: all 0.3s ease;
  border: none; text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff;
}
.fab-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}
.fab-top {
  background: var(--dark3); color: #fff;
  border: 1px solid var(--glass-border);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all 0.3s ease;
}
.fab-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-whatsapp:hover, .fab-call:hover, .fab-top:hover { transform: translateY(-4px) scale(1.1); }

/* Pulse animation on WhatsApp FAB */
.fab-whatsapp { animation: fabPulse 2.5s ease-in-out infinite; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ===== TRUST TICKER ===== */
.trust-ticker {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
}
.ticker-track span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #000;
  padding: 0 40px;
}
.ticker-track span i { font-size: 14px; }
.ticker-track span::after {
  content: '•'; margin-left: 20px; opacity: 0.4;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-ticker:hover .ticker-track { animation-play-state: paused; }

/* ===== HERO FLOAT CARDS 2 & 3 ===== */
.hero-card-float2 {
  position: absolute; top: 20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(245,197,24,0.4);
  animation: floatCard2 3.5s ease-in-out infinite;
  z-index: 3;
}
.hero-card-float2 i { font-size: 20px; }
.hero-card-float2 strong { display: block; font-size: 16px; font-weight: 800; line-height: 1; }
.hero-card-float2 small { font-size: 11px; font-weight: 600; opacity: 0.7; }
.hero-card-float3 {
  position: absolute; top: 50%; left: -32px;
  transform: translateY(-50%);
  background: rgba(17,17,24,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37,211,102,0.4);
  color: #25d366; border-radius: 14px; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  animation: floatCard3 4s ease-in-out infinite;
  z-index: 3;
}
.hero-card-float3 i { font-size: 16px; }
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-50%) translateX(-6px); }
}
@media (max-width: 768px) {
  .hero-card-float2, .hero-card-float3 { display: none; }
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--dark2); }
.section-subtitle {
  color: var(--text-muted); font-size: 16px;
  max-width: 520px; margin: 12px auto 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
  border-color: rgba(245,197,24,0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  background: rgba(245,197,24,0.04);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(255,140,0,0.08));
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}
.why-icon i { font-size: 28px; color: var(--gold); transition: color 0.3s; }
.why-card:hover .why-icon i { color: #000; }
.why-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ===== TRUST BADGES BAR ===== */
.trust-badges-bar {
  background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(255,0,79,0.04));
  border-top: 1px solid rgba(245,197,24,0.15);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  padding: 28px 5%;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.7s ease;
}
.trust-badges-bar.visible { opacity: 1; transform: translateY(0); }
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
}
.trust-badge i { font-size: 22px; color: var(--gold); }
.trust-badge span { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; }
.trust-divider {
  width: 1px; height: 36px;
  background: var(--glass-border);
}
@media (max-width: 768px) {
  .trust-divider { display: none; }
  .trust-badge { flex: 1 0 40%; justify-content: center; }
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--dark3); }
.how-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 56px; flex-wrap: wrap;
}
.how-step {
  flex: 1; min-width: 220px; max-width: 300px;
  text-align: center; padding: 40px 24px;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 24px; position: relative;
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.how-step.visible { opacity: 1; transform: translateY(0); }
.how-step:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.step-num {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-size: 13px; font-weight: 900;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(255,140,0,0.08));
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 12px auto 20px;
  transition: all 0.3s ease;
}
.how-step:hover .step-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.step-icon i { font-size: 30px; color: var(--gold); transition: color 0.3s; }
.how-step:hover .step-icon i { color: #000; }
.how-step h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.how-arrow {
  color: var(--gold); font-size: 24px;
  padding: 0 16px; opacity: 0.5;
  animation: arrowPulse 1.5s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50%       { transform: translateX(5px); opacity: 1; }
}
@media (max-width: 768px) {
  .how-arrow { transform: rotate(90deg); padding: 12px 0; }
  .how-steps { flex-direction: column; }
}
.how-cta-wrap { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-bottom: 56px;
}
.testi-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 32px 28px;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.testi-card.visible { opacity: 1; transform: translateY(0); }
.testi-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.testi-card.featured {
  border-color: rgba(245,197,24,0.4);
  background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(255,140,0,0.03));
  box-shadow: 0 0 40px rgba(245,197,24,0.1);
}
.testi-quote {
  position: absolute; top: 20px; right: 24px;
  font-size: 40px; color: rgba(245,197,24,0.15);
}
.testi-stars {
  display: flex; gap: 4px; margin-bottom: 16px;
}
.testi-stars i { color: var(--gold); font-size: 14px; }
.testi-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.testi-author span { font-size: 12px; color: var(--text-muted); }

/* Rating Summary */
.rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(255,140,0,0.05));
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 20px; padding: 32px 40px;
}
.rating-big {
  font-size: 72px; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.rating-info .rating-stars { display: flex; gap: 4px; margin-bottom: 8px; }
.rating-info .rating-stars i { color: var(--gold); font-size: 20px; }
.rating-info p { font-size: 15px; font-weight: 700; color: #fff; margin: 0; }
.rating-info span { font-size: 13px; color: var(--text-muted); }
@media (max-width: 600px) {
  .rating-summary { flex-direction: column; text-align: center; padding: 24px 20px; }
}

/* ===== FOOTER BOTTOM MADE BY ===== */
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-inner p { margin: 0; }

.made-by-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 7px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.made-by-badge:hover {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.15);
}
.made-by-badge span {
  font-size: 12px; color: var(--text-muted); font-weight: 400;
}
.made-by-badge strong {
  font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}
.made-by-badge i {
  font-size: 11px; color: var(--text-muted);
  transition: color 0.3s ease;
}
.made-by-badge:hover i { color: var(--gold); }

@media (max-width: 600px) {
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ===== NAVBAR LOGO — TEXT VERSION ===== */
.nav-logo-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon-wrap {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(245,197,24,0.35);
}
.logo-icon-wrap i { font-size: 18px; color: #000; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 15px; font-weight: 800; color: #fff;
  letter-spacing: 0.5px; white-space: nowrap;
}
.logo-amp { color: var(--gold); }
.logo-tagline {
  font-size: 10px; font-weight: 500;
  color: var(--gold); letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== HERO — FULL REBUILD ===== */
.hero-section {
  min-height: 100vh;
  background: #060610;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding: 0;
}

/* Animated background */
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,197,24,0.06) 0%, transparent 70%),
              linear-gradient(180deg, #060610 0%, #0d0d1a 60%, #060610 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb1 {
  width: 500px; height: 500px;
  background: rgba(245,197,24,0.08);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero-orb2 {
  width: 400px; height: 400px;
  background: rgba(255,0,79,0.06);
  bottom: -80px; right: -80px;
  animation-delay: 3s;
}
.hero-orb3 {
  width: 300px; height: 300px;
  background: rgba(245,197,24,0.05);
  top: 50%; right: 20%;
  animation-delay: 5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-20px) scale(1.05); }
  66%       { transform: translate(-20px,15px) scale(0.98); }
}

/* Road animation lines */
.hero-road-anim {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.road-line {
  position: absolute; bottom: 0;
  width: 2px; background: linear-gradient(to top, rgba(245,197,24,0.3), transparent);
  animation: roadLine 3s linear infinite;
}
.road-line:nth-child(1) { left: 10%; height: 200px; animation-delay: 0s; animation-duration: 2.5s; }
.road-line:nth-child(2) { left: 25%; height: 150px; animation-delay: 0.4s; animation-duration: 3.2s; }
.road-line:nth-child(3) { left: 50%; height: 180px; animation-delay: 0.8s; animation-duration: 2.8s; }
.road-line:nth-child(4) { left: 65%; height: 130px; animation-delay: 1.2s; animation-duration: 3.5s; }
.road-line:nth-child(5) { left: 80%; height: 160px; animation-delay: 0.2s; animation-duration: 2.6s; }
.road-line:nth-child(6) { left: 90%; height: 140px; animation-delay: 1.6s; animation-duration: 3s; }
@keyframes roadLine {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

/* Hero inner layout */
.hero-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  max-width: 1200px; width: 100%;
  margin: 0 auto; padding: 120px 5% 80px;
}
.hero-content {
  flex: 1; max-width: 560px;
  animation: slideInLeft 0.9s ease both;
}
.hero-title-and { color: #fff; }
.hero-trust-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
}
.hero-trust-item i { color: var(--gold); font-size: 13px; }
.hero-trust-sep {
  width: 1px; height: 14px; background: var(--glass-border);
}

/* Car side */
.hero-car-side {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: slideInRight 0.9s ease both;
}
.hero-car-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 280px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.18) 0%, transparent 70%);
  border-radius: 50%; filter: blur(30px);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
}
.hero-car-img {
  width: 100%; max-width: 520px;
  position: relative; z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
  animation: carFloat 4s ease-in-out infinite;
}
@keyframes carFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-car-shine {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 20px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.25) 0%, transparent 70%);
  filter: blur(8px); z-index: 1;
  animation: shinePulse 4s ease-in-out infinite;
}
@keyframes shinePulse {
  0%, 100% { opacity: 0.4; width: 60%; }
  50%       { opacity: 0.8; width: 70%; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-content { max-width: 100%; }
  .hero-features { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-car-side { width: 100%; }
  .hero-car-img { max-width: 340px; }
}

/* ===== FOOTER LOGO TEXT ===== */
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-icon i { font-size: 20px; color: #000; }
.footer-logo-name {
  display: block; font-size: 16px; font-weight: 800;
  color: #fff; letter-spacing: 0.5px;
}
.footer-logo-name span { color: var(--gold); }
.footer-logo-sub {
  display: block; font-size: 10px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-top: 2px;
}

/* ===== LOGO OVERRIDES — no icon, & white, tagline yellow ===== */
.logo-icon-wrap { display: none !important; }
.logo-name {
  font-size: 16px; font-weight: 800;
  color: #ffffff; letter-spacing: 0.5px;
}
.logo-amp { color: #ffffff !important; }
.logo-tagline {
  font-size: 10px; font-weight: 600;
  color: var(--gold) !important;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ===== HERO IMAGE — person photo, portrait style ===== */
.hero-car-side {
  flex: 0 0 420px; max-width: 420px;
}
.hero-car-img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: top center;
  border-radius: 24px;
  border: 2px solid rgba(245,197,24,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7),
              0 0 60px rgba(245,197,24,0.08);
  /* override floating animation — person photo looks better still */
  animation: heroImgReveal 1s ease both;
  filter: none;
}
@keyframes heroImgReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-car-glow {
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.15) 0%, transparent 65%);
}
@media (max-width: 900px) {
  .hero-car-side { flex: unset; max-width: 100%; }
  .hero-car-img { height: 320px; max-width: 320px; margin: 0 auto; }
}

/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), #ff8c00, var(--red));
  z-index: 9999; border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245,197,24,0.6);
}

/* ===== CURSOR GLOW ===== */
#cursorGlow {
  position: fixed; width: 20px; height: 20px;
  border-radius: 50%; pointer-events: none; z-index: 9998;
  background: rgba(245,197,24,0.25);
  border: 1px solid rgba(245,197,24,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
#cursorGlow.big {
  width: 48px; height: 48px;
  background: rgba(245,197,24,0.12);
  border-color: rgba(245,197,24,0.4);
}

/* ===== REMOVE OLD CURSOR CSS ===== */
#cursorGlow { display: none !important; }

/* ===== HERO IMAGE FRAME — portrait fix ===== */
.hero-img-frame {
  position: relative;
  width: 100%; max-width: 420px;
  border-radius: 24px; overflow: hidden;
  border: 2px solid rgba(245,197,24,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(245,197,24,0.1);
  animation: heroImgReveal 1s ease both;
}
.hero-img-frame .hero-car-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  animation: none;
  filter: none;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,16,0.85) 0%, rgba(6,6,16,0.1) 50%, transparent 100%);
  pointer-events: none;
}
.hero-img-badge-bottom {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(10,10,20,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 14px; padding: 12px 16px;
}
.hero-img-badge-bottom i { font-size: 22px; color: var(--gold); flex-shrink: 0; }
.hero-img-badge-bottom strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.hero-img-badge-bottom small { font-size: 11px; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero-img-frame { max-width: 300px; margin: 0 auto; }
  .hero-img-frame .hero-car-img { height: 320px; }
}

/* ===== CONTACT FORM — proper stacked layout ===== */
.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 32px;
}
.form-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}
.form-header-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.form-header-icon i { font-size: 22px; color: #000; }
.form-header h3 { font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.form-header p  { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Remove form-row — use stacked fields */
.form-row { display: block; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-field label i { color: var(--gold); font-size: 12px; }
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 12px 16px;
  color: #fff; font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none; transition: all 0.3s ease;
  display: block;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(245,197,24,0.04);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #4a5568; }
.form-submit-btn {
  width: 100%; margin-top: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-weight: 800; font-size: 15px;
  padding: 16px; border-radius: 12px;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(245,197,24,0.35);
  position: relative; overflow: hidden;
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(245,197,24,0.55);
}
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-footer-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  margin-top: 14px; justify-content: center;
}
.form-footer-note i { color: var(--gold); }
#formMessage { margin-top: 12px; text-align: center; font-size: 14px; }
.form-success { color: #4ade80; display: flex; align-items: center; gap: 6px; justify-content: center; }
.form-error   { color: #f87171; display: flex; align-items: center; gap: 6px; justify-content: center; }

/* ===== FOOTER LOGO — match navbar exactly ===== */
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo .logo-name  { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.footer-logo .logo-amp   { color: #fff; }
.footer-logo .logo-tagline { font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

/* ===== RIPPLE EFFECT ===== */
.ripple-effect {
  position: absolute; border-radius: 50%;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: translate(-50%,-50%) scale(30); opacity: 0; }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal-on-scroll {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR SHRINK ===== */
.navbar-shrunk .nav-container { height: 58px; }
.navbar-shrunk .logo-name { font-size: 14px; }

/* ===== TYPEWRITER — FIXED HEIGHT, NO LAYOUT SHIFT ===== */
.hero-tagline-wrap {
  height: 32px;          /* fixed — tallest phrase height */
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-tagline {
  font-size: 18px;
  color: var(--text-muted);
  letter-spacing: 1px;
  white-space: nowrap;
  display: inline-block;
  /* no margin — wrapper handles spacing */
  margin: 0;
}

/* ===== HERO IMAGE — car photo, no crop, contained ===== */
.hero-img-frame {
  position: relative;
  width: 100%; max-width: 380px;
  border-radius: 24px; overflow: hidden;
  border: 2px solid rgba(245,197,24,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(245,197,24,0.1);
  background: #0d0d1a;
}
.hero-img-frame .hero-car-img {
  width: 100%;
  height: auto;           /* natural height — no crop */
  max-height: 420px;
  object-fit: contain;    /* show full car */
  object-position: center;
  display: block;
  padding: 20px 10px 60px; /* space below for badge */
  border-radius: 0;
  border: none;
  box-shadow: none;
  animation: carFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.hero-img-badge-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(0,0,0,0.8));
  border-top: 1px solid rgba(245,197,24,0.2);
  padding: 12px 18px;
}
.hero-img-badge-bottom i { font-size: 20px; color: var(--gold); flex-shrink: 0; }
.hero-img-badge-bottom strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.hero-img-badge-bottom small { font-size: 11px; color: var(--text-muted); }
.hero-car-side { flex: 0 0 auto; }

@media (max-width: 900px) {
  .hero-img-frame { max-width: 280px; margin: 0 auto; }
  .hero-img-frame .hero-car-img { max-height: 280px; padding: 16px 10px 56px; }
}

/* ===== GLOBAL ANIMATED BACKGROUND — spread to whole site ===== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(245,197,24,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 80%, rgba(255,0,79,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(245,197,24,0.02) 0%, transparent 70%);
  animation: bgShift 12s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* ===== FOOTER CREDIT — clean, visible, not overdone ===== */
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 18px 5%;
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-inner > p {
  font-size: 13px; color: var(--text-muted); margin: 0;
}
.made-by-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 8px; padding: 6px 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.made-by-badge:hover {
  background: rgba(245,197,24,0.08);
  border-color: rgba(245,197,24,0.5);
  transform: translateY(-2px);
}
.made-by-badge span { font-size: 12px; color: var(--text-muted); }
.made-by-badge strong {
  font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.made-by-badge i { font-size: 10px; color: var(--text-muted); }
@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== HERO — business card image override ===== */
.hero-img-frame .hero-car-img {
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  height: 380px !important;
  max-height: 380px !important;
  width: 100% !important;
  animation: none !important;
  filter: none !important;
}
.hero-img-frame {
  max-width: 420px !important;
}

/* ===== HERO IMAGE — full business card, zero crop ===== */
.hero-img-frame {
  max-width: 400px !important;
  background: transparent !important;
  border-radius: 16px !important;
  overflow: visible !important;
  border: none !important;
  box-shadow: none !important;
}
.hero-img-frame .hero-car-img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  border-radius: 16px !important;
  border: 2px solid rgba(245,197,24,0.25) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
  animation: carFloat 4s ease-in-out infinite !important;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5)) !important;
}
.hero-img-badge-bottom {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin-top: 12px;
  border-radius: 12px !important;
  border: 1px solid rgba(245,197,24,0.2) !important;
  background: rgba(10,10,20,0.8) !important;
}
