/* =============================================
   Lancaster Profiles - Main Stylesheet
   Based on RPFabs layout, Red colour scheme
   ============================================= */

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

:root {
  --red:        #cc1111;
  --red-dark:   #a50e0e;
  --red-light:  #e52222;
  --navy:       #141d27;
  --navy-mid:   #1c2a38;
  --navy-light: #243347;
  --white:      #ffffff;
  --offwhite:   #f5f5f5;
  --grey:       #b0b8c1;
  --dark-text:  #1a1a1a;
  --font-main:  'Barlow', 'Arial Narrow', Arial, sans-serif;
  --font-head:  'Barlow Condensed', 'Impact', Arial Narrow, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

/* =============================================
   TOP ANNOUNCEMENT BAR
   ============================================= */
.top-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.top-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-word {
  font-family: 'Goldman', 'Barlow Condensed', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: url('logo-icon.png') center/contain no-repeat;
  flex-shrink: 0;
  display: block;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-img-footer {
  height: 38px;
  margin-bottom: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-text .tagline {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-brand .logo-icon {
  width: 42px;
  height: 42px;
}

.footer-brand .logo-word {
  font-size: 22px;
}

/* Split card (CNC Machining - two images side by side) */
.service-card-split .service-card-split-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
}

.service-card-split .service-card-split-inner .service-card-bg {
  position: relative;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.service-card-split > .service-card-bg {
  display: none;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

nav a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}

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

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-mid);
  border: 2px solid var(--red);
  border-radius: 4px;
  padding: 8px 14px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.phone-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.phone-btn svg {
  fill: var(--white);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.contact-btn {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: brightness(0.9) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 36%, transparent 100%);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 45%, rgba(6,10,22,0.25) 70%, rgba(6,10,22,0.5) 100%),
    linear-gradient(to top, var(--navy) 0%, transparent 20%),
    linear-gradient(to bottom, rgba(6,10,22,0.4) 0%, transparent 15%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 640px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 16px;
  color: var(--grey);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 4px;
  transition: background 0.2s;
}

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

.btn-primary svg {
  fill: var(--white);
  width: 16px;
  height: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-secondary svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

.hero-badge {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
  max-width: 420px;
}

.hero-badge p {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
}

.accreditation-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.accreditation-badges img {
  height: 52px;
  width: auto;
  opacity: 0.75;
  border-radius: 3px;
}

/* =============================================
   SERVICE CATEGORY CARDS (below hero)
   ============================================= */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  cursor: pointer;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,22,0.92) 0%, rgba(10,15,22,0.3) 60%, transparent 100%);
  transition: background 0.3s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(140,10,10,0.85) 0%, rgba(10,15,22,0.4) 70%, transparent 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
}

.service-card-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.service-card-content p {
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 0.2s;
}

.service-card:hover .service-card-link {
  background: var(--red);
}

.service-card-link svg {
  fill: var(--white);
  width: 12px;
  height: 12px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  background: var(--white);
  padding: 100px 24px;
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark-text);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-text .btn-primary {
  margin-top: 12px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.about-img {
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-light);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img.tall {
  grid-row: span 2;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  background: var(--navy);
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.services-grid {
  max-width: 1300px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-item {
  background: var(--navy-mid);
  padding: 40px 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(204,17,17,0.06);
  transition: height 0.3s;
}

.service-item:hover {
  border-top-color: var(--red);
  background: var(--navy-light);
}

.service-item:hover::before {
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(204,17,17,0.12);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.service-item p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-item ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-item ul li {
  font-size: 13px;
  color: var(--grey);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-item ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 11px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: gap 0.2s;
  position: relative;
  z-index: 1;
}

.service-link:hover {
  gap: 14px;
}

.service-link svg {
  fill: var(--red);
  width: 14px;
  height: 14px;
}

.services-cta {
  text-align: center;
  margin-top: 20px;
}

.services-cta p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 20px;
}

/* =============================================
   WHY CHOOSE US / FEATURES
   ============================================= */
.features {
  background: var(--offwhite);
  padding: 100px 24px;
}

.features-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-text .section-eyebrow {
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.features-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark-text);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.features-text p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-box {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-bottom: 3px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
}

.feature-box h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--red);
  padding: 50px 24px;
}

.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* =============================================
   TESTIMONIAL / QUOTE SECTION
   ============================================= */
.testimonial {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
}

.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}

.testimonial blockquote::before {
  content: '"';
  font-size: 120px;
  color: var(--red);
  opacity: 0.3;
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial cite {
  font-size: 14px;
  color: var(--grey);
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial cite strong {
  color: var(--red);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--navy);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1600&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.cta-section-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .section-eyebrow {
  color: var(--red);
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
  background: var(--navy-mid);
  padding: 100px 24px;
}

.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-eyebrow {
  color: var(--red);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(204,17,17,0.15);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text {
  padding-top: 2px;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}

.contact-detail-text span {
  font-size: 15px;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px 40px;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 30px;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-light);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

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

.form-group select {
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

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

.file-upload-area {
  position: relative;
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--navy-light);
}

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: var(--red);
  background: rgba(220,38,38,0.05);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-icon {
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.file-upload-area:hover .file-upload-icon,
.file-upload-area.drag-over .file-upload-icon {
  color: var(--red);
}

.file-upload-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 6px;
}

.file-upload-text strong {
  color: var(--white);
}

.file-upload-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
  margin: 0;
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.file-list li span.file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}

.file-list li span.file-size {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-right: 10px;
}

.file-list li button.file-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
  transition: color 0.15s;
}

.file-list li button.file-remove:hover {
  color: var(--red);
}

.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy);
  padding: 60px 24px 0;
  border-top: 3px solid var(--red);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}

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

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(204,17,17,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item .icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-box .icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-box .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item span {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom p a {
  color: var(--red);
  opacity: 0.8;
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-menu {
  display: none;
  background: var(--navy-mid);
  padding: 16px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: visible;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a:hover {
  color: var(--red);
}

.mobile-menu .mobile-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.mobile-menu .mobile-btns a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-bottom: none !important;
  padding: 11px 18px !important;
  flex: 1;
  font-size: 13px;
  min-height: 44px;
}

.mobile-menu .mobile-btns .btn-secondary {
  border: 2px solid var(--red) !important;
  color: var(--white) !important;
  background: transparent;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  nav a {
    font-size: 12px;
    padding: 8px 7px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .service-card {
    height: 300px;
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .phone-btn {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .service-cards {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    height: 260px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px;
    gap: 12px;
  }

  .about-img.tall {
    grid-row: span 1;
  }

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

  .features-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section {
    padding: 70px 20px;
  }
}

@media (max-width: 600px) {
  .logo-word {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .logo-icon {
    width: 26px;
    height: 26px;
  }

  .logo {
    gap: 7px;
  }

  .header-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .top-bar {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.5px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    object-position: 75% center;
    filter: brightness(0.7) saturate(1.2);
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(6,10,22,0.45) 0%, rgba(6,10,22,0.7) 100%);
  }

  .hero-content {
    padding: 50px 20px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form {
    padding: 30px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 36px;
  }

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

  .cta-section {
    padding: 56px 20px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns a {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Service card slide-in animation — mobile only */
  .service-card {
    opacity: 0;
    transform: translateX(-56px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .service-card:nth-child(even) {
    transform: translateX(56px);
  }

  .service-card.card-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .service-card:nth-child(2) { transition-delay: 0.08s; }
  .service-card:nth-child(3) { transition-delay: 0.16s; }
  .service-card:nth-child(4) { transition-delay: 0.24s; }
}

@media (max-width: 400px) {
  .logo-word {
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .logo-icon {
    width: 22px;
    height: 22px;
  }

  .logo {
    gap: 5px;
  }

  .header-inner {
    padding: 0 12px;
    gap: 8px;
  }
}

/* =============================================
   INNER PAGE STYLES
   ============================================= */

/* Active nav */
nav a.active {
  color: var(--red);
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-short {
  min-height: 320px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 40%, transparent 90%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 700px;
}

.page-hero-content h1 span {
  color: var(--red);
}

.page-hero-content p {
  font-size: 16px;
  color: var(--grey);
  max-width: 540px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--grey);
  transition: color 0.2s;
}

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

.breadcrumb span {
  color: rgba(255,255,255,0.35);
}

.breadcrumb span:last-child {
  color: var(--red);
}

/* Inner sections */
.inner-section {
  padding: 80px 24px;
}

.bg-white { background: var(--white); }
.bg-offwhite { background: var(--offwhite); }
.bg-navy { background: var(--navy); }
.bg-red { background: var(--red); }

.inner-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.two-col.align-center {
  align-items: center;
}

/* Dark heading */
.dark-heading {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: var(--dark-text);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 22px;
}

.body-text {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}

/* Service detail image */
.service-detail-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Capability grid */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.capability-grid.five-col {
  grid-template-columns: repeat(5, 1fr);
}

.capability-card {
  background: var(--navy-mid);
  padding: 32px 28px;
  border-top: 3px solid var(--red);
}

.capability-card.light {
  background: var(--white);
  border-top-color: var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-radius: 4px;
}

.capability-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-mid, #0D1526);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.capability-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.capability-card.light h4 {
  color: var(--dark-text);
}

.capability-card ul {
  list-style: none;
}

.capability-card ul li {
  font-size: 13px;
  color: var(--grey);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.capability-card.light ul li {
  color: #555;
}

.capability-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 10px;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-item {
  background: var(--white);
  padding: 30px 26px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-left: 3px solid var(--red);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  background: rgba(204,17,17,0.1);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Process steps */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 16px;
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.process-arrow {
  font-size: 24px;
  color: var(--red);
  padding-top: 16px;
  flex-shrink: 0;
  font-weight: 900;
}

/* Other services */
.other-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.other-service-card {
  background: var(--navy-mid);
  padding: 36px 32px;
  border-radius: 6px;
  border-top: 3px solid var(--red);
  transition: background 0.2s, transform 0.2s;
  display: block;
}

.other-service-card:hover {
  background: var(--navy-light);
  transform: translateY(-4px);
}

.other-service-card.light {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.other-service-card.light:hover {
  background: var(--offwhite);
}

.other-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,17,17,0.12);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.other-service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.other-service-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.other-service-card.light h4 {
  color: var(--dark-text);
}

.other-service-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

.other-service-card.light p {
  color: #666;
}

.service-link-dark {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

/* Services overview stats */
.services-overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.overview-stat {
  background: var(--navy);
  padding: 28px 24px;
  border-radius: 6px;
  text-align: center;
  border-bottom: 3px solid var(--red);
}

.overview-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.overview-stat-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

/* Section header dark */
.section-header .dark-heading {
  text-align: center;
}

/* Service full cards */
.service-full-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-full-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.service-full-card:nth-child(even) {
  grid-template-columns: 1fr 420px;
}

.service-full-card:nth-child(even) .service-full-img {
  order: 2;
}

.service-full-card:nth-child(even) .service-full-body {
  order: 1;
}

.service-full-img {
  position: relative;
  overflow: hidden;
}

.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-full-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.service-full-body {
  padding: 48px 44px;
}

.service-full-body h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-text);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-full-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-full-list {
  list-style: none;
  margin-bottom: 28px;
}

.service-full-list li {
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-full-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 11px;
}

.service-full-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  background: transparent;
}

.btn-secondary-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Specs grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.spec-card {
  background: var(--navy-mid);
  padding: 28px 24px;
  text-align: center;
  border-top: 3px solid var(--red);
}

.spec-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.spec-value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

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

.value-card {
  background: var(--navy-mid);
  padding: 36px 30px;
  border-top: 3px solid var(--red);
  transition: background 0.2s;
}

.value-card:hover {
  background: var(--navy-light);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,17,17,0.12);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* Equipment grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.equipment-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--red);
}

.equipment-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,17,17,0.12);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.equipment-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.equipment-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.equipment-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Highlight block (4th axis) */
.highlight-block {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 48px 44px;
  border-left: 4px solid rgba(255,255,255,0.3);
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-icon {
  width: 68px;
  height: 68px;
  background: rgba(204,17,17,0.15);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-content h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.highlight-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Machine cards (CNC machining page) */
.machine-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.machine-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.machine-card-header {
  background: var(--navy);
  padding: 28px 32px 24px;
}

.machine-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.machine-badge-grey {
  background: rgba(255,255,255,0.2);
}

.machine-card-header h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 4px;
}

.machine-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.machine-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.machine-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 32px;
  border-bottom: 1px solid #f0f0f0;
  gap: 16px;
}

.machine-specs li:last-child {
  border-bottom: none;
}

.machine-specs li span {
  font-size: 13px;
  color: var(--grey);
  flex-shrink: 0;
}

.machine-specs li strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

@media (max-width: 768px) {
  .machine-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Section subtext */
.section-subtext {
  font-size: 15px;
  color: var(--grey);
  margin-top: 8px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Parts gallery */
.parts-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.parts-gallery-item {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.parts-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.parts-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.parts-gallery-caption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--grey);
  border-top: 1px solid #f0f0f0;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .parts-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .parts-gallery {
    grid-template-columns: 1fr;
  }
}

/* Contact map */
.contact-map {
  margin: 28px 0 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1a1a2e;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.map-directions-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.map-directions-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.map-directions-link svg {
  fill: var(--red);
  flex-shrink: 0;
}

.contact-tips {
  background: rgba(204,17,17,0.1);
  border: 1px solid rgba(204,17,17,0.3);
  border-radius: 6px;
  padding: 24px 28px;
  margin-top: 36px;
}

.contact-tips h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.contact-tips ul {
  list-style: none;
}

.contact-tips ul li {
  font-size: 13px;
  color: var(--grey);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.contact-tips ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 11px;
}

/* =============================================
   RESPONSIVE - INNER PAGES
   ============================================= */
@media (max-width: 1100px) {
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid.five-col {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .service-full-card,
  .service-full-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-full-card:nth-child(even) .service-full-img,
  .service-full-card:nth-child(even) .service-full-body {
    order: unset;
  }

  .service-full-img {
    height: 280px;
  }
}

@media (max-width: 900px) {
  .inner-section {
    padding: 56px 20px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail-img img {
    height: auto;
    object-fit: contain;
  }

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

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

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

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .process-step {
    max-width: 300px;
    width: 100%;
  }

  .other-services {
    grid-template-columns: 1fr;
  }

  .highlight-block {
    flex-direction: column;
    padding: 32px 24px;
  }

  .services-overview-stats {
    grid-template-columns: 1fr 1fr;
  }

  .service-full-body {
    padding: 32px 24px;
  }

  .machine-card-header {
    padding: 22px 24px 18px;
  }

  .machine-specs li {
    padding: 11px 24px;
  }
}

@media (max-width: 600px) {
  .inner-section {
    padding: 44px 16px;
  }

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

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

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

  .capability-grid.five-col {
    grid-template-columns: 1fr;
  }

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

  .page-hero-content {
    padding: 48px 20px;
  }

  .page-hero {
    min-height: 320px;
  }

  .page-hero-short {
    min-height: 240px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .machine-specs li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 20px;
  }

  .machine-specs li strong {
    text-align: left;
  }

  .other-service-card {
    padding: 24px 20px;
  }

  .contact-map iframe {
    height: 200px;
  }

  .process-step {
    max-width: 100%;
    text-align: center;
  }

  .highlight-block {
    padding: 28px 20px;
  }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   PAGE HERO VIDEO VARIANT
   ============================================= */
.page-hero-video-hero {
  min-height: 480px;
}

.page-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.45) saturate(1.2);
}

.page-hero-overlay-full {
  background: linear-gradient(to right, rgba(6,10,22,0.85) 0%, rgba(6,10,22,0.4) 60%, rgba(6,10,22,0.2) 100%) !important;
}

/* =============================================
   AUTO LOADER SECTION
   ============================================= */
.autoloader-section {
  background: var(--navy);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid rgba(204,17,17,0.2);
}

.autoloader-inner {
  position: relative;
}

.autoloader-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 32px;
}

.autoloader-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.autoloader-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.autoloader-text p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
}

.autoloader-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 340px;
}

.autoloader-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}

.autoloader-stat:hover {
  background: rgba(204,17,17,0.08);
}

.autoloader-stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.autoloader-stat-label {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .autoloader-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .autoloader-stats {
    min-width: unset;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .autoloader-stats {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-video-hero {
    min-height: 380px;
  }
}


/* =============================================
   ACTIVE NAV LINK
   ============================================= */
nav a.active {
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}

.mobile-menu a.active {
  color: var(--red);
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--red-dark);
}

.back-to-top svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .back-to-top {
    bottom: 72px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* =============================================
   FOOTER POLISH
   ============================================= */
footer {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
}

/* =============================================
   MAP DARK FRAME
   ============================================= */
.contact-map {
  border: 2px solid rgba(204,17,17,0.4);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.contact-map::before {
  content: '📍  LUNE INDUSTRIAL ESTATE · LANCASTER';
  display: block;
  background: var(--navy-mid);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(204,17,17,0.3);
}

/* =============================================
   ACCREDITATION STRIP
   ============================================= */
.accred-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
}

.accred-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.accred-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.accred-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.accred-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 20px;
}

.accred-badge svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex-shrink: 0;
}

.accred-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accred-badge-text strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.accred-badge-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .accred-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .accred-badges {
    width: 100%;
  }

  .accred-badge {
    flex: 1;
  }
}

/* =============================================
   HERO CYCLE ANIMATION
   ============================================= */
#heroCycle {
  color: var(--red);
  transition: opacity 0.4s ease;
  display: inline-block;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--white);
  padding: 80px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.why-us-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-us-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-us-item:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(204,17,17,0.08);
}

.why-us-icon {
  width: 56px;
  height: 56px;
  background: rgba(204,17,17,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-us-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
}

.why-us-item h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.why-us-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-us-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .why-us-inner {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   FILE FORMAT BADGES
   ============================================= */
.file-format-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}

.file-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 3px;
}

.file-badge-note {
  background: transparent;
  border-color: transparent;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border-top: 2px solid var(--red);
  padding: 16px 24px;
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--red);
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept {
  background: var(--red);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--red-dark);
}

.cookie-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.15);
}


/* =============================================
   LIGHT SECTION TEXT COLOUR FIXES
   Overrides globally-white heading/text rules
   when sections have a white or off-white bg
   ============================================= */
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5,
.bg-offwhite h1, .bg-offwhite h2, .bg-offwhite h3, .bg-offwhite h4, .bg-offwhite h5 {
  color: var(--navy) !important;
}

.bg-white .section-header h2,
.bg-offwhite .section-header h2 {
  color: var(--navy) !important;
}

.bg-white p:not(.section-eyebrow),
.bg-offwhite p:not(.section-eyebrow) {
  color: #444;
}

.bg-white li,
.bg-offwhite li {
  color: #444;
}

/* Keep dark-bg-specific overrides intact */
.bg-white .other-service-card h4,
.bg-offwhite .other-service-card h4 {
  color: var(--navy) !important;
}

/* Restore white text on dark sub-components that sit inside light sections */
.bg-white .machine-card-header h3,
.bg-offwhite .machine-card-header h3,
.bg-white .machine-card-header h4,
.bg-offwhite .machine-card-header h4 {
  color: var(--white) !important;
}

.bg-white .machine-card-header p,
.bg-offwhite .machine-card-header p {
  color: rgba(255,255,255,0.6) !important;
}

.bg-white .capability-card:not(.light) h4,
.bg-offwhite .capability-card:not(.light) h4 {
  color: var(--white) !important;
}

.bg-white .capability-card:not(.light) li,
.bg-offwhite .capability-card:not(.light) li {
  color: rgba(255,255,255,0.75) !important;
}

/* =============================================
   STEEL FAB GALLERY
   ============================================= */
.fab-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fab-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}

.fab-gallery-main img:hover {
  opacity: 0.88;
}

.fab-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fab-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}

.fab-gallery-grid img:hover {
  opacity: 0.88;
}

@media (max-width: 700px) {
  .fab-gallery {
    grid-template-columns: 1fr;
  }
  .fab-gallery-main {
    height: 240px;
  }
}

/* =============================================
   IMAGE LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-top: 16px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.parts-gallery-item img {
  cursor: zoom-in;
}

/* =============================================
   STICKY MOBILE QUOTE BUTTON
   ============================================= */
.sticky-quote-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 0;
}

.sticky-quote-btn a {
  display: block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 24px;
  transition: background 0.2s;
  border-top: 3px solid var(--red-dark);
}

.sticky-quote-btn a:hover {
  background: var(--red-dark);
}

.sticky-quote-btn.visible {
  display: block;
}

@media (max-width: 900px) {
  body.sticky-active {
    padding-bottom: 56px;
  }
}