/* =============================================
   STEVE ROBERTS GENERATORS – MAIN STYLESHEET
   Industrial & Authoritative Aesthetic
   ============================================= */

:root {
  --primary: #E8B000;
  --primary-dark: #C49600;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #2A2A2A;
  --grey: #F4F4F2;
  --grey-2: #E8E8E6;
  --text: #2A2A2A;
  --text-light: #666;
  --white: #FFFFFF;
  --danger: #CC2200;
  --success: #25D366;
  --border: #E0E0DC;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --radius: 4px;
  --radius-lg: 8px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Lato', sans-serif;
  --transition: 0.22s ease;
  --container: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a { text-decoration: none;
   color: inherit; 
  }
img { max-width: 100%; 
  display: block; 
  height: auto;
}

/* UTILITIES */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--grey { background: var(--grey); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--dark); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,176,0,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--grey); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5a; }

/* TOP BAR */
.topbar {
  background: rgb(20, 20, 20);
  color: #efe919;
  font-size: 1.1rem;
  padding: 8px 0;
  font-family: var(--font-body);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-phone { color: #0371ac; font-weight: 700; }
.topbar-phone:hover { color: var(--white); }

/* HEADER */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  font-size: 2rem;
  background: var(--primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--dark);
}
.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--grey); color: var(--primary); padding-left: 24px; }

