@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;600;800&family=Figtree:wght@300;400;600&display=swap');

:root {
  /* Ecoolmove Colors mapped to Rydex Dark Theme */
  --ds-primary: #012530; /* Ecoolmove Deep Navy */
  --ds-accent-green: #2ff77a; /* Ecoolmove Electric Green */
  --ds-accent-cyan: #00f7e5; /* Ecoolmove Neon Cyan */
  
  /* Dark Luxury Base (Rydex) */
  --ds-bg-dark: #0d0f12;
  --ds-surface-dark: #1a1e24;
  --ds-surface-light: #252a32;
  --ds-surface-glow: rgba(47, 247, 122, 0.15); /* Green Glow */

  /* Typography */
  --ds-text-light: #ffffff;
  --ds-text-gray: #a0a0a0;
  --ds-font-heading: 'Alexandria', sans-serif;
  --ds-font-body: 'Figtree', sans-serif;

  /* Layout & Animation */
  --ds-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --ds-container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ds-font-body);
  background-color: var(--ds-bg-dark);
  color: var(--ds-text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Prevent long words from breaking layouts on mobile */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ds-font-heading);
  font-weight: 600;
  line-height: 1.2;
  /* Modern CSS to gracefully balance multi-line headings */
  text-wrap: balance;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--ds-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----------------------------------
   1. NAVIGATION (Aura-Inspired)
----------------------------------- */
.ds-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 0;
  z-index: 1000;
  transition: var(--ds-transition);
  background: transparent;
}
.ds-navbar.scrolled {
  background: rgba(13, 15, 18, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ds-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Animated Bar Logo --- */
.ds-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.ds-logo img {
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0,247,229,0.3));
}
.ds-logo-bar {
  display: inline-block;
  width: 4px;
  border-radius: 999px;
  background: var(--ds-accent-green);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 8px rgba(47, 247, 122, 0.3);
}
.ds-logo-bar:nth-child(1) { height: 18px; }
.ds-logo-bar:nth-child(2) { height: 28px; }
.ds-logo-bar:nth-child(3) { height: 14px; }
.ds-logo-bar:nth-child(4) { height: 22px; }
.ds-logo:hover .ds-logo-bar:nth-child(1) { height: 28px; }
.ds-logo:hover .ds-logo-bar:nth-child(2) { height: 14px; }
.ds-logo:hover .ds-logo-bar:nth-child(3) { height: 24px; }
.ds-logo:hover .ds-logo-bar:nth-child(4) { height: 10px; }

/* Logo text next to bars */
.ds-logo-text {
  font-family: var(--ds-font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ds-text-light);
  margin-left: 10px;
}

/* --- Nav Links (Aura Style) --- */
.ds-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.ds-nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ds-text-gray);
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 0;
}
.ds-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--ds-accent-green);
  transition: width 0.3s ease;
}
.ds-nav-links a:hover::after {
  width: 100%;
}
.ds-nav-links a:hover {
  color: var(--ds-text-light);
}

/* ----------------------------------
   2. HERO SECTION
----------------------------------- */
.ds-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ds-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/15c9601dd45323a9_bg-home-sobre.jpg') center/cover no-repeat;
  z-index: 1;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate linear;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.ds-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13,15,18,0.7) 0%, rgba(1,37,48,0.6) 50%, rgba(13,15,18,1) 100%);
  z-index: 2;
}
.ds-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}
.ds-hero-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, var(--ds-accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.5s;
}
.ds-hero-subtitle {
  font-size: 1.2rem;
  color: var(--ds-text-gray);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.7s;
}

/* ----------------------------------
   3. BUTTONS (Rydex 3D Hover Style)
----------------------------------- */
.ds-btn {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--ds-accent-green);
  font-weight: 600;
  font-family: var(--ds-font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--ds-accent-green);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--ds-transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.9s;
}
.ds-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ds-accent-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.ds-btn:hover {
  color: var(--ds-bg-dark);
  box-shadow: 0 0 20px rgba(47, 247, 122, 0.5);
}
.ds-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ----------------------------------
   4. PRODUCTS GRID (Rydex Style Dark Cards)
