/*
Theme Name: Bedford Executive Cars
Theme URI: https://bedfordexecutivecars.com
Author: Web Dev Lab Ltd
Author URI: https://webdevlab.co.uk
Description: Premium luxury chauffeur hire theme for Bedford Executive Cars. Multi-page with real fleet photography, Contact Form 7, Yoast SEO, WhatsApp, Google Reviews.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: bec
*/

/* ====================================================
   BEC THEME v2 — COMPLETE REBUILD
   Web Dev Lab Ltd | webdevlab.co.uk
   ==================================================== */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7A2E;
  --gold-bg:     rgba(201,168,76,0.10);
  --black:       #0D0B09;
  --near-black:  #131109;
  --deep:        #1A1710;
  --smoke:       #221F15;
  --charcoal:    #2C2918;
  --grey-dark:   #5A5540;
  --grey:        #8A8470;
  --mid-grey:    #B8B09A;
  --light-grey:  #D8D2C4;
  --cream:       #F0EBE0;
  --white:       #FDFAF4;
  --font-display:'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:   'Jost', system-ui, -apple-system, sans-serif;
  --transition:  0.3s ease;
  --max-w:       1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  background: var(--black);
  color: var(--mid-grey);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul, ol { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h4 { font-size: 1.5rem; }

/* Italic / display accent */
em { font-style: italic; color: var(--gold-light); font-family: var(--font-display); }

/* ─── LAYOUT ─── */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.container--wide  { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.container--narrow{ max-width: 860px;  margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.section          { padding: clamp(60px, 8vw, 120px) 0; }
.section--dark    { background: var(--deep); }
.section--smoke   { background: var(--smoke); }

/* ─── UTILITIES ─── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.gold-rule {
  display: block; width: 56px; height: 1px;
  background: var(--gold); margin: 18px 0 32px; opacity: 0.75;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.lead {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--light-grey);
  max-width: 640px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all var(--transition);
  cursor: pointer; border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--gold   { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline { background: transparent; border: 1px solid rgba(201,168,76,0.5); color: var(--gold-light); }
.btn--outline:hover { background: var(--gold-bg); border-color: var(--gold); }
.btn--white  { background: var(--white); color: var(--black); }
.btn--white:hover { background: var(--cream); }
.btn--sm { padding: 12px 24px; font-size: 0.72rem; }
.btn--lg { padding: 20px 52px; font-size: 0.82rem; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* WhatsApp inline button */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.35);
  padding: 13px 22px; transition: all var(--transition);
}
.btn-wa:hover { background: var(--gold-bg); border-color: var(--gold); }
.btn-wa svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ─── HEADER / NAV ─── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(16px, 5vw, 72px);
  transition: background var(--transition), box-shadow var(--transition);
  background: linear-gradient(to bottom, rgba(13,11,9,0.95) 0%, transparent 100%);
}
#site-header.scrolled {
  background: rgba(13,11,9,0.98);
  box-shadow: 0 1px 0 rgba(201,168,76,0.18);
}
#site-header.opaque { background: rgba(13,11,9,0.98); }
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 88px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 58px; width: auto; }
.site-logo__text { display: flex; flex-direction: column; }
.site-logo__name {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); line-height: 1.2;
}
.site-logo__sub {
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; }
.primary-nav > ul { display: flex; align-items: center; gap: 8px; }
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
  display: block; padding: 8px 14px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--light-grey); transition: color var(--transition); font-weight: 400;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current-page-ancestor > a { color: var(--gold); }

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: rgba(22,19,12,0.98);
  border: 1px solid rgba(201,168,76,0.18); border-top: 2px solid var(--gold);
  padding: 10px 0; opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: all var(--transition);
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}
.primary-nav li:hover > .sub-menu { opacity: 1; pointer-events: all; transform: none; }
.primary-nav .sub-menu a {
  display: block; padding: 11px 22px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid-grey); transition: all var(--transition);
}
.primary-nav .sub-menu a:hover { color: var(--gold); padding-left: 28px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 24px; }
.header-tel {
  font-size: 0.8rem; color: var(--light-grey); letter-spacing: 0.1em;
  font-weight: 400; transition: color var(--transition);
}
.header-tel:hover { color: var(--gold); }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 1px; background: var(--gold); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── HERO — HOME THREE PANEL ─── */
.hero-home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-panels {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1.5fr 1fr;
  z-index: 2;
}
.hero-panel {
  position: relative; overflow: hidden;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.hero-panel:last-child { border-right: none; }
.hero-panel__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 0.8s, transform 10s ease;
}
.hero-panel--left   .hero-panel__bg { opacity: 0.30; }
.hero-panel--centre .hero-panel__bg { opacity: 0.42; }
.hero-panel--right  .hero-panel__bg { opacity: 0.30; }
.hero-panel:hover .hero-panel__bg { transform: scale(1.04); }
.hero-panel--left:hover   .hero-panel__bg { opacity: 0.46; }
.hero-panel--centre:hover .hero-panel__bg { opacity: 0.58; }
.hero-panel--right:hover  .hero-panel__bg { opacity: 0.46; }
.hero-panel__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,0.25) 0%, rgba(13,11,9,0.82) 100%);
}
.hero-panel--centre .hero-panel__shade {
  background: linear-gradient(to bottom, rgba(13,11,9,0.1) 0%, rgba(13,11,9,0.65) 100%);
}
.hero-panel__label {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  text-align: center; width: 90%;
  opacity: 0; transition: opacity 0.4s;
  z-index: 10;
}
.hero-panel:hover .hero-panel__label { opacity: 1; }
.hero-panel__label .v-class {
  display: block; font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 400; color: var(--white); letter-spacing: 0.06em; margin-bottom: 4px;
}
.hero-panel__label .v-tag {
  display: block; font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero-panel__label a {
  display: inline-block; border: 1px solid rgba(201,168,76,0.65);
  padding: 10px 24px; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); transition: all var(--transition);
}
.hero-panel__label a:hover { background: var(--gold); color: var(--black); }