.header-cta { margin-left: 12px; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(232,176,0,0.03) 120px,
      rgba(232,176,0,0.03) 121px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 120px,
      rgba(232,176,0,0.03) 120px,
      rgba(232,176,0,0.03) 121px
    ),
    linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 40%, #0f0f0f 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,176,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,176,0,0.12);
  border: 1px solid rgba(232,176,0,0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-h1 em { color: var(--primary); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TRUST BAR */
.trust-bar {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-inner span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header--light .section-tag { background: rgba(232,176,0,0.12); color: var(--primary); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.65); }
.section-tag {
  display: inline-block;
  background: rgba(232,176,0,0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(232,176,0,0.25);
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grey-2);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { background: var(--primary); }
.service-card--highlight {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.service-card--highlight::before { background: var(--primary); }
.service-card--highlight h3 { color: var(--white); }
.service-card--highlight p { color: rgba(255,255,255,0.7); }
.service-card--highlight .card-link { color: var(--primary); }
.service-card--cta {
  background: var(--primary);
  border-color: var(--primary);
}
.service-card--cta::before { background: var(--dark); }
.service-card--cta h3, .service-card--cta p, .service-card--cta .card-link { color: var(--dark); }
.service-icon { font-size: 2rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.2;
}
.service-card p { font-size: 0.95rem; color: var(--text-light); flex: 1; }
.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-top: auto;
}

/* PARTS GRID */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.part-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  transition: all var(--transition);
}
.part-item:hover {
  background: rgba(232,176,0,0.12);
  border-color: rgba(232,176,0,0.4);
  color: var(--primary);
}
.brands-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.brand-badge {
  background: var(--primary);
  color: var(--dark);
  padding: 6px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.why-text p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.75;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-list li {
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 600;
}
.why-image { }
.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(232,176,0,0.3);
  position: relative;
  overflow: hidden;
}
.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(232,176,0,0.02) 20px, rgba(232,176,0,0.02) 21px);
}
.img-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-align: center;
  z-index: 1;
}
.img-icon { font-size: 3rem; }

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
}
.project-img--1 { background: linear-gradient(135deg, #1a1a1a, #333); }
.project-img--2 { background: linear-gradient(135deg, #1A2A1A, #2a3a2a); }
.project-img--3 { background: linear-gradient(135deg, #1a1a2a, #2a2a3a); }
.project-img span {
  background: var(--primary);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 1.1rem;
}
.project-info { padding: 20px; }
.project-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.project-info p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.project-tag {
  display: inline-block;
  background: rgba(232,176,0,0.12);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(232,176,0,0.2);
}

/* LOCATIONS */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.location-card:hover {
  border-color: var(--primary);
  background: rgba(232,176,0,0.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.loc-icon { font-size: 2rem; }
.location-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}
.location-card p { font-size: 0.82rem; color: var(--text-light); }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 160px;
  background: var(--dark-3);
}
.blog-thumb--1 { background: linear-gradient(135deg, #1A1A2A, #2a2a40); }
.blog-thumb--2 { background: linear-gradient(135deg, #1A2A1A, #2a402a); }
.blog-thumb--3 { background: linear-gradient(135deg, #2A1A1A, #40302a); }
.blog-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-tag {
  display: inline-block;
  background: rgba(232,176,0,0.12);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.blog-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.3;
}
.blog-info p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.read-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
}

/* CTA BAND */
.cta-band {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(0,0,0,0.65);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-band-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: rgb(11, 11, 11);
  color: rgba(236, 201, 24, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 8px; }
.footer-col p a { color: var(--primary); }
.footer-socials { margin-top: 16px; }
.footer-socials a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color var(--transition); }
.footer-socials a:hover { color: var(--primary); }
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: all var(--transition);
}
.footer-col a:hover { color: var(--primary); padding-left: 6px; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary); }
.footer-seo { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* =========== INNER PAGES =========== */

/* PAGE HERO */
.page-hero {
  background: var(--dark);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,176,0,0.08) 0%, transparent 70%);
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  max-width: 720px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 32px;
}

/* SERVICE PAGE CONTENT */
.service-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 80px 0;
}
.service-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark);
  margin: 40px 0 16px;
}
.service-body h2:first-child { margin-top: 0; }
.service-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-body ul li {
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
  font-size: 0.98rem;
}
.service-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

/* SIDEBAR */
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.sidebar-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-links a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.sidebar-links a:hover { color: var(--primary); padding-left: 8px; }
.contact-sidebar { background: var(--primary); }
.contact-sidebar h3 { color: var(--dark); }
.contact-sidebar p { color: rgba(0,0,0,0.65); }
.contact-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding: 80px 0;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(232,176,0,0.1);
  border: 1px solid rgba(232,176,0,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-detail-text p { color: var(--dark); font-weight: 600; font-size: 1rem; margin: 0; }
.contact-detail-text a { color: var(--dark); font-weight: 600; }
.contact-detail-text a:hover { color: var(--primary-dark); }
.map-placeholder {
  margin-top: 32px;
  height: 220px;
  background: var(--grey);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border: 2px dashed var(--border);
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,176,0,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }

/* PARTS PAGE */
.parts-category { margin-bottom: 64px; }
.parts-category h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
.parts-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.part-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.part-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.part-card-icon { font-size: 2rem; margin-bottom: 12px; }
.part-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.part-card p { font-size: 0.88rem; color: var(--text-light); }
.part-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.part-brand {
  font-size: 0.72rem;
  background: var(--grey);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}

/* BLOG */
.blog-header { margin-bottom: 48px; }
.blog-header h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.blog-article h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.article-meta { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 8px; }
.article-body {
  max-width: 760px;
  padding: 80px 0;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--dark);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  margin: 28px 0 12px;
}
.article-body p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.article-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
}
.article-body ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.article-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.article-cta-box {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  border-left: 4px solid var(--primary);
}
.article-cta-box h3 { color: var(--primary); }
.article-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }

/* PROJECTS PAGE */
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 80px 0;
}
.project-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.project-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-full-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  position: relative;
}
.project-kva {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  bottom: 16px;
  right: 24px;
  letter-spacing: -0.03em;
}
.project-badge {
  background: var(--primary);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 10px 24px;
  border-radius: 100px;
  z-index: 1;
}
.project-full-info { padding: 28px; }
.project-full-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.project-full-info p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.project-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.project-spec {
  background: var(--grey);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
}

/* LOCATION PAGE */
.location-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.location-service-card {
  background: var(--grey);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--primary);
}
.location-service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.location-service-card p { color: var(--text-light); font-size: 0.92rem; }


/* =============================================
   RESPONSIVE — THREE CLEAN BREAKPOINTS
   ============================================= */

/* ── 1: TABLET LANDSCAPE ≤1024px ── */
@media (max-width: 1024px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .why-grid             { grid-template-columns: 1fr; gap: 40px; }
  .service-content      { grid-template-columns: 1fr; }
  .service-sidebar      { position: static; }
  .parts-sticky-sidebar { position: static; }
  .parts-layout         { grid-template-columns: 1fr; }
  .parts-grid           { grid-template-columns: repeat(3, 1fr); }
  .parts-visual-grid    { grid-template-columns: repeat(2, 1fr); }
  .projects-full-grid   { grid-template-columns: 1fr; }
}

