/* Roboto font is loaded from Google Fonts */

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

:root {
  /* Black & White Palette */
  --black: #000000;
  --black-900: #0f172a;
  --black-800: #1e293b;
  --black-700: #334155;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #FFFFFF;
  
  /* Accent & Neutrals */
  --accent-yellow: #FFB020;
  --muted: #fafbfc;
  
  /* Red Accents - Mixed with Black & White */
  --red-primary: #800000;
  --red-dark: #5a0000;
  --red-light: #a00000;
  --red-accent: rgba(128, 0, 0, 0.1);
  
  /* Legacy mappings for compatibility - Black & White Theme */
  --primary: var(--black);
  --primary-dark: var(--black-900);
  --accent: var(--black-800);
  --background: var(--muted);
  --surface: var(--white);
  --surface-alt: var(--gray-50);
  --text: var(--black-900);
  --text-soft: var(--gray-600);
  --border: rgba(0, 0, 0, 0.1);
  
  /* Shadows - Black & White */
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  
  /* Transitions */
  --transition: 0.25s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.4s ease;
  
  /* Typography */
  --font-primary: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-system: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  background: var(--muted);
  color: var(--slate-800);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Mobile-specific body optimizations */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
    padding-top: 56px; /* Adjust for smaller header */
  }
  
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
  }
}

/* Prevent horizontal scroll on all mobile devices */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  main {
    overflow-x: hidden;
    width: 100%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--slate-800);
  font-weight: 600;
  line-height: 1.2;
}

p, span, li {
  color: var(--slate-600);
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    width: 92%;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1200px;
    width: 94%;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .container {
    width: 96%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    width: 100%;
  }
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px rgba(15, 23, 36, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid var(--border);
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 23, 36, 0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-weight: 500;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  transition: color var(--transition-fast);
  color: var(--slate-600);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--black);
  left: 0;
  bottom: -8px;
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--slate-800);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline:active {
  transform: translateY(0) scale(0.98);
}

/* Mobile Button Optimizations */
@media (max-width: 768px) {
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-primary {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-primary:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-outline:active {
    transform: scale(0.97);
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.8125rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
    width: 100%;
  }

  .btn-primary {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  }
}

.btn-text {
  padding: 0.5rem 1rem;
  color: var(--slate-600);
  background: transparent;
  border: none;
}

.btn-text:hover {
  color: var(--black);
  background: var(--gray-50);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--muted) 0%, var(--gray-100) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 50% 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.05), transparent 60%);
  z-index: -1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(-10px) translateX(-10px);
  }
}

.hero__visual {
  animation: float 8s ease-in-out infinite;
  will-change: transform;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.hero__content .eyebrow {
  display: inline-block;
  background: var(--gray-50);
  color: var(--black);
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__content h1 {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  margin: 1.25rem 0;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero__summary {
  color: var(--slate-600);
  max-width: 520px;
  font-size: 1rem;
}

.hero__badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.store-badge img {
  height: 46px;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.hero__stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--text);
}

.hero__stats span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__glow {
  position: absolute;
  inset: 15% 10% 10% 20%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  z-index: -1;
}

.hero__card {
  position: absolute;
  bottom: 8%;
  right: -6%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 230px;
  border: 1px solid var(--border);
}

.hero__card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 0.4rem;
}

.hero__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--slate-800);
}

.hero__card span {
  font-weight: 600;
  color: var(--black);
}

.booking-card {
  margin-top: 3rem;
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 5;
  border: 1px solid var(--border);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  display: block;
}

.form-field input,
.form-field select {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  color: var(--slate-800);
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  font-family: var(--font-secondary);
}

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

.form-field input::placeholder {
  color: var(--slate-600);
  opacity: 0.6;
}

/* Mobile Form Optimizations */
@media (max-width: 768px) {
  .form-field {
    margin-bottom: 1.25rem;
  }

  .form-field label {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    min-height: 48px;
    border-radius: 8px;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: #800000;
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .form-field {
    margin-bottom: 1rem;
  }

  .form-field label {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.8125rem 0.875rem;
    font-size: 0.875rem;
    min-height: 44px;
    border-radius: 8px;
  }
}

/* ============================================
   MODERN 2025 BRANDS SECTION - FUTURISTIC DESIGN
   ============================================ */

/* Section Container */
.brands-section-2025 {
  padding: 6rem 0;
  background: linear-gradient(135deg, #071a16 0%, #0b1f1a 50%, #0d2f26 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.brands-section-2025::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  animation: backgroundPulse2025 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.brands-section-2025::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%);
  animation: shimmerLine2025 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundPulse2025 {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes shimmerLine2025 {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

/* Container */
.brands-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.brands-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.brands-badge {
  display: inline-block;
  padding: 0.625rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  animation: badgeGlow2025 3s ease-in-out infinite;
}

@keyframes badgeGlow2025 {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
  }
}

.brands-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  display: inline-block;
  animation: titleShimmer2025 4s ease-in-out infinite;
}

.brands-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%);
  border-radius: 2px;
  animation: underlineGrow2025 1.2s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes titleShimmer2025 {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes underlineGrow2025 {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

/* Grid Layout */
.brands-grid-2025 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .brands-grid-2025 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1024px) {
  .brands-grid-2025 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .brands-grid-2025 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
  }
  
  .brands-section-2025 {
    padding: 4rem 0;
  }
  
  .brands-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .brands-grid-2025 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Brand Card - Futuristic Design */
.brand-card-2025 {
  position: relative;
  background: rgba(11, 31, 26, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.4;
  min-height: 160px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-100px);
}

/* Slide-in Animation */
.brand-card-2025.revealed {
  opacity: 1 !important;
  transform: translateX(0) !important;
  animation: slideInFromLeft2025 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Fallback: Show cards after a delay if not revealed by observer */
.brand-card-2025:not(.revealed) {
  animation: delayedReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

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

@keyframes slideInFromLeft2025 {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered Animation Delays */
.brand-card-2025.revealed:nth-child(1) { animation-delay: 0.1s; }
.brand-card-2025.revealed:nth-child(2) { animation-delay: 0.2s; }
.brand-card-2025.revealed:nth-child(3) { animation-delay: 0.3s; }
.brand-card-2025.revealed:nth-child(4) { animation-delay: 0.4s; }
.brand-card-2025.revealed:nth-child(5) { animation-delay: 0.5s; }
.brand-card-2025.revealed:nth-child(6) { animation-delay: 0.6s; }
.brand-card-2025.revealed:nth-child(7) { animation-delay: 0.7s; }
.brand-card-2025.revealed:nth-child(8) { animation-delay: 0.8s; }

/* Glow Effect Background */
.brand-card-2025::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(20px);
  transform: scale(0.95);
}

/* Inner Glow */
.brand-card-2025::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  z-index: 0;
}

/* Hover Effects */
.brand-card-2025:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 20px 60px rgba(255, 255, 255, 0.3),
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: rgba(11, 31, 26, 0.8);
  z-index: 10;
}

.brand-card-2025:hover::before {
  opacity: 0.7;
  transform: scale(1.05);
  filter: blur(25px);
}

.brand-card-2025:hover::after {
  opacity: 1;
}

/* Brand Logo */
.brand-logo-2025 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card-2025:hover .brand-logo-2025 {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.1);
}

/* Loading State */
.brands-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .brand-card-2025 {
    padding: 2rem 1.5rem;
    min-height: 140px;
  }
  
  .brand-logo-2025 {
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .brand-card-2025 {
    padding: 1.75rem 1.25rem;
    min-height: 130px;
    border-radius: 20px;
  }
  
  .brand-logo-2025 {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .brand-card-2025 {
    padding: 1.5rem 1rem;
    min-height: 120px;
    border-radius: 16px;
  }
  
  .brand-logo-2025 {
    max-height: 50px;
  }
}

/* ============================================
   OLD BRAND LOGOS SECTION (kept for compatibility)
   ============================================ */
.partner-logos {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 768px) {
  .partner-logos {
    padding: 3rem 0;
  }
}

/* Modern Animated Background */
.partner-logos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%,     rgba(0, 0, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
  animation: backgroundPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.partner-logos::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%);
  animation: shimmerLine 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes shimmerLine {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%;
  }
  25% {
    background-position: 20% 20%, 80% 80%, 60% 40%, 10% 90%, 90% 10%;
  }
  50% {
    background-position: 40% 10%, 60% 90%, 30% 70%, 20% 80%, 80% 20%;
  }
  75% {
    background-position: 10% 30%, 90% 70%, 70% 30%, 5% 95%, 95% 5%;
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  33% {
    opacity: 0.9;
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  66% {
    opacity: 0.85;
    transform: scale(1.08);
    filter: brightness(1.05);
  }
}

.partner-logos__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
  .partner-logos__header {
    margin-bottom: 2rem;
  }
}

.partner-logos__subtitle {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #000000;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.partner-logos__subtitle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.partner-logos__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0 0;
  animation: titleShimmer 4s ease-in-out infinite;
  position: relative;
  display: inline-block;
}

.partner-logos__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%);
  border-radius: 2px;
  animation: underlineGrow 1.2s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes titleShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
  }
}

/* Brands Grid - Optimized Layout */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px) {
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1400px;
  }
}

@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Brand Card - Optimized Size & Design */
.brand-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.4;
  min-height: 140px;
  max-height: 180px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: brandCardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards,
             subtleFloat 8s ease-in-out infinite;
  animation-delay: var(--card-delay, 0s), 1.5s;
  will-change: transform;
}

@media (max-width: 768px) {
  .brand-card {
    padding: 1.5rem 1rem;
    min-height: 120px;
    max-height: 160px;
    aspect-ratio: 1.3;
  }
}
@media (max-width: 480px) {
  .brand-card {
    padding: 1.25rem 0.75rem;
    min-height: 110px;
    max-height: 140px;
  }
}
@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(0, 0, 0, 0.1);
  }
}

@keyframes cardGlow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(0, 0, 0, 0.15);
  }
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.12) 25%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.12) 75%,
    rgba(0, 0, 0, 0.1) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.12) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-md);
  background-size: 300% 300%, 100% 100%, 100% 100%, 200% 200%;
  animation: gradientShift 4s ease infinite, particleFloat 6s ease-in-out infinite, radialPulse 5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.brand-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  opacity: 0;
  border-radius: var(--radius-md);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(20px);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  transform: scale(0.95);
}

.brand-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}

.brand-card:hover::before {
  opacity: 1;
  animation: gradientShift 2s ease infinite, particleFloat 2s ease-in-out infinite, radialPulse 2.5s ease-in-out infinite;
  background: 
    linear-gradient(
      135deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.18) 25%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.18) 75%,
    rgba(0, 0, 0, 0.15) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.12) 0%, transparent 55%);
}

.brand-card:hover::after {
  opacity: 0.7;
  transform: scale(1.05);
  filter: blur(25px);
  animation-play-state: running;
}

.brand-card:active {
  transform: translateY(-12px) scale(1.08) rotateY(3deg) rotateX(-2deg) rotateZ(0.5deg);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 15px 30px rgba(0, 0, 0, 0.3),
    0 5px 10px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(0, 0, 0, 0.3);
  filter: brightness(1.35) contrast(1.2);
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: translate(-3px, -3px) scale(1.05) rotate(2deg);
    opacity: 0.2;
  }
  50% {
    transform: translate(-5px, -5px) scale(1.1) rotate(5deg);
    opacity: 0.3;
  }
  75% {
    transform: translate(-3px, 3px) scale(1.05) rotate(-2deg);
    opacity: 0.2;
  }
}

/* Smooth Float Animation */
@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
}


/* Staggered animation delay for each card with enhanced timing */
.brand-card.in-view:nth-child(1) { 
  --card-delay: 0.1s;
  animation-delay: 0.1s, 1.3s; 
}
.brand-card:nth-child(1) .brand-logo { 
  animation-delay: 0.3s; 
}

.brand-card.in-view:nth-child(2) { 
  --card-delay: 0.15s;
  animation-delay: 0.15s, 1.35s; 
}
.brand-card:nth-child(2) .brand-logo { 
  animation-delay: 0.35s; 
}

.brand-card.in-view:nth-child(3) { 
  --card-delay: 0.2s;
  animation-delay: 0.2s, 1.4s; 
}
.brand-card:nth-child(3) .brand-logo { 
  animation-delay: 0.4s; 
}

