/*
 * Tiga Pilar - Rental Mobil Bandung Terbaik
 * Custom Premium Stylesheet (Dark Theme)
 * 
 * Primary: #C1121F (Luxury Automotive Red)
 * Secondary: #111111 (Rich Charcoal/Black)
 * Accent: #FFFFFF
 * Background: #0F0F10 (Deep Slate Dark)
 * Card Background: #1B1B1D (Soft Premium Slate)
 * Border: rgba(255,255,255,.08)
 * Hover: #E63946 (Vibrant Red Accent)
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #C1121F;
  --secondary: #111111;
  --accent: #FFFFFF;
  --bg: #0F0F10;
  --card: #1B1B1D;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(193, 18, 31, 0.15);
  --hover: #E63946;
  --text: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dark: #1F2937;
  --font-title: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-red-glow: 0 8px 25px rgba(193, 18, 31, 0.25);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Core Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}

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

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

/* Utility Classes */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 220px 0;
}

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

  .trust {
    padding-top: 200px;
  }
  .quick-booking-container {
    padding: 0 0 !important;
  }
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background-color: var(--primary);
}

.h2-large {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .h2-large {
    font-size: 28px;
  }
}

/* Gradient text accent */
.accent-text {
  background: linear-gradient(135deg, #FFF 30%, #C1121F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Red Text Accent */
.red-accent {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--accent);
  box-shadow: var(--shadow-red-glow);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}

.btn-primary:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}

.btn-primary:hover {
  background-color: var(--hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.35);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--border);
  color: var(--accent);
}

.btn-outline:hover {
  border-color: var(--primary);
  background-color: rgba(193, 18, 31, 0.05);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Glassmorphic Container styling */
.glass {
  background: rgba(27, 27, 29, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STICKY NAVBAR ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 0;
}

header.scrolled {
  padding: 14px 0;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Premium Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.logo-subtitle {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.navlinks {
  display: flex;
  gap: 28px;
}

.navlinks a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.navlinks a:hover {
  color: var(--accent);
}

.navlinks a:hover::after {
  width: 100%;
}

.navlinks a.active {
  color: var(--accent);
}

.navlinks a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  z-index: 1001;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mobile-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 1024px) {
  .navlinks {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #111112;
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .navlinks a::after {
    display: none;
  }

  .navlinks a.active {
    color: var(--primary) !important;
  }
  
  .navlinks.open {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
  }
  
  .mobile-toggle.open {
    background: rgba(193, 18, 31, 0.15);
    border-color: var(--primary);
  }

  .mobile-toggle.open svg {
    transform: rotate(90deg);
    color: var(--primary);
  }
  
  .nav-cta .btn {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(193, 18, 31, 0.08) 0%, rgba(15, 15, 16, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(27, 27, 29, 0.4) 0%, rgba(15, 15, 16, 0) 50%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, rgba(15,15,16,0) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-content .lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  max-width: 500px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-item .ic-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.08);
  border: 1px solid rgba(193, 18, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.hero-badge-item:hover .ic-wrap {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.1);
  box-shadow: var(--shadow-red-glow);
}

.hero-badge-item .text-wrap h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.hero-badge-item .text-wrap p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero Right Side (Vehicle Image + Glowing Red Overlay) */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-bg {
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.12) 0%, rgba(15, 15, 16, 0) 65%);
  z-index: 1;
}

.hero-main-car {
  position: relative;
  z-index: 2;
  width: 120%;
  max-width: 680px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6)) drop-shadow(0 5px 15px rgba(193, 18, 31, 0.15));
  animation: floatCar 6s ease-in-out infinite;
}

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

/* Floating Spec Cards */
.floating-spec-card {
  position: absolute;
  z-index: 3;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.floating-spec-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.floating-spec-card .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.floating-spec-card .details-box span {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-spec-card .details-box h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.spec-1 {
  top: 15%;
  left: -5%;
}

.spec-2 {
  bottom: 10%;
  right: -5%;
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content .lead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-badges {
    margin: 0 auto;
  }
  
  .hero-visual-wrapper {
    max-width: 550px;
    margin: 0 auto;
    order: -1;
  }
  
  .spec-1 {
    left: 2%;
  }
  
  .spec-2 {
    right: 2%;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 32px; /* slightly smaller for cleaner fit */
    line-height: 1.1;
  }
  
  .hero-content .lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-badges {
    gap: 10px;
    align-items: start;
    margin: 0 -12px;
  }
  
  .hero-badge-item {
    display: flex;
    align-items: start;
  }

  .hero-badge-item .text-wrap {
    text-align: left;
  }

  .car-card-premium {
    flex: 0 0 100%;
  }

  

  .floating-spec-card {
    display: none;
  }
}

/* ===== QUICK BOOKING SEARCH CARD ===== */
.quick-booking-container {
  position: relative;
  z-index: 10;
  margin-top: 60px;
  padding: 0 16px; /* Reduced for mobile */
}

.quick-booking-card {
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: rgba(27, 27, 29, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

.quick-booking-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-booking-card h3 svg {
  color: var(--primary);
}

.quick-booking-card .tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.search-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .8fr 1fr;
  gap: 16px;
  align-items: end;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.field .box {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(15, 15, 16, 0.5);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.field .box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.15);
}

.field .box svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.field select, .field input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--accent);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  width: 100%;
}

.field select option {
  background-color: var(--bg);
  color: var(--accent);
}

.search-form .btn {
  height: 52px;
  width: 100%;
}

@media (max-width: 1024px) {
  .search-form {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .search-form .btn-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .search-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .search-form .btn-col {
    grid-column: span 1;
  }
  
  .quick-booking-card {
    padding: 20px;
    border-radius: var(--radius-md);
  }
}

/* ===== TRUST SECTION (WHY CHOOSE US - SKYKEY PREMIUM MINIMALIST STYLE) ===== */
.trust {
  background-color: #111113;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: -110px; 
}

.trust-eyebrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.trust-line {
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.trust-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-title);
}

.trust-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.trust-grid-elegant {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-col-elegant {
  text-align: center;
  padding: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.trust-col-elegant:hover {
  transform: translateY(-4px);
}

/* Vertical separators between columns on desktop */
@media (min-width: 1025px) {
  .trust-col-elegant:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -15px;
    height: 70%;
    width: 1px;
    background-color: var(--border);
    opacity: 0.8;
  }
}

.trust-icon-outer {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(193, 18, 31, 0.08);
  border: 1px solid rgba(193, 18, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-col-elegant:hover .trust-icon-outer {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
  box-shadow: var(--shadow-red-glow), 0 8px 24px rgba(193, 18, 31, 0.25);
  transform: scale(1.08);
}

.trust-col-elegant h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.trust-col-elegant p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0;
}

@media (max-width: 1024px) {
  .trust-grid-elegant {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .trust-title {
    font-size: 34px;
    margin-bottom: 48px;
  }
}

@media (max-width: 600px) {
  .trust-grid-elegant {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-col-elegant {
    padding: 0;
  }
  .trust-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

/* ===== ARMADA / FLEET GRID SECTION ===== */
.fleet-section {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
}

/* Fleet Header aligned like the image but dark-themed */
.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.fleet-eyebrow-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.fleet-line {
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.fleet-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}

/* Header Right wrapper for view-all and custom scroll arrows */
.fleet-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--accent);
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-view-all:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-glow);
}

/* Carousel controls */
.carousel-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-glow);
}

.carousel-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.01);
  border-color: var(--border);
}

/* Fleet Grid converted to Horizontal scroll snap track (Single Row Carousel) */
.fleet-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 8px 4px 28px 4px; /* Space for elegant card shadows */
  scrollbar-width: none; /* Hide scrollbar for clean visual deck */
}