/* ── 2: MOBILE ≤768px ── */
@media (max-width: 768px) {

  /* TOPBAR */
 .topbar { 
   display: none;
  }

  /* HEADER */
  .header-inner { flex-wrap: nowrap; padding-top: 10px; padding-bottom: 10px; }
  .header-cta   { display: none; }
  .logo-main    { font-size: 0.95rem; }
  .logo-sub     { font-size: 0.58rem; }
  .logo-icon    { width: 38px; height: 38px; font-size: 1.4rem; }

  /* HAMBURGER – visible on mobile */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    z-index: 1100;
    position: relative;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 4px 8px;
    color: var(--dark);
    flex-shrink: 0;
  }

  /* MOBILE NAV OVERLAY */
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 72px 28px 40px;
    z-index: 1050;
    overflow-y: auto;
    gap: 0;
    box-shadow: 4px 0 40px rgba(0,0,0,0.2);
  }
  .nav.open { display: flex; }

  /* Nav links */
  .nav > .nav-link,
  .nav > .nav-dropdown > .nav-link {
    font-size: 1.15rem;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: block;
  }
  .nav > .nav-dropdown { width: 100%; }

  /* Mobile dropdown — always visible, indented */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--primary) !important;
    border-radius: 0 !important;
    margin: 0 0 4px 12px;
    min-width: auto;
  }
  .dropdown-menu a {
    font-size: 0.92rem;
    padding: 9px 14px;
    color: var(--text-light);
  }

  /* HERO */
  .hero          { min-height: auto; }
  .hero-content  { padding: 56px 20px 44px; max-width: 100%; }
  .hero-h1       { font-size: 1.9rem; }
  .hero-sub      { font-size: 0.95rem; }
  .hero-badge    { font-size: 0.78rem; }
  .hero-ctas     { flex-direction: column; gap: 10px; }
  .hero-ctas .btn{ width: 100%; justify-content: center; }
  .hero-stats    { gap: 20px; padding-top: 28px; flex-wrap: wrap; }
  .stat-num      { font-size: 1.7rem; }
  .stat-label    { font-size: 0.7rem; }

  /* TRUST BAR */
  .trust-bar  { padding: 10px 0; }
  .trust-inner{ gap: 16px; flex-wrap: wrap; justify-content: center; font-size: 0.82rem; }

  /* SECTIONS */
  .section        { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.65rem; }
  .section-header p  { font-size: 0.95rem; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }

  /* PARTS */
  .parts-grid        { grid-template-columns: repeat(2, 1fr); }
  .parts-visual-grid { grid-template-columns: 1fr; }
  .parts-list-grid   { grid-template-columns: 1fr; }
  .cat-nav           { display: none; }

  /* LOCATIONS */
  .locations-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .location-services-grid { grid-template-columns: 1fr; }

  /* PROJECTS */
  .projects-grid      { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: 1fr; }

  /* BLOG */
  .blog-grid { grid-template-columns: 1fr; }

  /* WHY */
  .why-grid          { grid-template-columns: 1fr; gap: 32px; }
  .image-placeholder { aspect-ratio: 16/9; }

  /* CONTACT */
  .contact-grid      { grid-template-columns: 1fr; gap: 32px; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px 18px; }

  /* PAGE HERO */
  .page-hero    { padding: 52px 0 40px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero p  { font-size: 0.95rem; }
  .page-hero div[style*="flex"] { flex-direction: column !important; gap: 10px !important; }
  .page-hero .btn { width: 100%; justify-content: center; }

  /* SERVICE INNER PAGES */
  .service-content  { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .service-sidebar  { position: static; }
  .service-body h2  { font-size: 1.4rem; }

  /* ARTICLE */
  .article-body    { padding: 44px 0; }
  .article-body h2 { font-size: 1.4rem; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-seo  { display: none; }

  /* CTA BAND */
  .cta-band       { padding: 52px 0; }
  .cta-band h2    { font-size: 1.75rem; }
  .cta-band p     { font-size: 0.95rem; }
  .cta-band-btns  { flex-direction: column; align-items: center; gap: 10px; }
  .cta-band-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* INLINE GRID OVERRIDES — all 2+ column inline grids collapse to 1 col */
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(5"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:1fr 300px"],
  [style*="grid-template-columns: 1fr 300px"],
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns: 1fr 360px"] {
    grid-template-columns: 1fr !important;
  }

  /* Flex rows with gap that should wrap on mobile */
  .sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
}

/* ── 3: SMALL PHONES ≤480px ── */
@media (max-width: 480px) {
  .container  { padding: 0 14px; }

  .logo-main  { font-size: 0.85rem; }
  .logo-sub   { display: none; }
  .logo-icon  { width: 34px; height: 34px; font-size: 1.2rem; }

  .hero-h1    { font-size: 1.65rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num   { font-size: 1.5rem; }

  .locations-grid { grid-template-columns: 1fr; }
  .parts-grid     { grid-template-columns: 1fr; }

  .btn    { font-size: 0.85rem; padding: 10px 18px; }
  .btn-lg { font-size: 0.9rem; padding: 12px 20px; }

  .section-header h2 { font-size: 1.4rem; }
  .page-hero h1      { font-size: 1.5rem; }

  .part-img-area    { height: 130px; }
  .part-visual-icon { font-size: 2.8rem; }

  .cta-band h2      { font-size: 1.4rem; }
  .project-kva      { font-size: 2rem; }

  .trust-inner      { gap: 12px; }
  .trust-inner span { font-size: 0.76rem; }

  /* On very small screens, also collapse 2-col repeat grids */
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   MISSION · VISION · VALUES — HOMEPAGE SECTION
   ============================================= */

.mvv-section { background: var(--grey); }

/* Two-card grid for Mission + Vision */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.mvv-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mvv-card--mission {
  background: var(--dark);
  color: var(--white);
}
.mvv-card--mission::before { background: var(--primary); }

.mvv-card--vision {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
}
.mvv-card--vision::before { background: var(--dark); }

/* Icon */
.mvv-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(232,176,0,0.12);
  border: 1px solid rgba(232,176,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mvv-icon { font-size: 1.8rem; }

/* Tag label */
.mvv-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.mvv-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
.mvv-card--mission h3 { color: var(--white); }
.mvv-card--vision  h3 { color: var(--dark); }

.mvv-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.mvv-card--mission p { color: rgba(255,255,255,0.72); }
.mvv-card--vision  p { color: var(--text-light); }
.mvv-card p:last-child { margin-bottom: 0; }

/* Values row */
.values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.value-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.value-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.value-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.value-item p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* CTA row */
.mvv-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .mvv-grid    { grid-template-columns: 1fr; gap: 20px; }
  .mvv-card    { padding: 28px 22px; }
  .values-row  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .values-row { grid-template-columns: 1fr; }
}

/* =============================================
   ABOUT US PAGE STYLES
   ============================================= */

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 60px;
}
.about-intro-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
}
.about-intro-text p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 1rem;
}
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 60px 0;
}
.about-stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}
.about-mvv-full {
  padding: 80px 0;
  background: var(--grey);
}
.about-mvv-full .mvv-grid { max-width: 100%; }