/* Hero content (centre) */
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 120px 20px 80px;
  pointer-events: none;
  width: 33.333%; /* only span centre panel */
  margin: 0 auto;
}
.hero-content h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300; line-height: 0.92;
  color: var(--white); letter-spacing: -0.01em;
}
.hero-content h1 em { display: block; font-style: italic; color: var(--gold-light); }
.hero-divider { width: 60px; height: 1px; background: var(--gold); margin: 28px auto; opacity: 0.7; }
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: var(--light-grey); margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; pointer-events: all; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; text-align: center;
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--grey);
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 12px auto 0;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: flex-end; padding-bottom: 72px;
  overflow: hidden;
}
.page-hero__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,0.3) 0%, rgba(13,11,9,0.92) 100%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__content h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
.page-hero__content .lead { margin-top: 16px; }

/* ─── BREADCRUMB ─── */
.bec-breadcrumb {
  font-size: 0.78rem; letter-spacing: 0.12em; color: var(--grey-dark);
  margin-bottom: 20px;
}
.bec-breadcrumb a { color: var(--gold); }
.bec-breadcrumb a:hover { color: var(--gold-light); }
.yoast-breadcrumb { margin-bottom: 20px; font-size: 0.78rem; color: var(--grey-dark); }
.yoast-breadcrumb a { color: var(--gold); }
.yoast-breadcrumb a:hover { color: var(--gold-light); }

