/* ============================================
   CW INDUSTRIES NV — MERGED STYLESHEET
   Tokens & design: revised brand CSS
   Components: admin, tables, forms, cards
   ============================================ */

/* ---- TOKENS ---- */
:root {
  --brand-red:          #DC2626;
  --brand-red-hover:    #B91C1C;
  --brand-yellow:       #FCD34D;
  --brand-yellow-hover: #F5C518;
  --brand-darkGray:     #374151;

  --red:        var(--brand-red);
  --red-dark:   var(--brand-red-hover);
  --yellow:     var(--brand-yellow);
  --yellow-dark: var(--brand-yellow-hover);

  --dark:   #1f2937;
  --dark-2: #252b3b;
  --dark-3: #111827;
  --white:  #ffffff;

  --gray:   #f8fafc;
  --gray-2: #f3f4f6;
  --gray-3: #e5e7eb;
  --border: #e5e7eb;

  --text:       #111827;
  --text-muted: #6b7280;
  --text-soft:  #9ca3af;

  --radius:    0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;

  --shadow:    0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 35px rgba(0,0,0,0.14);

  --container-max: 1280px;
  --container-pad: 1.25rem;
  --transition: 0.25s ease;
}

/* ---- RESET / BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote {
  margin: 0;
}

body {
  background: #fff;
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition), background-color var(--transition); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

/* Strip list styles only in UI components, not editorial content */
.nav-links,
.mobile-menu,
.footer-col ul,
.contact-list,
.activity-list {
  list-style: none;
  padding-left: 0;
}

/* Preserve list styles in content areas */
main ul, main ol,
.prose ul, .prose ol,
.content ul, .content ol,
.service-content ul, .service-content ol,
.parts-content ul, .parts-content ol,
.quote-content ul, .quote-content ol {
  padding-left: 1.25rem;
}
main ul, .prose ul, .content ul,
.service-content ul, .parts-content ul, .quote-content ul { list-style: disc; }
main ol, .prose ol, .content ol,
.service-content ol, .parts-content ol, .quote-content ol { list-style: decimal; }
main li + li, .prose li + li, .content li + li,
.service-content li + li, .parts-content li + li, .quote-content li + li { margin-top: 0.35rem; }

p + p { margin-top: 1rem; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, .heading-condensed {
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: 0.02em;
}
h1, h2 { text-transform: uppercase; }

/* ---- LAYOUT ---- */
.container, .container-custom {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section, .page-section { padding: 3.5rem 0; }
@media (min-width: 768px)  { .section, .page-section { padding: 4rem 0; } }
@media (min-width: 1024px) { .section, .page-section { padding: 4.75rem 0; } }

.section-dark   { background: var(--dark); color: var(--white); }
.section-gray   { background: var(--gray); }
.section-rental {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  color: var(--white);
}
.section-cta { background: var(--dark); color: var(--white); }
.section-cta h2, .section-cta p { color: var(--white); }
.section-cta p { margin: 1rem 0 2rem; opacity: 0.85; }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 2.25rem; }
.section-header h2, .section-title {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.section-header p, .section-subtitle {
  color: var(--text-muted);
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.74); }
.text-center .section-header,
.text-center .section-subtitle,
.text-center .section-header p { margin-left: auto; margin-right: auto; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark-3);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar-inner { display: flex; gap: 1.5rem; align-items: center; }
.topbar-inner span { display: flex; align-items: center; gap: 0.4rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark img { width: 44px; height: 44px; object-fit: contain; }
.logo-text {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.logo-text span, .footer-logo span { color: var(--yellow); }

.nav-links { display: flex; list-style: none; gap: 0.25rem; margin-left: auto; }
.nav-links a {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background-color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--red);
  background: rgba(220,38,38,0.06);
}
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem; border-top: 1px solid var(--border); gap: 0.5rem; }
.mobile-menu a { color: var(--text); font-weight: 600; padding: 0.5rem 0; }
.mobile-menu.open { display: flex; }

/* ---- BUTTONS ---- */
.btn,
.btn-primary,
.btn-secondary,
.btn-yellow,
.btn-outline,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), background-color var(--transition),
    border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn:hover, .btn-primary:hover, .btn-secondary:hover,
