/* =========================================================
   O CAR RENT HOMEPAGE CSS — CLEAN FIXED VERSION v11
   Fixed: hero background visibility, car-card display, responsive layout
   Upload as: /layout/styles/ocarrent-worldclass-homepage.css
========================================================= */

:root {
  --oc-gold: #c9a449;
  --oc-gold-2: #f3d889;
  --oc-dark: #111318;
  --oc-charcoal: #1d222b;
  --oc-ink: #222936;
  --oc-muted: #667085;
  --oc-soft: #f7f4ec;
  --oc-line: #eadfca;
  --oc-green: #138a3d;
  --oc-green-dark: #0b6f30;
  --oc-white: #ffffff;
  --oc-radius: 22px;
  --oc-shadow: 0 18px 45px rgba(17, 19, 24, .12);
  --oc-shadow-soft: 0 10px 28px rgba(17, 19, 24, .08);
}

/* BASE */
.ocx-home {
  font-family: inherit;
  color: var(--oc-ink);
  background: #fff;
  overflow: hidden;
}

.ocx-container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.ocx-section {
  padding: 72px 0;
}

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

.ocx-grid {
  display: grid;
  gap: 24px;
}

.ocx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(201, 164, 73, .45);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #6f5521;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
}

.ocx-title {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #111318;
}

.ocx-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  color: #4d5565;
  margin: 0 auto;
  max-width: 780px;
}

.ocx-note {
  font-size: 13px;
  color: #687083;
  margin-top: 12px;
  line-height: 1.6;
}

/* BUTTONS */
.ocx-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.ocx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none !important;
  font-weight: 900;
  line-height: 1.25;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.ocx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
  opacity: .96;
}

.ocx-btn-primary {
  background: linear-gradient(135deg, var(--oc-gold), #9b7428);
  color: #111 !important;
  border: 1px solid rgba(255, 255, 255, .35);
}

.ocx-btn-dark {
  background: #111318;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .12);
}

.ocx-btn-green {
  background: linear-gradient(135deg, #20a451, var(--oc-green-dark));
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .18);
}

.ocx-btn-ghost {
  background: #fff;
  color: #172033 !important;
  border: 1px solid #e2d5b7;
  box-shadow: none;
}

/* =========================================================
   HERO — IMAGE LAYER VERSION v12
   ใช้ <img class="ocx-hero-bg"> ใน HTML เป็นพื้นหลังจริง
   เหมาะกับ Dreamweaver template เพราะไม่พึ่ง background-image path ใน CSS
========================================================= */

.ocx-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #111318;
  overflow: hidden;
  isolation: isolate;
}

/* Real background image layer from HTML:
   <img class="ocx-hero-bg" src="/images/demo/backgrounds/review.bg.jpg" ...>
*/
.ocx-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  z-index: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  pointer-events: none !important;
}

/* Disable the old pseudo background layer if browser cached/merged older CSS */
.ocx-hero::before {
  content: none !important;
  display: none !important;
}

/* Dark overlay only. Keep text readable but still allow background image to show. */
.ocx-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 11, .72) 0%,
      rgba(5, 7, 11, .54) 45%,
      rgba(5, 7, 11, .20) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* Optional white fade if you add <div class="ocx-hero-fade"></div> */
.ocx-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: 2;
  background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.ocx-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr .72fr;
  gap: 34px;
  align-items: center;
  padding: 70px 0 90px;
}

.ocx-hero-copy {
  max-width: 780px;
}

.ocx-hero .ocx-eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #f8df93;
  border-color: rgba(248, 223, 147, .4);
  backdrop-filter: blur(12px);
}

.ocx-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -.055em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .35);
}

.ocx-hero-lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  color: rgba(255, 255, 255, .9);
  max-width: 720px;
  margin: 0;
}

.ocx-hero-note {
  color: rgba(255, 255, 255, .78) !important;
}

.ocx-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 760px;
}

.ocx-trust-pill {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
}

.ocx-trust-pill strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.ocx-trust-pill span {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}