/* ─── FLEET CARDS ─── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
}
.fleet-card {
  background: var(--smoke);
  border: 1px solid rgba(201,168,76,0.06);
  transition: border-color var(--transition);
  overflow: hidden; display: flex; flex-direction: column;
}
.fleet-card:hover { border-color: rgba(201,168,76,0.3); }
.fleet-card__img {
  position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--charcoal);
}
.fleet-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.fleet-card:hover .fleet-card__img img { transform: scale(1.06); }
.fleet-card__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 600; padding: 5px 12px;
}
.fleet-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.fleet-card__cat {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; font-weight: 400;
}
.fleet-card__name {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 400; color: var(--white); margin-bottom: 14px; line-height: 1.1;
}
.fleet-card__meta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px;
  align-items: center;
}
.fleet-card__meta span {
  font-size: 0.82rem; color: var(--mid-grey);
  display: flex; align-items: center; gap: 6px;
}
.fleet-card__meta span::before { content:'·'; color:var(--gold); font-size:1rem; }
.fleet-card__meta span:first-child::before { display:none; }
.fleet-card__desc {
  font-size: 0.9rem; color: var(--grey); line-height: 1.8;
  margin-bottom: 24px; flex: 1;
}
.fleet-card__actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }

/* ─── VEHICLE SINGLE ─── */
.vehicle-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end; padding-bottom: 80px; overflow: hidden;
}
.vehicle-hero__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.vehicle-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,0.2) 0%, rgba(13,11,9,0.9) 100%);
}
.vehicle-hero__content { position: relative; z-index: 2; }
.vehicle-hero__content h1 { font-size: clamp(2.4rem, 6vw, 5rem); }

.vehicle-layout {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 60px; align-items: start;
}
.vehicle-specs-box {
  background: var(--smoke); border: 1px solid rgba(201,168,76,0.12);
}
.vehicle-specs-box__header {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.vehicle-specs-box__header p {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin: 0;
}
.vehicle-spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px; border-bottom: 1px solid rgba(201,168,76,0.06);
}
.vehicle-spec-row:last-child { border-bottom: none; }
.vehicle-spec-row__label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey);
}
.vehicle-spec-row__value { font-size: 0.95rem; color: var(--white); font-weight: 400; }

.booking-box {
  background: var(--charcoal); border: 1px solid rgba(201,168,76,0.18);
  padding: 36px 28px; text-align: center; margin-top: 2px;
}
.booking-box h3 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 400;
  color: var(--white); margin-bottom: 10px;
}
.booking-box p { font-size: 0.88rem; color: var(--grey); margin-bottom: 24px; }
.booking-box .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* Gallery grid */
.vehicle-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-bottom: 48px;
}
.vehicle-gallery__main {
  grid-column: 1 / -1; aspect-ratio: 21/9; overflow: hidden; background: var(--charcoal);
}
.vehicle-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-gallery__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--smoke); }
.vehicle-gallery__thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;
}
.vehicle-gallery__thumb:hover img { transform: scale(1.05); }

/* 360 viewer */
.viewer-360 {
  background: var(--smoke); border: 1px solid rgba(201,168,76,0.12);
  padding: 48px 32px; text-align: center; margin-top: 48px;
}
.viewer-360 h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 8px; }
.viewer-360 > p { font-size: 0.9rem; color: var(--grey); margin-bottom: 28px; }
.viewer-360-canvas {
  position: relative; aspect-ratio: 16/9; max-width: 900px;
  margin: 0 auto; background: var(--charcoal); overflow: hidden;
  cursor: grab; user-select: none;
}
.viewer-360-canvas:active { cursor: grabbing; }
.viewer-360-canvas canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.viewer-360-hint {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--grey);
}
.viewer-360-icon { font-size: 4rem; opacity: 0.2; line-height: 1; }
.viewer-360-hint p { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }

