/* ============================================================
   TOYOTA RAV4 2026 — Landing Page Custom Styles
   Stack: Bootstrap 5.2 + AOS + GSAP
   ============================================================ */

/* ---------- 1. TOKENS & RESET ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --clr-bg: #f5f3ee;
  --clr-surface: #eceae4;
  --clr-card: #ffffff;
  --clr-accent: #fff;
  /* Toyota red */
  --clr-accent2: #000;
  --clr-gold: #a07840;
  --clr-text: #1a1a1e;
  --clr-muted: #5c6070;
  --clr-border: rgba(0, 0, 0, 0.09);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --section-gap: 6rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden!important;
}
header{
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.logoExpansion{
  height: 30px;
  margin: 1rem 0rem;
}
/* ---------- 2. TYPOGRAPHY ---------- */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-text);
  text-transform: uppercase;
}

.lead-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--clr-muted);
  line-height: 1.85;
}

.body-text {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--clr-muted);
  line-height: 1.85;
}

/* ---------- 3. UTILITY ---------- */
.clr-accent {
  color: var(--clr-accent);
}

.clr-gold {
  color: var(--clr-gold);
}

.divider-accent {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.pill-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border: 1px solid var(--clr-accent);
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(225, 15, 26, 0.08);
}

/* ---------- 4. NAVBAR ---------- */
.navbar-custom {
  background: rgba(245, 243, 238, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.4s ease;
  padding: 1rem 0;
}

.navbar-custom.scrolled {
  background: rgba(245, 243, 238, 0.98);
  padding: 0.65rem 0;
}

.navbar-brand-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--clr-accent) !important;
}

.navbar-brand-logo span {
  color: var(--clr-text);
}

.nav-link-custom {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text) !important;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1.5px;
  background: var(--clr-accent);
  transition: transform 0.3s var(--ease-out);
}

.nav-link-custom:hover {
  color: var(--clr-accent) !important;
}

.nav-link-custom:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.btn-nav-cta {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--clr-accent);
  border-radius: 100px;
  padding: 0.5rem 1.4rem !important;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-nav-cta:hover {
  background: var(--clr-accent2);
  transform: translateY(-1px);
}

.navbar-toggler {
  border-color: var(--clr-border);
}

.navbar-toggler-icon {
  filter: invert(0);
}

/* ---------- 5. HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/19_L&S_ToyotaRAV4.jpg');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 11, 14, 0.92) 0%,
      rgba(10, 11, 14, 0.50) 45%,
      rgba(10, 11, 14, 0.20) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  width: 100%;
}

.hero-tagline {
  display: inline-block;
  width: 100%;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: rgba(232, 233, 235, 0.7);
  max-width: 560px;
  line-height: 1.75;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.scroll-wheel {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--clr-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 5px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

/* ---------- 6. INTRO BAND ---------- */
#intro {
  background: var(--clr-surface);

  padding: 3.5rem 0;
}

.intro-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--clr-text);
  max-width: 820px;
  margin: 0 auto;
}

.intro-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ---------- 7. SECTIONS GENERAL ---------- */
.content-section {
  padding: var(--section-gap) 0;
}

.content-section--dark {
  background: var(--clr-surface);
}

/* ---------- 8. IMAGE COMPONENTS ---------- */
.img-hero-full {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.img-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.img-landscape {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.img-square {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.img-wide {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

/* Overlay card images */
.img-overlay-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transform: translateZ(0);
}

.img-overlay-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.img-overlay-wrap:hover img {
  transform: scale(1.04);
}

.img-overlay-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 14, 0.7) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- 9. GRID MOSAIC ---------- */
.mosaic {
  display: grid;
  gap: 1rem;
}

.mosaic-3 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}

.mosaic-3 .mosaic-main {
  grid-row: span 2;
  height: 100%;
}

.mosaic-3 .mosaic-main img,
.mosaic-3 .mosaic-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.mosaic-3 .mosaic-main {
  aspect-ratio: 3/4;
}

.mosaic-3 .mosaic-side {
  aspect-ratio: 4/5;
}

/* ---------- 10. FEATURE CARDS ---------- */
.feature-card {
  background: var(--clr-card);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 15, 26, 0.35);
}

.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(225, 15, 26, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.feature-card .feature-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.feature-card .feature-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ---------- 11. CINEMATIC STRIP ---------- */
.cinematic-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.cinematic-strip .strip-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  transform: translateZ(0);
}

.cinematic-strip .strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.cinematic-strip .strip-item:hover img {
  transform: scale(1.06);
}

/* ---------- 12. PULLQUOTE ---------- */
.pullquote {
  border-left: 3px solid var(--clr-accent);
  padding: 1rem 1.5rem;
  background: var(--clr-card);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.5;
}

/* ---------- 13. PARALLAX FULL-WIDTH ---------- */
.parallax-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.parallax-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 14, 0.72);
}

.parallax-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ---------- 14. TECH LIST ---------- */
.tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.tech-list .tech-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
  margin-top: 0.55rem;
}

.tech-list .tech-text {
  font-size: 1rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

.tech-list .tech-text strong {
  color: var(--clr-text);
}

/* ---------- 15. CLOSING CTA ---------- */
#closing {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--section-gap) 0;
  text-align: center;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: var(--clr-text);
  line-height: 1;
  letter-spacing: 0.02em;
}

.btn-cta-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #8d8d8d;
  border-radius: 100px;
  padding: 1rem 2.5rem;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 rgba(255, 15, 26, 0);
}

.btn-cta-primary:hover {
  background: var(--clr-accent2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(225, 255, 255, 0.35);
  color: #fff;
}

.btn-cta-secondary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-text);
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 100px;
  padding: 1rem 2.5rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-cta-secondary:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* ---------- 16. FOOTER ---------- */
footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 2rem 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #fff;
}

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

.footer-note {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

/* ---------- 17. ANIMATIONS OVERRIDES ---------- */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ---------- 18. RESPONSIVE TWEAKS ---------- */
@media (max-width: 991.98px) {
  :root {
    --section-gap: 4.5rem;
  }

  .mosaic-3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mosaic-3 .mosaic-main {
    grid-row: auto;
  }

  .cinematic-strip {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic-3 .mosaic-side {
    aspect-ratio: 4/3;
  }
}


@media (max-width: 575.98px) {
  :root {
    --section-gap: 3rem;
  }

  .cinematic-strip {
    grid-template-columns: 1fr;
  }

  .cinematic-strip .strip-item:last-child {
    display: none;
  }

  .parallax-section {
    min-height: 380px;
  }


}