/* ============================================
   ELITE MOTORS - BIG BOY TOYZ INSPIRED DESIGN
   Dark Luxury Theme | Premium Typography
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap");
@import "decorations.css";
@import "animations.css";

:root {
  /* Colors - Dark Luxury Theme */
  --black: #000000;
  --black-light: #0a0a0a;
  --black-lighter: #111111;
  --gray-dark: #1a1a1a;
  --gray: #2a2a2a;
  --gray-light: #3a3a3a;
  --gray-lighter: #666666;
  --gray-text: #999999;
  --white: #ffffff;
  --white-soft: #f5f5f5;

  /* Accent Colors */
  --red: #c40000;
  --red-hover: #a00000;

  /* Typography - Forza Horizon Inspired */
  --font-primary: "Exo 2", "Inter", -apple-system, sans-serif;
  --font-display: "Orbitron", "Space Grotesk", sans-serif;
  --font-heading: "Rajdhani", "Inter", sans-serif;

  /* Font Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Container */
  --container-max: 1400px;
  --container-padding: 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  background-color: var(--black-light);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-6);
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px dashed var(--gray);
  border-top-color: var(--white);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   MODERN ANIMATIONS - Premium Effects
   ============================================ */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Animation utility classes */
.animate-slide-up {
  animation: slideInUp 0.6s ease-out forwards;
}

.animate-slide-down {
  animation: slideInDown 0.6s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Staggered animation delays */
.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.stagger-5 {
  animation-delay: 0.5s;
}

/* Hover transitions for interactive elements */
.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Smooth all transitions */
*,
*::before,
*::after {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Hide navbar on scroll down */
.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-logo img:hover {
  transform: scale(1.05);
  border-color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-phone {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-fast);
}

.nav-phone:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
}

.nav-menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 12px;
  transition: var(--transition-fast);
}

.nav-menu-btn:hover {
  background: var(--white);
}

.nav-menu-btn:hover .hamburger-line {
  background: var(--black);
}

.hamburger-line {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

/* ============================================
   FULLSCREEN MENU
   ============================================ */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-4);
}

.menu-logo img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-fast);
}

.menu-close:hover {
  background: var(--white);
  color: var(--black);
}

.menu-close svg {
  width: 24px;
  height: 24px;
}

.menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.menu-link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--fw-medium);
  color: var(--gray-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.menu-link:hover {
  color: var(--white);
  padding-left: var(--space-4);
}

.menu-footer {
  padding: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-social {
  display: flex;
  gap: var(--space-4);
}

.menu-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-fast);
}

.menu-social a:hover {
  background: var(--white);
  color: var(--black);
}

.menu-social svg {
  width: 18px;
  height: 18px;
}