/* ─── ABOUT SECTION ─── */
.about-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.stat-item { border-left: 2px solid rgba(201,168,76,0.3); padding-left: 20px; }
.stat-item__num {
  font-family: var(--font-display); font-size: 3.2rem;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-item__label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-top: 5px;
}
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-image::before {
  content:''; position:absolute; top:-16px; right:-16px;
  width:40%; height:40%; border-top:1px solid rgba(201,168,76,0.4); border-right:1px solid rgba(201,168,76,0.4);
  z-index:1; pointer-events:none;
}
.about-image::after {
  content:''; position:absolute; bottom:-16px; left:-16px;
  width:40%; height:40%; border-bottom:1px solid rgba(201,168,76,0.4); border-left:1px solid rgba(201,168,76,0.4);
  z-index:1; pointer-events:none;
}

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
.service-card {
  background: var(--smoke); border: 1px solid rgba(201,168,76,0.06);
  padding: 48px 40px; transition: border-color var(--transition), background var(--transition);
}
.service-card:hover { border-color: rgba(201,168,76,0.28); background: rgba(201,168,76,0.04); }
.service-card__icon {
  font-size: 1.8rem; margin-bottom: 24px; display: block; line-height: 1;
}
.service-card__name {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 400;
  color: var(--white); margin-bottom: 14px; line-height: 1.15;
}
.service-card__desc { font-size: 0.92rem; color: var(--grey); line-height: 1.85; }
.service-card__link {
  display: inline-block; margin-top: 24px;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px; transition: border-color var(--transition);
}
.service-card__link:hover { border-color: var(--gold); }

/* ─── TESTIMONIALS / REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; margin-top: 60px; }
.review-card {
  background: var(--smoke); border: 1px solid rgba(201,168,76,0.08);
  padding: 44px 38px; position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 14px; left: 26px;
  font-family: var(--font-display); font-size: 7rem; color: rgba(201,168,76,0.08);
  line-height: 1; pointer-events: none;
}
.review-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 4px; }
.review-card__text {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--light-grey); line-height: 1.75;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.review-card__author { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.review-card__service { font-size: 0.72rem; color: var(--gold); margin-top: 4px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: clamp(60px, 8vw, 100px) 0; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400; color: var(--black); margin-bottom: 16px;
}
.cta-banner p { font-size: 1rem; color: rgba(9,9,9,0.65); max-width: 520px; margin: 0 auto 36px; }
.cta-banner .btn-row { justify-content: center; }
.btn--dark { background: rgba(13,11,9,0.9); color: var(--gold); border: 1px solid rgba(13,11,9,0.9); }
.btn--dark:hover { background: var(--black); }
.btn--outline-dark { background: transparent; border: 1px solid rgba(13,11,9,0.4); color: var(--black); }
.btn--outline-dark:hover { background: rgba(13,11,9,0.08); }

/* ─── OCCASIONS ─── */
.occasions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2px; margin-top: 56px; }
.occasion-tile {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--charcoal); cursor: pointer;
}
.occasion-tile__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.2; transition: opacity 0.5s, transform 8s ease;
}
.occasion-tile:hover .occasion-tile__bg { opacity: 0.38; transform: scale(1.05); }
.occasion-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.94) 0%, rgba(13,11,9,0.15) 55%);
  transition: background var(--transition);
}
.occasion-tile__content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
}
.occasion-tile__content h3 {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.occasion-tile__content p { font-size: 0.82rem; color: var(--grey); line-height: 1.65; }
.occasion-tile__icon { font-size: 2.5rem; display: block; margin-bottom: 12px; opacity: 0.7; }

/* ─── WHY BEC ─── */
.why-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; margin-top: 60px; }
.why-list { display: flex; flex-direction: column; gap: 40px; }
.why-item { display: flex; gap: 22px; }
.why-item__num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 300;
  color: rgba(201,168,76,0.2); line-height: 1; flex-shrink: 0; width: 48px; text-align: right;
}
.why-item__body h4 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 8px;
}
.why-item__body p { font-size: 0.92rem; color: var(--grey); line-height: 1.85; }
.why-panel {
  position: sticky; top: 110px; background: var(--smoke);
  border: 1px solid rgba(201,168,76,0.15); padding: 52px 44px; text-align: center;
}
.why-panel__icon { font-size: 5rem; opacity: 0.5; margin-bottom: 20px; line-height: 1; display: block; }
.why-panel h3 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; margin-bottom: 14px; }
.why-panel p { font-size: 0.92rem; color: var(--grey); margin-bottom: 28px; }

