/* ================================================================
   LK SKIPS — MAIN STYLESHEET
   Design: Industrial / Bold / High-contrast
   Fonts: Bebas Neue (display) + Barlow (body)
   ================================================================ */

:root {
  --black:   #0d0d0d;
  --yellow:  #f5c800;
  --yellow2: #e6b800;
  --white:   #f5f0e8;
  --grey:    #2b2b2b;
  --mid:     #4d4d4d;
  --text:    #c8c0b0;
  --accent:  #ff5500;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --radius: 2px;
  --container: min(1200px, 92vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- CONTAINER ---- */
.container { width: var(--container); margin-inline: auto; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: 0.03em; line-height: 0.95; }
p { color: var(--text); }
a { color: inherit; }

/* ---- TAGS / LABELS ---- */
.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  padding: 0.2em 0.75em;
  text-transform: uppercase;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding: 0.75em 2em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, filter 0.15s;
  border-radius: var(--radius);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-primary   { background: var(--yellow);      color: var(--black); }
.btn-secondary { background: transparent; color: var(--yellow); border: 2px solid var(--yellow); }
.btn-dark      { background: var(--black);        color: var(--yellow); }
.btn-white     { background: var(--white);        color: var(--black); }
.btn-full      { width: 100%; text-align: center; }

/* ---- SECTION SPACING ---- */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 2.8rem; }
.section-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-top: 0.5rem;
  color: var(--white);
}
.section-title em { font-style: normal; color: var(--yellow); }
.section-sub { color: var(--text); max-width: 58ch; margin-top: 0.8rem; font-size: 1.05rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--grey);
  border-bottom: 3px solid var(--yellow);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(245,200,0,.03) 40px, rgba(245,200,0,.03) 42px);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); margin-top: 0.5rem; }
.page-hero p  { font-size: 1.1rem; color: var(--text); max-width: 55ch; margin-top: 0.8rem; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.8rem; color: var(--text); list-style: none;
  margin-bottom: 0.8rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb li + li::before { content: '›'; margin-right: 0.5rem; color: var(--yellow); }

/* ---- IMAGE PLACEHOLDER ---- */
.img-placeholder {
  background: var(--grey);
  border: 2px dashed var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.82rem;
  font-family: var(--font-body);
  text-align: center;
  padding: 1rem;
}
.img-placeholder span { font-size: 2rem; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
nav {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--white);
  text-decoration: none; letter-spacing: 0.04em; line-height: 1;
  flex-shrink: 0;
}
.logo span { color: var(--yellow); }

.nav-links {
  display: flex; gap: 1.8rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--text); text-decoration: none;
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.5em 1.2em;
  font-family: var(--font-display);
  font-size: 0.95rem !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; color: var(--white);
  font-size: 1.5rem; padding: 0.2rem;
}

/* ================================================================
   TRUST TICKER
   ================================================================ */
.trust-bar {
  background: var(--yellow);
  padding: 0.75rem 0; overflow: hidden;
}
.trust-ticker {
  display: flex; gap: 4rem;
  animation: ticker 35s linear infinite;
  white-space: nowrap; width: max-content;
}
.trust-item {
  font-family: var(--font-display);
  font-size: 0.95rem; letter-spacing: 0.12em;
  color: var(--black);
  display: flex; align-items: center; gap: 0.5rem;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================
   CONTACT BAR
   ================================================================ */
.contact-bar {
  background: var(--yellow); padding: 3.5rem 0;
}
.contact-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.contact-bar h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--black); line-height: 1.05;
}
.contact-bar .phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); color: var(--black);
  text-decoration: none;
}
.contact-bar .phone:hover { opacity: 0.75; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #080808;
  border-top: 3px solid var(--yellow);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-brand .logo { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text); max-width: 32ch; line-height: 1.6; }
.footer-brand address {
  font-style: normal; font-size: 0.85rem; color: var(--text);
  line-height: 1.7; margin-top: 1rem;
}
.footer-brand address a { color: var(--text); text-decoration: none; }
.footer-brand address a:hover { color: var(--yellow); }

.footer-col h4 {
  font-family: var(--font-display); font-size: 1rem;
  letter-spacing: 0.12em; color: var(--yellow);
  margin-bottom: 1rem; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul a {
  font-size: 0.88rem; color: var(--text); text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-col p { font-size: 0.88rem; line-height: 1.65; }

.ea-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grey); border: 1px solid var(--mid);
  padding: 0.5rem 0.9rem; margin-top: 1rem; font-size: 0.8rem; color: var(--text);
}
.ea-badge a { color: var(--yellow); text-decoration: none; }
.ea-badge a:hover { text-decoration: underline; }

.social-links { margin-top: 1rem; }
.social-links a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text); text-decoration: none; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--mid); padding: 0.5rem 0.9rem;
  transition: color 0.15s, border-color 0.15s;
}
.social-links a:hover { color: var(--yellow); border-color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--mid);
  padding-top: 1.5rem;
  /* right/bottom space keeps the credit clear of the floating chat button */
  padding-right: 5.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