.menu-phone {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  color: var(--white);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .menu-phone {
    font-size: 1rem;
  }

  .menu-footer {
    padding: var(--space-6) var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: var(--space-8);
  padding-left: 8vw;
  max-width: 900px;
}

.hero-tagline {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: 0.9;
  margin-bottom: var(--space-8);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-title-line {
  display: block;
  font-size: clamp(4rem, 15vw, 10rem);
}

.hero-title-line:first-child {
  color: var(--white);
}

.hero-title-line:last-child {
  color: var(--white);
  opacity: 0.9;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.hero-scroll span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ============================================
   PRODUCT SHOWCASE SECTION
   ============================================ */
.product-showcase {
  background: var(--white);
  color: var(--black);
  padding: 80px 0 140px;
}

.product-showcase .container {
  max-width: 1400px;
  padding: 0 var(--space-8);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}

.product-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.product-nav {
  display: flex;
  gap: var(--space-3);
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-btn:hover {
  background: var(--gray-dark);
  transform: scale(1.05);
}

.nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Product Slider */
.product-slider {
  position: relative;
  overflow: hidden;
}

.product-slides {
  position: relative;
  overflow: hidden;
}

.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.product-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 3;
  width: 100%;
}

.product-slide.next {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  z-index: 2;
}

.product-slide.prev {
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered Animations for Product Slide Content */
.product-slide.active .product-image-container img {
  opacity: 0;
  animation: slideImageIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.product-slide.active .product-title-row {
  opacity: 0;
  animation: slideContentUp 0.6s ease 0.2s forwards;
}

.product-slide.active .product-specs-row {
  opacity: 0;
  animation: slideContentUp 0.6s ease 0.3s forwards;
}

.product-slide.active .product-overview {
  opacity: 0;
  animation: slideContentUp 0.6s ease 0.4s forwards;
  animation-fill-mode: forwards;
}

.product-slide.active .product-footer {
  opacity: 0;
  animation: slideContentUp 0.6s ease 0.5s forwards;
}

@keyframes slideImageIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateX(-30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@keyframes slideContentUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

/* Product Image Section */
.product-image-section {
  position: relative;
  background: #f5f5f5;
  border-radius: 0;
  padding: var(--space-8);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.product-badge {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  color: var(--black);
  letter-spacing: 0.05em;
}

.product-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.product-image-container img {
  max-width: 100%;
  max-height: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}



.product-image-actions {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  display: flex;
  gap: var(--space-2);
}

.image-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.image-action-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.image-action-btn svg {
  width: 16px;
  height: 16px;
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.product-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  transition: var(--transition-fast);
}

.product-dots .dot.active {
  background: var(--black);
  width: 24px;
  border-radius: var(--radius-full);
}

/* Slide Gallery Navigation (within product slides) */
.slide-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.slide-gallery-nav:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slide-gallery-nav svg {
  width: 18px;
  height: 18px;
}

.slide-gallery-prev {
  left: var(--space-3);
}

.slide-gallery-next {
  right: var(--space-3);
}

.slide-gallery-counter {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  z-index: 10;
}

.slide-gallery-img {
  transition: opacity 0.15s ease;
}

/* Slide Lightbox (fullscreen image view) */
.slide-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slide-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.slide-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 0.15s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.slide-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slide-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.slide-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slide-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.slide-lightbox-prev {
  left: 20px;
}

.slide-lightbox-next {
  right: 20px;
}

.slide-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

/* Product Info Section */
.product-info-section {
  padding: var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.product-title-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.product-car-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--black);
}

.product-price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--black);
}

.product-specs-row {
  display: flex;
  gap: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: var(--space-8);
}

.product-spec {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.product-spec .spec-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-spec .spec-value {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--black);
}

/* Product Overview */
.product-overview {
  margin-bottom: var(--space-8);
  flex: 1;
}

.overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.overview-header h4 {
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.details-link {
  font-size: 0.875rem;
  color: var(--black);
  text-decoration: underline;
  font-weight: var(--fw-medium);
}

.overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: #333;
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

.overview-extra {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.875rem;
  color: #666;
  padding-top: var(--space-3);
  border-top: 1px solid #e0e0e0;
}

/* Product Footer */
.product-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}

.availability {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.avail-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.avail-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: #22c55e;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.enquire-btn:hover {
  background: var(--gray-dark);
  transform: translateX(4px);
}

.enquire-btn svg {
  width: 16px;
  height: 16px;
}

/* Footer buttons container */
.footer-buttons {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  width: 100%;
}

.view-details-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: transparent;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border: 2px solid var(--black);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.view-details-btn:hover {
  background: var(--black);
  color: var(--white);
}

.view-details-btn svg {
  width: 16px;
  height: 16px;
}

/* Responsive for Product Showcase */
@media (max-width: 900px) {
  .product-slide-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-image-section {
    min-height: 280px;
  }

  /* Fix for EXTERIOR badge colliding with image on mobile */
  .product-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 10;
    font-size: 0.65rem;
    padding: var(--space-1) var(--space-3);
  }

  .product-info-section {
    padding: var(--space-6) var(--space-6);
  }

  .product-specs-row {
    gap: var(--space-6);
    flex-wrap: wrap;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: var(--space-4) 0;
}

.btn-ghost:hover {
  color: var(--gray-text);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-20) 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto var(--space-10);
}

.section-header.centered {
  flex-direction: column;
  text-align: center;
  gap: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 500px;
}

.section-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--gray-text);
  transition: var(--transition-fast);
}

.section-link:hover {
  color: var(--white);
}

.section-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   CARS CAROUSEL - Recently Parked
   ============================================ */
.recently-parked {
  background: var(--black-light);
}

.cars-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.cars-carousel::-webkit-scrollbar {
  display: none;
}

.cars-carousel:active {
  cursor: grabbing;
}

.cars-track {
  display: flex;
  gap: var(--space-6);
  padding: 0 var(--container-padding);
}

.car-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex-shrink: 0;
}

