/* ==========================================================================
   LEGIT MAG MAGE | Master Alloy Wheel Refurbishment & Custom Finishes
   MRC & Mag Doctor Inspired High-End South African Automotive Workshop Theme
   Aesthetic:
   - Rich Obsidian Dark Theme (#0b0d11 / #12151b / #1a1e26)
   - Punchy Mag Wheel Racing Orange / Crimson Red Accents (#ff4500 / #e11d48)
   - High-contrast typography with bold condensed headings (Montserrat / Bebas Neue)
   - Authentic workshop photography, 6-service circular cards, Google Reviews
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

:root {
  /* Surfaces */
  --bg-darkest: #07090c;
  --bg-main: #0c0f14;
  --bg-card: #131720;
  --bg-card-hover: #191e2b;
  --bg-surface: #1e2433;
  --bg-light-strip: #ffffff;

  /* Accent Colors (MRC Racing Orange/Red & WhatsApp Green) */
  --accent-orange: #ff4a11;
  --accent-orange-hover: #e03a04;
  --accent-crimson: #e11d48;
  --accent-whatsapp: #25d366;
  --accent-whatsapp-hover: #20ba59;

  /* Borders */
  --border-dark: #222938;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-orange: rgba(255, 74, 17, 0.4);

  /* Typography */
  --text-white: #ffffff;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  /* Fonts */
  --font-bebas: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  background-color: var(--bg-darkest);
  color: var(--text-dim);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--bg-darkest);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR (Black & Red Strip)
   ========================================================================== */
.top-strip {
  background: #050608;
  border-bottom: 1px solid var(--border-dark);
  padding: 8px 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-strip-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-orange);
}

.top-strip-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-strip-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-weight: 500;
}

.top-strip-link:hover {
  color: var(--text-white);
}

/* ==========================================================================
   HEADER & NAVBAR (MRC Style Black Bar)
   ========================================================================== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 15, 20, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}

.brand-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-logo {
  height: 44px;
  width: auto;
  /* logo-light.png is already white, just add shadow */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cbd5e1;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-orange);
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-ghost:hover {
  background: #ffffff;
  color: var(--bg-darkest);
}

.btn-orange {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
}

.btn-orange:hover {
  background: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  box-shadow: 0 4px 16px rgba(255, 74, 17, 0.4);
}

.btn-whatsapp {
  background: var(--accent-whatsapp);
  color: #ffffff;
  border-color: var(--accent-whatsapp);
}

.btn-whatsapp:hover {
  background: var(--accent-whatsapp-hover);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   MRC HERO SECTION (Dramatic High-End Wheel Background)
   ========================================================================== */
.hero-mrc {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 90px;
  overflow: hidden;
  background-color: #07090c;
  border-bottom: 3px solid var(--accent-orange);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: contrast(1.15) brightness(0.95);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 9, 12, 0.35) 0%, rgba(7, 9, 12, 0.85) 75%),
              linear-gradient(180deg, rgba(7, 9, 12, 0.45) 0%, rgba(7, 9, 12, 0.95) 100%);
}

.hero-mrc-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.hero-subhead-tag {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff8255;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-main-title {
  font-family: var(--font-bebas);
  font-size: clamp(3rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

.hero-main-title span {
  color: var(--accent-orange);
}

.hero-desc-pill {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.04em;
  margin: 0 auto 28px;
  max-width: 720px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   WHITE 3-COLUMN FEATURE STRIP (MRC Blueprint Exact Match)
   ========================================================================== */
.white-feature-section {
  background: #ffffff;
  color: #1e293b;
  padding: 72px 0;
  border-bottom: 1px solid #e2e8f0;
}

.white-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 36px;
  align-items: center;
}

.wf-col h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.wf-col p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 24px;
}

.wf-center-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.wf-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wf-right-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.wf-right-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   WHY CHOOSE US (Dark Section with Workshop Photos)
   ========================================================================== */
.dark-section {
  background: var(--bg-main);
  padding: 84px 0;
  border-bottom: 1px solid var(--border-dark);
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 20px;
}

.sh-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 0.02em;
}

.sh-subtitle {
  font-size: 0.9375rem;
  color: var(--text-dim);
  max-width: 600px;
  margin-top: 6px;
}

.workshop-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workshop-photo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.workshop-photo-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

.wp-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.wp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.workshop-photo-card:hover .wp-img-wrap img {
  transform: scale(1.05);
}

.wp-content {
  padding: 20px;
}

.wp-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.wp-content p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ==========================================================================
   OUR CORE SERVICES: A SOLUTION FOR EVERY WHEEL (6 Circular Icon Cards)
   ========================================================================== */
.services-section {
  background: var(--bg-darkest);
  padding: 84px 0;
  border-bottom: 1px solid var(--border-dark);
}

.services-top-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.services-top-text h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-orange);
  line-height: 1.15;
  margin-bottom: 16px;
}

