/* --- BASE & UTILS --- */
/* (Assuming base styles from previous style.css are kept, I will append the new sections. 
Since I am overwriting style.css, I will include the full updated CSS) */

:root {
  --bg-dark: #050505;
  --bg-darker: #0B0B0B;
  --bg-darkest: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-light: rgba(255, 255, 255, 0.05);
  --accent-gold: #D8A14E;
  --accent-gold-glow: rgba(216, 161, 78, 0.2);
  --text-white: #FFFFFF;
  --text-gray: #A0A0A0;
  --font-main: 'Outfit', sans-serif;
  --nav-height: 80px;
  --ease-cinematic: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.26, 1.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

/* --- BACKGROUND FX --- */
.bg-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; }
.bg-image { position: absolute; top: -5%; left: -5%; width: 110%; height: 110%; background: url('./assets/luxury_garage_bg_1781950683922.png') center/cover no-repeat; filter: brightness(0.4) contrast(1.2); transition: transform 0.5s var(--ease-cinematic); }
.bg-fog { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%); opacity: 0.8; }
.bg-noise { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E'); mix-blend-mode: overlay; opacity: 0.5; pointer-events: none; }
.bg-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

/* --- GLOBAL SECTION STYLES --- */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border-light);
  background: var(--bg-dark);
}

.section-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.explore-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  margin-top: 20px;
}

.explore-link:hover { color: var(--accent-gold); }
.explore-link svg { transition: transform 0.3s ease; }
.explore-link:hover svg { transform: translateX(5px); }

/* --- SCROLL ANIMATIONS --- */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-cinematic), transform 1s var(--ease-cinematic);
}
.fade-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Keep existing Navbar and Hero css from previous ... */
/* NAVIGATION */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 60px; z-index: 100; display: flex; align-items: center; transition: all 0.4s var(--ease-cinematic); border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-light); }
.nav-container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.brand-logo { text-decoration: none; font-size: 28px; font-weight: 900; letter-spacing: 2px; display: flex; align-items: center; gap: 5px; }
.brand-t { color: var(--text-white); }
.brand-dot { color: var(--accent-gold); }
.brand-sub { font-size: 10px; letter-spacing: 4px; color: var(--text-gray); font-weight: 400; margin-top: 8px; }
.nav-links { display: flex; gap: 40px; }
.nav-item { color: var(--text-white); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 1px; position: relative; display: flex; align-items: center; gap: 5px; transition: color 0.3s ease; }
.nav-item:hover { color: var(--accent-gold); }
.nav-item::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px; background-color: var(--accent-gold); transition: width 0.3s var(--ease-cinematic); box-shadow: 0 0 10px var(--accent-gold-glow); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }
.nav-cta { background: var(--accent-gold); color: var(--bg-dark); border: none; padding: 12px 24px; border-radius: 4px; font-family: var(--font-main); font-weight: 700; font-size: 12px; letter-spacing: 1px; cursor: pointer; display: flex; align-items: center; gap: 8px; position: relative; overflow: hidden; transition: transform 0.3s var(--ease-cinematic), box-shadow 0.3s ease; }
.nav-cta:hover { box-shadow: 0 0 20px var(--accent-gold-glow); }
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--text-white); cursor: pointer; }