----------------------------------- */
.ds-section {
  padding: 100px 0;
}
.ds-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.ds-section-title {
  font-size: 2.5rem;
  color: var(--ds-text-light);
  margin-bottom: 15px;
}
.ds-section-title span {
  color: var(--ds-accent-green);
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.ds-card {
  background: var(--ds-surface-dark);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--ds-transition);
  position: relative;
  cursor: pointer;
}
.ds-card:hover {
  transform: translateY(-10px);
  border-color: var(--ds-accent-green);
  box-shadow: 0 10px 30px var(--ds-surface-glow);
}
.ds-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--ds-transition);
  filter: grayscale(30%) contrast(1.1);
}
.ds-card:hover .ds-card-img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}
.ds-card-content {
  padding: 30px;
}
.ds-card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--ds-text-light);
}
.ds-card-desc {
  color: var(--ds-text-gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.ds-card-link {
  color: var(--ds-accent-cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--ds-transition);
}
.ds-card-link:hover {
  gap: 15px;
  color: var(--ds-accent-green);
}

/* ----------------------------------
   5. DIFFERENTIALS (Ecoolmove Staggered + Rydex Motion)
----------------------------------- */
.ds-diferenciais {
  background: var(--ds-primary);
  position: relative;
}
.ds-diferenciais::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('assets/20bf58195963f730_folha.svg') no-repeat right 10% / 40%;
  opacity: 0.03;
  pointer-events: none;
}
.ds-dif-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.ds-dif-item {
  display: flex;
  gap: 20px;
}
.ds-dif-number {
  font-family: var(--ds-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ds-accent-green);
  opacity: 0.5;
  line-height: 1;
}
.ds-dif-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.ds-dif-text p {
  color: rgba(255,255,255,0.7);
}

/* ----------------------------------
   6. FOOTER & CONTACT
----------------------------------- */
.ds-footer {
  background: #08090a;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(47, 247, 122, 0.1);
}
.ds-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.ds-footer-col h4 {
  color: var(--ds-accent-green);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.ds-footer-col ul {
  list-style: none;
}
.ds-footer-col ul li {
  margin-bottom: 10px;
}
.ds-footer-col ul li a {
  color: var(--ds-text-gray);
  transition: var(--ds-transition);
}
.ds-footer-col ul li a:hover {
  color: var(--ds-text-light);
  padding-left: 5px;
}
.ds-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--ds-text-gray);
  font-size: 0.85rem;
}

/* UTILS */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s all ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   RESPONSIVE - MOBILE FIRST APPROACH
   ============================================== */

/* --- Hamburger Button --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ds-text-light);
  transition: var(--ds-transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu Overlay --- */
.ds-nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 15, 18, 0.98);
  backdrop-filter: blur(25px);
  padding: 0;
  padding-top: 90px;
  gap: 0;
  z-index: 999;
  border-left: none;
  box-shadow: none;
  animation: zoomFadeIn 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
}
@keyframes zoomFadeIn {
  from { transform: scale(1.1); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.ds-nav-links.mobile-open li {
  width: 80%;
  max-width: 320px;
  list-style: none;
}
.ds-nav-links.mobile-open a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  padding: 18px 20px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid transparent;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--ds-text-gray);
  text-align: center;
}
.ds-nav-links.mobile-open a:hover,
.ds-nav-links.mobile-open a:focus {
  color: var(--ds-text-light);
  background: rgba(47, 247, 122, 0.08);
  border-left-color: var(--ds-accent-green);
  padding-left: 28px;
  text-shadow: 0 0 12px rgba(47, 247, 122, 0.3);
  text-align: left;
}
.ds-nav-links.mobile-open a:active {
  transform: scale(0.97);
  background: rgba(47, 247, 122, 0.15);
}

