/* ==========================================================================
   TOYOTA SALES CONSULTANT - ULTRA LUXURY DIGITAL EXPERIENCE STYLESHEET
   Design Philosophy: Soft White Luxury, Editorial Magazine Layouts, High-End Typography
   ========================================================================== */

:root {
  /* Color Palette - Bright Daylight Luxury */
  --bg-pure: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-light: #F4F5F7;
  --bg-warm: #EFEFEF;
  --bg-card: #FFFFFF;
  
  /* Text Colors */
  --text-dark: #111111;
  --text-main: #222222;
  --text-muted: #555555;
  --text-subtle: #888888;
  
  /* Accent Colors - Toyota Red Reserved for CTAs, Active States & Highlights */
  --toyota-red: #EB0A1E;
  --toyota-red-hover: #C50417;
  --toyota-red-soft: rgba(235, 10, 30, 0.08);
  --toyota-red-glow: rgba(235, 10, 30, 0.25);
  
  /* Borders & Shadows */
  --border-light: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  
  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Curves & Motion */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   Global Reset & Base Typography
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-pure);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
}

p {
  color: var(--text-muted);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: #CCCCCC;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--toyota-red);
}

/* --------------------------------------------------------------------------
   Top Bar & Luxury Navbar
   -------------------------------------------------------------------------- */
.top-header {
  background-color: #0A0A0A;
  color: #E5E5E5;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-link {
  color: #CCCCCC;
  transition: var(--transition-fast);
}

.top-link:hover {
  color: #FFFFFF;
}

.luxury-header-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.navbar-toyota {
  padding: 0.85rem 0;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: var(--transition-fast);
}

.brand-logo-img:hover {
  opacity: 0.92;
}

.brand-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--text-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo-mark::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 10px; height: 10px;
  background: var(--toyota-red);
  border-bottom-left-radius: 6px;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-accent {
  color: var(--toyota-red);
}

.brand-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-subtle);
  margin-top: 2px;
  white-space: nowrap;
}

.navbar-toyota .navbar-nav {
  gap: 2px;
}

.navbar-toyota .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  padding: 0.5rem 0.75rem !important;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.navbar-toyota .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 22px;
  height: 2px;
  background-color: var(--toyota-red);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.navbar-toyota .nav-link:hover,
.navbar-toyota .nav-link.active {
  color: var(--toyota-red);
}

.navbar-toyota .nav-link:hover::after,
.navbar-toyota .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Crisp & Prominent Hamburger Toggler */
.custom-toggler {
  border: 2px solid var(--text-dark) !important;
  background-color: var(--bg-surface) !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 5px !important;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: var(--transition-fast);
}

.custom-toggler:hover,
.custom-toggler:focus {
  border-color: var(--toyota-red) !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(235, 10, 30, 0.2);
}

.custom-toggler .toggler-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.custom-toggler .toggler-line:nth-child(2) {
  width: 17px;
}

.custom-toggler:hover .toggler-line {
  background-color: var(--toyota-red);
}

.custom-toggler:hover .toggler-line:nth-child(2) {
  width: 24px;
}

@media (min-width: 992px) {
  .custom-toggler {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-toyota .navbar-collapse {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-top: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid var(--border-light);
  }
  
  .navbar-toyota .nav-link {
    padding: 0.65rem 1rem !important;
    border-radius: var(--radius-sm);
  }
  
  .navbar-toyota .nav-link::after {
    display: none;
  }
  
  .navbar-toyota .nav-link:hover,
  .navbar-toyota .nav-link.active {
    background-color: var(--bg-soft);
  }
}

/* Custom Luxury Buttons */
.btn-luxury-cta {
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid var(--text-dark);
}

.btn-luxury-cta:hover {
  background: var(--toyota-red);
  border-color: var(--toyota-red);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--toyota-red-glow);
}

.btn-luxury-primary {
  background: var(--toyota-red);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-bounce);
  box-shadow: 0 10px 25px var(--toyota-red-glow);
  border: none;
}

.btn-luxury-primary:hover {
  background: var(--toyota-red-hover);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(235, 10, 30, 0.35);
}

.btn-luxury-outline {
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--border-medium);
  transition: var(--transition-bounce);
}

.btn-luxury-outline:hover {
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Section Layout Standards (Unique Editorial Styles)
   -------------------------------------------------------------------------- */
.editorial-section {
  padding: 6.5rem 0;
  position: relative;
}

.bg-soft-white {
  background-color: var(--bg-soft);
}

.bg-light-gray {
  background-color: var(--bg-light);
}

.bg-warm-white {
  background-color: var(--bg-warm);
}

.editorial-header {
  margin-bottom: 3.5rem;
}

.editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--toyota-red);
  background: var(--toyota-red-soft);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.editorial-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.editorial-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-top: 1rem;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION (Immersive Editorial Stage)
   -------------------------------------------------------------------------- */