.car-card-link:hover {
  text-decoration: none;
}

.car-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--black-lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-medium);
  cursor: pointer;
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.car-card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  color: var(--white);
  z-index: 2;
}

.car-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.car-card-content {
  padding: var(--space-5);
}

.car-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.car-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.car-card-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.spec-value {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
}

/* ============================================
   ELEVATE YOUR RIDE - Services Marquee
   ============================================ */
.elevate-section {
  background: var(--black);
  overflow: hidden;
}

.services-marquee {
  overflow: hidden;
  padding: var(--space-8) 0;
}

.services-track {
  display: flex;
  gap: var(--space-6);
  animation: marquee 25s linear infinite;
}

.services-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.service-card {
  flex-shrink: 0;
  width: 400px;
  height: 250px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--gray-dark) 0%,
      var(--black-lighter) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-medium);
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

.service-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 2;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
}

.service-card svg {
  width: 24px;
  height: 24px;
  opacity: 1;
  transform: translate(0, 0);
  transition: var(--transition-fast);
}

.service-card:hover svg {
  opacity: 1;
  transform: translate(0, 0);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 60%);
}

/* ============================================
   SHOWROOM SECTION
   ============================================ */
.showroom-section {
  background: var(--black);
  color: var(--white);
}

.showroom-content {
  max-width: 800px;
}

.showroom-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: var(--space-12);
}

.showroom-card {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--black-lighter);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: var(--transition-medium);
}

.showroom-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.showroom-badge {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--white);
}

.showroom-info {
  flex: 1;
}

.showroom-location {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-1);
}

.showroom-address {
  font-size: 0.875rem;
  color: var(--gray-text);
}

.showroom-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--white);
  transition: var(--transition-fast);
}

.showroom-link:hover {
  background: var(--white);
  color: var(--black);
}

.showroom-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SELL SECTION - Premium Redesign
   ============================================ */
.sell-section {
  background: linear-gradient(135deg, #fffaf5 0%, #fff 40%, #f5f5f5 100%);
  color: var(--black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.sell-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse,
      rgba(196, 0, 0, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
}

.sell-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 0, 0, 0.1),
      transparent);
}

.sell-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.sell-header {
  margin-bottom: 48px;
}

.sell-badge {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg,
      rgba(196, 0, 0, 0.1) 0%,
      rgba(196, 0, 0, 0.05) 100%);
  border: 1px solid var(--red);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 28px;
}

.sell-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.sell-subtitle {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.6;
}

.sell-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.sell-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.sell-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 0, 0, 0.2);
}

.sell-feature svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
}