/* --- Mobile Menu Social Footer --- */
.mobile-menu-footer {
  display: none;
}
.ds-nav-links.mobile-open .mobile-menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding: 30px 20px 40px;
  width: 80%;
  max-width: 320px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.mobile-social-links a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: rgba(255,255,255,0.03) !important;
  color: var(--ds-text-gray) !important;
  font-size: 1.1rem;
  transition: all 0.3s ease !important;
  padding: 0 !important;
  text-align: center !important;
}
.mobile-social-links a:hover {
  border-color: var(--ds-accent-green) !important;
  background: rgba(47, 247, 122, 0.1) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(47, 247, 122, 0.15);
}
.social-icon-gray {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}
.mobile-social-links a:hover .social-icon-gray {
  filter: grayscale(0%) opacity(1);
}
.mobile-menu-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* ============ TABLET LANDSCAPE (1024px) ============ */
@media (max-width: 1024px) {
  .ds-hero-title { font-size: 3.5rem; }
  .ds-hero-content { max-width: 600px; padding: 0 20px; }
  .parallax-title { font-size: 3.5rem; }
  .ds-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-dif-list { grid-template-columns: 1fr; }
  .tech-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-review-card { width: 300px; }

  /* Pin container (Servicos) */
  .pin-container { flex-direction: column; }
  .pin-left { width: 100%; height: auto; padding: 80px 20px 40px; }
  .pin-right { width: 100%; }
  .service-panel { height: auto; padding: 40px 20px; }
}