/* HERO */
.hero-section { position: relative; width: 100%; height: 100vh; display: flex; align-items: center; padding-top: var(--nav-height); z-index: 10; background: transparent; border: none; }
.hero-container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.hero-content { flex: 0 0 45%; z-index: 2; }
.top-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; margin-bottom: 20px; color: var(--text-gray); text-transform: uppercase; }
.gold-text { color: var(--accent-gold); }
.main-heading { font-size: 5rem; line-height: 1.1; font-weight: 900; letter-spacing: -1px; margin-bottom: 30px; text-transform: uppercase; }
.line-reveal { overflow: hidden; }
.reveal-text { display: block; transform: translateY(100%); animation: revealUp 1s var(--ease-cinematic) forwards; }
.line-reveal:nth-child(1) .reveal-text { animation-delay: 0.2s; }
.line-reveal:nth-child(2) .reveal-text { animation-delay: 0.3s; }
.line-reveal:nth-child(3) .reveal-text { animation-delay: 0.4s; }
.gradient-glow { position: relative; display: inline-block; }
/*.gradient-glow::after { content: 'CUSTOMIZE.'; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent); -webkit-background-clip: text; color: transparent; background-size: 200% 100%; animation: shimmer 3s infinite linear; }*/
.service-list { font-size: 13px; font-weight: 500; letter-spacing: 2px; color: var(--text-gray); margin-bottom: 50px; line-height: 2; }
.dot { color: var(--accent-gold); margin: 0 10px; }
.mobile-break { display: none; }
.hero-buttons { display: flex; gap: 20px; }
.primary-btn, .secondary-btn { padding: 18px 36px; border-radius: 4px; font-family: var(--font-main); font-weight: 700; font-size: 13px; letter-spacing: 2px; cursor: pointer; display: flex; align-items: center; gap: 12px; transition: all 0.3s var(--ease-cinematic); position: relative; overflow: hidden; }
.primary-btn { background: var(--accent-gold); color: var(--bg-dark); border: none; }
.primary-btn:hover { box-shadow: 0 10px 30px var(--accent-gold-glow); }
.primary-btn svg { transition: transform 0.3s ease; }
.primary-btn:hover svg { transform: translateX(5px); }
.secondary-btn { background: rgba(255, 255, 255, 0.03); color: var(--text-white); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); }
.secondary-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(216, 161, 78, 0.5); box-shadow: 0 0 20px rgba(216, 161, 78, 0.1); }
.hero-vehicle { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; max-width: 100vw; overflow: visible; }
.car-image { width: 100%; max-width: 1000px; transform: translateX(20px); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); z-index: 2; }
.car-image.slide { position: absolute; opacity: 0; transition: opacity 1.5s ease-in-out, transform 10s linear; }
.car-image.active-slide { position: relative; opacity: 1; transform: translateX(20px) scale(1.02); }
.car-shadow { position: absolute; bottom: -20px; width: 80%; height: 30px; background: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%); filter: blur(10px); }

/* TRUST BAR */
.trust-bar { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 0; background: linear-gradient(to top, rgba(5,5,5,0.9), transparent); z-index: 10; }
.trust-container { max-width: 1600px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.trust-card { display: flex; align-items: center; gap: 15px; padding: 15px 25px; border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border-light); backdrop-filter: blur(5px); transition: all 0.3s var(--ease-elastic); cursor: default; }
.trust-card:hover { transform: translateY(-5px); border-color: rgba(216, 161, 78, 0.3); box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px var(--accent-gold-glow); }
.trust-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(216, 161, 78, 0.1); border-radius: 50%; transition: transform 0.3s var(--ease-elastic); }
.trust-card:hover .trust-icon { transform: scale(1.1) rotate(5deg); }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 13px; color: var(--text-white); letter-spacing: 1px; }
.trust-text span { font-size: 10px; color: var(--text-gray); letter-spacing: 0.5px; text-transform: uppercase; }