/* ─── COVERAGE ─── */
.coverage-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px; margin-top: 50px; background: rgba(201,168,76,0.08);
}
.coverage-item {
  background: var(--near-black); padding: 18px 20px;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-dark); transition: all var(--transition); cursor: default;
  border: 1px solid rgba(201,168,76,0.05);
}
.coverage-item:hover { color: var(--gold); background: rgba(201,168,76,0.05); }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2px; }
.blog-card { background: var(--smoke); border: 1px solid rgba(201,168,76,0.05); overflow: hidden; transition: border-color var(--transition); }
.blog-card:hover { border-color: rgba(201,168,76,0.22); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--charcoal); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 30px 30px 36px; }
.blog-card__cat { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.blog-card__title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: var(--white); margin-bottom: 12px; line-height: 1.25; }
.blog-card__excerpt { font-size: 0.9rem; color: var(--grey); line-height: 1.8; }
.blog-card__more { display: inline-block; margin-top: 18px; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 2px; transition: border-color var(--transition); }
.blog-card__more:hover { border-color: var(--gold); }

/* ─── CONTACT FORM ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-details { display: flex; flex-direction: column; gap: 36px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-item__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
}
.contact-item__label { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey); display: block; margin-bottom: 6px; }
.contact-item a, .contact-item address { font-style: normal; font-size: 1rem; color: var(--white); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }

/* CF7 overrides */
.bec-cf7-wrap label {
  display: block; font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 8px; font-weight: 400;
}
.bec-cf7-wrap input[type=text],
.bec-cf7-wrap input[type=email],
.bec-cf7-wrap input[type=tel],
.bec-cf7-wrap input[type=date],
.bec-cf7-wrap select,
.bec-cf7-wrap textarea {
  width: 100%; background: rgba(44,41,24,0.7); border: 1px solid rgba(201,168,76,0.18);
  padding: 14px 18px; color: var(--white); font-family: var(--font-body);
  font-size: 1rem; font-weight: 300; outline: none; border-radius: 0;
  transition: border-color var(--transition); -webkit-appearance: none; appearance: none;
}
.bec-cf7-wrap input:focus, .bec-cf7-wrap select:focus, .bec-cf7-wrap textarea:focus {
  border-color: rgba(201,168,76,0.55); background: rgba(44,41,24,0.9);
}
.bec-cf7-wrap select option { background: var(--deep); color: var(--white); }
.bec-cf7-wrap textarea { resize: vertical; min-height: 130px; }
.bec-cf7-wrap .wpcf7-submit {
  width: 100%; background: var(--gold); color: var(--black); border: none;
  padding: 18px; font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  cursor: pointer; transition: background var(--transition);
}
.bec-cf7-wrap .wpcf7-submit:hover { background: var(--gold-light); }
.bec-cf7-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bec-cf7-wrap .form-group { margin-bottom: 22px; }
.bec-cf7-wrap .wpcf7-not-valid-tip { font-size: 0.78rem; color: #e57373; margin-top: 5px; display: block; }
.bec-cf7-wrap .wpcf7-response-output {
  font-size: 0.85rem; padding: 14px 18px; margin-top: 16px;
  border: 1px solid rgba(201,168,76,0.35); color: var(--gold);
}

/* Social links */
.social-links { display: flex; gap: 10px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.9rem; transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── FOOTER ─── */
#site-footer { background: var(--deep); border-top: 1px solid rgba(201,168,76,0.12); }
.footer-main { padding: 80px 0 64px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px; align-items: start; }
.footer-brand .site-logo { margin-bottom: 24px; }
.footer-brand p { font-size: 0.92rem; color: var(--grey); line-height: 1.85; max-width: 320px; }
.footer-col h5 {
  font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body); font-weight: 500; margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--grey); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-box {
  background: var(--smoke); border: 1px solid rgba(201,168,76,0.12);
  padding: 28px 24px; margin-top: 0;
}
.footer-contact-box p { font-size: 0.9rem; color: var(--mid-grey); margin-bottom: 6px; }
.footer-contact-box a { color: var(--white); font-size: 1rem; font-weight: 400; }
.footer-contact-box a:hover { color: var(--gold); }
.footer-contact-label {
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 28px clamp(20px, 5vw, 80px); display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; max-width: 1600px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey-dark); }
.footer-bottom a { color: var(--grey-dark); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }
.footer-devby { font-size: 0.78rem; }
.footer-devby a { color: var(--gold); font-weight: 500; }