.brand-card.in-view:nth-child(4) { 
  --card-delay: 0.25s;
  animation-delay: 0.25s, 1.45s; 
}
.brand-card:nth-child(4) .brand-logo { 
  animation-delay: 0.45s; 
}

.brand-card.in-view:nth-child(5) { 
  --card-delay: 0.3s;
  animation-delay: 0.3s, 1.5s; 
}
.brand-card:nth-child(5) .brand-logo { 
  animation-delay: 0.5s; 
}

.brand-card.in-view:nth-child(6) { 
  --card-delay: 0.35s;
  animation-delay: 0.35s, 1.55s; 
}
.brand-card:nth-child(6) .brand-logo { 
  animation-delay: 0.55s; 
}

.brand-card.in-view:nth-child(7) { 
  --card-delay: 0.4s;
  animation-delay: 0.4s, 1.6s; 
}
.brand-card:nth-child(7) .brand-logo { 
  animation-delay: 0.6s; 
}

/* Brand Logo Wrapper - Clean Design */
.brand-logo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.brand-logo-slide .brand-logo {
  width: 100%;
  height: auto;
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(10%) opacity(0.95) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) 
          brightness(1.15) contrast(1.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes logoAutoChange {
  /* Each logo gets equal time, with transitions */
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(30px) rotateY(90deg) rotateZ(-5deg);
    filter: blur(12px) grayscale(100%) brightness(0.4) opacity(0);
    z-index: 1;
  }
  /* Fade in */
  1% {
    opacity: 0.6;
    transform: scale(0.85) translateY(15px) rotateY(50deg) rotateZ(-2deg);
    filter: blur(6px) grayscale(70%) brightness(0.7) opacity(0.6);
    z-index: 2;
  }
  /* Fully visible - each logo gets its time slot */
  2.5%, 12% {
    opacity: 1;
    transform: scale(1) translateY(0) rotateY(0deg) rotateZ(0deg);
    filter: blur(0px) grayscale(20%) brightness(1.1) opacity(1);
    z-index: 3;
  }
  /* Fade out */
  13% {
    opacity: 0.6;
    transform: scale(0.85) translateY(-15px) rotateY(-50deg) rotateZ(2deg);
    filter: blur(6px) grayscale(70%) brightness(0.7) opacity(0.6);
    z-index: 2;
  }
  14% {
    opacity: 0;
    transform: scale(0.7) translateY(-30px) rotateY(-90deg) rotateZ(5deg);
    filter: blur(12px) grayscale(100%) brightness(0.4) opacity(0);
    z-index: 1;
  }
  /* Hidden until next cycle */
  14.01%, 100% {
    opacity: 0;
    transform: scale(0.7) translateY(30px) rotateY(90deg);
    z-index: 1;
  }
}

/* Pause animation on hover */
.brand-card:hover .brand-logo-slide {
  animation-play-state: paused;
}

.brand-card:hover .brand-logo-slide .brand-logo {
  transform: scale(1.15);
  filter: grayscale(0%) opacity(1) 
          drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3))
          brightness(1.3) contrast(1.2) saturate(1.2);
}
/* Pause all slides on hover and enhance visible one */
.brand-card:hover .brand-logo-slide {
  animation-play-state: paused;
}

/* Show visible logo more prominently on hover */
.brand-card:hover .brand-logo-slide .brand-logo {
  transition: all 0.3s ease !important;
}

/* Light rays effect - only visible on hover */
.brand-logo-wrapper::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 255, 255, 0.1) 45deg,
    transparent 90deg,
    rgba(255, 255, 255, 0.1) 135deg,
    transparent 180deg,
    rgba(255, 255, 255, 0.1) 225deg,
    transparent 270deg,
    rgba(255, 255, 255, 0.1) 315deg,
    transparent 360deg
  );
  animation: rotateRays 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotateRays {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.brand-card:hover .brand-logo-wrapper::after {
  opacity: 0.7;
}

/* Loading State Spinner */
.brand-logo-wrapper::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.brand-card.loading .brand-logo-wrapper::before {
  opacity: 1;
  z-index: 10;
}

.brand-card.loading .brand-logo {
  opacity: 0;
}

/* Only animate when in view for better performance */
.brand-card:not(.in-view) {
  animation: none;
  opacity: 0;
}

.brand-card.in-view {
  animation: brandCardEntrance 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             subtleFloat 6s ease-in-out infinite,
             cardGlow 3s ease-in-out infinite,
             borderPulse 4s ease-in-out infinite;
  animation-delay: var(--card-delay, 0s), 1.8s, 0s, 0s;
}

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

/* Brand Logo Image - Optimized Size */
.brand-logo {
  width: 100%;
  height: auto;
  max-width: 120px;
  max-height: 60px;
  min-height: 40px;
  object-fit: contain;
  filter: grayscale(15%) opacity(0.95) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) 
          brightness(1.15) contrast(1.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
  animation: logoFadeIn 0.6s ease-out forwards;
  animation-delay: calc(var(--card-delay, 0s) + 0.2s);
}

@media (max-width: 768px) {
  .brand-logo {
    max-width: 100px;
    max-height: 50px;
    min-height: 35px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    max-width: 90px;
    max-height: 45px;
    min-height: 30px;
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.brand-card:hover .brand-logo {
  transform: scale(1.12);
  filter: grayscale(0%) opacity(1) 
          drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3))
          brightness(1.3) contrast(1.2) saturate(1.2);
}


/* Smooth Entrance Animation */
@keyframes brandCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Logo Fade In */
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gradient Shift Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Pulse Animation for Active State */
@keyframes brandPulse {
  0%, 100% {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 15px 30px rgba(0, 0, 0, 0.15);
  }
}

/* Dark Theme Support */
@media (prefers-color-scheme: dark) {
  .partner-logos {
    background: linear-gradient(180deg, var(--slate-800) 0%, rgba(15, 23, 36, 0.95) 100%);
  }

  .brand-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .brand-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .partner-logos__title {
    color: var(--white);
  }
}

.section {
  padding: 5rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--gray-50);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.section-title {
  margin-top: 1.1rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  max-width: 600px;
  letter-spacing: -0.02em;
  color: var(--slate-800);
  font-family: var(--font-primary);
}

.cards-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 3rem;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid var(--border);
  opacity: 0;
  animation: slideUpFade 0.6s ease-out forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--gray-50);
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  transition: transform var(--transition-fast);
}

.info-card:hover .info-card__icon {
  transform: scale(1.1);
}

.info-card__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--black);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--slate-800);
}

.info-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.why-us__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
}
.feature-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-list li {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-list h3 {
  margin-bottom: 0.4rem;
  color: var(--slate-800);
}

.feature-list p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid var(--border);
  opacity: 0;
  animation: slideUpFade 0.6s ease-out forwards;
}

.vehicle-card:nth-child(1) { animation-delay: 0.1s; }
.vehicle-card:nth-child(2) { animation-delay: 0.2s; }
.vehicle-card:nth-child(3) { animation-delay: 0.3s; }
.vehicle-card:nth-child(4) { animation-delay: 0.4s; }

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Animated vehicle card when no offer */
.vehicle-card-animated {
  position: relative;
  overflow: hidden;
  animation: cardFloat 4s ease-in-out infinite;
}

.vehicle-card-animated::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 3s infinite;
  z-index: 1;
  pointer-events: none;
}

.vehicle-card-animated:hover {
  animation: cardFloatHover 0.6s ease-in-out;
  transform: translateY(-12px) scale(1.02);
}

.vehicle-card-animated .vehicle-card__image-link {
  position: relative;
  overflow: hidden;
}

.vehicle-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shineMove 3s infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes cardFloatHover {
  0%, 100% {
    transform: translateY(-12px) scale(1.02);
  }
  50% {
    transform: translateY(-15px) scale(1.03);
  }
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shineMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Vehicle card with offer - different style */
.vehicle-card-offer {
  border: 2px solid rgba(254, 226, 226, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.vehicle-card-offer:hover {
  border-color: rgba(254, 226, 226, 0.8);
  box-shadow: 0 12px 40px rgba(254, 226, 226, 0.3);
}

.vehicle-card img {
  height: 200px;
  object-fit: cover;
}

.vehicle-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vehicle-card__header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.vehicle-card__rating {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.vehicle-card__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-card__price {
  font-weight: 700;
  font-size: 1.35rem;
  color: #800000;
  font-family: var(--font-primary);
}

.vehicle-card__price span {
  display: inline-block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-left: 0.35rem;
}

.section__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.testimonials {
  background: linear-gradient(135deg, var(--gray-100), var(--muted));
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__rating {
  font-size: 1.5rem;
  color: #000000;
  letter-spacing: 0.2rem;
}

.testimonial-card p {
  color: var(--slate-600);
}

.testimonial-card__author span {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.download-section {
  padding-bottom: 6rem;
}

.download-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.download-section__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: #0f172a;
  color: rgba(226, 232, 240, 0.9);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
}

.brand--footer span {
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1.25rem 0;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: var(--font-primary);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--black-800);
}

.footer__socials {
  display: grid;
  gap: 0.7rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 246, 251, 0.95);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem clamp(1.5rem, 5vw, 3rem);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform var(--transition);
  }

  .nav-links.is-open {
    transform: scaleY(1);
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero__visual {
    order: -1;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-us__grid,
  .download-section__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .navbar__inner {
    padding: 1rem 0;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .booking-card {
    padding: 1.5rem 1.25rem;
  }

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

  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: 1fr;
  }

  /* Responsive Brand Cards */
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.25rem;
  }

  .brand-card {
    padding: 1.5rem 1rem;
  }

  .brand-logo {
    max-width: 100px;
    max-height: 50px;
  }

  .partner-logos {
    padding: 3rem 0;
  }

  .partner-logos__header {
    margin-bottom: 2rem;
  }

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

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .brand-card {
    padding: 1.5rem 1rem;
    aspect-ratio: 1.3;
    border-radius: 14px;
  }

  .brand-logo {
    max-width: 85px;
    max-height: 45px;
  }

  .partner-logos {
    padding: 3rem 0;
  }
  
  .brand-card:hover {
    transform: translateY(-10px) scale(1.08) rotateY(3deg) rotateX(-3deg);
  }

  .partner-logos__header {
    margin-bottom: 1.75rem;
  }

  .partner-logos__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .store-badge img {
    height: 40px;
  }

  .hero__card {
    position: static;
    margin-top: 1.5rem;
    max-width: none;
  }

  /* Small Mobile Brand Cards */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 0 0.75rem;
  }

  .brand-card {
    padding: 1rem 0.75rem;
    aspect-ratio: 1.4;
  }

  .brand-logo {
    max-width: 70px;
    max-height: 40px;
  }

  .partner-logos {
    padding: 2rem 0;
  }

  .brand-card:hover {
    transform: translateY(-6px) scale(1.05) rotateY(2deg);
  }
}

/* Additional Premium Radial Pulse Animation */
@keyframes radialPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.02);
  }
}

/* Brand Filter Notification */
.brand-filter-notification {
  position: relative;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.08) 100%);
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.brand-filter-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.notification-content i.fa-check-circle {
  color: var(--black);
  font-size: 1.2rem;
}

.notification-content strong {
  color: var(--black);
  font-weight: 600;
}

.notification-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}

.notification-close i {
  font-size: 0.9rem;
}

/* Make brand cards more interactive with cursor pointer */
.brand-card {
  cursor: pointer;
}

.brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--black), transparent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.brand-card:hover::after,
.brand-card:active::after {
  width: 80%;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  width: min(90%, 600px);
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  opacity: 0;
  transform: scale(0.98);
  animation: modalEnter 0.3s ease-out forwards;
}

@keyframes modalEnter {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  color: var(--text-soft);
  float: right;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--text);
}

.modal-content h2 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.modal-content .form-field {
  margin-bottom: 1.25rem;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content input[type="datetime-local"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border var(--transition), box-shadow var(--transition);
}

.modal-content input:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

@media (max-width: 720px) {
  .modal-content {
    margin: 10% auto;
    padding: 1.5rem;
    width: 95%;
  }

  .modal-close {
    right: 1rem;
    top: 1rem;
  }
}

/* Enhanced Booking Modal Styles */
.booking-modal-enhanced {
  width: min(95%, 900px) !important;
  max-width: 900px;
  padding: 2rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text);
}

.modal-header .modal-close {
  position: static;
  float: none;
}