/* HERO PANEL */
.ocx-hero-panel {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .32);
  color: #151922;
  backdrop-filter: blur(18px);
}

.ocx-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #eee3ce;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.ocx-rating {
  font-size: 28px;
  font-weight: 950;
  color: #111;
  line-height: 1;
}

.ocx-stars {
  color: #d99d12;
  font-size: 18px;
  letter-spacing: 1px;
}

.ocx-review-link {
  min-height: auto !important;
  padding: 11px 14px !important;
  box-shadow: none !important;
}

.ocx-panel-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ocx-panel-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: #faf8f2;
  border: 1px solid #eee5d3;
  color: #303847;
  line-height: 1.55;
}

.ocx-panel-list i {
  color: var(--oc-green);
  font-size: 17px;
  margin-top: 3px;
}

.ocx-mini-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

/* PROOF BAR */
.ocx-proof-wrap {
  position: relative;
  z-index: 3;
  margin-top: -58px;
}

.ocx-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid #eadfca;
  border-radius: 24px;
  box-shadow: var(--oc-shadow);
  overflow: hidden;
}

.ocx-proof-item {
  padding: 24px;
  border-right: 1px solid #eadfca;
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.ocx-proof-item:last-child {
  border-right: 0;
}

.ocx-proof-item strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
  color: #111318;
  font-weight: 950;
}

.ocx-proof-item span {
  display: block;
  margin-top: 6px;
  color: #657084;
  line-height: 1.45;
  font-size: 14px;
}

/* INTRO CARDS */
.ocx-value-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.ocx-value-card {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: var(--oc-radius);
  padding: 26px;
  box-shadow: var(--oc-shadow-soft);
  position: relative;
  overflow: hidden;
}

.ocx-value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--oc-gold), #966f24);
}

.ocx-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7e2;
  color: #8b641e;
  font-size: 22px;
  margin: 0 auto 16px;
}

.ocx-value-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 950;
  color: #151922;
  line-height: 1.35;
}

.ocx-value-card p {
  margin: 0;
  color: #5a6473;
  line-height: 1.75;
  font-size: 15px;
}

/* =========================================================
   CAR CARDS — OLD-STYLE CONVERSION CARD, PREMIUM FIX
   Works with current HTML classes: .ocx-car-grid / .ocx-car-card
========================================================= */

.ocx-fleet {
  background: linear-gradient(180deg, #fff, #faf7ef);
}

.ocx-fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.ocx-fleet-head .ocx-subtitle {
  margin: 0;
  max-width: 640px;
}

.ocx-car-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.ocx-car-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(234, 223, 202, .95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(17, 19, 24, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ocx-car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 73, .48);
  box-shadow: 0 22px 48px rgba(17, 19, 24, .14);
}

.ocx-car-img-wrap {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 205px;
  padding: 36px 26px 8px;
  background: #fff;
  overflow: hidden;
  text-decoration: none !important;
}

.ocx-car-img-wrap img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 155px !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  transition: transform .25s ease;
}

.ocx-car-card:hover .ocx-car-img-wrap img {
  transform: scale(1.02) !important;
}

.ocx-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e5093f;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(229, 9, 63, .20);
}

.ocx-car-body {
  padding: 18px 22px 24px;
  text-align: center;
}

.ocx-car-body h3 {
  margin: 0 0 10px;
  color: #111318;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

.ocx-car-body h3 small {
  font-size: 70%;
  font-weight: 800;
  text-transform: none;
}

.ocx-price {
  margin: 0 0 18px;
  color: #172033;
  font-size: 17px;
  font-weight: 850;
}

.ocx-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 18px 0 22px;
}

.ocx-spec {
  min-height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
  border: 1px solid #edf0f4;
  border-radius: 10px;
  background: #f4f6f9;
  color: #172033;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.ocx-spec i {
  color: #2b7d35;
  width: auto;
  font-size: 16px;
  text-align: center;
}