/* ─── FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45); transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ─── FILTER BAR ─── */
.filter-bar { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 52px; }
.filter-btn {
  background: transparent; border: 1px solid rgba(201,168,76,0.2);
  color: var(--grey); padding: 11px 24px;
  font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold); color: var(--gold); background: var(--gold-bg);
}

/* ─── FADE IN ─── */
.bec-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.bec-fade.visible { opacity: 1; transform: none; }

/* ─── FAQ ACCORDION ─── */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 50px; }
.faq-item { background: var(--smoke); border: 1px solid rgba(201,168,76,0.07); }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; background: none; border: none; cursor: pointer;
  text-align: left; color: var(--white); transition: color var(--transition);
}
.faq-item__q:hover { color: var(--gold); }
.faq-item__q span:first-child { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; padding-right: 16px; }
.faq-item__icon { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { display: none; padding: 0 28px 22px; font-size: 0.92rem; color: var(--grey); line-height: 1.85; }
.faq-item.open .faq-item__a { display: block; }

/* ─── ENTRY CONTENT (blogs) ─── */
.entry-content {
  font-size: 1rem; color: var(--mid-grey); line-height: 1.95;
}
.entry-content h2 { font-size: 2rem; color: var(--white); margin: 36px 0 16px; }
.entry-content h3 { font-size: 1.5rem; color: var(--white); margin: 28px 0 14px; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 1.2em; }
.entry-content ul li { list-style: disc; margin-bottom: 6px; }
.entry-content ol li { list-style: decimal; margin-bottom: 6px; }
.entry-content a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); }
.entry-content a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.entry-content strong { color: var(--white); font-weight: 500; }
.entry-content blockquote {
  border-left: 2px solid var(--gold); padding: 16px 24px; margin: 24px 0;
  background: rgba(201,168,76,0.05); font-family: var(--font-display);
  font-style: italic; font-size: 1.15rem; color: var(--light-grey);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .why-layout { grid-template-columns: 1fr; gap: 52px; }
  .why-panel { position: static; }
  .vehicle-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hero-panels { display: none; }
  .hero-content { padding: 100px 20px 60px; }
  .primary-nav { display: none; position: absolute; top: 88px; left: 0; right: 0; }
  .primary-nav.open {
    display: flex; flex-direction: column;
    background: rgba(13,11,9,0.98);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 16px 0 24px;
  }
  .primary-nav.open > ul { flex-direction: column; padding: 0 clamp(16px, 5vw, 40px); }
  .primary-nav.open > ul > li > a { padding: 14px 0; border-bottom: 1px solid rgba(201,168,76,0.07); }
  .primary-nav.open .sub-menu {
    position: static; opacity: 1; pointer-events: all; transform: none;
    border: none; background: transparent; padding: 0 0 0 16px; box-shadow: none;
  }
  .nav-toggle { display: flex; }
  .header-cta .btn--outline { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .vehicle-gallery { grid-template-columns: 1fr; }
  .vehicle-gallery__main { aspect-ratio: 4/3; }
  .bec-cf7-wrap .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .fleet-card__actions { flex-direction: column; }
  .fleet-card__actions .btn { width: 100%; justify-content: center; }
}

/* ─── HERO OVERLAY FIX — darken images so text is always readable ─── */
.page-hero__img { opacity: 1 !important; }
.page-hero__overlay {
  background: linear-gradient(to bottom,
    rgba(13,11,9,0.55) 0%,
    rgba(13,11,9,0.75) 50%,
    rgba(13,11,9,0.95) 100%
  ) !important;
}
/* Vehicle hero — stronger darkening */
.vehicle-hero__overlay {
  background: linear-gradient(to bottom,
    rgba(13,11,9,0.35) 0%,
    rgba(13,11,9,0.80) 60%,
    rgba(13,11,9,0.97) 100%
  ) !important;
}
/* Hero home panels — slightly darker for text safety */
.hero-panel--centre .hero-panel__bg { opacity: 0.50 !important; }
.hero-panel--left   .hero-panel__bg { opacity: 0.35 !important; }
.hero-panel--right  .hero-panel__bg { opacity: 0.35 !important; }

/* ─── HERO FIX — panel labels work without being blocked by centre content ─── */
.hero-home { position: relative; }
.hero-panels { z-index: 2; }
.hero-content {
  width: auto !important;
  position: relative;
  z-index: 4;
  pointer-events: none;
}
.hero-panel--left,
.hero-panel--right {
  z-index: 5; /* side panels clickable above hero-content */
}
.hero-panel--centre { z-index: 3; }
.hero-actions { pointer-events: all; position: relative; z-index: 6; }
.hero-scroll { z-index: 4; }

/* ─── FOOTER REDESIGN — tighter, no blank space ─── */
.footer-grid {
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr !important;
  gap: 40px !important;
}
.footer-main { padding: 64px 0 52px !important; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; }

/* Fleet column — add Services below it */
.footer-fleet-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  grid-column: span 2;
}
.footer-col ul li { margin-bottom: 8px; }