.booking-section {
  margin-bottom: 1.5rem;
}

.booking-label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.booking-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.booking-input:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

.input-with-clear {
  position: relative;
}

.clear-input {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--muted);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.clear-input:hover {
  background: var(--slate-600);
  color: var(--white);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--black);
}

.booking-datetime-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.datetime-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.datetime-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.datetime-inputs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.date-input-wrapper {
  position: relative;
  flex: 1;
}

.date-input {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--white);
}

.date-picker-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--white);
  cursor: pointer;
  min-width: 90px;
}

.time-select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

/* Calendar Widget */
.calendar-widget {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--muted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.calendar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.calendar-month {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-xs);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav-btn:hover {
  background: var(--muted);
}

.calendar-month-title {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 0.5rem 0;
  text-transform: uppercase;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  position: relative;
  color: var(--text);
}

.calendar-day:hover:not(.disabled):not(.selected-start):not(.selected-end):not(.in-range) {
  background: var(--muted);
}

.calendar-day.disabled {
  color: var(--text-soft);
  opacity: 0.4;
  cursor: not-allowed;
}

.calendar-day.other-month {
  color: var(--text-soft);
  opacity: 0.5;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
}

.calendar-day.in-range {
  background: rgba(128, 0, 0, 0.1);
  color: var(--black);
}

.calendar-day.selected-start::after {
  content: '→';
  position: absolute;
  right: 2px;
  font-size: 0.7rem;
}

.calendar-day.selected-end::after {
  content: '←';
  position: absolute;
  left: 2px;
  font-size: 0.7rem;
}

.calendar-summary {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.booking-section-divider {
  margin: 2rem 0 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
}

.booking-section-divider h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
}

.booking-total {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

.btn-booking-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .booking-modal-enhanced {
    width: 95% !important;
    padding: 1.5rem;
  }

  .booking-datetime-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calendar-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .datetime-inputs {
    flex-direction: column;
  }

  .time-select {
    width: 100%;
  }
}

/* ============================================
   MODERN HOMEPAGE STYLES - 2025 DESIGN
   ============================================ */

/* Hero Section with Search Form - 2025 Premium Design */
.hero-section {
  position: relative;
  padding: 8rem 0 10rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 30%, #fecaca 60%, #fca5a5 100%);
  overflow: hidden;
  isolation: isolate;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(128, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(128, 0, 0, 0.08) 0%, transparent 50%);
  animation: backgroundPulse 12s ease-in-out infinite;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(128, 0, 0, 0.3) 50%,
    transparent 100%);
  animation: shimmerLine 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes shimmerLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  background: linear-gradient(135deg, #000000 0%, #1e293b 50%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(128, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #475569;
  margin-bottom: 3rem;
  font-weight: 400;
}
/* Search Form - Premium 2025 Glassmorphism Design */
.search-form {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-radius: 36px;
  padding: 3rem;
  box-shadow: 
    0 32px 80px rgba(15, 23, 42, 0.15),
    0 16px 40px rgba(15, 23, 42, 0.1),
    0 8px 20px rgba(128, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(128, 0, 0, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
  overflow: hidden;
  animation: slideUpFade 0.8s ease-out 0.2s both;
}

.search-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(128, 0, 0, 0.05), transparent);
  animation: rotateGradient 8s linear infinite;
  z-index: 0;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.search-form .form-group {
  position: relative;
  z-index: 1;
}

.search-form .form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.search-form .form-group input,
.search-form .form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #0f172a;
}

.search-form .form-group input:focus,
.search-form .form-group select:focus {
  outline: none;
  border-color: #000000;
  background: #ffffff;
  box-shadow: 
    0 0 0 4px rgba(128, 0, 0, 0.1),
    0 4px 12px rgba(128, 0, 0, 0.15);
  transform: translateY(-2px);
}

.search-form .form-group input::placeholder {
  color: #94a3b8;
}
.search-form .btn-primary {
  grid-column: 1 / -1;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 16px;
  background: linear-gradient(135deg, #000000 0%, #1e293b 100%);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(128, 0, 0, 0.3),
    0 4px 12px rgba(128, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.search-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.search-form .btn-primary:hover::before {
  left: 100%;
}

.search-form .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 32px rgba(128, 0, 0, 0.4),
    0 8px 16px rgba(128, 0, 0, 0.3);
}

.search-form .btn-primary:active {
  transform: translateY(-2px) scale(1);
}

/* Featured Vehicles Section - Premium 2025 - NEW MODERN DESIGN */
.featured-vehicles {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 20%, #f8fafc 50%, #ffffff 80%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.featured-vehicles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(128, 0, 0, 0.3) 50%,
    transparent 100%);
  z-index: 1;
  animation: shimmerLine 4s ease-in-out infinite;
}

.featured-vehicles::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(128, 0, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(65, 184, 131, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.featured-vehicles .container {
  position: relative;
  z-index: 1;
}

.featured-vehicles h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
  color: #0f172a;
  letter-spacing: -0.02em;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.featured-vehicles h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #800000 0%, #000000 100%);
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.3s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

/* Enhanced Vehicle Cards - Clean Modern Design */
.vehicle-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 4px 20px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.4s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  opacity: 0;
  animation: slideUpFade 0.8s ease-out forwards;
}

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

.vehicle-card:nth-child(1) { animation-delay: 0.1s; }
.vehicle-card:nth-child(2) { animation-delay: 0.2s; }
.vehicle-card:nth-child(3) { animation-delay: 0.3s; }
.vehicle-card:nth-child(4) { animation-delay: 0.4s; }
.vehicle-card:nth-child(5) { animation-delay: 0.5s; }
.vehicle-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 8px 30px rgba(128, 0, 0, 0.15),
    0 4px 15px rgba(15, 23, 42, 0.08);
  border-color: rgba(128, 0, 0, 0.4);
}

.vehicle-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: relative;
  display: block;
}

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

/* Vehicle Card Listing Styles */
.vehicle-card-listing {
  background: white;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1 !important;
  animation: none;
  display: flex;
  flex-direction: column;
}

.vehicle-card-listing:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vehicle-card-image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
  background: #f1f5f9;
}

.vehicle-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vehicle-card-listing:hover .vehicle-card-image {
  transform: scale(1.05);
}

.vehicle-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vehicle-card-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-weight: 700;
}

.vehicle-card-specs-inline {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.vehicle-card-footer-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 1rem;
}

.vehicle-card-price-inline {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2F9E44;
}

.price-period {
  font-size: 0.875rem;
  font-weight: 400;
}

.vehicle-card-button-inline {
  padding: 0.5rem 1rem;
  background: #800000 !important;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.vehicle-card-button-inline:hover {
  background: #a00000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(128, 0, 0, 0.3);
  color: white !important;
  text-decoration: none;
}

.vehicle-card__body {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  background: #ffffff;
}

.vehicle-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-transform: capitalize;
}

.vehicle-card__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: #475569;
}

.vehicle-card__specs .spec-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.375rem;
  background: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.6875rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  position: relative;
}

.vehicle-card__specs .spec-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: linear-gradient(180deg, #800000 0%, #000000 100%);
  border-radius: 0 2px 2px 0;
}

.vehicle-card__specs .spec-item i {
  color: #000000;
  font-size: 0.625rem;
  width: 10px;
  text-align: center;
}

.vehicle-card__specs .spec-item:hover {
  background: rgba(128, 0, 0, 0.05);
  border-color: rgba(128, 0, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(128, 0, 0, 0.1);
}

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.625rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  gap: 0.625rem;
}

.vehicle-card__price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vehicle-card__price {
  font-weight: 800;
  font-size: 1.125rem;
  color: #800000;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.vehicle-card__price span {
  display: inline-block;
  font-weight: 500;
  font-size: 0.6875rem;
  color: #64748b;
  margin-left: 0.25rem;
}

.vehicle-card__original-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.vehicle-card__discount-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.125rem;
  width: fit-content;
}