.hero-stage {
  padding: 4rem 0 6rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  position: relative;
  overflow: hidden;
}

.hero-stage::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(235, 10, 30, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.hero-editorial-badge i {
  color: var(--toyota-red);
}

.hero-main-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-main-title span {
  position: relative;
  display: inline-block;
  color: var(--text-dark);
}

.hero-main-title span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--toyota-red-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.hero-stage-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #FFFFFF;
}

.hero-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Hero Floating Glass Card */
.hero-glass-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 320px;
  z-index: 5;
}

.hero-glass-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--toyota-red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px var(--toyota-red-glow);
}

.hero-glass-text h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-glass-text p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   2. WHO AM I? (Personal Storytelling Profile)
   -------------------------------------------------------------------------- */
.story-profile-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.story-portrait-frame {
  position: relative;
}

.story-portrait-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.05);
  height: 560px;
  object-fit: cover;
}

.story-quote-badge {
  position: absolute;
  top: 40px;
  right: -25px;
  background: #FFFFFF;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 260px;
  border-left: 4px solid var(--toyota-red);
}

.story-quote-badge p {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-main);
  margin: 0;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-paragraph {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.story-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.story-value-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--toyota-red-soft);
  color: var(--toyota-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.story-value-text h6 {
  margin: 0 0 4px 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.story-value-text p {
  margin: 0;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   3. WHY CUSTOMERS CHOOSE ME (Timeline & Achievements)
   -------------------------------------------------------------------------- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.metric-card-luxury {
  background: #FFFFFF;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-bounce);
}

.metric-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--toyota-red-soft);
}

.metric-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--toyota-red);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.metric-desc {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-top: 4px;
}

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

.pillar-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--text-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pillar-card:hover .pillar-icon-box {
  background: var(--toyota-red);
}

.pillar-info h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pillar-info p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. TOYOTA COLLECTION (Immersive Spotlight Magazine Layout)
   -------------------------------------------------------------------------- */
.collection-magazine-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.hero-car-spotlight {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.spotlight-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--text-dark);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.spotlight-img-container img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  margin: 1.5rem 0;
  transition: transform 0.5s ease;
}

.hero-car-spotlight:hover .spotlight-img-container img {
  transform: scale(1.05) translateY(-5px);
}

.spotlight-info h3 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.spotlight-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--toyota-red);
  margin-bottom: 1.5rem;
}

.spotlight-specs-row {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.spotlight-spec-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.spotlight-spec-item i {
  color: var(--text-dark);
  margin-right: 6px;
}

.collection-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.side-car-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.side-car-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-medium);
}

.side-car-img {
  width: 140px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.side-car-info h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.side-car-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--toyota-red);
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   5. EXPLORE EVERY TOYOTA (Interactive Filter & Cards)
   -------------------------------------------------------------------------- */
.filter-tab-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}

.filter-pill-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill-btn:hover,
.filter-pill-btn.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: #FFFFFF;
}

.filter-pill-btn.active {
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.explore-cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.luxury-car-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.card-car-thumb {
  position: relative;
  background: var(--bg-soft);
  padding: 2rem 1.5rem;
  text-align: center;
}

.card-car-thumb img {
  height: 180px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.luxury-car-card:hover .card-car-thumb img {
  transform: scale(1.06);
}

.card-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.card-car-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-car-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.card-car-subtitle {
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin-bottom: 1.2rem;
}

.card-car-price-tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--toyota-red);
  margin-bottom: 1.5rem;
}

.card-car-actions {
  display: flex;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   6. CURRENT PROMOTIONS (Luxury Campaign Showcase)
   -------------------------------------------------------------------------- */
.promo-campaign-banner {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
}

.promo-campaign-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--toyota-red-glow) 0%, transparent 70%);
}