.btn-yellow:hover, .btn-outline:hover, .btn-outline-light:hover { transform: translateY(-2px); }

/* Yellow = primary CTA (matches live site) */
.btn-primary, .btn-yellow {
  background: var(--yellow);
  color: var(--brand-darkGray);
  border-color: var(--yellow);
}
.btn-primary:hover, .btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

/* Red = urgent/secondary */
.btn-secondary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-secondary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-lg { padding: 0.9rem 1.7rem; font-size: 1.05rem; }
.btn-sm { min-height: 38px; padding: 0.45rem 0.9rem; font-size: 0.9rem; }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--dark-3);
  color: var(--white);
  min-height: 520px;
  padding: 4rem 0 3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/cw-fleet-shop.jpg");
  background-size: cover;
  background-position: center 40%;
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.88) 0%, rgba(31,41,55,0.80) 55%, rgba(17,24,39,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(252,211,77,0.12);
  border: 1px solid rgba(252,211,77,0.35);
  color: var(--yellow);
}
.hero h1 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 720px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero p, .hero > .container > p, .hero-content > p {
  max-width: 580px;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
}
.hero-icons { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1.25rem; }
.hero-icon-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-icon { font-size: 1.4rem; margin-bottom: 0.15rem; }
.hero-icon-item strong { color: var(--yellow); font-size: 0.95rem; }
.hero-icon-item span { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  background: var(--dark-3);
  color: var(--white);
  padding: 4rem 0 3rem;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17,24,39,0.82), rgba(17,24,39,0.75));
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.page-hero p { max-width: 600px; color: rgba(255,255,255,0.76); }
.page-hero .hero-cta { margin-top: 1.5rem; }

/* ---- EQUIPMENT GRID ---- */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.equipment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.equipment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.equipment-card.skeleton {
  height: 380px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.card-img { width: 100%; height: 200px; object-fit: cover; display: block; background: var(--gray-2); }
.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card-body { padding: 1.25rem; }
.card-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--gray-2);
  color: var(--brand-darkGray);
}
.tag-featured, .tag.featured { background: rgba(252,211,77,0.2); color: #92700a; }
.tag-hot,      .tag.hot      { background: rgba(220,38,38,0.1); color: var(--red); }
.tag-sold,     .tag.sold     { background: rgba(0,0,0,0.1); color: #666; }
.tag.available { background: rgba(34,197,94,0.1); color: #15803d; }

.card-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.card-price { color: var(--red); font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }
.card-specs { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.card-spec-row { display: flex; justify-content: space-between; padding: 0.2rem 0; border-bottom: 1px solid var(--border); }
.card-actions { display: flex; gap: 0.5rem; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem; }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--yellow); text-transform: uppercase; margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.service-card ul li { color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 0.25rem 0 0.25rem 1.25rem; position: relative; }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }

/* ---- RENTAL CTA ---- */
.rental-cta { max-width: 700px; }
.rental-cta h2 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--white); text-transform: uppercase; margin-bottom: 1rem; }
.rental-cta p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.rental-durations { display: flex; flex-wrap: wrap; gap: 1rem; }
.duration-item { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 0.75rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.duration-item strong { color: var(--yellow); font-family: "Barlow Condensed", Inter, sans-serif; font-size: 1.1rem; font-weight: 800; }
.duration-item span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ---- WHY / AREAS ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.why-item { text-align: center; padding: 1.5rem; }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-item h4 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.why-item p { color: var(--text-muted); font-size: 0.95rem; }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.area-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; text-align: center; font-weight: 600; font-size: 0.95rem; box-shadow: var(--shadow); }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: 2rem; text-transform: uppercase; margin-bottom: 1rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; background: rgba(252,211,77,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item h4 { font-weight: 700; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--red); }
.contact-note { background: var(--gray); border-radius: var(--radius); padding: 1.25rem; margin-top: 1.5rem; }
.contact-note strong { display: block; margin-bottom: 0.25rem; }
.contact-note p { font-size: 0.9rem; color: var(--text-muted); }