.fleet-grid::-webkit-scrollbar {
  display: none; /* Hide Safari & Chrome scrollbars */
}

/* Car Card Premium - exact visual match but in premium dark glass-morphic style */
.car-card-premium {
  flex: 0 0 calc(20% - 19.2px);
  min-width: 0;
  scroll-snap-align: start;
  background-color: rgba(27, 27, 29, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.car-card-premium::before {
  display: none !important;
}

.car-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(193, 18, 31, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(193, 18, 31, 0.15);
}

/* Card Top Row */
.car-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.car-card-thumbnail {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.car-card-category-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

/* Card Middle Empty Space for airy visual balance */
.fleet-grid .car-card-middle {
  flex-grow: 1;
}

/* Card Bottom Centered Layout */
.fleet-grid .car-card-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 25px;
}

.fleet-grid .car-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-title);
}

.fleet-grid .car-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 400;
}

/* Bold Red price row matching signature theme */
.car-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--hover);
  font-family: var(--font-title);
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.car-card-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .car-card-premium {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
  }
  .fleet-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .car-card-premium {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .car-card-premium {
    flex: none;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;      /* gambar di atas, teks di bawah */
    align-items: stretch;
    justify-content: space-between;
  }

  .car-card-middle {
    width: 100%;
    flex-shrink: 0;
  }

  .car-card-middle img {
    width: 100%;
    height: auto;
    display: block;
  }

  .car-card-bottom {
    flex: none;
    text-align: left;
    align-items: flex-start;
    padding-left: 0;
    padding-top: 10px;
  }

  .car-card-price {
    justify-content: flex-start;
    font-size: 14px;
  }

  .fleet-header {
    flex-direction: column;
    justify-content:space-between;
    align-items: flex-start;
    gap: 16px;
  }
  .fleet-header-right {
    width: 100%;
    justify-content: space-between;
  }
  .btn-view-all {
    flex-grow: 1;
  }
  .fleet-title {
    font-size: 32px;
  }

  .fleet-grid {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 8px); /* 2 kolom terlihat sekaligus */
    gap: 16px;
  }

  .fleet-grid .car-card-bottom {
    padding-left: 0px;
  }
}