/* ============ TABLET PORTRAIT (768px) ============ */
@media (max-width: 768px) {
  /* Navigation */
  .ds-nav-links { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  .ds-hero { min-height: 500px; height: 80vh; }
  .ds-hero-title { font-size: 3.5rem; line-height: 1.1; }
  .ds-hero-subtitle { font-size: 1rem; margin-bottom: 25px; }
  .ds-btn { padding: 12px 30px; font-size: 0.85rem; }

  /* Cards */
  .ds-grid { grid-template-columns: 1fr; gap: 20px; }
  .ds-card-img { height: 200px; }

  /* Section Headers */
  .ds-section-title { font-size: 2rem; }
  .ds-section { padding: 60px 0; }
  .ds-section-header { margin-bottom: 30px; }

  /* Diferenciais */
  .ds-dif-item { padding: 20px; }
  .ds-dif-number { font-size: 2rem; }

  /* Reviews Marquee */
  .ds-review-card { width: 280px; padding: 20px; }
  .ds-review-text { font-size: 0.85rem; }

  /* Blog */
  .ds-blog-grid { grid-template-columns: 1fr; }
  .ds-blog-card { height: 300px; }
  .ds-blog-title { font-size: 1.1rem; }

  /* Vehicle Specs */
  .parallax-hero { height: 60vh; }
  .parallax-title { font-size: 2.5rem; }
  .tech-specs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-value { font-size: 2rem; }
  .stat-label { font-size: 0.75rem; }
  .vehicle-details { padding: 40px 0; }

  /* Contact */
  .map-section { height: 50vh; }
  .map-banner { width: 90%; right: -100%; top: auto; bottom: 20px; }
  .location-card { min-width: 250px; height: 250px; }

  /* Footer */
  .ds-footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .ds-footer-col img { margin: 0 auto; }

  /* 3D Button */
  .btn-3d { padding: 12px 20px; font-size: 0.9rem; }

  /* Custom Cursor: disable on touch */
  .custom-cursor { display: none !important; }
}

/* ============ MOBILE (480px) ============ */
@media (max-width: 480px) {
  .container { padding: 0 15px; }

  /* Hero */
  .ds-hero { min-height: 400px; height: 70vh; }
  .ds-hero-title { font-size: 2.8rem; line-height: 1.1; }
  .ds-hero-subtitle { font-size: 0.9rem; }
  .ds-btn { padding: 10px 25px; font-size: 0.8rem; letter-spacing: 1px; }

  /* Sections */
  .ds-section { padding: 40px 0; }
  .ds-section-title { font-size: 1.5rem; }

  /* Cards */
  .ds-card { border-radius: 10px; }
  .ds-card-content { padding: 15px; }
  .ds-card-title { font-size: 1.1rem; }
  .ds-card-desc { font-size: 0.85rem; }

  /* Diferenciais */
  .ds-dif-item { flex-direction: column; text-align: center; gap: 10px; }
  .ds-dif-number { margin-right: 0; }

  /* Reviews */
  .ds-reviews-section { padding: 40px 0; }
  .ds-review-card { width: 260px; padding: 15px; }

  /* Blog */
  .ds-blog-card { height: 250px; padding: 20px; }
  .ds-blog-tag { font-size: 0.7rem; padding: 4px 10px; }

  /* Vehicle Internal */
  .parallax-hero { height: 50vh; }
  .parallax-title { font-size: 1.8rem; letter-spacing: 0; }
  .tech-specs-grid { grid-template-columns: 1fr 1fr; gap: 15px; padding: 30px 0; }
  .stat-value { font-size: 1.6rem; }

  /* Contact */
  .map-section { height: 40vh; margin-top: 60px !important; }
  .location-card { min-width: 220px; height: 220px; padding: 20px; }
  .loc-title { font-size: 1.2rem; }
  .loc-desc { font-size: 0.8rem; }

  /* Footer */
  .ds-footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .ds-footer-bottom p { font-size: 0.8rem; }

  /* Blog Article */
  .blog-content { padding: 30px 15px; font-size: 1rem; }
  .blog-content h2 { font-size: 1.3rem; }
  .progress-container { height: 3px; }

  /* Navbar adjustments */
  .ds-logo img { height: 30px; }
  .ds-navbar { padding: 12px 0; }
}

/* ----------------------------------
   7. CUSTOM CURSOR
----------------------------------- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--ds-accent-green);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.custom-cursor.hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(47, 247, 122, 0.5);
  mix-blend-mode: normal;
}
/* Blog cursor specifically */
.custom-cursor.blog-hover {
  width: 80px;
  height: 80px;
  background-color: var(--ds-accent-green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  mix-blend-mode: normal;
}
.custom-cursor.blog-hover::after {
  content: 'LER';
}

/* ----------------------------------
   8. REVIEWS MARQUEE
----------------------------------- */
.ds-reviews-section {
  padding: 80px 0;
  overflow: hidden;
  background: #0a0c0f;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ds-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 30px;
  padding-left: 30px;
}
.ds-marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ds-review-card {
  width: 350px;
  background: var(--ds-surface-dark);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ds-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid var(--ds-accent-green);
}
.ds-review-text {
  font-size: 0.95rem;
  color: var(--ds-text-gray);
  margin-bottom: 20px;
  font-style: italic;
}
.ds-review-author {
  color: var(--ds-accent-green);
  font-weight: 600;
  font-size: 1rem;
}

/* ----------------------------------
   9. BLOG CARDS (Rydex Style)
----------------------------------- */
.ds-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.ds-blog-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  cursor: none; /* Let custom cursor take over */
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.ds-blog-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}
.ds-blog-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
}
.ds-blog-card:hover .ds-blog-bg {
  transform: scale(1.08);
}
.ds-blog-content {
  position: relative;
  z-index: 3;
}
.ds-blog-tag {
  background: var(--ds-accent-green);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s ease;
}
.ds-blog-card:hover .ds-blog-tag {
  transform: translateY(0);
  opacity: 1;
}
.ds-blog-title {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.3;
}


