/* ============================================================
   JAPAN AUTO SUPPLY — styles.css
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:        #c0392b;
  --red-dark:   #a93226;
  --gold:       #e6a817;
  --white:      #ffffff;
  --off-white:  #f7f7f7;
  --dark:       #111111;
  --dark2:      #1a1a1a;
  --gray:       #666666;
  --light-gray: #e8e8e8;
  --green:      #25d366;
  --green-dark: #1ebe5a;

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:     10px;
  --shadow:     0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg:  0 12px 40px rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* --- Layout Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Typography Utilities --- */
.red   { color: var(--red); }
.gold  { color: var(--gold); }
.white { color: var(--white); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fde8e7;
  color: var(--red);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-1px);
}

/* --- Scroll animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

.nav-logo-text span {
  color: var(--red);
}

.white-text {
  color: var(--white) !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(to right, rgba(0,0,0,0.78) 45%, rgba(0,0,0,0.28) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80') center / cover no-repeat;
}

.hero-content {
  padding: 140px 80px 40px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

/* Stats bar */
.stats-bar {
  display: flex;
  background: rgba(0, 0, 0, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose {
  background: var(--off-white);
  padding: 90px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.problem-icon {
  width: 46px;
  height: 46px;
  background: #fde8e7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.65;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--white);
  padding: 90px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
}

.red-bg  { background: var(--red); }
.gold-bg { background: var(--gold); }
.dark-bg { background: #2c3e50; }

.step-arrow {
  font-size: 1.8rem;
  color: var(--light-gray);
  padding-top: 20px;
  align-self: start;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

.step-example {
  margin-top: 14px;
  background: var(--off-white);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: left;
}

.step-example strong {
  color: var(--dark);
}

.how-cta {
  text-align: center;
  margin-top: 52px;
}

.how-cta p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 10px;
}


/* ============================================================
   INVENTORY
   ============================================================ */
.inventory {
  background: var(--dark);
  padding: 90px 0;
}

.inventory-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.inventory-header .section-title {
  margin-bottom: 6px;
}

.inventory-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.live-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.view-all-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.view-all-link:hover {
  opacity: 0.75;
}

/* Car grid */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.car-card {
  background: #1e1e1e;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.car-image {
  position: relative;
  height: 185px;
  overflow: hidden;
}

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

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

.badge-available {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #27ae60;
  color: white;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-sold {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #555;
  color: white;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-grade {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: #111;
  font-size: 0.71rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.car-details {
  padding: 18px 18px 20px;
}

.car-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.car-trim {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.car-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.spec-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 3px;
}

.spec-value.gold-text {
  color: var(--gold);
}

.spec-sub {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.32);
}

.btn-request {
  width: 100%;
  padding: 10px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-request:hover {
  background: var(--red-dark);
}

.btn-similar {
  width: 100%;
  padding: 10px;
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.65);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-similar:hover {
  background: #333;
}


/* ============================================================
   WHY TRUST US
   ============================================================ */
.trust {
  background: var(--white);
  padding: 90px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.trust-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: 10px;
  padding: 18px 20px;
  transition: transform 0.2s;
}

.trust-point:hover {
  transform: translateX(4px);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.red-icon   { background: #fde8e7; }
.gold-icon  { background: #fef6e4; }
.blue-icon  { background: #e8f0fe; }
.green-icon { background: #e6f9ee; }

.trust-point h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-point p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Image side */
.trust-image-wrap {
  position: relative;
}

.trust-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.trust-badge-top {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--gold);
  color: #111;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(230, 168, 23, 0.35);
  z-index: 2;
  line-height: 1.2;
}

.trust-badge-top span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  margin-top: 2px;
}

.trust-badge-bottom {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.trophy {
  font-size: 1.4rem;
}

.trust-badge-bottom strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.trust-badge-bottom span {
  font-size: 0.74rem;
  color: var(--gray);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(192, 57, 43, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%),
    url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1600&q=80') center / cover no-repeat;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.cta-meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.cta-meta span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--off-white);
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon { background: var(--green); }
.email-icon    { background: var(--red); }

.contact-label {
  font-size: 0.76rem;
  color: var(--gray);
}

.contact-value {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Hours */
.hours-box {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.hours-title {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-top: 1px solid var(--light-gray);
}

.closed {
  color: var(--red);
  font-weight: 600;
}

/* Form */
.contact-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: #fafafa;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
}

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

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--red-dark);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 10px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.social-link:hover {
  border-color: var(--red);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-col p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  margin-left: 20px;
  transition: color 0.2s;
}

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


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 960px) {

  /* Nav */
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding: 110px 24px 36px;
  }
  .stats-bar {
    flex-wrap: wrap;
  }
  .stat {
    flex: 0 0 50%;
  }

  /* Sections */
  .why-choose,
  .how-it-works,
  .trust,
  .cta-banner,
  .contact,
  .footer {
    padding: 60px 0;
  }

  .container {
    padding: 0 24px;
  }

  /* Grids → single column */
  .problem-grid,
  .cars-grid,
  .trust-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .step-arrow {
    display: none;
  }

  /* Trust image badges */
  .trust-badge-top,
  .trust-badge-bottom {
    display: none;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .inventory-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ============================================================
   INNER PAGES — shared styles
   ============================================================ */

/* Active nav link */
.nav-active {
  color: var(--red) !important;
  font-weight: 600;
}

/* Page hero (replaces full-height hero on inner pages) */
.page-hero {
  background:
    linear-gradient(to right, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.4) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80') center / cover no-repeat;
  padding: 140px 0 80px;
  color: var(--white);
}

.page-hero .section-badge {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

/* Generic section wrapper */
.page-section {
  padding: 80px 0;
}

.bg-white    { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-dark     { background: var(--dark2); }

/* Shared prose styles inside page sections */
.page-section p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Info box (numbered list callout) */
.info-box {
  background: var(--off-white);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.88rem;
}

.info-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
}

.info-box ul {
  padding-left: 18px;
  color: var(--gray);
  line-height: 2;
}


/* ============================================================
   HOW IT WORKS — full step layout
   ============================================================ */
.process-step-full {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.process-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 48px 0;
}

/* 3-col mini cards inside process steps */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px;
}

.mini-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.red-bg-icon   { background: #fde8e7; }
.gold-bg-icon  { background: #fef6e4; }
.green-bg-icon { background: #e6f9ee; }

.mini-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.mini-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.gold-dot { background: var(--gold); }

.timeline-item:not(:last-child) .timeline-dot::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 16px);
  background: var(--light-gray);
  z-index: 0;
}

.timeline-day {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.87rem;
}


/* ============================================================
   AVAILABLE STOCK — extras
   ============================================================ */
.stock-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fef6e4;
  border: 1px solid #f0c860;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #7a5c00;
  margin-bottom: 28px;
}

.stock-notice-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.filter-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
}

.filter-group select {
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 0.87rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.filter-group select:focus {
  border-color: var(--red);
}

/* Auction grade guide */
.grade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.grade-card {
  border-radius: 10px;
  padding: 22px;
  border: 2px solid transparent;
}

.grade-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.grade-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.grade-card p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
}

.grade-s   { background: #e8f9f0; border-color: #2ecc71; }
.grade-s .grade-label { color: #27ae60; }
.grade-5   { background: #e8f4ff; border-color: #3498db; }
.grade-5 .grade-label { color: #2980b9; }
.grade-45  { background: #fef6e4; border-color: var(--gold); }
.grade-45 .grade-label { color: #c27d00; }
.grade-4   { background: #fff8e6; border-color: #f39c12; }
.grade-4 .grade-label { color: #e67e22; }
.grade-35  { background: #fff0f0; border-color: #e74c3c; }
.grade-35 .grade-label { color: var(--red); }
.grade-3   { background: #f5f5f5; border-color: #bbb; }
.grade-3 .grade-label { color: #888; }


/* ============================================================
   ABOUT PAGE — extras
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-grid p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.about-stat-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--gold);
  color: #111;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(230,168,23,0.35);
  line-height: 1.2;
}

.about-stat-badge span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
}

/* Stats row on dark bg */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.about-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* What makes us different */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.diff-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.diff-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Markets */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.market-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.market-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.other-market { border: 2px dashed var(--light-gray); }

.market-flag { font-size: 2rem; margin-bottom: 8px; }
.market-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.market-port { font-size: 0.78rem; color: var(--gray); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: white;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.65;
}


/* ============================================================
   FAQ PAGE — extras
   ============================================================ */
.faq-container {
  max-width: 800px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.faq-item {
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.faq-open {
  border-color: var(--red);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-arrow {
  color: var(--red);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  background: var(--white);
}

.faq-open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: 10px;
}

.faq-cta-box {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.faq-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-cta-box p {
  color: var(--gray);
  font-size: 0.9rem;
}


/* ============================================================
   RESPONSIVE — inner pages
   ============================================================ */
@media (max-width: 960px) {
  .page-hero {
    padding: 110px 0 60px;
  }

  .process-step-full {
    grid-template-columns: 1fr;
  }

  .process-num {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .three-col-grid,
  .diff-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .grade-grid,
  .markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-badge {
    right: 0;
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  .faq-container {
    max-width: 100%;
  }
}

/* ── Logo image ── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-img-footer {
  height: 32px;
}