/* ===== SERVICES SECTION (BENTO STYLE MATCHING IMAGE) ===== */
.services-section {
  background-color: var(--bg);
  position: relative;
  padding: 120px 0;
}

.services-deals-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: linear-gradient(135deg, rgba(27, 27, 29, 0.45) 0%, rgba(17, 17, 19, 0.65) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 25px 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Left side of the deals block */
.services-deals-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.services-deals-eyebrow-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.services-deals-line {
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.services-deals-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-title);
}

.services-deals-title {
  font-size: 35px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.services-deals-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 320px;
}

.btn-explore-deals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--accent);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  font-family: var(--font-title);
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.btn-explore-deals:hover {
  background-color: var(--hover);
  border-color: var(--hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-glow);
}

/* Right side cards container */
.services-deals-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* The elegant premium white card-deck from image but adapted for red & black */
.services-deal-card {
  background-color: rgba(27, 27, 29, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 24px 14px 20px 14px;
  display: flex;
  flex-direction: column;
  justify-content: right;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.services-deal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(193, 18, 31, 0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-red-glow);
}

.deal-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.deal-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--hover);
  font-family: var(--font-title);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.deal-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.deal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: var(--text);
  font-weight: 200;
}

.deal-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Image at bottom like in user's image */
.deal-car-image {
  margin-top: auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: hidden;
  position: relative;
  margin-bottom: -10px;
}

.deal-car-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
  transition: var(--transition-smooth);
}

.services-deal-card:hover .deal-car-image img {
  transform: scale(1.08) translateY(-3px);
}

/* Responsive media queries */
@media (max-width: 1200px) {
  .services-deals-container {
    padding: 40px;
  }
  .services-deals-title {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  .services-deals-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px;
  }
  .services-deals-left {
    align-items: center;
    text-align: center;
  }
  .services-deals-desc {
    max-width: 480px;
  }
}

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

@media (max-width: 580px) {
  .services-deals-container {
    padding: 24px;
  }
  .services-deals-title {
    font-size: 28px;
  }
  .services-deals-right {
    grid-template-columns: 1fr;
  }
  .services-deal-card {
    min-height: 350px;
  }
}

/* ===== STATS / WHY US SECTION ===== */
.stats-section {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 15, 16, 0.9) 0%, rgba(27, 27, 29, 0.95) 100%),
              url('https://images.unsplash.com/photo-1533106418989-88406c7cc8ca?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 54px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 42px;
  }
  .stat-label {
    font-size: 12px;
  }
}

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

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
  background-color: var(--bg);
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.how-steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 20px);
  z-index: 1;
}

.how-step-card {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #1B1B1D;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.how-step-card:hover .step-icon-wrap {
  background-color: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
  box-shadow: var(--shadow-red-glow);
  transform: translateY(-5px);
}

.how-step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.how-step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .how-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
  
  .how-steps-grid::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS SLIDER SECTION ===== */
.testimonial-section {
  background-color: #111113;
  overflow: hidden;
}

.slider-outer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.slider-viewport {
  overflow: hidden;
  cursor: grab;
}

.slider-viewport:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 16px);
  padding: 10px;
  box-sizing: border-box;
  display: flex;
}

@media (max-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .testimonial-slide {
    flex: 0 0 100%;
  }
  .testi-card-premium {
    padding: 24px 20px;
  }
  .testi-quote-mark {
    display: none;
  }
}

.testi-card-premium {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  border: 1px solid var(--border);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.testi-client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-client-info img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testi-client-meta h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.testi-client-meta span {
  font-size: 12px;
  color: var(--text-muted);
}

.testi-stars {
  color: #F5A623;
  font-size: 14px;
}

.testi-quote-mark {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(193, 18, 31, 0.05);
  line-height: 0;
  pointer-events: none;
}

.testi-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
  box-shadow: var(--shadow-red-glow);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .testi-card-premium {
    padding: 30px;
  }
  
  .testi-quote-mark {
    display: none;
  }
  
  .testi-text {
    font-size: 14px;
  }
}

