/* ======================================
   BlueGreenOps — Corporate Enterprise Style
   ====================================== */

:root {
  --bgo-blue: #1a6fb5;
  --bgo-blue-dark: #155a96;
  --bgo-green: #3ea34e;
  --bgo-dark: #1a2332;
  --bgo-light: #f7f9fc;
  --bgo-accent: #6cb4ee;
  --bgo-border: #e2e8f0;
  --bgo-text: #2d3748;
  --bgo-muted: #718096;
}

/* ── Base ── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--bgo-text);
  line-height: 1.7;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--bgo-dark);
}

/* Headings inside dark sections must be white */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: #ffffff !important;
}

/* ── Utility ── */
.ls-wide {
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bgo-blue);
  margin-bottom: 0.5rem;
}

.section-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--bgo-muted);
  font-size: 1rem;
}

.accent-color {
  color: var(--bgo-accent);
}

/* ── Navbar ── */
.navbar {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(10px);
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  color: #4a5568 !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--bgo-blue) !important;
}

/* ── Hero ── */
.hero-section {
  padding: 3.5rem 0 3rem;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.min-vh-75 {
  min-height: auto;
}

/* ── Specialty Bar ── */
.specialty-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bgo-text);
  padding: 0.35rem 1.5rem;
  white-space: nowrap;
}

.specialty-divider {
  width: 1px;
  height: 20px;
  background: var(--bgo-border);
  flex-shrink: 0;
}

/* ── Results Panel ── */
.results-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--bgo-blue);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.results-panel .panel-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bgo-muted);
  margin-bottom: 1.5rem;
}

.metric-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f4f8;
}

.metric-item:last-child {
  border-bottom: none;
}

.metric-value {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bgo-blue);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--bgo-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Section spacing ── */
.py-section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

/* ── Who We Are ── */
.who-we-are-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bgo-border);
}

.who-we-are-point:last-child {
  border-bottom: none;
}

.who-we-are-point .point-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 111, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bgo-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Service Cards ── */
.service-card {
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
}

.service-card .card-body {
  padding: 1.75rem;
}

.service-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--bgo-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26, 111, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bgo-blue);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

/* ── Expertise Cards ── */
.expertise-card {
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 1.5rem;
}

.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

.expertise-card i {
  font-size: 1.75rem;
  color: var(--bgo-blue);
  margin-bottom: 1rem;
  display: block;
}

.expertise-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.expertise-card p {
  font-size: 0.85rem;
  color: var(--bgo-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Engagement Cards ── */
.engagement-card {
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1) !important;
}

.engagement-card .card-body {
  padding: 2rem;
}

.engagement-card h5 {
  font-size: 1.05rem;
  transition: color 0.2s;
}

.engagement-card h5:hover {
  color: var(--bgo-blue);
}

.engagement-card p {
  font-size: 0.9rem;
  color: var(--bgo-muted);
  line-height: 1.7;
}

/* ── Badges ── */
.bg-primary-subtle {
  background: rgba(26, 111, 181, 0.1) !important;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--bgo-blue);
  border-color: var(--bgo-blue);
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--bgo-blue-dark);
  border-color: var(--bgo-blue-dark);
}

.btn-outline-primary {
  color: var(--bgo-blue);
  border-color: var(--bgo-blue);
  font-weight: 500;
}

.btn-outline-primary:hover {
  background: var(--bgo-blue);
  border-color: var(--bgo-blue);
}

/* ── Contact ── */
.contact-form {
  border-radius: 1rem;
}

.contact-form .form-control {
  font-size: 0.95rem;
  border-color: #e2e8f0;
  background: #f8fafc;
}

.contact-form .form-control:focus {
  border-color: var(--bgo-blue);
  box-shadow: 0 0 0 3px rgba(26, 111, 181, 0.1);
  background: #fff;
}

.contact-form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bgo-text);
  margin-bottom: 0.4rem;
}

/* ── Footer ── */
footer a {
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .display-4 {
    font-size: 2.2rem;
  }

  .py-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }
}