/* ANIMATIONS KEYFRAMES */
@keyframes revealUp { 0% { transform: translateY(100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes slideInRight { 0% { transform: translateX(100px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
.reveal-up { opacity: 0; transform: translateY(30px); animation: revealFade 1s var(--ease-cinematic) forwards; }
.stagger-1 { animation-delay: 0.6s; } .stagger-2 { animation-delay: 0.8s; } .stagger-3 { animation-delay: 1.0s; }
@keyframes revealFade { to { opacity: 1; transform: translateY(0); } }

/* --- SERVICES SECTION --- */
.services-section {
  background: var(--bg-darker);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s var(--ease-cinematic);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 161, 78, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--accent-gold-glow);
}
.service-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-cinematic);
}
.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}
.service-content {
  padding: 30px;
  position: relative;
}
.service-icon {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 1px solid var(--accent-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}
.service-content h3 {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.service-content p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- VISUALIZER SECTION --- */
.visualizer-section {
  background: var(--bg-darkest);
}
.visualizer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.visualizer-content {
  flex: 0 0 35%;
}
.visualizer-content p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}
.visualizer-interactive { position: relative; flex: 1.5; min-height: 500px; display: flex; align-items: center; justify-content: flex-end; }
.comparison-slider { position: relative; width: 100%; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.8); aspect-ratio: 16/9; }
.comparison-slider img { width: 100%; height: 100%; object-fit: cover; display: block; }

.tab-btn { background: transparent; border: none; color: var(--text-gray); font-size: 14px; font-weight: bold; letter-spacing: 1px; cursor: pointer; padding-bottom: 5px; position: relative; transition: color 0.3s; }
.tab-btn.active { color: var(--accent-gold); }
.tab-btn.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--accent-gold); }

.vis-vehicle { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.vis-vehicle.active-vehicle { z-index: 1; }

.finish-btn { background: transparent; border: 1px solid var(--border-light); color: var(--text-gray); padding: 8px 16px; border-radius: 20px; font-size: 12px; cursor: pointer; transition: all 0.3s; font-weight: bold; letter-spacing: 1px;}
.finish-btn.active, .finish-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.overlay-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 2px solid white;
}
.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%; /* Important: Counteracts the wrapper width to align image correctly */
  height: 100%;
  object-fit: cover;
}
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.slider-button {
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 2px solid var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  gap: 2px;
}
.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
}

.color-swatches { display: flex; flex-direction: row; gap: 15px; margin-bottom: 10px; }
.swatch { width: 40px; height: 40px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; transition: transform 0.3s, border-color 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.swatch:hover {
  transform: scale(1.2);
}
.swatch-text {
  position: absolute;
  bottom: -60px;
  right: 0;
  font-family: 'Shadows Into Light', cursive; /* Generic fallback, styling to look hand-written */
  font-size: 14px;
  color: var(--text-gray);
  width: 120px;
  text-align: center;
  transform: rotate(-10deg);
}

/* --- STATS & GALLERY SECTION --- */
.stats-gallery-section {
  background: var(--bg-darker);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}
.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-gold);
  display: inline-block;
  margin-bottom: 5px;
}
.stat-item .plus {
  font-size: 2rem;
  color: var(--accent-gold);
}
.stat-item p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-gray);
}
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-cinematic);
}
.gallery-img:hover img {
  transform: scale(1.1);
}

/* --- ABOUT SECTION --- */
.about-section { background: var(--bg-dark); }
.about-container { display: flex; align-items: center; gap: 60px; }
.about-content { flex: 1; }
.about-image { flex: 1; position: relative; }
.about-list { list-style: none; margin-top: 30px; }
.about-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--text-white); font-weight: 500; }

/* --- REVIEWS SECTION --- */
.reviews-section { background: var(--bg-darker); overflow: hidden; padding-bottom: 120px;}
.reviews-grid { 
  display: flex; 
  gap: 30px; 
  margin-top: 40px; 
  /*width: max-content; */
}
.carousel-track {
  animation: scrollCarousel 30s linear infinite;
}
.carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); } /* Shift by half since we duplicated items */
}