.ocx-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ocx-card-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 10px;
  border-radius: 9px;
  text-align: center;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.ocx-card-actions a:hover {
  transform: translateY(-1px);
  opacity: .94;
}

.ocx-details {
  background: #2f2f2f;
  color: #fff !important;
  border: 1px solid rgba(0, 0, 0, .08);
}

.ocx-book {
  background: linear-gradient(135deg, #2f9340, #1f7a2f);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .16);
}

/* Backward compatibility for older car-card classes */
.car-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.car-card-box {
  position: relative;
  background: #fff;
  border: 1px solid rgba(234, 223, 202, .95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(17, 19, 24, .08);
}

.car-card-box > a:first-of-type {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 205px;
  padding: 36px 26px 8px;
  background: #fff;
  overflow: hidden;
}

.car-card-box > a:first-of-type img,
.car-card-box img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 88% !important;
  max-height: 155px !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* JOURNEY / DESTINATIONS */
.ocx-dest {
  background: #111318;
  color: #fff;
  position: relative;
}

.ocx-dest::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(201, 164, 73, .26), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .08), transparent 30%);
  pointer-events: none;
}

.ocx-dest .ocx-container {
  position: relative;
  z-index: 1;
}

.ocx-dest .ocx-title {
  color: #fff;
}

.ocx-dest .ocx-subtitle {
  color: rgba(255, 255, 255, .72);
}

.ocx-dest-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

.ocx-dest-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.ocx-dest-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.ocx-dest-body {
  padding: 22px;
}

.ocx-dest-body h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: #fff;
  font-weight: 950;
  line-height: 1.3;
}

.ocx-dest-body p {
  color: rgba(255, 255, 255, .74);
  line-height: 1.75;
  margin: 0 0 14px;
  font-size: 15px;
}

.ocx-distance {
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #ffe9a8;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 14px;
}

.ocx-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111 !important;
  background: linear-gradient(135deg, var(--oc-gold-2), var(--oc-gold));
  padding: 11px 14px;
  border-radius: 13px;
  text-decoration: none !important;
  font-weight: 950;
}

/* BENEFITS */
.ocx-benefit-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.ocx-benefit-panel {
  position: sticky;
  top: 20px;
  background: linear-gradient(160deg, #151922, #2a1f12);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--oc-shadow);
}

.ocx-benefit-panel h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 12px 0;
  color: #fff;
  font-weight: 950;
  letter-spacing: -.04em;
}

.ocx-benefit-panel p {
  line-height: 1.75;
  color: rgba(255, 255, 255, .76);
  margin: 0;
}

.ocx-left-actions {
  justify-content: flex-start !important;
}

.ocx-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ocx-benefit-card {
  border: 1px solid var(--oc-line);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--oc-shadow-soft);
}

.ocx-benefit-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff7e2;
  color: #916819;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
}

.ocx-benefit-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.35;
  color: #111318;
  font-weight: 950;
}

.ocx-benefit-card p {
  margin: 0;
  color: #5b6575;
  line-height: 1.7;
  font-size: 14px;
}

/* TESTIMONIAL */
.ocx-review {
  background: linear-gradient(180deg, #faf7ef, #fff);
}

.ocx-review-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 30px;
  box-shadow: var(--oc-shadow);
  padding: 28px;
  overflow: hidden;
}

.ocx-review-img img {
  width: 100%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.ocx-review-copy blockquote {
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -.04em;
  margin: 0 0 18px;
  color: #111318;
}

.ocx-review-copy p {
  font-size: 16px;
  color: #586273;
  line-height: 1.75;
  margin: 0 0 22px;
}

.ocx-rating-line {
  font-size: 20px;
  color: #d99d12;
  font-weight: 950;
  margin-bottom: 10px;
}

/* FAQ */
.ocx-faq {
  background: #fff;
}

.ocx-faq-wrap {
  max-width: 920px;
  margin: 34px auto 0;
  display: grid;
  gap: 14px;
}

.ocx-faq details {
  background: #fff;
  border: 1px solid var(--oc-line);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(17, 19, 24, .05);
  overflow: hidden;
}

.ocx-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
  color: #111318;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  line-height: 1.4;
}