.team-promise {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}
.team-promise::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary);
}
.team-promise h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.team-promise p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.promise-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 40px;
}
.promise-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.promise-item-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.promise-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.promise-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }

@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 40px; }
  .promise-items    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .about-stats-bar  { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat { padding: 24px 16px; }
  .about-stat-num { font-size: 2.2rem; }
  .promise-items { grid-template-columns: 1fr; }
  .team-promise { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .about-stats-bar { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   ANIMATED HERO — SERVICE SHOWCASE
   ============================================= */

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 80px 24px 72px;
}

.hero-highlight {
  color: var(--primary);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.6;
}

/* Counting stats */
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hero-247 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

/* SERVICE SHOWCASE — right panel */
.hero-services-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Glowing ring decoration */
.showcase-ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
  flex-shrink: 0;
}
.showcase-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232,176,0,0.3);
  animation: ringPulse 2s ease-in-out infinite;
}
.showcase-ring::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(232,176,0,0.12);
  animation: ringPulse 2s ease-in-out infinite 0.4s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.6; }
}

.showcase-center {
  position: absolute;
  inset: 0;
  background: rgba(232,176,0,0.1);
  border: 2px solid rgba(232,176,0,0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.showcase-center-icon {
  font-size: 2rem;
  transition: all 0.4s ease;
}
.showcase-center-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  transition: all 0.4s ease;
}

/* Service cycle cards */
.service-cycle-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-cycle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 280px;
}