.review-card { background: var(--bg-card); padding: 40px; border-radius: 12px; border: 1px solid var(--border-light); width: 400px; flex-shrink: 0; transition: border-color 0.3s; }
.review-card:hover { border-color: var(--accent-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.stars { color: var(--accent-gold); font-size: 20px; margin-bottom: 20px; }
.review-text { font-size: 16px; line-height: 1.6; font-style: italic; color: var(--text-white); margin-bottom: 30px; }
.reviewer strong { display: block; font-size: 14px; }
.reviewer span { font-size: 12px; color: var(--text-gray); }

/* --- ABOUT & GALLERY PARALLAX --- */
.parallax-img-container { overflow: hidden; border-radius: 10px; height: 100%; width: 100%; position: relative; }
.parallax-img { object-fit: cover; height: 120%; width: 100%; position: absolute; top: -10%; left: 0; transform: scale(1.1); transition: transform 0.1s linear; }

/* --- FOOTER --- */
.footer-section { background: var(--bg-darkest); padding-top: 80px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { font-size: 24px; font-weight: 800; color: var(--text-white); margin-bottom: 20px; display: block; }
.footer-logo span { color: var(--accent-gold); }
.footer-brand p { color: var(--text-gray); line-height: 1.8; margin-bottom: 30px; }
.social-links { display: flex; gap: 15px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--text-white); transition: all 0.3s; }
.social-link:hover { background: var(--accent-gold); border-color: var(--accent-gold); color: var(--bg-darkest); }

.footer-links h3, .footer-contact h3 { color: var(--text-white); font-size: 16px; margin-bottom: 25px; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-gray); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-gold); }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form select, .contact-form textarea { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 12px 15px; border-radius: 8px; color: var(--text-white); font-family: inherit; font-size: 14px; outline: none; transition: border-color 0.3s, background 0.3s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent-gold); background: rgba(255,255,255,0.05); }
.contact-form select option { background: var(--bg-darker); color: var(--text-white); }
.contact-form textarea { resize: none; }

.footer-bottom { border-top: 1px solid var(--border-light); padding: 25px 40px; display: flex; justify-content: space-between; color: var(--text-gray); font-size: 14px; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
  .main-heading { font-size: 4rem; }
  .hero-vehicle { flex: 0 0 50%; }
  .trust-container { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .trust-card { width: calc(33.333% - 20px); }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .visualizer-container { flex-direction: column; }
  .color-swatches { position: static; transform: none; flex-direction: row; margin-top: 20px; justify-content: center; width: 100%; }
  .swatch-text { display: none; }
}

@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero-container { flex-direction: column; justify-content: center; text-align: center; padding-top: 50px; }
  .hero-content { flex: 1; display: flex; flex-direction: column; align-items: center; }
  .hero-vehicle { flex: 1; width: 100%; margin-top: 40px; }
  .car-image { width: 100%; transform: none; animation: revealUp 1.2s var(--ease-cinematic) forwards 0.5s; }
  .trust-bar { display: none; }
  .about-container { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .main-heading { font-size: 3rem; }
  .mobile-break { display: block; margin: 10px 0; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .primary-btn, .secondary-btn { width: 100%; justify-content: center; }
  .services-grid, .reviews-grid, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 40px; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* --- CONTACT DETAILS SECTION --- */
.contact-section { background: var(--bg-darker); position: relative; padding-top: 100px; padding-bottom: 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 30px; justify-content: center; }
.info-card { display: flex; align-items: flex-start; gap: 20px; background: rgba(255,255,255,0.02); padding: 25px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s, background 0.3s; }
.info-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); border-color: rgba(216, 161, 78, 0.3); }
.info-card svg { flex-shrink: 0; background: rgba(216, 161, 78, 0.1); padding: 10px; border-radius: 10px; width: 45px; height: 45px; }
.info-card h4 { font-size: 18px; color: var(--text-white); margin-bottom: 5px; }
.info-card p { color: var(--text-gray); line-height: 1.6; font-size: 15px; }

.contact-form-wrapper { padding: 40px; border-radius: 20px; }
.glass-panel { background: rgba(25, 25, 25, 0.6); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 15px; border-radius: 8px; color: var(--text-white); font-family: inherit; font-size: 14px; outline: none; transition: all 0.3s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent-gold); box-shadow: 0 0 15px rgba(216, 161, 78, 0.2); }
.contact-form select option { background: var(--bg-darkest); color: var(--text-white); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* --- ANIMATED FOOTER --- */
.footer-animated { position: relative; background: var(--bg-darkest); padding: 60px 0 30px; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-gold), transparent); opacity: 0.5; box-shadow: 0 0 30px 5px rgba(216, 161, 78, 0.3); }