/* Custom Cursor Read Mode */
.custom-cursor.read-mode {
  width: 80px;
  height: 80px;
  background-color: var(--accent-green);
  mix-blend-mode: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-cursor.read-mode::after {
  content: 'LER';
  color: var(--bg-dark);
  font-weight: bold;
  font-size: 14px;
}


/* Vehicle Tech Specs & Parallax Hero */
.parallax-hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.parallax-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,15,18,0.6);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.parallax-title {
  font-size: 5rem;
  font-family: var(--ds-font-heading);
  color: var(--ds-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.tech-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ds-accent-green);
  font-family: var(--ds-font-heading);
  display: inline-block;
}
.stat-label {
  color: var(--ds-text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: 10px;
}
.vehicle-details {
  padding: 80px 0;
}


/* Blog Article Reading View */
.progress-container {
  width: 100%;
  height: 4px;
  background: var(--ds-surface-light);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.progress-bar {
  height: 100%;
  background: var(--ds-accent-green);
  width: 0%;
}
.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  font-size: 1.15rem;
  color: var(--ds-text-gray);
  line-height: 1.8;
}
.blog-content h2 {
  color: var(--ds-text-light);
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: var(--ds-font-heading);
}


/* 3D Button Hover Effect (Webflow Style) */
.btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: var(--ds-surface-light);
  color: var(--ds-text-light);
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  overflow: hidden;
  perspective: 1000px;
}
.btn-3d .btn-text-wrapper {
  position: relative;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.btn-3d .btn-text-main {
  display: block;
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}
.btn-3d .btn-text-hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--ds-accent-green);
  transform-origin: top center;
  transform: rotateX(-90deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  opacity: 0;
}
.btn-3d:hover .btn-text-main {
  transform: translateY(-100%) rotateX(90deg);
  opacity: 0;
}
.btn-3d:hover .btn-text-hover {
  top: 0;
  transform: rotateX(0deg);
  opacity: 1;
}
.btn-3d .arrow {
  margin-left: 10px;
  transition: transform 0.4s ease;
}
.btn-3d:hover .arrow {
  transform: translateX(5px);
}

/* Webflow Style Entrance (translate3d 10%) */
.reveal-3d {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
}


/* Custom GSAP Map & Slider for Contact Page */
.map-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: #08090a;
  background-image: radial-gradient(rgba(0, 255, 170, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--ds-accent-green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px var(--ds-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  z-index: 10;
}
.map-pin:hover {
  transform: scale(1.3);
}
.map-pin::after {
  content: \'\';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--ds-accent-green);
  animation: pulsePin 2s infinite;
}
@keyframes pulsePin {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}
.map-pin-label {
  position: absolute;
  top: 30px;
  white-space: nowrap;
  color: var(--ds-text-light);
  font-family: var(--ds-font-heading);
  font-size: 0.9rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.map-banner {
  position: absolute;
  top: 50px;
  right: -400px; /* Hidden initially */
  width: 350px;
  background: rgba(13, 15, 18, 0.95);
  border: 1px solid rgba(0, 255, 170, 0.3);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
  z-index: 20;
  opacity: 0;
}
.banner-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--ds-text-gray);
  cursor: pointer;
  font-size: 1.5rem;
}
.banner-close:hover { color: var(--ds-accent-green); }

/* Slider */
.slider-section {
  padding: 100px 0;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 30px;
  cursor: grab;
}
.slider-track:active { cursor: grabbing; }
.location-card {
  min-width: 300px;
  height: 300px;
  background: var(--ds-surface-light);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, border-color 0.3s;
}
.location-card:hover {
  transform: translateY(-10px);
  border-color: var(--ds-accent-green);
}
.loc-title { font-family: var(--ds-font-heading); color: var(--ds-text-light); font-size: 1.5rem; margin-bottom: 10px; }
.loc-desc { color: var(--ds-text-gray); font-size: 0.9rem; margin-bottom: 20px; }

/* Global Section Gradient Transition */
.ds-section { position: relative; }
.ds-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0, 255, 170, 0.03) 0%, transparent 15%, transparent 85%, rgba(0, 255, 170, 0.03) 100%); pointer-events: none; z-index: 0; }
