/* Color system tailored for industrial/mechanical sector */
:root {
  --bee-yellow: #f5c400;
  --bee-yellow-600: #e3b300;
  --graphite-900: #0f1113;
  --graphite-800: #15171a;
  --graphite-700: #1d2024;
  --smoke-200: #e9ecef;
  --smoke-100: #f8f9fa;
  --white: #ffffff;
}

body {
  background-color: var(--smoke-100);
  color: #1b1f23;
}

.navbar.bg-dark {
  background-color: var(--graphite-900) !important;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--bee-yellow), var(--bee-yellow-600));
  color: var(--graphite-900);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.btn-bee {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--bee-yellow);
  --bs-btn-border-color: var(--bee-yellow);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: var(--bee-yellow-600);
  --bs-btn-hover-border-color: var(--bee-yellow-600);
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
}

.section-title {
  position: relative;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 0.5rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--bee-yellow), transparent);
  margin-top: 8px;
  border-radius: 2px;
}

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(245, 196, 0, 0.15), transparent),
              radial-gradient(1200px 600px at 80% 10%, rgba(245, 196, 0, 0.12), transparent),
              var(--graphite-800);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: contrast(105%) saturate(90%);
}

/* Cards */
.service-card {
  border: 1px solid var(--smoke-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.08);
}
.service-card .card-title {
  font-weight: 700;
}

/* Sector cards */
.sector-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--smoke-200);
  border-radius: 12px;
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.sector-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 196, 0, 0.7);
  box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.06);
}
.sector-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,196,0,0.2), rgba(245,196,0,0.05));
  color: var(--bee-yellow-600);
  font-size: 1.25rem;
}
.sector-title {
  font-weight: 700;
}

/* Stats cards */
.stat-card {
  border: 1px solid var(--smoke-200);
  border-radius: 14px;
  background: #fff;
  padding: 22px;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.25rem rgba(0,0,0,0.06);
  border-color: rgba(245,196,0,0.7);
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,196,0,0.2), rgba(245,196,0,0.05));
  color: var(--bee-yellow-600);
  font-size: 1.25rem;
}
.stat-value {
  font-weight: 800;
  font-size: 1.75rem;
  margin: 8px 0 2px;
}
.stat-label {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Dark section helpers */
.bg-black-50 {
  background-color: rgba(0, 0, 0, 0.35) !important;
}

/* Footer */
footer {
  background-color: #fff;
}

/* Forms */
label.form-label {
  font-weight: 600;
}

/* Util */
.text-white-50 { color: rgba(255,255,255,0.65) !important; }
.text-bee { color: var(--bee-yellow) !important; }