@media (max-width: 720px) {
  /* on narrow screens the row wraps, so clear the button downwards instead */
  .footer-bottom { padding-right: 0; padding-bottom: 4.5rem; }
}
.footer-bottom p { font-size: 0.78rem; color: var(--text); }
.footer-bottom a { color: var(--text); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* ================================================================
   FORMS
   ================================================================ */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--grey);
  border: 1px solid var(--mid); color: var(--white);
  padding: 0.75em 1em; font-family: var(--font-body); font-size: 0.95rem;
  border-radius: var(--radius); outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-msg {
  padding: 0.85rem 1.1rem; border-radius: var(--radius);
  font-size: 0.9rem; margin-bottom: 1.2rem; display: none;
}
.form-msg.success { background: #0d2b0d; border: 1px solid #2a7a2a; color: #7dcf7d; display: block !important; }
.form-msg.error   { background: #2b0d0d; border: 1px solid #7a2a2a; color: #cf7d7d; display: block !important; }

/* Checkbox consent */
.form-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text); margin-bottom: 1.1rem;
}
.form-consent input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--yellow); }

/* ================================================================
   SKIP CARDS
   ================================================================ */
.skips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.skip-card {
  background: var(--grey); border: 1px solid var(--mid);
  padding: 1.8rem; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  transition: border-color 0.2s, transform 0.2s;
}
.skip-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.skip-card.popular { border-color: var(--yellow); }
.popular-tag {
  position: absolute; top: -12px; right: 1.2rem;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.1em; padding: 0.15em 0.7em;
}
.skip-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.skip-size { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.04em; margin-bottom: 0.15rem; }
.skip-yards { font-size: 0.8rem; color: var(--yellow); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.skip-desc { font-size: 0.9rem; color: var(--text); line-height: 1.55; margin-bottom: 1.1rem; }
.skip-uses { list-style: none; margin-bottom: 1.4rem; }
.skip-uses li {
  font-size: 0.82rem; color: var(--text); padding: 0.2rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.skip-uses li::before { content: '▸'; color: var(--yellow); font-size: 0.7rem; }
.skip-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.skip-price small { font-family: var(--font-body); font-size: 0.75rem; color: var(--text); font-weight: 400; }
.skip-cta { width: 100%; margin-top: 1rem; font-size: 0.9rem; padding: 0.65em 1em; text-align: center; display: block; }

/* ================================================================
   AREA CHIPS
   ================================================================ */
.areas-list { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.area-chip {
  background: var(--grey); border: 1px solid var(--mid);
  padding: 0.5em 1.1em; font-size: 0.85rem; font-weight: 600; color: var(--text);
  border-radius: var(--radius); transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.area-chip:hover, .area-chip.primary { border-color: var(--yellow); color: var(--yellow); }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--grey); padding: 1.8rem; border-bottom: 3px solid var(--yellow); }
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.reviewer { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2rem; }
.faq-item { border: 1px solid var(--mid); overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.faq-q {
  width: 100%; background: var(--grey); border: none;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 700; text-align: left; padding: 1.1rem 1.3rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--mid); }
.faq-arrow { color: var(--yellow); font-size: 1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.92rem; color: var(--text); line-height: 1.7;
  padding: 0 1.3rem;
}
.faq-item.open .faq-a  { max-height: 400px; padding: 1rem 1.3rem 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-q  { background: var(--mid); }

/* ================================================================
   PROHIBITED ITEMS — ICON GRID
   ================================================================ */
.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.prohibited-card {
  background: var(--grey); border: 1px solid var(--mid);
  padding: 1.4rem; border-left: 3px solid var(--accent);
  transition: border-color 0.2s;
}
.prohibited-card:hover { border-left-color: var(--yellow); }
.prohibited-icon { font-size: 1.8rem; margin-bottom: 0.6rem; display: block; }
.prohibited-title {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.prohibited-text { font-size: 0.86rem; color: var(--text); line-height: 1.55; }

.allowed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem; margin-top: 2rem;
}
.allowed-item {
  background: var(--grey); border: 1px solid var(--mid);
  padding: 1rem 1.2rem; border-left: 3px solid #2a7a2a;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; font-weight: 600;
}
.allowed-item .tick { color: #7dcf7d; font-size: 1rem; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  letter-spacing: 0.04em; margin-bottom: 1.2rem;
}
.info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.3rem; padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--mid);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 0.2rem; }
.info-value { font-size: 0.95rem; color: var(--white); }
.info-value a { color: var(--yellow); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }

.ea-widget-wrap {
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--mid);
}
.ea-widget-wrap h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 0.06em; margin-bottom: 1rem; color: var(--text);
}

/* ================================================================
   SCROLL REVEALS
   ================================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black); border-top: 1px solid var(--mid);
    padding: 1rem; z-index: 200;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--mid); }
  .nav-links .nav-cta { margin-top: 0.5rem; }
  .nav-toggle { display: block; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-bar-inner { flex-direction: column; text-align: center; }
}

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

/* ================================================================
   NEARBY AREAS (internal linking between area pages)
   ================================================================ */
.nearby-areas-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text); margin-bottom: 0.9rem;
}
.nearby-areas-links {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
}
.nearby-area-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--grey); border: 1px solid var(--mid); color: var(--white);
  text-decoration: none; padding: 0.6rem 1rem; font-size: 0.85rem; font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.nearby-area-link:hover { border-color: var(--yellow); color: var(--yellow); }

/* ================================================================
   REVIEW CARDS — source badges (Google / Facebook)
   ================================================================ */
.review-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.6rem; margin-bottom: 0.8rem; flex-wrap: wrap;
}
.review-source {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); border: 1px solid var(--mid); padding: 0.2rem 0.55rem;
}
.fb-recommend {
  font-size: 0.85rem; font-weight: 700; color: var(--white);
}
.review-card .stars { margin-bottom: 0; }