/* ---- FORMS ---- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.form-card h2 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: 1.75rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-card > p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--text); }
.form-group label .req { color: var(--red); }

.form-control,
input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
select, textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(252,211,77,0.2);
}
textarea, textarea.form-control { min-height: 130px; resize: vertical; }
.form-privacy { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.form-success { background: #d1fae5; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: 1rem; color: #065f46; font-weight: 600; margin-bottom: 1rem; display: none; }

/* ---- QUOTE SIDEBAR ---- */
.quote-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1rem; }
.sidebar-card h3 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; text-align: center; margin-bottom: 0.5rem; }
.process-step { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.step-num { width: 28px; height: 28px; background: var(--yellow); color: var(--dark); font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 2rem; }
.faq-item h4 { font-weight: 700; margin-bottom: 0.5rem; font-size: 1rem; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; }
.faq-note { text-align: center; margin-top: 2rem; color: var(--text-muted); }

/* ---- PARTS ---- */
.parts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.parts-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.parts-card-img { height: 180px; background: var(--gray-2); overflow: hidden; }
.parts-card-body { padding: 1.5rem; }
.parts-card-body h3 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 800; font-size: 1.3rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.parts-card-body ul { margin-bottom: 1.25rem; }
.parts-card-body ul li { font-size: 0.9rem; color: var(--text-muted); padding: 0.2rem 0 0.2rem 1.2rem; position: relative; }
.parts-card-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow-dark); font-weight: 700; }
.parts-card-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
.brand-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; padding: 0.4rem 0; }
.brand-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }

.parts-order-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.parts-order-layout h2 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: 2rem; text-transform: uppercase; margin-bottom: 0.75rem; }
.parts-order-layout p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ---- SERVICES PAGE ---- */
.service-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.service-section.reverse { direction: rtl; }
.service-section.reverse > * { direction: ltr; }
.service-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-2); height: 300px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-content h3 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: 1.75rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.service-content .service-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(252,211,77,0.15); color: #92700a; font-size: 0.85rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem; }
.service-content p { color: var(--text-muted); margin-bottom: 1rem; }
.service-content h4 { font-weight: 700; margin-bottom: 0.5rem; }
.service-content ul { margin-bottom: 1.25rem; }
.service-content ul li { font-size: 0.9rem; color: var(--text-muted); padding: 0.25rem 0 0.25rem 1.25rem; position: relative; }
.service-content ul li::before { content: '▸'; position: absolute; left: 0; color: var(--red); }
.service-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---- FILTERS ---- */
.filters-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; padding: 1.25rem; background: var(--gray); border-radius: var(--radius); }
.filter-control { padding: 0.6rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; background: var(--white); color: var(--text); cursor: pointer; flex: 1; min-width: 150px; }
.filter-control:focus { outline: none; border-color: var(--yellow); }
.filter-search { flex: 2; }

/* ---- ADMIN LAYOUT ---- */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 120px); }
.admin-sidebar { background: var(--dark-3); color: var(--white); padding: 1.5rem 0; }
.admin-sidebar-header { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }
.admin-sidebar-header h3 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.admin-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); cursor: pointer; border: none; background: none; width: 100%; text-align: left; }
.admin-nav-item:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.admin-nav-item.active { background: rgba(252,211,77,0.15); color: var(--yellow); border-left: 3px solid var(--yellow); }
.admin-main { background: var(--gray); padding: 2rem; }