.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-logo { font-size: 32px; font-weight: 900; color: var(--text-white); text-decoration: none; letter-spacing: -1px; }
.footer-logo span { color: var(--accent-gold); }
.social-links { display: flex; gap: 15px; }
.social-link { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--text-white); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.social-link:hover { transform: translateY(-5px) scale(1.1); background: var(--accent-gold); border-color: var(--accent-gold); color: var(--bg-darkest); box-shadow: 0 10px 20px rgba(216, 161, 78, 0.4); }

.footer-middle { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 30px 0; margin-bottom: 30px; }
.footer-nav { display: flex; justify-content: center; gap: 40px; list-style: none; }
.footer-nav a { color: var(--text-gray); text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s, transform 0.3s; display: inline-block; }
.footer-nav a:hover { color: var(--accent-gold); transform: translateY(-2px); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.copyright { color: var(--text-gray); font-size: 14px; }
.designed-by { color: var(--text-gray); font-size: 14px; display: flex; align-items: center; gap: 5px; }
.pulse-icon { display: inline-block; animation: pulseHeart 1.5s infinite; color: #ff4757; }

.back-to-top { background: rgba(216, 161, 78, 0.1); border: 1px solid var(--accent-gold); color: var(--accent-gold); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; animation: floatBtn 3s ease-in-out infinite; }
.back-to-top:hover { background: var(--accent-gold); color: var(--bg-darkest); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(216, 161, 78, 0.4); }

@keyframes pulseHeart { 0% { transform: scale(1); } 15% { transform: scale(1.3); } 30% { transform: scale(1); } 45% { transform: scale(1.3); } 60%, 100% { transform: scale(1); } }
@keyframes floatBtn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.brand-logo img {
    width: 130px;
}
p.copyright a {
    color: var(--text-gray);
    text-decoration: none;
}




@media screen and (max-width: 600px) {
 .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}.contact-form-wrapper {
    width: 100%;
}.footer-bottom {
    padding: 20px 0px;
}.footer-top {
    flex-direction: column;
}.footer-nav {
    flex-wrap: wrap;
}.form-row {
    grid-template-columns: 1fr;
}
}




/* Tablet & Medium Screens */
@media (max-width: 992px) {
  /* Stack the contact section grid vertically instead of side-by-side */
  .contact-grid { 
    grid-template-columns: 1fr; 
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  /* Make the form inputs stack vertically on mobile */
  .form-row { 
    grid-template-columns: 1fr; 
  }
  
  /* Reduce padding inside the form glass panel on small screens */
  .contact-form-wrapper { 
    padding: 25px; 
  }

  /* Stack the footer logo and social links vertically */
  .footer-top { 
    flex-direction: column; 
    gap: 20px; 
  }

  /* Stack the footer navigation links vertically */
  .footer-nav { 
    flex-direction: column; 
    gap: 15px; 
    align-items: center; 
  }

  /* Stack the copyright and "Designed by" text vertically */
  .footer-bottom { 
    flex-direction: column; 
    gap: 15px; 
    text-align: center; 
  }.review-card {
    background: transparent;
    border: none;
}.review-card {
    padding: 0px;
}.carousel-track {
    animation: scrollCarousel 4s linear infinite;
}a.explore-link {
    margin-bottom: 20px;
}.parallax-img-container {
    min-height: 300px !important;
}.parallax-img {
    object-fit: cover;
    height: 100%;
            position: relative;
}.vis-vehicle {
    position: relative;
}.visualizer-interactive {
    min-height: 100%;
}.about-content {
    padding: 0px !important;
}.section-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
}