.vehicle-card .btn-primary {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.75rem;
  border: none;
  background: linear-gradient(135deg, #800000 0%, #000000 100%);
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(128, 0, 0, 0.2);
  white-space: nowrap;
}

.vehicle-card .btn-primary:hover {
  background: linear-gradient(135deg, #a00000 0%, #5a0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
}

.vehicle-card .btn-primary:active {
  transform: translateY(0);
}

/* Brands Section */
/* New Modern Brands Section */
.brands-section-new {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.brands-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(128, 0, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(128, 0, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.brands-header-new {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.brands-header-new h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #000000 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.brands-header-new p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.brands-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px) {
  .brands-grid-new {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 1024px) {
  .brands-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .brands-section-new {
    padding: 3rem 0;
    background: #ffffff;
  }

  .brands-header-new {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .brands-header-new h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .brands-header-new p {
    font-size: 0.875rem;
  }

  .brands-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 0 1rem;
  }

  .brand-card-new {
    padding: 1.25rem 1rem;
    border-radius: 16px;
    min-height: 140px;
    gap: 0.75rem;
    border: 1.5px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .brand-card-new:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }

  .brand-logo-wrapper-new {
    height: 70px;
  }

  .brand-logo-new {
    max-height: 70px;
    filter: grayscale(0.1) brightness(0.98);
  }

  .brand-name-new {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 0.25rem;
  }
}

@media (max-width: 480px) {
  .brands-section-new {
    padding: 2.5rem 0;
    background: #ffffff;
  }

  .brands-header-new {
    margin-bottom: 1.5rem;
    padding: 0 0.875rem;
  }

  .brands-header-new h2 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }

  .brands-header-new p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .brands-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.875rem;
  }

  .brand-card-new {
    padding: 1rem 0.875rem;
    border-radius: 14px;
    min-height: 130px;
    gap: 0.625rem;
    border: 1.5px solid #f1f5f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .brand-card-new:active {
    transform: scale(0.97);
    background: #fef2f2;
    border-color: rgba(128, 0, 0, 0.2);
  }

  .brand-logo-wrapper-new {
    height: 60px;
  }

  .brand-logo-new {
    max-height: 60px;
    filter: grayscale(0.05) brightness(1);
  }

  .brand-name-new {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 0.25rem;
  }
}
.brand-card-new {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 
    0 4px 20px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 180px;
}
.brand-card-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.05) 0%, rgba(160, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.brand-card-new::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.3) 0%, rgba(160, 0, 0, 0.3) 100%);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.brand-card-new:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 20px 60px rgba(128, 0, 0, 0.25),
    0 10px 30px rgba(128, 0, 0, 0.15),
    0 0 0 2px rgba(128, 0, 0, 0.3);
  border-color: rgba(128, 0, 0, 0.4);
}

.brand-card-new:active {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 
    0 8px 24px rgba(128, 0, 0, 0.15),
    0 4px 12px rgba(128, 0, 0, 0.1);
}

.brand-card-new:hover::before {
  opacity: 1;
}

.brand-card-new:hover::after {
  opacity: 0.6;
}

.brand-logo-wrapper-new {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.brand-logo-new {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card-new:hover .brand-logo-new {
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.15);
}

.brand-name-new {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
  z-index: 1;
  position: relative;
}

.brand-card-new:hover .brand-name-new {
  color: #000000;
}

/* Legacy brands section styles (keep for backward compatibility) */
.brands-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.brands-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
  background: linear-gradient(135deg, #000000 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 16px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(160, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 12px 32px rgba(15, 23, 42, 0.12),
    0 8px 16px rgba(128, 0, 0, 0.15);
  border-color: rgba(128, 0, 0, 0.3);
}

.brand-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.brand-card:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* New Hero Section - Two Column Layout */
.hero-section-new {
  padding: 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #800000;
  z-index: 1;
}

.hero-section-new .container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 550px;
}

.hero-content-new {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-tag {
  display: block;
  background: #800000;
  color: white;
  padding: 0.875rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-content-new h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
  font-family: var(--font-secondary);
}

.hero-content-new p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  max-width: 95%;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #e5e7eb;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  font-family: var(--font-secondary);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* Hero Visual - Modern 2025 Animation Design */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Modern 2025 Animation Container */
.hero-modern-animation {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.modern-animation-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Animated Gradient Orbs */
.animated-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(128, 0, 0, 0.3) 0%, rgba(220, 38, 38, 0.2) 100%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(99, 102, 241, 0.15) 100%);
  bottom: 15%;
  right: 15%;
  animation-delay: -7s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.15) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Geometric Shapes */
.geometric-shape {
  position: absolute;
  border: 2px solid;
  opacity: 0.15;
  animation: shapeRotate 15s linear infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  border-color: rgba(128, 0, 0, 0.3);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 20%;
  left: 20%;
  animation-duration: 20s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  border-color: rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  top: 60%;
  right: 25%;
  animation-duration: 25s;
  animation-direction: reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  border-color: rgba(168, 85, 247, 0.3);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border: none;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
  bottom: 20%;
  left: 15%;
  animation-duration: 18s;
}

.shape-4 {
  width: 90px;
  height: 90px;
  border-color: rgba(220, 38, 38, 0.3);
  transform: rotate(45deg);
  top: 30%;
  right: 20%;
  animation-duration: 22s;
  animation-direction: reverse;
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Animated Grid */
.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(128, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.4;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Particles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(128, 0, 0, 0.4);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  top: 40%;
  left: 30%;
  animation-delay: -2s;
  animation-duration: 15s;
}

.particle:nth-child(3) {
  top: 60%;
  left: 50%;
  animation-delay: -4s;
  animation-duration: 18s;
}

.particle:nth-child(4) {
  top: 30%;
  right: 20%;
  animation-delay: -6s;
  animation-duration: 14s;
}

.particle:nth-child(5) {
  bottom: 25%;
  left: 25%;
  animation-delay: -8s;
  animation-duration: 16s;
}

.particle:nth-child(6) {
  top: 70%;
  right: 30%;
  animation-delay: -10s;
  animation-duration: 13s;
}

.particle:nth-child(7) {
  top: 50%;
  left: 70%;
  animation-delay: -12s;
  animation-duration: 17s;
}

.particle:nth-child(8) {
  bottom: 15%;
  right: 15%;
  animation-delay: -14s;
  animation-duration: 19s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(20px, -30px) scale(1.5);
    opacity: 0.7;
  }
  50% {
    transform: translate(-15px, 20px) scale(0.8);
    opacity: 0.5;
  }
  75% {
    transform: translate(30px, 15px) scale(1.2);
    opacity: 0.6;
  }
}

/* Central Glow Effect */
.central-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(128, 0, 0, 0.1) 0%,
    rgba(128, 0, 0, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Hover Effects */
.hero-modern-animation:hover .animated-gradient-orb {
  animation-duration: 15s;
}

.hero-modern-animation:hover .geometric-shape {
  animation-duration: 10s;
  opacity: 0.25;
}

.hero-modern-animation:hover .particle {
  animation-duration: 10s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-modern-animation {
    height: 400px;
  }

  .orb-1, .orb-2, .orb-3 {
    width: 200px;
    height: 200px;
  }

  .geometric-shape {
    width: 60px;
    height: 60px;
  }

  .central-glow {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-modern-animation {
    height: 350px;
  }

  .orb-1, .orb-2, .orb-3 {
    width: 150px;
    height: 150px;
  }

  .geometric-shape {
    width: 50px;
    height: 50px;
  }

  .central-glow {
    width: 250px;
    height: 250px;
  }
}

/* ============================================
   FEATURED VEHICLES SECTION - IMPROVED - COMPACT 2025 MODERN DESIGN
   ============================================ */
.featured-vehicles-section {
    padding: 1rem 0 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-vehicles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.featured-vehicles-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.featured-vehicles-section .section-header {
    margin-bottom: 0.875rem;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-vehicles-section .section-title {
    color: #ffffff;
    margin-bottom: 0.125rem;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.featured-vehicles-section .section-subtitle {
    color: #a0a0a0;
    font-size: clamp(0.6875rem, 1vw, 0.8125rem);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Search Container - Compact */
.featured-search-container {
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9375rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.featured-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(58, 58, 58, 0.8);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.featured-search-input:focus {
    border-color: #dc2626;
    background: rgba(51, 51, 51, 0.95);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.featured-search-input:focus + .search-icon {
    color: #dc2626;
}

.featured-search-input::placeholder {
    color: #6b7280;
}

.search-clear-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: #3a3a3a;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.search-clear-btn:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.search-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-select {
    padding: 0.625rem 0.875rem;
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(58, 58, 58, 0.8);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    min-width: 130px;
}

.filter-select:hover {
    border-color: rgba(74, 74, 74, 0.9);
    background: rgba(51, 51, 51, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.filter-select:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
    transform: translateY(-1px);
}

.filter-select option {
    background: #2a2a2a;
    color: #ffffff;
}

.no-search-results {
    grid-column: 1 / -1;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #9ca3af;
}

.no-search-results i {
    font-size: 3rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    display: block;
}

.no-search-results p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.clear-filters-btn {
    padding: 0.75rem 1.5rem;
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.featured-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.875rem;
    margin: 0 auto;
    padding: 0;
}

.featured-vehicle-card {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    animation: modernCardEntry 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.featured-vehicle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent, rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-vehicle-card:hover::before {
    opacity: 1;
}

.featured-vehicle-card:nth-child(1) { animation-delay: 0.1s; }
.featured-vehicle-card:nth-child(2) { animation-delay: 0.15s; }
.featured-vehicle-card:nth-child(3) { animation-delay: 0.2s; }
.featured-vehicle-card:nth-child(4) { animation-delay: 0.25s; }

@keyframes modernCardEntry {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modern hover animation - smooth lift with glow */
.featured-vehicle-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.featured-vehicle-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 55%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.featured-vehicle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.95);
}

.featured-vehicle-card:hover .featured-vehicle-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.featured-offer-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.featured-offer-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerBadge 3s infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
    }
}

@keyframes shimmerBadge {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.featured-vehicle-content {
    padding: 0.875rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.featured-vehicle-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.featured-vehicle-card:hover .featured-vehicle-name {
    color: #f8fafc;
}

.featured-vehicle-details {
    display: flex;
    gap: 1rem;
    margin: 0;
    font-size: 0.8rem;
    color: #a0a0a0;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.detail-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
}

.featured-vehicle-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin: 0;
}

.featured-vehicle-price .current-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.featured-vehicle-card:hover .featured-vehicle-price .current-price {
    transform: scale(1.05);
}

.featured-vehicle-price .original-price {
    font-size: 0.8125rem;
    color: #888888;
    text-decoration: line-through;
    margin: 0;
}

.featured-vehicle-price .price-per-day {
    font-size: 0.6875rem;
    color: #a0a0a0;
    font-weight: 400;
}

.btn-reserve-now {
    display: inline-block;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    margin-top: auto;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-reserve-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-reserve-now:hover::before {
    width: 300px;
    height: 300px;
}

.btn-reserve-now:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-reserve-now:active {
    transform: translateY(0) scale(0.98);
}

.no-featured-vehicles {
    grid-column: 1 / -1;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #a0a0a0;
}

.no-featured-vehicles p {
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for featured vehicles */
@media (max-width: 1024px) {
    .featured-vehicles-section {
        padding: 0.875rem 0 1.25rem;
    }

    .featured-vehicles-section .section-header {
        margin-bottom: 0.75rem;
    }

    .featured-search-container {
        margin-bottom: 0.875rem;
    }

    .featured-vehicles-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .featured-vehicle-image-wrapper {
        padding-bottom: 55%;
    }

    .featured-vehicle-content {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .featured-vehicle-name {
        font-size: 0.9375rem;
    }

    .featured-vehicle-details {
        gap: 0.75rem;
        font-size: 0.75rem;
    }

    .featured-vehicle-price .current-price {
        font-size: 1.25rem;
    }

    .featured-vehicle-price .original-price {
        font-size: 0.75rem;
    }

    .btn-reserve-now {
        padding: 0.5625rem 0.875rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .featured-vehicles-section {
        padding: 0.75rem 0 1.25rem;
    }

    .featured-vehicles-section .section-header {
        margin-bottom: 0.625rem;
    }

    .featured-vehicles-section .section-subtitle {
        margin-bottom: 0.75rem;
    }
    
    .container-medium {
        padding: 0 0.75rem;
    }
    
    .featured-search-container {
        margin-bottom: 1rem;
    }
    
    .featured-search-input {
        padding: 0.6875rem 0.875rem 0.6875rem 2.5rem;
        font-size: 0.8125rem;
    }
    
    .search-icon {
        left: 0.875rem;
        font-size: 0.875rem;
    }
    
    .search-filters {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
        padding: 0.5625rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .featured-vehicles-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
    }
    
    .no-search-results {
        padding: 1.5rem 1rem;
    }
    
    .no-search-results i {
        font-size: 2rem;
    }
    
    .no-search-results p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .featured-vehicles-section {
        padding: 0.5rem 0 0.875rem;
    }

    .featured-vehicles-section .section-header {
        margin-bottom: 0.375rem;
    }

    .featured-vehicles-section .section-title {
        font-size: clamp(0.875rem, 4vw, 1rem);
        margin-bottom: 0.125rem;
    }

    .featured-vehicles-section .section-subtitle {
        font-size: clamp(0.625rem, 3vw, 0.6875rem);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .container-medium {
        padding: 0 0.5rem;
    }

    .featured-search-container {
        margin-bottom: 0.625rem;
    }

    .featured-search-input {
        padding: 0.5625rem 0.75rem 0.5625rem 2.25rem;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .search-icon {
        left: 0.75rem;
        font-size: 0.75rem;
    }

    .search-clear-btn {
        width: 28px;
        height: 28px;
        right: 0.625rem;
    }

    .search-filters {
        gap: 0.375rem;
        margin-top: 0.5rem;
    }

    .filter-select {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
        min-width: auto;
        flex: 1;
        border-radius: 6px;
    }

    .featured-vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.25rem;
    }

    .featured-vehicle-card {
        border-radius: 8px;
    }

    .featured-vehicle-image-wrapper {
        padding-bottom: 50%;
    }

    .featured-vehicle-content {
        padding: 0.625rem;
        gap: 0.375rem;
    }

    .featured-vehicle-name {
        font-size: 0.8125rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .featured-vehicle-details {
        gap: 0.5rem;
        font-size: 0.625rem;
        justify-content: flex-start;
        margin-bottom: 0.25rem;
    }

    .detail-item {
        gap: 0.25rem;
    }

    .detail-icon {
        width: 12px;
        height: 12px;
    }

    .featured-vehicle-price {
        gap: 0.25rem;
        margin-bottom: 0.375rem;
    }

    .featured-vehicle-price .current-price {
        font-size: 1rem;
    }

    .featured-vehicle-price .original-price {
        font-size: 0.625rem;
    }

    .featured-vehicle-price .price-per-day {
        font-size: 0.625rem;
    }

    .btn-reserve-now {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 6px;
        margin-top: auto;
    }

    .featured-offer-badge {
        top: 6px;
        right: 6px;
        padding: 0.25rem 0.5rem;
        font-size: 0.625rem;
        border-radius: 4px;
    }

    .no-search-results {
        padding: 2rem 1rem;
    }

    .no-search-results i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .no-search-results p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .clear-filters-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* Extra small devices - further minimize */
@media (max-width: 360px) {
    .featured-vehicles-section {
        padding: 0.375rem 0 0.75rem;
    }

    .featured-vehicles-section .section-header {
        margin-bottom: 0.25rem;
    }

    .featured-vehicles-section .section-title {
        font-size: 0.875rem;
    }

    .featured-vehicles-section .section-subtitle {
        font-size: 0.625rem;
        margin-bottom: 0.375rem;
    }

    .featured-search-container {
        margin-bottom: 0.5rem;
    }

    .featured-vehicles-grid {
        gap: 0.375rem;
        padding: 0 0.25rem;
    }

    .featured-vehicle-content {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .featured-vehicle-name {
        font-size: 0.75rem;
    }

    .featured-vehicle-details {
        font-size: 0.5625rem;
        gap: 0.375rem;
    }

    .detail-icon {
        width: 10px;
        height: 10px;
    }

    .featured-vehicle-price .current-price {
        font-size: 0.875rem;
    }

    .btn-reserve-now {
        padding: 0.4375rem 0.625rem;
        font-size: 0.6875rem;
    }
}

.car-card-price .original-price {
  font-size: 0.8rem; /* Smaller font size */
  margin-right: 0.2rem; /* Reduced margin */
}

.car-card-price span {
  font-size: 0.7rem; /* Smaller font size */
  font-weight: 500;
  color: #64748b;
}
.car-card-discount {
  color: #000000;
  font-weight: 600;
  font-size: 0.7rem; /* Smaller font size */
  margin-bottom: 0.6rem; /* Reduced margin */
  padding: 0.2rem 0.5rem; /* Smaller padding */
  background: #fee2e2;
  border-radius: 4px; /* Smaller border-radius */
  display: inline-block;
  width: fit-content;
}

.car-card-link {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem; /* Reduced gap */
  transition: all 0.3s ease;
  font-size: 0.8rem; /* Smaller font size */
  font-family: var(--font-secondary);
}

.car-card-link:hover {
  color: #1e293b;
  gap: 0.4rem; /* Slightly increased gap on hover */
}

/* ============================================
   OFFERS & SALES BLOG SECTION - 2025 MODERN DESIGN
   ============================================ */

.offers-blog-section {
  padding: 3rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.offers-blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128, 0, 0, 0.1), transparent);
}

.offers-blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.offers-header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.offers-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.offers-header-content {
  display: inline-block;
}

.offers-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem; /* Smaller padding */
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #991b1b;
  border-radius: 50px;
  font-size: 0.6rem; /* Smaller font size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem; /* Reduced margin */
  box-shadow: 0 2px 8px rgba(254, 226, 226, 0.3);
}

.offers-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem); /* Smaller font size */
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.4rem 0; /* Reduced margin */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.offers-subtitle {
  font-size: 0.8rem; /* Smaller font size */
  color: #64748b;
  margin: 0;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; /* Reduced gap */
  margin-top: 2rem;
}


.offer-card {
  background: #ffffff;
  border-radius: 12px; /* Smaller border-radius */
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offer-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.offer-card:nth-child(1) {
  transition-delay: 0.1s;
}

.offer-card:nth-child(2) {
  transition-delay: 0.2s;
}

.offer-card:nth-child(3) {
  transition-delay: 0.3s;
}

.offer-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 8px 24px rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.15);
}

.offer-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 160px; /* Smaller height */
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.offer-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover .offer-card-image {
  transform: scale(1.1);
}

.offer-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-card:hover .offer-card-overlay {
  opacity: 1;
}

.offer-discount-badge {
  position: absolute;
  top: 0.5rem; /* Adjusted position */
  right: 0.5rem; /* Adjusted position */
  z-index: 3;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 50%;
  width: 48px; /* Smaller size */
  height: 48px; /* Smaller size */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.5);
  }
}

.discount-percent {
  color: #ffffff;
  font-size: 0.7rem; /* Smaller font size */
  font-weight: 800;
  text-align: center;
  line-height: 1;
}

.offer-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.offer-card:hover .offer-card-shine {
  left: 100%;
  transition: left 0.5s ease;
}

.offer-card-content {
  padding: 1rem; /* Reduced padding */
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* Reduced gap */
  flex: 1;
}

.offer-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem; /* Reduced gap */
}

.offer-card-title {
  font-size: 1rem; /* Smaller font size */
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.offer-card-type {
  padding: 0.2rem 0.5rem; /* Smaller padding */
  background: #f1f5f9;
  color: #475569;
  border-radius: 12px;
  font-size: 0.6rem; /* Smaller font size */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.offer-card-description {
  color: #64748b;
  font-size: 0.7rem; /* Smaller font size */
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-card-pricing {
  padding: 0.6rem; /* Reduced padding */
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 12px;
  border: 1px solid rgba(254, 226, 226, 0.5);
}

.offer-price-group {
  display: flex;
  align-items: baseline;
  gap: 0.3rem; /* Reduced gap */
  margin-bottom: 0.2rem; /* Reduced margin */
  flex-wrap: wrap;
}

.offer-current-price {
  font-size: 1.2rem; /* Smaller font size */
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
}

.offer-original-price {
  font-size: 0.7rem; /* Smaller font size */
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
}

.offer-period {
  font-size: 0.6rem; /* Smaller font size */
  color: #64748b;
  font-weight: 500;
}

.offer-savings {
  font-size: 0.6rem; /* Smaller font size */
  color: #991b1b;
  font-weight: 600;
}

.offer-card-features {
  display: flex;
  gap: 0.3rem; /* Reduced gap */
  flex-wrap: wrap;
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 0.2rem; /* Reduced gap */
  padding: 0.2rem 0.4rem; /* Smaller padding */
  background: #f8fafc;
  border-radius: 8px;
  font-size: 0.6rem; /* Smaller font size */
  color: #475569;
  font-weight: 500;
}

.offer-feature i {
  color: #800000;
  font-size: 0.6rem; /* Smaller font size */
}

.offer-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem; /* Reduced gap */
  padding: 0.5rem 0.8rem; /* Reduced padding */
  background: linear-gradient(135deg, #800000 0%, #5a0000 100%);
  color: #ffffff;
  border-radius: 8px; /* Smaller border-radius */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.7rem; /* Smaller font size */
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(128, 0, 0, 0.25);
  margin-top: auto;
}

.offer-card-button:hover {
  background: linear-gradient(135deg, #a00000 0%, #800000 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 0, 0, 0.35);
}

.offer-card-button i {
  transition: transform 0.3s ease;
  font-size: 0.6rem; /* Smaller font size */
}

.offer-card-button:hover i {
  transform: translateX(3px);
}

/* Responsive Design - Desktop (1025px+) */
@media (min-width: 1025px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem; /* Reduced gap */
  }
  
  .offers-blog-section .container {
    padding: 0 2rem;
  }
}
/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .offers-blog-section {
    padding: 2.5rem 0;
  }

  .offers-header {
    margin-bottom: 1.75rem;
  }

  .offers-title {
    font-size: clamp(1.4rem, 3.5vw, 1.875rem);
  }

  .offers-subtitle {
    font-size: 0.8rem;
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .offer-card-image-wrapper {
    height: 140px;
  }

  .offer-card-content {
    padding: 1rem;
    gap: 0.6rem;
  }

  .offer-card-title {
    font-size: 1rem;
  }

  .offer-current-price {
    font-size: 1.2rem;
  }

  .offer-card-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
  }
}
/* Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .offers-blog-section {
    padding: 2rem 0;
  }

  .offers-blog-section .container {
    padding: 0 1.25rem;
  }

  .offers-header {
    margin-bottom: 1.5rem;
  }

  .offers-title {
    font-size: 1.4rem;
  }

  .offers-subtitle {
    font-size: 0.7rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .offer-card-image-wrapper {
    height: 160px;
  }

  .offer-card-content {
    padding: 1rem;
    gap: 0.6rem;
  }

  .offer-card-title {
    font-size: 0.9rem;
  }

  .offer-current-price {
    font-size: 1.1rem;
  }

  .offer-card-features {
    gap: 0.3rem;
  }

  .offer-feature {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }

  .offer-card-button {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .offers-blog-section {
    padding: 1.5rem 0;
  }

  .offers-blog-section .container {
    padding: 0 1rem;
  }

  .offers-header {
    margin-bottom: 1.25rem;
  }

  .offers-badge {
    padding: 0.2rem 0.6rem;
    font-size: 0.5rem;
    margin-bottom: 0.3rem;
  }

  .offers-title {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .offers-subtitle {
    font-size: 0.6rem;
    padding: 0 0.3rem;
  }

  .offers-grid {
    gap: 0.8rem;
    margin-top: 1.25rem;
  }

  .offer-card {
    border-radius: 10px;
  }

  .offer-card-image-wrapper {
    height: 120px;
  }

  .offer-discount-badge {
    width: 36px;
    height: 36px;
    top: 0.3rem;
    right: 0.3rem;
  }

  .discount-percent {
    font-size: 0.6rem;
  }

  .offer-card-content {
    padding: 0.6rem;
    gap: 0.4rem;
  }

  .offer-card-header {
    gap: 0.3rem;
  }

  .offer-card-title {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .offer-card-type {
    padding: 0.1rem 0.3rem;
    font-size: 0.5rem;
  }

  .offer-card-description {
    font-size: 0.6rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .offer-card-pricing {
    padding: 0.4rem;
  }

  .offer-price-group {
    gap: 0.2rem;
    margin-bottom: 0.1rem;
  }

  .offer-current-price {
    font-size: 1rem;
  }

  .offer-original-price {
    font-size: 0.6rem;
  }

  .offer-period {
    font-size: 0.5rem;
  }

  .offer-savings {
    font-size: 0.5rem;
  }

  .offer-card-features {
    gap: 0.2rem;
  }

  .offer-feature {
    font-size: 0.5rem;
    padding: 0.2rem 0.3rem;
    gap: 0.1rem;
  }

  .offer-feature i {
    font-size: 0.5rem;
  }

  .offer-card-button {
    padding: 0.4rem 0.6rem;
    font-size: 0.6rem;
    gap: 0.2rem;
    border-radius: 6px;
  }

  .offer-card-button i {
    font-size: 0.5rem;
  }
}
/* Extra Small Mobile (≤360px) */
@media (max-width: 360px) {
  .offers-blog-section {
    padding: 1.25rem 0;
  }

  .offers-blog-section .container {
    padding: 0 0.875rem;
  }

  .offers-title {
    font-size: 1.125rem;
  }

  .offers-subtitle {
    font-size: 0.6875rem;
  }

  .offers-grid {
    gap: 0.875rem;
  }

  .offer-card-image-wrapper {
    height: 140px;
  }

  .offer-card-content {
    padding: 0.75rem;
  }

  .offer-card-title {
    font-size: 0.875rem;
  }

  .offer-current-price {
    font-size: 1rem;
  }
}

  .offer-card-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .offer-price-group {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Updated Vehicle Cards with Ratings */
.vehicle-card__image-link {
  display: block;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.vehicle-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  padding: 0.5rem 0.75rem;
  background: #fef3c7;
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
  width: fit-content;
}

.stars {
  display: flex;
  gap: 0.125rem;
  align-items: center;
}

.stars .fa-star,
.stars .fa-star-half-alt,
.stars .far.fa-star {
  color: #d1d5db;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.stars .fa-star.filled,
.stars .fa-star-half-alt.filled {
  color: #f59e0b;
}

.rating-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  line-height: 1.2;
}

.rating-text strong {
  font-weight: 700;
  color: #0f172a;
}

.rating-count {
  color: #64748b;
  font-weight: 400;
  font-size: 0.75rem;
}

.vehicle-card__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vehicle-card__specs .spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

.vehicle-card__specs .spec-item i {
  color: #000000;
  width: 16px;
  text-align: center;
}
.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.vehicle-card .btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* View All Link */
.view-all-link {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
}
.view-all-link a {
  color: #000000;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.view-all-link a:hover {
  color: #1e293b;
  gap: 0.75rem;
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .hero-grid {
    gap: 5rem;
    min-height: 600px;
  }
  
  .hero-car-image {
    height: 520px;
  }
  
  .hero-content-new h1 {
    font-size: 3rem;
  }
  
  .hero-content-new p {
    font-size: 1.125rem;
  }
  
  .hero-stats {
    gap: 4rem;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .vehicles-grid {
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 2rem auto 0;
  }
  
  .featured-vehicles {
    padding: 10rem 0;
  }
  
  .featured-vehicles h2 {
    font-size: 3.75rem;
    margin-bottom: 4rem;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
  }
  
  .review-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-grid {
    gap: 4.5rem;
    min-height: 580px;
  }
  
  .hero-car-image {
    height: 500px;
  }
  
  .vehicles-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.25rem;
    max-width: 1200px;
    margin: 2rem auto 0;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-car-image {
    height: 400px;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  .hero-section {
    padding: 4rem 0 6rem;
  }
  
  .search-form {
    padding: 2rem;
    grid-template-columns: 1fr;
  }
  
  .vehicles-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  body {
    background: #ffffff;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section-new {
    background: #fafafa;
  }

  .hero-section-new::before {
    height: 42px;
  }

  .hero-section-new .container {
    padding-top: 52px;
    padding-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 0.7rem 1rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }
  
  .hero-content-new {
    gap: 1.25rem;
    order: 2;
  }

  .hero-content-new h1 {
    font-size: 1.625rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    color: #000000;
  }

  .hero-content-new p {
    font-size: 0.875rem;
    max-width: 100%;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0.5rem;
  }
  
  .hero-stats {
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
  }

  .stat-item {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 1.5rem;
    color: #800000;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.3;
  }
  
  .hero-visual {
    order: 1;
    margin-bottom: 1.5rem;
  }
  
  .hero-car-image {
    height: 240px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .hero-car-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 1.125rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .car-card-number {
    font-size: 1.375rem;
  }

  .car-card-price {
    font-size: 1.25rem;
  }

  .hero-car-card h3 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
  
  .featured-vehicles {
    padding: 2.5rem 0;
    background: #ffffff;
  }

  .featured-vehicles h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .brands-section {
    padding: 2.5rem 0;
  }
  
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }
  
  .vehicle-card__specs {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .vehicle-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  
  .vehicle-card .btn-primary {
    width: 100%;
    padding: 0.625rem 1.25rem;
  }
  
  .vehicle-card__price {
    font-size: 1.125rem;
  }
  
  .vehicle-card__body {
    padding: 1rem;
  }
  
  .vehicle-card img {
    height: 140px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  body {
    background: #ffffff;
  }

  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .hero-section-new {
    background: #fafafa;
  }

  .hero-section-new::before {
    height: 38px;
  }

  .hero-section-new .container {
    padding-top: 48px;
    padding-bottom: 2rem;
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .hero-tag {
    font-size: 0.65rem;
    padding: 0.65rem 0.875rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .hero-content-new {
    gap: 1rem;
  }

  .hero-content-new h1 {
    font-size: 1.375rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-content-new p {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    justify-content: space-between;
  }

  .stat-item {
    flex: 1;
    padding: 0.625rem 0.375rem;
    border-radius: 10px;
    min-width: 0;
  }

  .stat-number {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.625rem;
    line-height: 1.2;
  }

  .hero-visual {
    margin-bottom: 1.25rem;
  }

  .hero-car-image {
    height: 200px;
    border-radius: 14px;
  }

  .hero-car-card {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.875rem;
  }

  .car-card-number {
    font-size: 1.25rem;
  }

  .hero-car-card h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .car-card-price {
    font-size: 1.125rem;
  }

  .car-card-link {
    font-size: 0.8125rem;
  }
  
  .search-form {
    padding: 1.25rem;
    border-radius: 20px;
  }
  
  .search-form .form-group input,
  .search-form .form-group select {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .featured-vehicles {
    padding: 2rem 0;
  }

  .featured-vehicles h2 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }

  .vehicles-grid {
    gap: 1.25rem;
  }

  .vehicle-card {
    border-radius: 12px;
  }

  .vehicle-card img {
    border-radius: 12px 12px 0 0;
    height: 140px;
  }

  .vehicle-card__body {
    padding: 0.875rem;
  }

  .view-all-link {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .view-all-link a {
    font-size: 0.9375rem;
  }
  
  .brands-section-new {
    padding: 2rem 0;
  }

  .brands-header-new {
    margin-bottom: 1.25rem;
  }

  .brands-header-new h2 {
    font-size: 1.375rem;
  }

  .brands-header-new p {
    font-size: 0.75rem;
  }

  .brands-grid-new {
    gap: 0.625rem;
    padding: 0 0.875rem;
  }

  .brand-card-new {
    padding: 0.875rem 0.75rem;
    min-height: 120px;
    border-radius: 12px;
  }

  .brand-logo-wrapper-new {
    height: 55px;
  }

  .brand-logo-new {
    max-height: 55px;
  }

  .brand-name-new {
    font-size: 0.6875rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .brand-card {
    padding: 1.25rem;
  }
}

/* ============================================
   REVIEWS & COMMENTS SECTION
   ============================================ */

.reviews-section {
  padding: 4rem 0;
  background: #ffffff;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
}

.reviews-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #800000 0%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 0.5rem 0;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
}

.review-rating .fa-star {
  color: #d1d5db;
  font-size: 0.875rem;
}

.review-rating .fa-star.filled {
  color: #f59e0b;
}

.review-date {
  font-size: 0.75rem;
  color: #9ca3af;
}
.review-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #fef3c7;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.review-type-badge i {
  font-size: 0.6875rem;
}

.review-comment {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.no-reviews {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #6b7280;
}

/* Review Form */
.review-form-container {
  background: #fafafa;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  max-width: 700px;
  margin: 0 auto;
}

.review-form-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  text-align: center;
}

.review-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-form .form-group {
  margin-bottom: 1.5rem;
}

.review-form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: "Roboto", sans-serif;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #800000;
  box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

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

/* Star Rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
  align-items: center;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label.star {
  cursor: pointer;
  font-size: 1.75rem;
  color: #d1d5db;
  transition: all 0.2s ease;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.star-rating label.star:hover,
.star-rating label.star:hover ~ label.star {
  color: #f59e0b;
}

.star-rating input[type="radio"]:checked ~ label.star {
  color: #f59e0b;
}

.star-rating input[type="radio"]:checked ~ label.star ~ label.star {
  color: #f59e0b;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .reviews-section {
    padding: 2.5rem 0;
    background: #fafafa;
  }

  .reviews-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .reviews-header h2 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
  }

  .reviews-header p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .review-card {
    padding: 1.125rem;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    background: #ffffff;
    transition: all 0.3s ease;
  }

  .review-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }

  .review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
  }

  .review-header {
    gap: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .review-info h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
  }

  .review-rating {
    margin-bottom: 0.25rem;
  }

  .review-rating .fa-star {
    font-size: 0.8125rem;
  }

  .review-date {
    font-size: 0.6875rem;
  }

  .review-type-badge {
    padding: 0.3125rem 0.625rem;
    font-size: 0.6875rem;
    margin-bottom: 0.625rem;
  }

  .review-comment {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .review-form-container {
    padding: 1.5rem 1rem;
    border-radius: 16px;
    margin: 0 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .review-form-container h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
  }

  .review-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .review-form .form-group {
    margin-bottom: 1.125rem;
  }

  .review-form label {
    font-size: 0.8125rem;
    margin-bottom: 0.4375rem;
  }

  .review-form input[type="text"],
  .review-form input[type="email"],
  .review-form select,
  .review-form textarea {
    padding: 0.8125rem 0.875rem;
    font-size: 0.875rem;
    min-height: 44px;
    border-radius: 8px;
  }

  .review-form textarea {
    min-height: 90px;
  }

  .star-rating {
    gap: 0.375rem;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .star-rating label.star {
    font-size: 1.625rem;
    padding: 0.375rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .star-rating label.star:active {
    transform: scale(0.9);
  }

  .review-form .btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    min-height: 48px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .review-form .btn-primary:active {
    transform: scale(0.98);
  }
}
@media (max-width: 480px) {
  .reviews-section {
    padding: 2rem 0;
    background: #fafafa;
  }

  .reviews-header {
    margin-bottom: 1.5rem;
    padding: 0 0.875rem;
  }

  .reviews-header h2 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
  }

  .reviews-header p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .reviews-grid {
    gap: 0.875rem;
    margin-bottom: 2rem;
    padding: 0 0.875rem;
  }

  .review-card {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
  }

  .review-card:active {
    transform: scale(0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .review-header {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9375rem;
  }

  .review-info h4 {
    font-size: 0.875rem;
    margin-bottom: 0.3125rem;
  }

  .review-rating {
    margin-bottom: 0.25rem;
  }

  .review-rating .fa-star {
    font-size: 0.75rem;
  }

  .review-date {
    font-size: 0.625rem;
  }

  .review-type-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    margin-bottom: 0.5rem;
  }

  .review-type-badge i {
    font-size: 0.5625rem;
  }

  .review-comment {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .review-form-container {
    padding: 1.25rem 0.875rem;
    border-radius: 14px;
    margin: 0 0.875rem;
  }

  .review-form-container h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .review-form .form-group {
    margin-bottom: 1rem;
  }

  .review-form label {
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
  }

  .review-form input[type="text"],
  .review-form input[type="email"],
  .review-form select,
  .review-form textarea {
    padding: 0.75rem 0.8125rem;
    font-size: 0.8125rem;
    min-height: 44px;
    border-radius: 8px;
  }

  .review-form textarea {
    min-height: 80px;
  }

  .star-rating {
    gap: 0.3125rem;
    padding: 0.375rem 0;
  }

  .star-rating label.star {
    font-size: 1.5rem;
    padding: 0.3125rem;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .star-rating label.star:active {
    transform: scale(0.9);
  }

  .review-form .btn-primary {
    padding: 0.8125rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .review-form .btn-primary:active {
    transform: scale(0.97);
  }

  .no-reviews {
    padding: 2rem 1rem;
    font-size: 0.875rem;
  }
}

/* Services Section - Modern 2025 Design */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(128, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #800000, #ff0000);
    border-radius: 2px;
}

.services-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #800000, #ff0000);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(128, 0, 0, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-features i {
    color: #ffffff;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    color: #800000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #800000, #ff0000);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card.featured h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}
.service-features i {
    color: #800000;
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 1;
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    gap: 0.75rem;
}

/* Vehicles Preview in Services Section */
.vehicles-preview {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.vehicles-preview h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.vehicles-preview h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #800000, #ff0000);
    border-radius: 2px;
}

.vehicles-preview-grid {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0;
    padding-left: 2rem;
}

.vehicle-preview-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    width: 350px;
    flex-shrink: 0;
}

.vehicle-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(128, 0, 0, 0.2);
}

.vehicle-preview-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin: 1rem;
}

.vehicle-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.vehicle-preview-card:hover .vehicle-preview-image img {
    transform: scale(1.1);
}

.vehicle-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vehicle-preview-card:hover .vehicle-preview-overlay {
    opacity: 1;
}
.preview-btn {
    background: #800000;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.vehicle-preview-card:hover .preview-btn {
    transform: translateY(0);
}

.preview-btn:hover {
    background: #a00000;
    transform: scale(1.05);
}

.vehicle-preview-info {
    padding: 1.25rem;
}

.vehicle-preview-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.vehicle-type {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.vehicle-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #800000;
}

.vehicle-price .period {
    font-size: 0.875rem;
    color: #64748b;
}

.vehicle-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #475569;
}

.vehicle-specs i {
    color: #800000;
    width: 14px;
}

.vehicle-preview-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.btn-vehicle-details {
    display: inline-block;
    background: #800000 !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    border: none;
}

.btn-vehicle-details:hover {
    background: #a00000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
    color: #ffffff !important;
    text-decoration: none;
}

/* Override any Bootstrap success classes */
.btn-vehicle-details.btn-success,
a.btn-vehicle-details,
.vehicle-preview-actions .btn-vehicle-details {
    background: #800000 !important;
    border-color: #800000 !important;
    color: #ffffff !important;
}

.btn-vehicle-details.btn-success:hover,
a.btn-vehicle-details:hover,
.vehicle-preview-actions .btn-vehicle-details:hover {
    background: #a00000 !important;
    border-color: #a00000 !important;
    color: #ffffff !important;
}
/* Services Section Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .services-cta {
        padding: 2rem;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
    
    .vehicles-preview h3 {
        font-size: 1.5rem;
    }
    
    .vehicles-preview-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .vehicle-preview-image {
        height: 140px;
        margin: 0.75rem;
    }
    
    .vehicle-preview-info {
        padding: 1rem;
    }
    
    .vehicle-preview-card {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   MODERN VEHICLES LISTING PAGE STYLES
   ============================================ */

.vehicles-listing-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 3rem 0 5rem;
    position: relative;
}

.vehicles-listing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.03) 0%, rgba(255, 0, 0, 0.01) 100%);
    pointer-events: none;
    z-index: 0;
}

.vehicles-listing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.vehicles-listing-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
    position: relative;
}

.vehicles-listing-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.title-main {
    color: #0f172a;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    color: #800000;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #800000 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #800000 0%, #dc2626 50%, #800000 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(128, 0, 0, 0.3);
}

.vehicles-listing-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #64748b;
    margin-top: 1rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Active Filters */
.vehicles-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(128, 0, 0, 0.1);
}

.filters-label {
    font-weight: 600;
    color: #1f2937;
    margin-right: 0.5rem;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #800000;
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-badge i {
    font-size: 0.75rem;
}

/* Vehicles Grid */
.vehicles-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Modern Vehicle Card */
.vehicle-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    opacity: 0;
    animation: cardFadeIn 0.5s ease-out forwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(128, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(128, 0, 0, 0.3);
}

/* Image Wrapper */
.vehicle-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.vehicle-card-image-link-modern {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.vehicle-card-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card-modern:hover .vehicle-card-image-modern {
    transform: scale(1.05);
}

.vehicle-card-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vehicle-card-modern:hover .vehicle-card-overlay-modern {
    opacity: 1;
}

.view-details-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #800000;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.vehicle-card-modern:hover .view-details-btn-modern {
    transform: translateY(0);
}

/* Offer Badge */
.vehicle-offer-badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #800000 0%, #ff0000 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.4);
    z-index: 2;
}

.offer-text {
    display: block;
}

/* Card Content */
.vehicle-card-content-modern {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.vehicle-card-header-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vehicle-card-title-modern {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.vehicle-card-type-modern {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(128, 0, 0, 0.1);
    color: #800000;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

/* Specs */
.vehicle-card-specs-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.spec-item-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
    border: 1px solid rgba(226, 232, 240, 0.8);
    min-height: 36px;
    touch-action: manipulation;
}

.spec-item-modern i {
    color: #800000;
    font-size: 0.875rem;
}

/* Footer */
.vehicle-card-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    gap: 1rem;
}
.vehicle-price-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-original-modern {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-current-modern {
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.price-period-modern {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.vehicle-card-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #800000 0%, #991b1b 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(128, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.vehicle-card-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.vehicle-card-btn-modern:hover::before {
    left: 100%;
}

.vehicle-card-btn-modern:hover {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.vehicle-card-btn-modern i {
    transition: transform 0.3s ease;
}

.vehicle-card-btn-modern:hover i {
    transform: translateX(4px);
}

/* Empty State */
.vehicles-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.empty-state-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.empty-state-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.empty-state-text {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.empty-state-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #800000;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-state-btn:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================ */
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .vehicles-listing-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.25rem;
    }
    
    .vehicle-card-image-wrapper {
        height: 250px;
    }
    
    .vehicles-listing-title {
        font-size: 2rem;
    }
    
    .category-header {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .category-price-range {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
/* Mobile (≤768px) */
@media (max-width: 768px) {
    .vehicles-listing-page {
        padding: 1rem 0 2rem;
    }
    
    .vehicles-listing-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .vehicles-listing-header {
        margin-bottom: 1.5rem;
        padding-top: 0.5rem;
    }
    
    .vehicles-listing-title {
        font-size: 1.875rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .title-accent::after {
        height: 3px;
        width: 70px;
    }
    
    .vehicles-listing-subtitle {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .vehicles-active-filters {
        padding: 0.75rem 1rem;
        gap: 0.625rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .filter-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
        min-height: 32px;
        display: inline-flex;
        align-items: center;
    }
    
    .vehicles-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .vehicle-card-image-wrapper {
        height: 250px;
    }
    
    .vehicle-card-content-modern {
        padding: 1.125rem;
        gap: 1rem;
    }
    
    .vehicle-card-title-modern {
        font-size: 1.1875rem;
        line-height: 1.35;
        margin-bottom: 0.25rem;
    }
    
    .vehicle-card-type-modern {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .vehicle-card-specs-modern {
        gap: 0.625rem;
        margin: 0.625rem 0;
    }
    
    .spec-item-modern {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
        min-height: 38px;
        display: flex;
        align-items: center;
    }
    
    .spec-item-modern i {
        font-size: 0.875rem;
    }
    
    .price-current-modern {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .vehicle-card-footer-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .vehicle-card-btn-modern {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 44px;
        font-weight: 600;
    }
    
    .vehicle-price-modern {
        text-align: center;
        width: 100%;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .category-icon {
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }
    
    .category-title {
        font-size: 1.1875rem;
        margin-bottom: 0.375rem;
    }
    
    .category-subtitle {
        font-size: 0.8125rem;
    }
    
    .category-price-range {
        width: 100%;
        justify-content: center;
        padding: 0.625rem 1.125rem;
        font-size: 0.875rem;
        min-height: 42px;
        font-weight: 600;
    }
    
    .price-range-text {
        font-size: 0.875rem;
    }
}
/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .vehicles-listing-page {
        padding: 0.75rem 0 1.5rem;
    }
    
    .vehicles-listing-container {
        padding: 0 0.75rem;
    }
    
    .vehicles-listing-header {
        margin-bottom: 1.25rem;
        padding-top: 0.5rem;
    }
    
    .vehicles-listing-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .title-accent::after {
        height: 3px;
        width: 50px;
    }
    
    .vehicles-listing-subtitle {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }
    
    .vehicles-active-filters {
        padding: 0.625rem 0.875rem;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
    }
    
    .filter-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
    
    .vehicles-listing-grid {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .vehicle-card-image-wrapper {
        height: 200px;
    }
    
    .vehicle-card-content-modern {
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .vehicle-card-title-modern {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .vehicle-card-type-modern {
        font-size: 0.7rem;
        padding: 0.25rem 0.625rem;
    }
    
    .vehicle-card-specs-modern {
        gap: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .spec-item-modern {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-height: 36px;
        display: flex;
        align-items: center;
    }
    
    .spec-item-modern i {
        font-size: 0.875rem;
    }
    
    .price-current-modern {
        font-size: 1.5rem;
    }
    
    .vehicle-card-footer-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .vehicle-card-btn-modern {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    .vehicle-price-modern {
        text-align: center;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .category-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.125rem;
    }
    
    .category-subtitle {
        font-size: 0.8rem;
    }
    
    .category-price-range {
        width: 100%;
        justify-content: center;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        min-height: 40px;
        font-weight: 600;
    }
    
    .vehicles-empty-state {
        padding: 2.5rem 1.25rem;
    }
    
    .empty-state-icon {
        font-size: 3rem;
    }
    
    .empty-state-title {
        font-size: 1.375rem;
    }
    
    .empty-state-text {
        font-size: 0.9375rem;
    }
    
    .empty-state-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 44px;
    }
}

/* Extra Small Mobile (≤360px) */
@media (max-width: 360px) {
    .vehicles-listing-page {
        padding: 0.5rem 0 1.25rem;
    }
    
    .vehicles-listing-container {
        padding: 0 0.625rem;
    }
    
    .vehicles-listing-header {
        margin-bottom: 1rem;
    }
    
    .vehicles-listing-title {
        font-size: 1.375rem;
        margin-bottom: 0.5rem;
    }
    
    .title-accent::after {
        width: 45px;
    }
    
    .vehicles-listing-subtitle {
        font-size: 0.8125rem;
    }
    
    .vehicles-active-filters {
        padding: 0.5rem 0.75rem;
    }
    
    .filter-badge {
        font-size: 0.7rem;
        padding: 0.375rem 0.5rem;
    }
    
    .vehicles-listing-grid {
        gap: 0.875rem;
    }
    
    .vehicle-card-image-wrapper {
        height: 180px;
    }
    
    .vehicle-card-content-modern {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .vehicle-card-title-modern {
        font-size: 1rem;
    }
    
    .spec-item-modern {
        font-size: 0.75rem;
        padding: 0.4375rem 0.625rem;
        min-height: 34px;
    }
    
    .price-current-modern {
        font-size: 1.375rem;
    }
    
    .vehicle-card-btn-modern {
        padding: 0.6875rem 1.25rem;
        font-size: 0.8125rem;
        min-height: 42px;
    }
    
    .category-header {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-price-range {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
        min-height: 38px;
    }
}
    
    .price-current-modern {
        font-size: 1.25rem;
    }
}

/* ============================================
   PRICE CATEGORY SECTIONS STYLES
   ============================================ */

.price-category-section {
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.price-category-section:nth-child(1) {
    animation-delay: 0.1s;
}

.price-category-section:nth-child(2) {
    animation-delay: 0.3s;
}

.price-category-section:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
    border-color: rgba(128, 0, 0, 0.2);
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #800000 0%, #dc2626 100%);
    box-shadow: 2px 0 8px rgba(128, 0, 0, 0.3);
}

.category-high .category-header::before {
    background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%);
}

.category-medium .category-header::before {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}
.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-high .category-icon {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.category-medium .category-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.category-low .category-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.category-title-wrapper {
    flex: 1;
}

.category-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.category-subtitle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    font-weight: 500;
}

.category-price-range {
    display: flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #800000 0%, #991b1b 100%);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(128, 0, 0, 0.25);
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-price-range::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-header:hover .category-price-range::before {
    left: 100%;
}

.category-header:hover .category-price-range {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
}

.category-high .category-price-range {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35), 0 2px 6px rgba(220, 38, 38, 0.2);
}

.category-medium .category-price-range {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35), 0 2px 6px rgba(245, 158, 11, 0.2);
}

.category-low .category-price-range {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35), 0 2px 6px rgba(16, 185, 129, 0.2);
}

.price-range-text {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.category-high .price-range-text {
    color: #dc2626;
}

.category-medium .price-range-text {
    color: #d97706;
}

.category-low .price-range-text {
    color: #059669;
}

/* Vehicle Card Animation */
.vehicle-card-modern {
    opacity: 0;
    animation: slideInCard 0.6s ease-out forwards;
}
@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Responsive Category Header */
@media (max-width: 768px) {
    .price-category-section {
        margin-bottom: 3rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-subtitle {
        font-size: 0.875rem;
    }
    
    .category-price-range {
        width: 100%;
        justify-content: center;
    }
    
    .price-range-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .price-category-section {
        margin-bottom: 2.5rem;
    }
    
    .category-header {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-subtitle {
        font-size: 0.8rem;
    }
    
    .category-price-range {
        padding: 0.625rem 1rem;
    }
    
    .price-range-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   MODERN PARTNER BRANDS SECTION
   ============================================ */
.partner-brands-section-modern {
    padding: 1.25rem 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.partner-brands-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(128, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(128, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.partner-brands-section-modern .container {
    position: relative;
    z-index: 1;
}

.partner-brands-header {
    text-align: center;
    margin-bottom: 1rem;
}

.partner-brands-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(128, 0, 0, 0.3);
}

.partner-brands-subtitle {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.partner-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(55px, 1fr));
    gap: 0.4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partner-brand-card-modern {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-brand-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.3), rgba(128, 0, 0, 0.1), rgba(128, 0, 0, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-brand-card-modern:hover::before {
    opacity: 1;
}

.brand-card-inner {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    padding: 0.375rem 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-height: 50px;
    position: relative;
    overflow: hidden;
}

.brand-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-brand-card-modern:hover .brand-card-inner::before {
    left: 100%;
}

.partner-brand-card-modern:hover .brand-card-inner {
    background: rgba(40, 40, 40, 0.95);
    border-color: rgba(128, 0, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(128, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand-logo-wrapper {
    width: 100%;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.4) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-brand-card-modern:hover .brand-logo-img {
    filter: grayscale(0) brightness(1.15);
    transform: scale(1.1);
}

.brand-name-modern {
    font-size: clamp(0.5rem, 0.8vw, 0.6rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.partner-brand-card-modern:hover .brand-name-modern {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design - Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
    .partner-brands-section-modern {
        padding: 1.25rem 0;
    }
    
    .partner-brands-header {
        margin-bottom: 0.875rem;
    }
    
    .partner-brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 0.35rem;
        padding: 0 1.5rem;
    }
    
    .brand-card-inner {
        padding: 0.3rem 0.3rem;
        min-height: 45px;
        gap: 0.2rem;
    }
    
    .brand-logo-wrapper {
        height: 18px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 640px) {
    .partner-brands-section-modern {
        padding: 0.875rem 0;
    }
    
    .partner-brands-header {
        margin-bottom: 0.75rem;
        padding: 0 1rem;
    }
    
    .partner-brands-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .partner-brands-subtitle {
        font-size: 0.8rem;
    }
    
    .partner-brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 0.35rem;
        padding: 0 1rem;
    }
    
    .brand-card-inner {
        padding: 0.3rem 0.3rem;
        min-height: 45px;
        gap: 0.2rem;
    }
    
    .brand-logo-wrapper {
        height: 18px;
    }
    
    .brand-name-modern {
        font-size: 0.5rem;
    }
}
/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .partner-brands-section-modern {
        padding: 0.75rem 0;
    }
    
    .partner-brands-header {
        margin-bottom: 0.625rem;
    }
    
    .partner-brands-title {
        font-size: 1.25rem;
        letter-spacing: 0.1em;
    }
    
    .partner-brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.3rem;
        padding: 0 0.75rem;
    }
    
    .brand-card-inner {
        padding: 0.3rem 0.25rem;
        min-height: 42px;
        gap: 0.15rem;
    }
    
    .brand-logo-wrapper {
        height: 16px;
    }
    
    .brand-name-modern {
        font-size: 0.45rem;
    }
}

/* Responsive Design - Large Desktop */
@media (min-width: 1400px) {
    .partner-brands-section-modern {
        padding: 1.75rem 0;
    }
    
    .partner-brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.5rem;
        max-width: 1400px;
    }
    
    .brand-card-inner {
        padding: 0.5rem 0.4rem;
        min-height: 60px;
    }
    
    .brand-logo-wrapper {
        height: 26px;
    }
}

/* ============================================
   SOCIAL MEDIA BUTTONS & CONTACT STYLES
   ============================================ */
.social-media-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.social-media-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: white;
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #166FE5);
    color: white;
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #166FE5, #1464D8);
    color: white;
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #C13584, #833AB4, #5851DB);
    color: white;
}

.tiktok-btn {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.tiktok-btn:hover {
    background: linear-gradient(135deg, #333333, #555555);
    color: white;
}

.contact-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-action-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-action-btn.whatsapp:hover {
    background: #128C7E;
}

.contact-action-btn.phone {
    background: #3B82F6;
    color: white;
}

.contact-action-btn.phone:hover {
    background: #2563EB;
}

.phone-number {
    font-weight: 600;
    color: #374151;
}

.email-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    color: #2563EB;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}
.contact-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 12px;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    font-size: 16px;
}

.contact-item-value {
    color: #6B7280;
    font-size: 14px;
}

/* ============================================
   STANDALONE SOCIAL MEDIA SECTION
   ============================================ */
.standalone-social-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.social-content {
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.social-media-icons-standalone {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.standalone-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.standalone-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.standalone-social-link:hover::before {
    left: 100%;
}

.standalone-social-link svg {
    width: 32px;
    height: 32px;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.standalone-social-link span {
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.standalone-social-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.standalone-social-link:hover svg {
    transform: scale(1.2);
}

/* Individual platform colors for standalone */
.standalone-social-link.whatsapp {
    color: #25D366;
}

.standalone-social-link.whatsapp:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}
.standalone-social-link.facebook:hover {
    background: #1877F2;
    color: white;
    box-shadow: 0 12px 40px rgba(24, 119, 242, 0.3);
}

.standalone-social-link.instagram {
    color: #E4405F;
}

.standalone-social-link.instagram:hover {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    box-shadow: 0 12px 40px rgba(228, 64, 95, 0.3);
}
.standalone-social-link.tiktok {
    color: #000000;
}

.standalone-social-link.tiktok:hover {
    background: #000000;
    color: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive design for standalone social */
@media (max-width: 768px) {
    .social-title {
        font-size: 2rem;
    }
    
    .social-media-icons-standalone {
        gap: 1.5rem;
    }
    
    .standalone-social-link {
        min-width: 100px;
        padding: 1.25rem;
    }
    
    .standalone-social-link svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .standalone-social-section {
        padding: 3rem 0;
    }
    
    .social-title {
        font-size: 1.75rem;
    }
    
    .social-media-icons-standalone {
        gap: 1rem;
    }
    
    .standalone-social-link {
        min-width: 90px;
        padding: 1rem;
    }
    
    .standalone-social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .standalone-social-link span {
        font-size: 0.8rem;
    }
}

/* Ultra-Compact E-commerce Style Vehicle Cards */
.vehicles-showcase-section {
    padding: 24px 0;
    background: #ffffff;
    position: relative;
}

.vehicles-showcase-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vehicles-showcase-section .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.vehicles-showcase-section .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6b7280;
    margin-bottom: 0;
    font-weight: 400;
}

.vehicles-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
    position: relative;
    align-items: stretch;
}

.vehicle-fleet-card {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.vehicle-fleet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.vehicle-fleet-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f9fafb;
}

.vehicle-fleet-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.vehicle-fleet-card:hover .vehicle-fleet-hero-image {
    transform: scale(1.02);
}

.vehicle-fleet-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #10B981;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    z-index: 2;
}

.vehicle-fleet-badge.unavailable {
    background: #6b7280;
}

.vehicle-fleet-offer-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #ef4444;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    z-index: 2;
}

.vehicle-fleet-info-overlay {
    background: #ffffff;
    padding: 10px;
    flex-shrink: 0;
}

.vehicle-fleet-name {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: -0.1px;
}

.vehicle-fleet-specs-grid {
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    padding-bottom: 2px;
}

.vehicle-fleet-specs-grid::-webkit-scrollbar {
    height: 3px;
}

.vehicle-fleet-specs-grid::-webkit-scrollbar-track {
    background: transparent;
}

.vehicle-fleet-specs-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.vehicle-fleet-specs-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 2px 1px;
    background: #f8fafc;
    border-radius: 3px;
    transition: background 0.2s ease;
    flex-shrink: 0;
    min-width: fit-content;
    white-space: nowrap;
    border: 1px solid #e5e7eb;
}

.spec-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}

.spec-icon {
    width: 9px;
    height: 9px;
    color: #dc2626;
    stroke-width: 2;
}

.spec-label {
    font-size: 6px;
    color: #111827;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.vehicle-fleet-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f3f4f6;
}

.price-amount {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.1px;
}

.price-original {
    font-size: 9px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.price-period {
    font-size: 8px;
    color: #6b7280;
    font-weight: 500;
}

.vehicle-fleet-actions {
    display: flex;
    gap: 5px;
}

.btn-fleet-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 6px;
    background: transparent;
    border: 1.5px solid #111827;
    color: #111827;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 9px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-fleet-outline:hover {
    background: #111827;
    color: #ffffff;
    text-decoration: none;
}

.btn-fleet-solid {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 6px;
    background: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 9px;
    transition: all 0.2s ease;
    text-align: center;
    border: 1.5px solid #1f2937;
}

.btn-fleet-solid:hover {
    background: #374151;
    border-color: #374151;
    text-decoration: none;
    color: #ffffff;
}

.btn-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.no-vehicles-showcase {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    grid-column: 1 / -1;
}

.no-vehicles-showcase i {
    color: #d1d5db;
    margin-bottom: 16px;
    font-size: 3rem;
}

.no-vehicles-showcase h3 {
    font-size: 20px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 600;
}

.vehicles-showcase-footer {
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.btn-view-all-vehicles {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    background: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s ease;
}

.btn-view-all-vehicles:hover {
    background: #374151;
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-view-all-vehicles svg {
    width: 13px;
    height: 13px;
}

/* Features/Services Section - Red E-commerce Style */
.features-services-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #880808;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(136, 8, 8, 0.15);
    border-color: #880808;
}

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

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #880808;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(136, 8, 8, 0.2);
}

.feature-card:hover .feature-icon-wrapper {
    background: #a00000;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(136, 8, 8, 0.3);
}

.feature-icon {
    width: 30px;
    height: 30px;
    color: #ffffff;
    stroke-width: 2;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #880808;
}
.feature-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.6;
    min-height: 44px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-list li {
    color: #1f2937;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: #880808;
    stroke: #880808;
    stroke-width: 3;
    flex-shrink: 0;
}

/* Responsive Design for Red E-commerce Features Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 768px) {
    .features-services-section {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 13px;
        margin-bottom: 16px;
        min-height: 40px;
    }
    
    .feature-list li {
        font-size: 13px;
        margin-bottom: 8px;
        padding: 4px 0;
    }
    
    .check-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .features-services-section {
        padding: 32px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 18px;
    }
    
    .feature-icon-wrapper {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }
    
    .feature-icon {
        width: 26px;
        height: 26px;
    }
    
    .feature-title {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .feature-description {
        font-size: 12px;
        margin-bottom: 14px;
        min-height: 36px;
    }
    
    .feature-list {
        text-align: center;
    }
    
    .feature-list li {
        justify-content: center;
        font-size: 12px;
        margin-bottom: 6px;
        padding: 3px 0;
    }
    
    .check-icon {
        width: 15px;
        height: 15px;
    }
}

/* Responsive Design for Ultra-Compact E-commerce Cards */
@media (max-width: 1024px) {
    .vehicles-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
        align-items: stretch;
    }
    
    .vehicle-fleet-card {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    
    .vehicle-fleet-image-wrapper {
        height: 180px;
    }
}
@media (max-width: 768px) {
    .vehicles-showcase-section {
        padding: 20px 0;
    }
    
    .vehicles-showcase-section .section-title {
        font-size: 20px;
    }
    
    .vehicles-showcase-section .section-subtitle {
        font-size: 11px;
    }
    
    .vehicles-showcase-section .section-header {
        margin-bottom: 16px;
    }
    
    .vehicles-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
        align-items: stretch;
    }
    
    .vehicle-fleet-card {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    
    .vehicle-fleet-image-wrapper {
        height: 160px;
    }
    
    .vehicle-fleet-info-overlay {
        padding: 8px;
    }
    
    .vehicle-fleet-name {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .vehicle-fleet-specs-grid {
        gap: 2px;
        margin-bottom: 4px;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .spec-icon {
        width: 8px;
        height: 8px;
    }
    
    .spec-label {
        font-size: 5px;
    }
    
    .price-amount {
        font-size: 11px;
    }
    
    .price-period {
        font-size: 7px;
    }
    
    .vehicle-fleet-actions {
        gap: 4px;
    }
    
    .btn-fleet-outline,
    .btn-fleet-solid {
        padding: 3px 5px;
        font-size: 8px;
    }
    
    .vehicles-showcase-footer {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .vehicles-showcase-section {
        padding: 16px 0;
    }
    
    .vehicles-showcase-section .section-title {
        font-size: 18px;
    }
    
    .vehicles-showcase-section .section-subtitle {
        font-size: 10px;
    }
    
    .vehicles-showcase-section .section-header {
        margin-bottom: 14px;
    }
    
    .vehicles-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 10px;
        align-items: stretch;
    }
    
    .vehicle-fleet-card {
        border: 1px solid #e5e7eb;
        border-radius: 8px;
    }
    
    .vehicle-fleet-image-wrapper {
        height: 140px;
    }
    
    .vehicle-fleet-badge,
    .vehicle-fleet-offer-badge {
        top: 4px;
        right: 4px;
        padding: 2px 5px;
        font-size: 7px;
    }
    
    .vehicle-fleet-offer-badge {
        left: 4px;
    }
    
    .vehicle-fleet-info-overlay {
        padding: 7px;
    }
    
    .vehicle-fleet-name {
        font-size: 11px;
        margin-bottom: 3px;
    }
    
    .vehicle-fleet-specs-grid {
        display: flex;
        gap: 2px;
        margin-bottom: 3px;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    
    .spec-item {
        padding: 2px 1px;
        flex-shrink: 0;
    }
    
    .spec-icon {
        width: 7px;
        height: 7px;
    }
    
    .spec-label {
        font-size: 5px;
    }
    
    .vehicle-fleet-price {
        margin-bottom: 4px;
        padding-bottom: 4px;
    }
    
    .price-amount {
        font-size: 11px;
    }
    
    .price-period {
        font-size: 7px;
    }
    
    .vehicle-fleet-actions {
        flex-direction: column;
        gap: 3px;
    }
    
    .btn-fleet-outline,
    .btn-fleet-solid {
        flex: none;
        padding: 4px 6px;
        font-size: 8px;
    }
    
    .btn-view-all-vehicles {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ============================================
   POPULAR CAR CATEGORIES SECTION
   ============================================ */

.car-categories-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.car-categories-section .section-title {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
}

.car-categories-section .section-subtitle {
    color: #666;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

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

.category-info {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.95rem;
    color: #777;
}

/* Responsive adjustments for categories */
@media (max-width: 1024px) {
    .car-categories-section {
        padding: 5rem 0;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .category-image {
        height: 180px;
    }

    .category-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .car-categories-section {
        padding: 4rem 0;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }

    .category-image {
        height: 160px;
    }

    .category-name {
        font-size: 1.2rem;
    }

    .category-info {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .car-categories-section {
        padding: 3rem 0;
    }

    .categories-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .category-card {
        flex-direction: row; /* Horizontal layout for single column */
        align-items: center;
        text-align: left;
    }

    .category-image {
        width: 120px;
        height: 100px;
        border-bottom: none;
        border-right: 1px solid #eee;
        flex-shrink: 0;
    }

    .category-info {
        padding: 1rem;
    }

    .category-name {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .category-count {
        font-size: 0.85rem;
    }
}