/* ===== FAQ SECTION (ACCORDION) ===== */
 .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
 
  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--card);
  }
 
  .faq-item:hover {
    border-color: var(--primary);
  }
 
  .faq-trigger {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }
 
  .faq-trigger h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    padding-right: 20px;
    transition: var(--transition-smooth);
  }
 
  .faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
  }
 
  /* Default: SELALU TERTUTUP secara murni via CSS */
  .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s ease-out;
  }
 
  .faq-inner-text {
    overflow: hidden;
    min-height: 0;
    padding: 0 28px;
    font-size: 15px;
    color: #d1d1d6;
    line-height: 1.7;
    transition: padding 0.35s ease-out;
  }
 
  .faq-item.active {
    border-color: var(--primary);
  }
 
  .faq-item.active .faq-content {
    grid-template-rows: 1fr;
  }
 
  .faq-item.active .faq-inner-text {
    padding-bottom: 24px;
  }
 
  .faq-item.active .faq-trigger h4 {
    color: var(--primary);
  }
 
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
  }
/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.2) 0%, rgba(15, 15, 16, 0) 100%);
  position: relative;
  border-top: 1px solid var(--border);
}

.cta-box-premium {
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.cta-box-premium::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.1) 0%, rgba(15, 15, 16, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-box-premium h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-box-premium p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-box-premium {
    padding: 40px 24px;
  }
  
  .cta-box-premium h2 {
    font-size: 32px;
  }
  
  .cta-box-premium p {
    font-size: 14px;
  }
  
  .cta-buttons-wrap {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--secondary);
  color: var(--text-muted);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-area p {
  font-size: 13.5px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red-glow);
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Map placeholder */
.map-container {
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background-color: #1a1a1a;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.1);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.map-container:hover iframe {
  opacity: 1;
  filter: grayscale(0.5);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo-area, .footer-col:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-logo-area, .footer-col:last-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ===== FLOATING WHATSAPP CTA ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20BA5A;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
  animation: pulseWhatsapp 2s infinite;
}

.whatsapp-pulse-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -2;
  animation: pulseWhatsapp 2s infinite 0.5s;
}

@keyframes pulseWhatsapp {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ===== AIRPORT & STATION LOCATIONS SECTION (SKYKEY PREMIUM RED-BLACK) ===== */
.locations-section {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  padding: 120px 0;
}

.locations-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.locations-title-block {
  display: flex;
  flex-direction: column;
}

.locations-eyebrow-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.locations-line {
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  display: inline-block;
}

.locations-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-title);
}

.locations-title-text {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.locations-action-block {
  margin-bottom: 6px;
}

/* 5 Column Grid Layout */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.location-card {
  position: relative;
  border-radius: var(--radius-md);
  height: 160px;
  overflow: hidden;
  display: block;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 15, 16, 0) 30%, rgba(15, 15, 16, 0.7) 65%, #0F0F10 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.location-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.location-info p {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  transition: var(--transition-smooth);
}

.location-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: var(--accent);
  opacity: 0.6;
  transform: translateX(-4px);
  transition: var(--transition-smooth);
}

/* Card Hover Interactions */
.location-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(193, 18, 31, 0.2);
}

.location-card:hover .location-img {
  transform: scale(1.08);
}

.location-card:hover .location-overlay {
  background: linear-gradient(180deg, rgba(15, 15, 16, 0) 30%, rgba(193, 18, 31, 0.15) 65%, #0F0F10 100%);
}

.location-card:hover .location-info h3 {
  color: var(--accent);
}

.location-card:hover .location-info p {
  color: var(--accent);
}

.location-card:hover .location-arrow {
  opacity: 1;
  color: var(--primary);
  transform: translateX(0);
}


/* ===== CONTACT STRIP BANNER ===== */
.contact-strip-section {
  background-color: #111113;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.contact-strip-item:hover {
  background-color: rgba(193, 18, 31, 0.03);
  border-color: rgba(193, 18, 31, 0.2);
  transform: translateY(-2px);
}

.contact-strip-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(193, 18, 31, 0.08);
  border: 1px solid rgba(193, 18, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-strip-item:hover .contact-strip-icon {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
  box-shadow: var(--shadow-red-glow);
  transform: scale(1.05);
}

.contact-strip-info {
  display: flex;
  flex-direction: column;
}

.contact-strip-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.contact-strip-value {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}


/* ===== RESPONSIVE STYLING FOR NEW SECTIONS ===== */
@media (max-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .contact-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .locations-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .locations-title-text {
    font-size: 32px;
  }
  
  .locations-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
  }
  
  .locations-grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .locations-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
  }
  
  .location-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    height: 150px;
  }
  
  .contact-strip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-strip-item {
    padding: 12px 16px;
  }
}