.sell-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.sell-cta {
  background: linear-gradient(135deg, var(--red) 0%, #e50000 100%);
  color: var(--white);
  border: none;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(196, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.sell-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 0, 0, 0.4);
  background: linear-gradient(135deg, #e50000 0%, var(--red) 100%);
  color: var(--white);
}

/* ============================================
   ABOUT SECTION - BigBoyToyz Inspired with Car Image
   ============================================ */
.about-section {
  background: var(--black);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
}

/* Left Side - Car Image */
.about-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.about-car-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-height: 600px;
}

/* Right Side - Content */
.about-content-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-main {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-tagline {
  display: block;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-text);
  margin-bottom: var(--space-4);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.about-title em {
  font-style: normal;
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

/* About World Section */
.about-world {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
}

.about-world-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.about-world-subtitle {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.world-card {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.world-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive About Section */
@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image-side {
    min-height: 400px;
  }

  .about-content-side {
    grid-template-columns: 1fr;
  }

  .about-main {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
  }

  .about-world {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .about-image-side {
    min-height: 300px;
  }

  .about-main,
  .about-world {
    padding: 32px 24px;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHY US SECTION - Premium Redesign
   ============================================ */
.why-section {
  background: linear-gradient(180deg, #fafafa 0%, #fff 50%, #f5f5f5 100%);
  color: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse,
      rgba(196, 0, 0, 0.03) 0%,
      transparent 60%);
  pointer-events: none;
}

.why-section .section-header.centered {
  margin-bottom: 60px;
}

.why-section .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-section .section-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

.why-card {
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, #ff4444 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg,
      rgba(196, 0, 0, 0.1) 0%,
      rgba(196, 0, 0, 0.05) 100%);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-icon svg {
  width: 36px;
  height: 36px;
  color: var(--red);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: -0.02em;
}

.why-text {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Service Card (Cloned from Why Card for consistency) */
.service-card {
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, #ff4444 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg,
      rgba(196, 0, 0, 0.1) 0%,
      rgba(196, 0, 0, 0.05) 100%);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--red);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: -0.02em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ============================================
   FOOTER - BIGBOYTOYZ INSPIRED
   ============================================ */
.footer {
  background: var(--black);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Services Grid */
.footer-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-service-card {
  padding: var(--space-8) var(--space-6);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.footer-service-card:last-child {
  border-right: none;
}

.footer-service-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.service-card-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--gray-text);
  transition: var(--transition-fast);
}

.service-card-phone:hover {
  color: var(--white);
}

.service-card-phone svg {
  width: 14px;
  height: 14px;
}

/* Footer Showroom Section */
.footer-showroom-section {
  padding: var(--space-10) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showroom-section-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-text);
  margin-bottom: var(--space-6);
}

.footer-showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.showroom-card-item {
  position: relative;
  padding-right: var(--space-10);
}

.showroom-city-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.showroom-full-address {
  font-size: 0.8125rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.showroom-map-link {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: var(--transition-fast);
}

.showroom-map-link:hover {
  color: var(--white);
  transform: translate(2px, -2px);
}

.showroom-map-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

.footer-legal-link {
  font-size: 0.8125rem;
  color: var(--gray-text);
  transition: var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .footer-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-service-card:nth-child(2) {
    border-right: none;
  }

  .footer-service-card:nth-child(1),
  .footer-service-card:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .hero-content {
    padding: var(--space-4);
  }

  .hero-links {
    bottom: 60px;
  }

  .car-card {
    width: 280px;
  }

  .service-card {
    width: 300px;
    height: 180px;
  }

  .showroom-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .sell-features {
    grid-template-columns: 1fr;
  }

  .footer-services-grid {
    grid-template-columns: 1fr;
  }

  .footer-service-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-service-card:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }

  .footer-bottom-left {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .btn {
    padding: var(--space-3) var(--space-6);
    font-size: 0.8125rem;
  }

  .car-card {
    width: 260px;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PREMIUM SERVICES SECTION (Redesign)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-grid .service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  width: auto;
  height: auto;
  flex-shrink: initial;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Hover Effects: Lift & Glow */
.services-grid .service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 255, 255, 0.05);
}

/* Service Icon Container */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.services-grid .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  transition: filter 0.4s ease;
}

.services-grid .service-card:hover .service-icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Typography */
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Subtle corner glow accent */
.services-grid .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.services-grid .service-card:hover::before {
  opacity: 1;
}

/* ============================================
   SHOP BY CAR STYLE SECTION - Dark Theme Slider
   ============================================ */
.shop-by-car-section {
  background: var(--black);
  padding: 60px 0;
}

.shop-by-car-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.shop-by-car-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.shop-by-car-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3), transparent);
}

.shop-by-car-nav {
  display: flex;
  gap: 12px;
}

.car-style-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.car-style-nav-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.car-style-nav-btn svg {
  width: 20px;
  height: 20px;
}

.car-style-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.car-style-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.car-style-slider::-webkit-scrollbar {
  display: none;
}

.car-style-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.car-style-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.car-style-image {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.car-style-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.car-style-card:hover .car-style-image img {
  transform: scale(1.08);
}

.car-style-name {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .car-style-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .shop-by-car-section {
    padding: 50px 0;
  }

  .shop-by-car-header {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .shop-by-car-line {
    order: 3;
    flex-basis: 100%;
    margin-top: 16px;
  }

  .shop-by-car-nav {
    margin-left: auto;
  }

  .car-style-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 150px;
    padding: 20px 16px;
  }

  .car-style-image {
    height: 60px;
    margin-bottom: 12px;
  }

  .car-style-name {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .car-style-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 140px;
    padding: 16px 12px;
  }

  .car-style-image {
    height: 50px;
  }

  .car-style-name {
    font-size: 0.8125rem;
  }

  .car-style-nav-btn {
    width: 38px;
    height: 38px;
  }
}

/* ============================================
   SERVICE CENTRE PAGE STYLES
   ============================================ */
/* Navbar Service Button */
.nav-service-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-fast);
  position: relative;
  margin-right: var(--space-2);
}

.nav-service-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.nav-service-btn svg {
  width: 18px;
  height: 18px;
}

.nav-tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: var(--white);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.nav-tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: var(--white);
  transform: rotate(45deg);
}

.nav-service-btn:hover .nav-tooltip,
.nav-service-btn:focus-visible .nav-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Service Hero */
.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.service-hero-visual {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

/* Trust Strip */
.trust-section {
  padding: var(--space-8) 0;
  background: var(--black-lighter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-item svg {
  color: var(--red);
  width: 20px;
  height: 20px;
}

/* Booking Section */
.booking-section {
  padding: 100px 0;
  background: var(--white);
  color: var(--black);
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fcfcfc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-2xl);
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.booking-header p {
  color: var(--gray-lighter);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-lighter);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit-btn {
  grid-column: span 2;
  background: var(--black);
  color: var(--white);
  padding: 20px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-submit-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 0, 0, 0.2);
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: #f5f5f5;
  color: var(--black);
  text-align: center;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-weight: 600;
  color: var(--black);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Booking */
@media (max-width: 768px) {
  .booking-container {
    padding: 30px 20px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-submit-btn {
    grid-column: span 1;
  }
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-modal {
  background: var(--white);
  color: var(--black);
  padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-overlay.active .success-modal {
  transform: scale(1);
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: #4cd964;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(76, 217, 100, 0.3);
}

.modal-icon svg {
  width: 32px;
  height: 32px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-message {
  color: var(--gray-text);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.modal-close-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Loader Wheel Animation */
.loader-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1rem;
}

.loader-wheel {
  width: 64px;
  height: 64px;
  color: var(--black);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Hide old loader elements if present */
.loader-logo,
.loader-spinner {
  display: none !important;
}

/* ============================================
   GALLERY SECTION - Premium Masonry Grid
   ============================================ */
.gallery-section {
  padding: 100px 0 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

/* Ambient background glow */
.gallery-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 0, 0, 0.04) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-section .section-tag {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}

.gallery-section .section-tag::before,
.gallery-section .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.gallery-section .section-tag::before {
  right: calc(100% + 14px);
}

.gallery-section .section-tag::after {
  left: calc(100% + 14px);
  background: linear-gradient(90deg, var(--red), transparent);
}

.gallery-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  font-family: var(--ff-heading);
  letter-spacing: 0.02em;
}

.gallery-section .section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Masonry Grid using CSS Columns */
.gallery-masonry {
  column-count: 4;
  column-gap: 20px;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Individual Gallery Item */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  will-change: transform, opacity;
}

/* Full-scale images — no cropping */
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.5s ease;
  filter: brightness(0.88) contrast(1.05);
}

/* Dark overlay for premium feel */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 50%,
      rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Shine sweep */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.06) 40%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.06) 60%,
      transparent 80%);
  z-index: 3;
  transition: left 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

/* Hover Effects */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(196, 0, 0, 0.08);
  border-color: rgba(196, 0, 0, 0.25);
  z-index: 5;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.1) saturate(1.1);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover::before {
  left: 150%;
}

/* Collapse/Expand — show first 12 items by default */
.gallery-masonry {
  max-height: 1100px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-masonry::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--black) 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.5s ease;
}

.gallery-masonry.expanded {
  max-height: 20000px;
}

.gallery-masonry.expanded::after {
  opacity: 0;
}

/* Expand Button */
.gallery-expand-wrap {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 5;
}

.gallery-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-family: var(--ff-body);
}

.gallery-expand-btn i,
.gallery-expand-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}

.gallery-expand-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 40px rgba(196, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Pop-in Animation */
.gallery-pop-in {
  animation: galleryPopIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes galleryPopIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Gallery Responsive */
@media (max-width: 1200px) {
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0 80px;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 14px;
    max-height: 900px;
    overflow: hidden;
  }

  .gallery-item {
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .gallery-item::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    column-count: 2;
    column-gap: 10px;
    /* Explicitly lock mobile gallery to prevent all images from showing before expansion */
    max-height: 800px;
    overflow: hidden;
  }

  .gallery-item {
    margin-bottom: 10px;
    border-radius: 10px;
  }
}