.sc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.45;
  transform: translateX(12px);
}
.sc-card:hover {
  opacity: 0.85;
  background: rgba(255,255,255,0.07);
  transform: translateX(4px);
}
.sc-card.sc-active {
  opacity: 1;
  background: rgba(232,176,0,0.1);
  border-color: rgba(232,176,0,0.35);
  transform: translateX(0);
  box-shadow: 0 4px 20px rgba(232,176,0,0.12);
}
.sc-icon {
  font-size: 1.6rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.sc-text { flex: 1; }
.sc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
}
.sc-active .sc-name { color: var(--primary); }
.sc-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.sc-active .sc-sub { color: rgba(232,176,0,0.65); }
.sc-arrow {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.sc-active .sc-arrow { color: var(--primary); }

/* Progress dots */
.sc-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding-top: 4px;
}
.sc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.sc-dot.active {
  background: var(--primary);
  width: 18px;
  border-radius: 3px;
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 24px 56px;
  }
  .hero-services-showcase { display: none; }
}
@media (max-width: 768px) {
  .hero-layout { padding: 52px 20px 44px; }
}

/* =============================================
   VIDEO SECTION
   ============================================= */

.video-section { background: var(--white); }

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.video-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}
.video-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}
.video-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-points li {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.video-points li:last-child { border-bottom: none; }

/* Video embed wrapper */
.video-embed-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  border: 2px solid rgba(232,176,0,0.2);
  transition: border-color 0.2s;
}
.video-thumb:hover { border-color: var(--primary); }

.video-thumb-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent, transparent 20px,
      rgba(232,176,0,0.02) 20px, rgba(232,176,0,0.02) 21px),
    linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 100%);
}

.video-thumb-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}

.video-play-btn {
  width: 68px; height: 68px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(232,176,0,0.4);
}
.video-thumb:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(232,176,0,0.55);
}
.play-icon {
  font-size: 1.5rem;
  color: var(--dark);
  margin-left: 4px;
}

.video-thumb-label {
  text-align: center;
}
.video-thumb-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.03em;
}
.video-thumb-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.video-iframe-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
}
.video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
}
.video-caption a { color: var(--primary-dark); font-weight: 600; }
.video-caption a:hover { color: var(--primary); }

@media (max-width: 1024px) {
  .video-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* =============================================
   ACCESSIBILITY & SEMANTIC STYLES
   ============================================= */

/* ── Skip navigation link ── */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 99999;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-nav:focus {
  top: 0;
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

/* ── Focus-visible styles (keyboard navigation) ──
   Only shows on keyboard navigation, not mouse clicks */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* High-contrast focus for buttons */
.btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(232,176,0,0.4);
}

/* Nav links keyboard focus */
.nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius);
}

/* Service card keyboard focus */
.service-card:focus-visible,
.location-card:focus-visible,
.blog-card:focus-visible,
.part-visual-card:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

/* Hamburger focus */
.hamburger:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius);
}

/* Form controls focus */
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,176,0,0.2);
  outline: none;
}
.form-control:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 0;
}

/* ── Breadcrumb — semantic nav ── */
nav.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  display: block;
}
nav.breadcrumb a { color: var(--primary); text-decoration: none; }
nav.breadcrumb a:hover { text-decoration: underline; }
nav.breadcrumb a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Screen reader only utility class ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Reduced motion support ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-canvas { display: none; }
  .sc-card { transform: none !important; }
  .service-card,
  .location-card,
  .blog-card,
  .part-visual-card { opacity: 1 !important; transform: none !important; }
}

/* ── High contrast mode support ── */
@media (forced-colors: active) {
  .btn { border: 2px solid ButtonText; }
  .service-card { border: 1px solid ButtonText; }
  .hero-canvas { display: none; }
}

/* ── Improved colour contrast fixes ── */
/* text-light #666 on white = 4.48:1 (AA pass, but we boost to be safe) */
.service-card p,
.blog-info p,
.part-card p,
.footer-col p {
  color: #555; /* boosted from #666 for better contrast */
}

/* ── Link underline on hover for accessibility ── */
.footer-col a:hover { text-decoration: underline; }
.dropdown-menu a:hover { text-decoration: none; } /* nav has bg change instead */

/* HERO SLOGAN */
.hero-slogan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: fadeUp 0.5s ease both;
}