.ocx-faq summary::-webkit-details-marker {
  display: none;
}

.ocx-faq summary::after {
  content: "+";
  font-size: 24px;
  color: #916819;
  line-height: 1;
}

.ocx-faq details[open] summary::after {
  content: "–";
}

.ocx-faq details p {
  padding: 0 22px 22px;
  margin: 0;
  color: #5a6473;
  line-height: 1.8;
}

/* FINAL CTA */
.ocx-final {
  background: linear-gradient(135deg, #12151b, #2e2415);
  color: #fff;
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.ocx-final::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(201, 164, 73, .24);
  filter: blur(20px);
}

.ocx-final .ocx-container {
  position: relative;
  z-index: 1;
}

.ocx-final h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 950;
  letter-spacing: -.045em;
}

.ocx-final p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 760px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .ocx-hero-inner,
  .ocx-benefit-layout,
  .ocx-review-box {
    grid-template-columns: 1fr;
  }

  .ocx-hero {
    min-height: auto;
  }

  .ocx-hero-panel {
    max-width: 620px;
  }

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

  .ocx-proof-item:nth-child(2) {
    border-right: 0;
  }

  .ocx-proof-item:nth-child(1),
  .ocx-proof-item:nth-child(2) {
    border-bottom: 1px solid #eadfca;
  }

  .ocx-value-grid,
  .ocx-car-grid,
  .ocx-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ocx-benefit-panel {
    position: relative;
    top: 0;
  }

  .ocx-car-img-wrap,
  .car-card-box > a:first-of-type {
    height: 200px;
  }
}

@media (max-width: 680px) {
  .ocx-section {
    padding: 54px 0;
  }

  .ocx-hero-inner {
    padding: 50px 0 80px;
  }

  .ocx-hero-trust,
  .ocx-proof,
  .ocx-value-grid,
  .ocx-car-grid,
  .ocx-dest-grid,
  .ocx-benefit-grid {
    grid-template-columns: 1fr;
  }

  .ocx-proof-item,
  .ocx-proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #eadfca;
  }

  .ocx-proof-item:last-child {
    border-bottom: 0;
  }

  .ocx-fleet-head {
    display: block;
  }

  .ocx-fleet-head .ocx-btn {
    margin-top: 18px;
    width: 100%;
  }

  .ocx-btn-row {
    align-items: stretch;
  }

  .ocx-btn {
    width: 100%;
  }

  .ocx-card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .ocx-hero h1 {
    font-size: 38px;
  }

  .ocx-title {
    font-size: 32px;
  }

  .ocx-specs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .ocx-spec {
    font-size: 12px;
    min-height: 52px;
  }

  .ocx-car-img-wrap,
  .car-card-box > a:first-of-type {
    height: 200px;
    padding: 34px 20px 8px;
  }

  .ocx-car-img-wrap img,
  .car-card-box > a:first-of-type img,
  .car-card-box img {
    max-height: 150px !important;
  }
}

@media (max-width: 420px) {
  .ocx-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ocx-card-actions {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FINAL HERO IMAGE LAYER FIX
   Make .ocx-hero-bg behave as real background, not normal image
========================================================= */

.ocx-hero {
  position: relative !important;
  min-height: 680px !important;
  display: flex !important;
  align-items: center !important;
  color: #fff !important;
  background: #111318 !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* This image must become the hero background */
.ocx-hero > img.ocx-hero-bg,
.ocx-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  z-index: 0 !important;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  transform: none !important;
}

/* Remove old pseudo background */
.ocx-hero::before {
  display: none !important;
  content: none !important;
}

/* Dark overlay above image */
.ocx-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.30) 100%
    ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Content must stay above image and overlay */
.ocx-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: 1.1fr .72fr !important;
  gap: 34px !important;
  align-items: center !important;
  padding: 70px 0 90px !important;
}