/* ─── ARCHIVE — "blog" header background ─── */
.archive-header {
  position: relative; min-height: 380px;
  display: flex; align-items: flex-end; padding-bottom: 64px;
  overflow: hidden; background: var(--near-black);
}
.archive-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.archive-header .container { position: relative; z-index: 2; }

/* ─── SERVICE PAGE — richer content styles ─── */
.service-intro-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; margin-bottom: 80px;
}
.service-intro-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.service-intro-img img { width:100%; height:100%; object-fit:cover; }
.service-gallery-3 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px;
  margin: 60px 0;
}
.service-gallery-3 img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.service-features {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 2px; margin: 52px 0;
}
.service-feature {
  background: var(--smoke); padding: 36px 32px;
  border: 1px solid rgba(201,168,76,0.07);
}
.service-feature__icon { font-size: 1.6rem; margin-bottom: 16px; display: block; }
.service-feature h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.service-feature p { font-size: 0.9rem; color: var(--grey); line-height: 1.8; }
.service-testimonial {
  background: var(--smoke); border-left: 2px solid var(--gold);
  padding: 40px 48px; margin: 52px 0; position: relative;
}
.service-testimonial::before {
  content: '"'; position: absolute; top: 8px; left: 20px;
  font-family: var(--font-display); font-size: 6rem;
  color: rgba(201,168,76,0.1); line-height: 1;
}
.service-testimonial blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.25rem; color: var(--light-grey); line-height: 1.75;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.service-testimonial cite {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-style: normal;
}
.service-process {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 2px; margin: 52px 0;
}
.service-process__step {
  background: var(--charcoal); padding: 36px 28px;
  border: 1px solid rgba(201,168,76,0.06); text-align: center;
}
.service-process__num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: rgba(201,168,76,0.3); line-height: 1; margin-bottom: 14px;
}
.service-process__step h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.service-process__step p { font-size: 0.85rem; color: var(--grey); line-height: 1.8; }