/* ---- ADMIN DASHBOARD ---- */
.admin-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }
.admin-header h1 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: 2rem; text-transform: uppercase; }
.admin-header p { color: var(--text-muted); }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); border-left: 4px solid var(--yellow); }
.stat-card.blue   { border-color: #3b82f6; }
.stat-card.green  { border-color: #10b981; }
.stat-card.purple { border-color: #8b5cf6; }
.stat-card.orange { border-color: #f59e0b; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 600; }
.stat-value { font-family: "Barlow Condensed", Inter, sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.25rem; }
.stat-sub { font-size: 0.8rem; color: var(--text-muted); }
.stat-badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; }
.stat-badge.green  { background: #d1fae5; color: #065f46; }
.stat-badge.purple { background: #ede9fe; color: #5b21b6; }

.admin-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.admin-card h3 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }

.quick-actions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.quick-action-btn { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1rem; background: var(--white); cursor: pointer; text-align: center; font-weight: 600; font-size: 0.9rem; color: var(--text); transition: all var(--transition); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; position: relative; }
.quick-action-btn:hover { border-color: var(--yellow); background: rgba(252,211,77,0.05); }
.quick-action-btn.primary { background: var(--red); border-color: var(--red); color: var(--white); }
.quick-action-btn.primary:hover { background: var(--red-dark); }

.qa-badge { position: absolute; top: -6px; right: -6px; background: var(--red); color: white; font-size: 0.7rem; font-weight: 800; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.website-actions { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--border); }
.website-action { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 0.3rem; }
.website-action:hover { color: var(--red); }

.activity-list { list-style: none; }
.activity-item { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.activity-item:last-child { border: none; }
.activity-icon { width: 32px; height: 32px; background: var(--gray); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.activity-text { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.activity-meta { display: flex; gap: 0.5rem; align-items: center; }
.activity-date { font-size: 0.8rem; color: var(--text-muted); }
.activity-tag { font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 100px; background: #d1fae5; color: #065f46; text-transform: uppercase; }
.view-all-btn { width: 100%; margin-top: 1rem; text-align: center; padding: 0.75rem; background: var(--gray); border: none; border-radius: var(--radius); font-weight: 600; cursor: pointer; font-size: 0.9rem; }

.system-status { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.status-item { display: flex; align-items: center; gap: 0.5rem; }
.status-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; }
.status-item strong { font-size: 0.9rem; }
.status-item span { font-size: 0.8rem; color: #10b981; font-weight: 600; }

/* ---- ADMIN TABLES ---- */
.admin-table-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.admin-table-header h2 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: 1.75rem; text-transform: uppercase; }
.table-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--gray); padding: 0.75rem 1rem; text-align: left; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.data-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.data-table tr:hover td { background: rgba(252,211,77,0.04); }
.table-actions { display: flex; gap: 0.5rem; }
.status-pill { display: inline-flex; padding: 0.2rem 0.65rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.status-available { background: #d1fae5; color: #065f46; }
.status-sold      { background: #fee2e2; color: #991b1b; }
.status-pending   { background: #fef3c7; color: #92400e; }

/* ---- ADMIN LOGIN ---- */
.admin-login-page { min-height: 100vh; background: var(--dark-3); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.admin-login-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.admin-login-card .logo { justify-content: center; margin-bottom: 1.5rem; }
.admin-login-card h2 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 900; font-size: 1.75rem; text-transform: uppercase; text-align: center; margin-bottom: 0.5rem; }
.admin-login-card p { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.error-msg { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.9rem; margin-bottom: 1rem; display: none; }

/* ---- FOOTER ---- */
.footer { background: var(--dark-3); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer h2, .footer h3, .footer h4 { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 0.75rem; }
.footer-logo { color: var(--white); font-size: 1.4rem; }
.footer-col h4 { font-family: "Barlow Condensed", Inter, sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--yellow); }
.contact-list li { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.9rem; }
.contact-list a { color: rgba(255,255,255,0.6); }
.contact-list a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ---- BRAND UTILITY ALIASES ---- */
.bg-brand-red      { background-color: var(--brand-red); }
.bg-brand-yellow   { background-color: var(--brand-yellow); }
.bg-brand-darkGray { background-color: var(--brand-darkGray); }
.text-brand-red      { color: var(--brand-red); }
.text-brand-yellow   { color: var(--brand-yellow); }
.text-brand-darkGray { color: var(--brand-darkGray); }
.border-brand-red      { border-color: var(--brand-red); }
.border-brand-yellow   { border-color: var(--brand-yellow); }
.border-brand-darkGray { border-color: var(--brand-darkGray); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-grid { grid-template-columns: 1fr; }
  .system-status { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout, .quote-layout, .parts-order-layout { grid-template-columns: 1fr; }
  .service-section { grid-template-columns: 1fr; }
  .service-section.reverse { direction: ltr; }
}

@media (max-width: 767px) {
  :root { --container-pad: 1rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .quick-actions-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   PATCH LAYER — finishing fixes
   ============================================ */

/* ---- NAVBAR CLASS ALIAS ---- */
.nav-inner,
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  min-height: 72px;
}

/* ---- DARK SECTION TEXT RESILIENCE ---- */
.section-dark .section-header h1,
.section-dark .section-header h2,
.section-dark .section-header h3,
.section-dark .section-title,
.section-rental .section-header h1,
.section-rental .section-header h2,
.section-rental .section-header h3,
.section-rental .section-title,
.section-cta .section-header h1,
.section-cta .section-header h2,
.section-cta .section-header h3,
.section-cta .section-title { color: var(--white); }

.section-dark .section-header p,
.section-dark .section-subtitle,
.section-rental .section-header p,
.section-rental .section-subtitle,
.section-cta .section-header p,
.section-cta .section-subtitle { color: rgba(255,255,255,0.74); }

/* ---- CARD PLACEHOLDER FIX ---- */
.card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  color: var(--text-soft);
}

/* ---- SKELETON UTILITY ---- */
.skeleton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--gray-2) 0%, #f8fafc 50%, var(--gray-2) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- RESPONSIVE TABLE WRAPPER ---- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive .data-table { min-width: 720px; }
.data-table td .btn,
.data-table td .btn-sm { white-space: nowrap; }
.table-actions { flex-wrap: wrap; }

/* ---- ADMIN MOBILE BAR ---- */
.admin-mobile-bar {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1rem;
  position: sticky;
  top: 72px;
  z-index: 90;
}
.admin-mobile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.admin-mobile-title {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--dark);
}

/* ---- SECTION SIZE VARIANTS ---- */
.page-section-sm { padding: 2.5rem 0; }
.page-section-lg { padding: 5rem 0; }
@media (min-width: 768px) {
  .page-section-sm { padding: 3rem 0; }
  .page-section-lg { padding: 6rem 0; }
}

/* ---- PATCH RESPONSIVE ---- */
@media (max-width: 1024px) {
  .admin-mobile-bar { display: block; }
  .table-card { overflow: hidden; }
}
@media (max-width: 767px) {
  .nav-inner, .navbar-inner {
    gap: 1rem;
    padding: 0.85rem 1rem;
    min-height: 64px;
  }
  .table-responsive .data-table { min-width: 640px; }
  .status-pill { white-space: nowrap; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { overflow: hidden; }

.slider-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slider-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slider-slide.active { opacity: 1; }

.hero-slider .hero-bg {
  z-index: 1;
  background: linear-gradient(135deg, rgba(17,24,39,0.72) 0%, rgba(31,41,55,0.62) 55%, rgba(17,24,39,0.55) 100%);
}

.hero-slider .hero-content { z-index: 2; }

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.slider-prev:hover,
.slider-next:hover { background: rgba(0,0,0,0.65); }
.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .slider-prev, .slider-next { display: none; }
}


.form-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-note a {
  color: var(--red);
  font-weight: 600;
}