.services-top-text p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 24px;
}

.services-top-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.services-top-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.six-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.circular-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.circular-service-card:hover {
  border-color: var(--accent-orange);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.service-circle-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  background: rgba(255, 74, 17, 0.08);
}

.circular-service-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.circular-service-card p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   WORKSHOP ADVERT & SPECIALS SHOWCASE
   ========================================================================== */
.advert-section {
  padding: 85px 0;
  background: #080b10;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.advert-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.advert-badge-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #ff7847;
  background: rgba(255, 74, 17, 0.12);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 74, 17, 0.35);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.advert-main-heading {
  font-family: var(--font-bebas);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 8px;
}

.advert-section-heading p {
  color: var(--text-dim);
  font-size: 0.9375rem;
}

.slides-advert-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(135deg, #131822 0%, #0c1017 100%);
  border: 2px solid rgba(255, 74, 17, 0.45);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.7), inset 0 0 24px rgba(255, 74, 17, 0.05);
}

.slides-advert-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 74, 17, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Auto-Slide Progress Bar */
.advert-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  overflow: hidden;
}

.advert-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-orange), #ff8255);
  box-shadow: 0 0 10px rgba(255, 74, 17, 0.8);
  transition: width 0.05s linear;
}

.slides-advert-track {
  position: relative;
  min-height: 490px;
  overflow: hidden;
}

.advert-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(45px);
  display: flex;
  align-items: center;
}

.advert-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.advert-slide.prev-slide {
  transform: translateX(-45px);
}

.advert-slide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 44px 50px;
  align-items: center;
  width: 100%;
}

.slide-deal-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-orange);
  background: rgba(255, 74, 17, 0.14);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.slide-title {
  font-family: var(--font-bebas);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.slide-desc {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.slide-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.slide-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1f5f9;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.slide-perk .perk-check {
  color: #10b981;
  font-weight: 900;
  font-size: 1.1rem;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.slide-phone {
  color: var(--text-dim);
  font-size: 0.875rem;
}

.slide-phone strong {
  color: var(--accent-orange);
}

.advert-slide-media {
  position: relative;
}

.slide-img-frame {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 2px solid #232936;
  box-shadow: 0 14px 32px rgba(0,0,0,0.6);
}

.slide-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.advert-slide:hover .slide-img-frame img {
  transform: scale(1.04);
}

.slide-photo-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(7, 9, 12, 0.88);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 74, 17, 0.4);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* Slider Nav Buttons */
.advert-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 19, 26, 0.88);
  border: 1px solid #2d3748;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.advert-nav-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: 0 0 14px rgba(255, 74, 17, 0.6);
}

.advert-prev-btn {
  left: 16px;
}

.advert-next-btn {
  right: 16px;
}

/* Slide Dots */
.advert-dots-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 0 22px;
}

.advert-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #232936;
  border: 1px solid #3b4556;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.advert-dot:hover {
  border-color: var(--accent-orange);
}

.advert-dot.active {
  width: 32px;
  border-radius: 8px;
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(255, 74, 17, 0.5);
}

/* ==========================================================================
   INTERACTIVE REFRESHED WHEELS: SWIPE TO COMPARE
   ========================================================================== */
.case-studies-section {
  background: #06080b;
  padding: 85px 0;
  border-bottom: 1px solid var(--border-dark);
}

.refreshed-header-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-tag-pill {
  display: inline-block;
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-orange);
  background: rgba(255, 74, 17, 0.1);
  border: 1px solid rgba(255, 74, 17, 0.35);
  border-radius: 50px;
  text-transform: uppercase;
}

.case-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.case-tab-btn {
  background: #11151e;
  color: var(--text-dim);
  border: 1px solid var(--border-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}

.case-tab-btn:hover {
  color: #ffffff;
  border-color: #3b4556;
}

.case-tab-btn.active {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 14px rgba(255, 74, 17, 0.35);
}

.comparison-case-wrapper {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-case-wrapper.active {
  display: block;
  animation: fadeInCase 0.35s ease;
}

@keyframes fadeInCase {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.comparison-card {
  background: #0f131a;
  border: 1px solid #232936;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.65);
}

.swipe-hint-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  background: rgba(255, 74, 17, 0.08);
  border-bottom: 1px solid rgba(255, 74, 17, 0.2);
  color: #ff8255;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  background: #000000;
}

.comp-img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comp-img-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.comp-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.comp-before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.comp-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
}

.label-before {
  left: 20px;
  background: rgba(220, 38, 38, 0.92);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.label-after {
  right: 20px;
  background: rgba(16, 185, 129, 0.92);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.comp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 10;
  pointer-events: none;
  transform: translateX(-50%);
}

.comp-handle-line {
  width: 3px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.8), 0 0 6px var(--accent-orange);
  margin: 0 auto;
}

.comp-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6), 0 0 14px rgba(255, 74, 17, 0.8);
  border: 2px solid #ffffff;
  cursor: ew-resize;
}