@media(max-width:900px){
  .service-intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-gallery-3 { grid-template-columns: 1fr 1fr; }
  .footer-fleet-services { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── HERO PANEL HOVER FIX ─── */
.hero-home { isolation: isolate; }
.hero-panel--left,
.hero-panel--right { pointer-events: all; z-index: 5; }
.hero-panel--centre { pointer-events: all; z-index: 3; }
.hero-content {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 38% !important;
  min-width: 320px !important;
  pointer-events: none !important;
  z-index: 4 !important;
  padding: 0 !important;
  text-align: center;
}
.hero-actions { display: none !important; }
.hero-scroll { z-index: 4; pointer-events: none; }
@media(max-width:768px){
  .hero-content {
    position: relative !important;
    left: auto !important; top: auto !important;
    transform: none !important;
    width: 100% !important; min-width: 0 !important;
    padding: 100px 24px 60px !important;
  }
}

/* ─── 5-COLUMN FOOTER ─── */
@media(max-width:1200px){
  #site-footer [style*="grid-template-columns:1.6fr"] {
    grid-template-columns:1fr 1fr 1fr !important;
  }
}
@media(max-width:768px){
  #site-footer [style*="grid-template-columns:1.6fr"] {
    grid-template-columns:1fr 1fr !important;
    gap:28px !important;
  }
}
@media(max-width:480px){
  #site-footer [style*="grid-template-columns:1.6fr"] {
    grid-template-columns:1fr !important;
  }
}

/* ─── OCCASIONS 4×2 GRID ─── */
.bec-occasions-grid {
  grid-template-columns: repeat(4,1fr) !important;
}
.bec-occasions-grid .occasion-tile { aspect-ratio: 3/4; }
@media(max-width:1000px){
  .bec-occasions-grid { grid-template-columns:repeat(2,1fr) !important; }
}
@media(max-width:600px){
  .bec-occasions-grid { grid-template-columns:1fr 1fr !important; }
  .bec-occasions-grid .occasion-tile { aspect-ratio: 1/1; }
}

/* ─── SERVICE PAGE PROCESS LAYOUT ─── */
@media(max-width:900px){
  .service-intro-layout { grid-template-columns:1fr !important; }
  .service-intro-layout > div:last-child { order:-1; }
}

/* ─── SERVICE PROCESS 2-COL ─── */
@media(max-width:900px){
  .service-process-2col { grid-template-columns:1fr !important; }
  .service-process-2col > div:last-child { display:none; }
}

/* ─── COVERAGE GRID 5-COL ─── */
.coverage-grid {
  grid-template-columns: repeat(5, 1fr) !important;
}
@media(max-width:900px){
  .coverage-grid { grid-template-columns:repeat(3,1fr) !important; }
}
@media(max-width:600px){
  .coverage-grid { grid-template-columns:repeat(2,1fr) !important; }
}

/* ─── HERO: NO VISIBLE BUTTONS OVER PANELS ─── */
.hero-home .hero-actions { display:none !important; }

/* ─── SERVICE GALLERY MOSAIC ─── */
@media(max-width:768px){
  .service-gallery-mosaic { grid-template-columns:1fr 1fr !important; }
}

/* ─── FLEET CARD MOSAIC LAYOUT ─── */
.fleet-card__mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  height: 280px;
  overflow: hidden;
  background: var(--charcoal);
}
.fleet-card__mosaic-main {
  position: relative; overflow: hidden; height: 100%;
}
.fleet-card__mosaic-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.fleet-card:hover .fleet-card__mosaic-main img { transform: scale(1.05); }

.fleet-card__mosaic-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  padding-left: 2px;
  height: 100%;
}
.fleet-card__mosaic-thumb { overflow: hidden; position: relative; }
.fleet-card__mosaic-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.fleet-card:hover .fleet-card__mosaic-thumb img { transform: scale(1.06); }

/* ─── FLEET CARD: keep old img hidden if mosaic present ─── */
.fleet-card__img { display: none; }
.fleet-card { border: 1px solid rgba(201,168,76,0.07); }

/* ─── HOME.PHP BLOG RESPONSIVE ─── */
@media(max-width:900px){
  .bec-home-featured { grid-template-columns:1fr !important; }
  .bec-home-featured > a > div:first-child { min-height:280px !important; }
}
@media(max-width:700px){
  .bec-home-large-2 { grid-template-columns:1fr !important; }
  .bec-home-grid-3  { grid-template-columns:1fr 1fr !important; }
}
@media(max-width:480px){
  .bec-home-grid-3  { grid-template-columns:1fr !important; }
}