.promo-tag {
  display: inline-block;
  background: var(--toyota-red);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.promo-title {
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.promo-desc {
  color: #CCCCCC;
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

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

.promo-card-clean {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.promo-card-clean:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.promo-badge-mini {
  background: var(--toyota-red-soft);
  color: var(--toyota-red);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   7. CUSTOMER DELIVERY STORIES (Emotional Trust Cards)
   -------------------------------------------------------------------------- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card-luxury {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.story-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.story-card-photo {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.story-card-body {
  padding: 1.8rem;
}

.story-car-bought {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--toyota-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.story-customer-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.story-quote-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.story-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* --------------------------------------------------------------------------
   8. PHOTO GALLERY (Asymmetrical Masonry & Lightbox)
   -------------------------------------------------------------------------- */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.95;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #FFFFFF;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h6 {
  color: #FFFFFF;
  margin: 0;
  font-size: 0.95rem;
}

.gallery-overlay span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

/* --------------------------------------------------------------------------
   9. LATEST TOYOTA STOCK (Interactive Live Availability Table)
   -------------------------------------------------------------------------- */
.stock-interactive-wrapper {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.search-input-luxury {
  background: var(--bg-soft);
  border: 1px solid var(--border-medium);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  width: 320px;
  outline: none;
  transition: var(--transition-fast);
}

.search-input-luxury:focus {
  border-color: var(--text-dark);
  background: #FFFFFF;
}

.luxury-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.luxury-table th {
  background: var(--bg-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-medium);
}

.luxury-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  vertical-align: middle;
}

.luxury-table tr:hover td {
  background-color: var(--bg-soft);
}

.badge-stock-ready {
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.badge-stock-indent {
  background: #FFF3E0;
  color: #E65100;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   10. PRICE LIST (Luxury OTR Experience)
   -------------------------------------------------------------------------- */
.price-list-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.price-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.price-item-row:hover {
  padding-left: 10px;
}

.price-car-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.price-car-otr {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--toyota-red);
}

/* --------------------------------------------------------------------------
   11. CONTACT SALES & CONSULTATION (Conversion Hub)
   -------------------------------------------------------------------------- */
.contact-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.consultant-card-frame {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.consultant-portrait {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
}

.consultant-card-info {
  padding: 2rem;
}

.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-control-luxury {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-medium);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  margin-bottom: 1.2rem;
}

.form-control-luxury:focus {
  border-color: var(--text-dark);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* --------------------------------------------------------------------------
   Footer & Floating UI Components
   -------------------------------------------------------------------------- */
.footer-toyota-luxury {
  background: #0D0D0D;
  color: #FFFFFF;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
}

.footer-brand-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #888888;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.social-circle:hover {
  background: var(--toyota-red);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #AAAAAA;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #AAAAAA;
  margin-bottom: 12px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #777777;
}

/* Floating WhatsApp Widget */
.floating-wa-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.btn-whatsapp-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: var(--transition-bounce);
}

.btn-whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.floating-wa-wrapper:hover .wa-tooltip {
  opacity: 1;
}

/* Scroll To Top Button */
.btn-scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  color: var(--text-dark);
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.btn-scroll-top:hover {
  background: var(--text-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Scroll Animations Engine (.reveal-up, .reveal-scale, etc.)
   -------------------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .hero-main-title { font-size: 3rem; }
  .editorial-title { font-size: 2.3rem; }
  .collection-magazine-layout { grid-template-columns: 1fr; }
  .explore-cars-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .story-profile-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .story-quote-badge { position: relative; top: auto; right: auto; margin-top: -30px; margin-left: 20px; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-hub-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 767px) {
  .hero-main-title { font-size: 2.4rem; }
  .editorial-title { font-size: 1.9rem; }
  .explore-cars-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .gallery-masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 10px; text-align: center; }
  .search-input-luxury { width: 100%; }
  .table-toolbar { flex-direction: column; align-items: stretch; }
  .hero-glass-card { position: relative; bottom: auto; left: auto; margin-top: 1rem; max-width: 100%; }
}

/* --------------------------------------------------------------------------
   Car Color & Interior Interactive Visualizer Component
   -------------------------------------------------------------------------- */
.color-visualizer-card {
  background: var(--bg-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  transition: var(--transition-smooth);
}

.color-swatch-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.color-swatch-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  outline: none;
  padding: 0;
}

.color-swatch-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.color-swatch-btn.active {
  transform: scale(1.22);
  border: 2.5px solid var(--toyota-red);
  box-shadow: 0 0 0 3px var(--toyota-red-glow), 0 4px 14px rgba(0, 0, 0, 0.3);
}

.color-swatch-btn.active::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--toyota-red);
}

/* Inline Card Swatches (Small Variant) */
.card-car-colors-wrapper {
  background: var(--bg-soft, #f8f9fa);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-light, #eee);
  margin-top: 8px;
  margin-bottom: 12px;
}

.color-swatch-btn.sm {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.2s ease;
  outline: none;
  padding: 0;
}

.color-swatch-btn.sm:hover {
  transform: scale(1.25);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.color-swatch-btn.sm.active {
  transform: scale(1.28);
  border: 2px solid var(--toyota-red, #eb0a1e);
  box-shadow: 0 0 0 2px rgba(235, 10, 30, 0.25), 0 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.color-swatch-btn.sm.active::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 50%;
  border: 1px solid var(--toyota-red, #eb0a1e);
}

.car-image-changing {
  opacity: 0.15;
  transform: scale(0.96);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.color-title-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-medium);
}

.interior-thumb-card {
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.interior-thumb-card:hover {
  transform: translateY(-3px);
  border-color: var(--toyota-red);
  box-shadow: var(--shadow-md);
}

.studio-modal-header {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  color: #FFFFFF;
}

.studio-visualizer-stage {
  background: radial-gradient(circle at center, #FAFAFA 0%, #EFEFEF 100%);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}