.comp-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 15;
  margin: 0;
  padding: 0;
}

.case-meta-bar {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #232936;
}

.case-meta-info h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.case-meta-info p {
  color: var(--text-dim);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   LOCATION & CONTACT DETAILS (Nigel Facility)
   ========================================================================== */
.contact-block-section {
  background: var(--bg-main);
  padding: 72px 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 32px;
}

.contact-card-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 12px;
}

.contact-listing {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-listing li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
}

.contact-listing svg {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-listing strong {
  display: block;
  color: #ffffff;
}

.contact-listing a {
  color: var(--accent-orange);
  font-weight: 600;
}

.hours-table-dark {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.hours-table-dark tr {
  border-bottom: 1px solid var(--border-dark);
}

.hours-table-dark td {
  padding: 10px 0;
  color: var(--text-dim);
}

.hours-table-dark td:last-child {
  text-align: right;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   FOOTER (MRC Style Dark Footer)
   ========================================================================== */
.site-footer {
  background: #06080b;
  color: #64748b;
  padding: 64px 0 28px;
  border-top: 2px solid var(--accent-orange);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8125rem;
}

.footer-nav a {
  color: #94a3b8;
}

.footer-nav a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.75rem;
}

/* ==========================================================================
   TRUSTED PARTNERS SECTION (SLIDING LOGOS / MARQUEE)
   ========================================================================== */
.trusted-partners-section {
  background: #080a0f;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 55px 0 65px;
  position: relative;
  overflow: hidden;
}

.trusted-partners-section::before,
.trusted-partners-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.trusted-partners-section::before {
  left: 0;
  background: linear-gradient(to right, #080a0f 0%, transparent 100%);
}

.trusted-partners-section::after {
  right: 0;
  background: linear-gradient(to left, #080a0f 0%, transparent 100%);
}

.partners-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 36px;
}

.partners-tag-pill {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 74, 17, 0.12);
  border: 1px solid var(--border-orange);
  border-radius: 999px;
  color: var(--accent-orange);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.partners-title {
  font-family: var(--font-bebas);
  font-size: 2.3rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.partners-subtitle {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.partner-slides-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.partner-marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: partnerMarquee 26s linear infinite;
}

.partner-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes partnerMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  flex: 0 0 340px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 30px rgba(255, 74, 17, 0.15);
}

.partner-logo-box {
  background: #ffffff;
  border-radius: 8px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.partner-logo {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
}

.partner-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.partner-role {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 10px;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  padding: 3px 10px;
}

.partner-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

/* ==========================================================================
   DELIVERY & LOGISTICS CALLOUTS
   ========================================================================== */
.delivery-banner-section {
  background: linear-gradient(135deg, #10141d 0%, #171d2b 100%);
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--accent-orange);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 36px 0 24px;
}

.delivery-banner-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.delivery-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(255, 74, 17, 0.15);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.delivery-banner-content h3 {
  font-family: var(--font-bebas);
  font-size: 1.65rem;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.delivery-banner-content p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 12px;
}

.delivery-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.delivery-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8125rem;
  color: #e2e8f0;
}

.delivery-pill-item strong {
  color: var(--accent-orange);
}

.delivery-badge-alert {
  margin-top: 18px;
  background: rgba(255, 74, 17, 0.08);
  border: 1px solid var(--border-orange);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  color: #e2e8f0;
  line-height: 1.45;
}

.delivery-badge-alert .dba-icon {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .white-feature-grid,
  .services-top-split,
  .contact-duo-grid {
    grid-template-columns: 1fr;
  }

  .workshop-photo-grid,
  .six-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advert-slide-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 30px;
  }

  .slide-img-frame {
    height: 320px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   MOBILE (max-width: 768px) — Compact layout, less scrolling
   ========================================================================== */
@media (max-width: 768px) {

  /* ── Hamburger & Nav ── */
  .mobile-menu-btn { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,13,19,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 18px;
    border-bottom: 2px solid var(--accent-orange);
    z-index: 99;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 11px 24px;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* ── Top Strip: hide address, keep phone/email only ── */
  .top-strip-left { display: none; }
  .top-strip-right { width: 100%; justify-content: center; }

  /* ── Hero: much shorter ── */
  .hero-mrc {
    min-height: 360px;
    padding: 70px 16px 48px;
  }
  .hero-subhead-tag { font-size: 0.7rem; letter-spacing: 0.12em; margin-bottom: 8px; }
  .hero-main-title { font-size: clamp(1.9rem, 7vw, 2.75rem); margin-bottom: 10px; }
  .hero-desc-pill { font-size: 0.8rem; margin-bottom: 18px; }
  .hero-btn-row { gap: 8px; }
  .hero-btn-row .btn { padding: 10px 16px; font-size: 0.75rem; }

  /* ── Partners Section ── */
  .trusted-partners-section { padding: 36px 0; }
  .partners-header { margin-bottom: 18px; }
  .partners-title { font-size: 1.5rem; }
  .partners-subtitle { font-size: 0.8125rem; }
  .partner-card { flex: 0 0 240px; padding: 14px 14px; gap: 12px; }
  .partner-logo-box { height: 60px; padding: 8px 14px; }
  .partner-logo { max-height: 38px; }

  /* ── White About Section: compact ── */
  .white-feature-section { padding: 32px 0; }
  .white-feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .wf-center-img {
    aspect-ratio: 16 / 7;
    order: -1;
    max-height: 160px;
  }
  .wf-col h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .wf-col p { font-size: 0.85rem; margin-bottom: 12px; line-height: 1.5; }
  .wf-right-thumb { aspect-ratio: 16/7; margin-top: 10px; max-height: 100px; }

  /* ── Why Choose Us ── */
  .dark-section { padding: 40px 0; }
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
  .sh-title { font-size: 1.45rem; }
  .workshop-photo-grid,
  .six-services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .wp-img-wrap { aspect-ratio: 4/3; }
  .wp-content { padding: 12px; }
  .wp-content h4 { font-size: 0.8rem; margin-bottom: 4px; }
  .wp-content p { font-size: 0.75rem; }

  /* ── Services Section ── */
  .services-section { padding: 40px 0; }
  .services-top-split { gap: 20px; margin-bottom: 28px; }
  .services-top-text h2 { font-size: 1.5rem; margin-bottom: 10px; }
  .services-top-text p { font-size: 0.875rem; margin-bottom: 14px; }
  .services-top-thumb { aspect-ratio: 16/7; max-height: 150px; }
  .six-services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .circular-service-card { padding: 18px 14px; }
  .service-circle-icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .circular-service-card h4 { font-size: 0.8rem; }
  .circular-service-card p { font-size: 0.75rem; }

  /* ── Delivery Banner ── */
  .delivery-banner-section { padding: 18px 16px; margin: 20px 0 14px; }
  .delivery-banner-grid { grid-template-columns: 1fr; gap: 12px; }
  .delivery-banner-icon { width: 44px; height: 44px; }
  .delivery-banner-content h3 { font-size: 1.2rem; }
  .delivery-pills-row { gap: 7px; }
  .delivery-pill-item { font-size: 0.75rem; padding: 5px 9px; }

  /* ── Advert / Specials Slider ── */
  .advert-section { padding: 40px 0; }
  .advert-main-heading { font-size: 2rem; }
  .advert-slide-grid { grid-template-columns: 1fr; gap: 16px; padding: 20px 14px; }
  .slide-title { font-size: 1.5rem; }
  .slide-desc { font-size: 0.8rem; margin-bottom: 14px; }
  .slide-img-frame { height: 200px; }
  .slide-perks { gap: 7px; margin-bottom: 16px; }
  .slide-perk { font-size: 0.78rem; }
  .slide-actions { gap: 12px; }
  .slide-phone { font-size: 0.78rem; }
  .advert-nav-btn { width: 34px; height: 34px; }
  .advert-prev-btn { left: 6px; }
  .advert-next-btn { right: 6px; }

  /* ── Before & After ── */
  .case-studies-section { padding: 40px 0; }
  .comparison-slider { height: 260px; }
  .case-meta-bar { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
  .case-meta-bar .btn { width: 100%; text-align: center; }
  .case-meta-info h4 { font-size: 0.95rem; }
  .case-meta-info p { font-size: 0.8rem; }
  .case-tab-btn { padding: 8px 16px; font-size: 0.75rem; }

  /* ── Contact ── */
  .contact-block-section { padding: 40px 0; }
  .contact-duo-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── Footer ── */
  .footer-columns { grid-template-columns: 1fr; gap: 24px; }
  .footer-main { padding: 40px 0 24px; }

  /* ── General ── */
  .section-header-split .btn { width: 100%; text-align: center; justify-content: center; }
  .nav-actions .btn-ghost { display: none; } /* hide Get Quote on tiny screens, WhatsApp is enough */
}
