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

:root {
  --primary: #0d3b5e;
  --primary-light: #145280;
  --accent: #239bd0;
  --accent-dark: #1a7fad;
  --accent-warm: #d4a843;
  --cmt-turquoise: #239bd0;
  --bg-light: #f4f8fb;
  --white: #ffffff;
  --text: #2a3340;
  --text-light: #e8eef4;
  --text-muted: #5a6b7d;
  --shadow: 0 2px 12px rgba(13, 59, 94, 0.1);
  --shadow-lg: 0 8px 30px rgba(13, 59, 94, 0.12);
  --radius: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.header {
  background: var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.logo:hover .logo-img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

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

.stat-item {
  padding: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Section Styles ===== */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Gear watermark for dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 500px;
  height: 500px;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23239bd0' d='M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9.3 15.5-18.4 17.4c-12.7 2.5-25.8 4.1-39.2 4.1s-26.5-1.5-39.2-4.1c-9.1-1.9-16.5-8.3-18.4-17.4l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4l-55.7 17.7c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9.3-15.5 18.4-17.4C226.5 1.5 239.6 0 253 0s26.5 1.5 39.2 4.1c9.1 1.9 16.5 8.3 18.4 17.4l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-dark .section-title h2 {
  color: var(--white);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-title p {
  color: var(--text-light);
  opacity: 0.8;
}

.section-title .accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card .learn-more:hover {
  gap: 10px;
}

/* ===== B-BBEE Badge ===== */
.bbee-section {
  text-align: center;
}

.bbee-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 24px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-warm);
}

.bbee-badge .badge-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.bbee-badge .badge-text h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.bbee-badge .badge-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 24px;
  opacity: 0.9;
}

/* ===== About Page ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1.1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about-image .large-icon {
  font-size: 4rem;
  opacity: 0.9;
}

.about-image h3 {
  font-size: 1.3rem;
}

.about-image p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.brand-item {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  transition: all var(--transition);
}

.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* B-BBEE Details */
.bbee-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.bbee-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-bottom: 3px solid var(--accent-warm);
}

.bbee-card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.bbee-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.bbee-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Services Page — Navigation Pills ===== */
.svc-nav {
  background: var(--white);
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.svc-nav-inner {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-nav-inner::-webkit-scrollbar {
  display: none;
}

.svc-pill {
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid #e9ecef;
  transition: all var(--transition);
}

.svc-pill:hover,
.svc-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== Services Page — Tags ===== */
.svc-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.svc-tag-light {
  background: rgba(212, 168, 67, 0.2);
  color: var(--accent);
}

/* ===== Services Page — Highlight Section (Supply) ===== */
.svc-highlight {
  background: var(--bg-light);
}

.svc-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.svc-highlight-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.svc-highlight-content > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.svc-features {
  margin-bottom: 28px;
}

.svc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.svc-feature-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-feature-item span:last-child {
  color: var(--text);
  font-size: 0.95rem;
}

.svc-highlight-visual {
  display: grid;
  gap: 16px;
}

.svc-highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}

.svc-highlight-card:hover {
  border-left-color: var(--accent);
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.svc-hcard-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.svc-highlight-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.svc-highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Services Page — Module Grid (Workshop) ===== */
.svc-module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-module-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.svc-module-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.svc-module-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.svc-module-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.svc-module-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* ===== Services Page — Duo Cards (Field & Conversions) ===== */
.svc-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.svc-duo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
}

.svc-duo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.svc-duo-icon {
  font-size: 2rem;
}

.svc-duo-card h2 {
  font-size: 1.4rem;
  color: var(--primary);
}

.svc-duo-card > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.svc-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.svc-checklist li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.svc-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.svc-checklist-light li {
  color: var(--text-light);
}

.svc-checklist-light li::before {
  color: var(--accent);
}

.svc-duo-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 16px;
  margin-top: auto;
}

.svc-location-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== Services Page — Maintenance Banner ===== */
.svc-maintenance-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a6a94 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.svc-maintenance-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.svc-maint-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.svc-maint-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.svc-maint-content > p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 24px;
}

.svc-maint-stats {
  display: grid;
  gap: 20px;
}

.svc-maint-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.svc-maint-stat:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
}

.svc-maint-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.svc-maint-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
}

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

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

.form-group .error-text {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #dc3545;
}

.form-group.error .error-text {
  display: block;
}

.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-card .info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--accent);
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
}

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

.footer-col ul li a {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.9rem;
  transition: all var(--transition);
}

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

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-top: 12px;
}

.footer-badge .badge-circle {
  width: 36px;
  height: 36px;
  background: var(--accent-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary);
}

.footer-badge span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== Lightbox Gallery ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.lightbox.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 92%;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}

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

.lightbox-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lightbox-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lightbox-tab {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.lightbox-tab:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-tab.active {
  background: var(--cmt-turquoise);
  border-color: var(--cmt-turquoise);
  color: var(--white);
}

.lightbox-tab-label {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.lightbox-img-wrap {
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.lightbox-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all var(--transition);
}

.lightbox-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

.lightbox-thumb:hover {
  opacity: 0.85;
}

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

/* Gallery clickable indicators */
.svc-module-card.has-gallery {
  cursor: pointer;
  position: relative;
}

.svc-module-card.has-gallery::after {
  content: 'View Gallery';
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
  font-weight: 600;
}

.svc-module-card.has-gallery:hover::after {
  opacity: 1;
}

.svc-ba-item.has-gallery-img {
  cursor: pointer;
  position: relative;
}

.svc-ba-item.has-gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
  border-radius: var(--radius);
  pointer-events: none;
}

.svc-ba-item.has-gallery-img:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

/* ===== Module Card Photos ===== */
.svc-module-card .module-photo {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.svc-module-card .module-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Before/After Photo Grid ===== */
.svc-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.svc-ba-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
  text-align: center;
  position: relative;
}

.svc-ba-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.svc-ba-item .ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  z-index: 1;
}

.svc-ba-item .ba-label-after {
  background: var(--accent);
  color: var(--primary);
}

/* ===== Spray Painting Expandable Card ===== */
.svc-spray-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 40px;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.svc-spray-card:hover {
  border-color: var(--accent);
}

.svc-spray-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: background var(--transition);
}

.svc-spray-header:hover {
  background: var(--bg-light);
}

.svc-spray-header .spray-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.svc-spray-header .spray-title {
  flex-grow: 1;
}

.svc-spray-header .spray-title h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.svc-spray-header .spray-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.svc-spray-header .spray-toggle {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  font-weight: 700;
}

.svc-spray-card.open .spray-toggle {
  transform: rotate(45deg);
}

.svc-spray-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.svc-spray-card.open .svc-spray-body {
  max-height: 1200px;
}

.svc-spray-content .svc-before-after {
  margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.svc-spray-content {
  padding: 0 28px 28px;
  border-top: 1px solid #e9ecef;
}

.svc-spray-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 16px;
}

.svc-spray-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.svc-spray-features .svc-feature-item {
  padding: 6px 0;
}

.svc-spray-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.svc-spray-photos .photo-placeholder {
  height: 120px;
  border-radius: 6px;
  background: var(--bg-light);
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
}

.svc-spray-photos .photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-content,
  .contact-grid,
  .svc-highlight-grid,
  .svc-duo-grid,
  .svc-maint-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

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

  .bbee-badge {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .logo-tagline {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

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

  .svc-spray-photos {
    grid-template-columns: 1fr 1fr;
  }

  .svc-before-after {
    grid-template-columns: 1fr;
  }
}
