/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #122236;
  --navy-light: #1a3050;
  --baby-blue:  #89CFF0;
  --baby-blue-hover: #a8daf5;
  --white:      #ffffff;
  --gray-100:   #f8f9fa;
  --gray-600:   #6c757d;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── Base ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: #1a1a2e;
  padding-top: 72px; /* navbar height */
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.bc-navbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(137,207,240,0.12);
  padding: 0.75rem 0;
}
.bc-logo-badge {
  width: 36px; height: 36px;
  background: var(--baby-blue);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  color: var(--navy);
  flex-shrink: 0;
}
.bc-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bc-brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--baby-blue);
  font-family: var(--font-display);
  font-weight: 600;
}
.bc-navbar .nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}
.bc-navbar .nav-link:hover,
.bc-navbar .nav-link.active { color: var(--baby-blue); }
.bc-admin-link { color: rgba(255,255,255,0.3) !important; font-size: 0.7rem !important; }
.bc-admin-link:hover { color: rgba(255,255,255,0.6) !important; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.bc-btn-primary {
  background: var(--baby-blue);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  padding: 0.55rem 1.4rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.bc-btn-primary:hover {
  background: var(--baby-blue-hover);
  color: var(--navy);
  transform: translateY(-1px);
}
.bc-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 0.5rem 1.4rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.bc-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.bc-hero {
  min-height: 92vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.bc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(137,207,240,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137,207,240,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.bc-hero-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--baby-blue);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.bc-hero h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.92;
  color: #fff;
  margin-bottom: 1.5rem;
}
.bc-hero h1 span { color: var(--baby-blue); }
.bc-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.bc-hero-sub strong { color: #fff; }

/* ── Stats Bar ───────────────────────────────────────────────────────────────── */
.bc-stats {
  background: var(--baby-blue);
  padding: 2rem 0;
}
.bc-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.bc-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,27,42,0.65);
}
.bc-stat-divider {
  width: 1px;
  background: rgba(13,27,42,0.2);
  align-self: stretch;
}

/* ── Section Headings ────────────────────────────────────────────────────────── */
.bc-section { padding: 5rem 0; }
.bc-section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--baby-blue);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.bc-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.bc-section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Service Cards ───────────────────────────────────────────────────────────── */
.bc-service-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.bc-service-card:hover {
  box-shadow: 0 12px 40px rgba(13,27,42,0.1);
  transform: translateY(-4px);
  border-color: var(--baby-blue);
}
.bc-service-icon {
  width: 52px; height: 52px;
  background: rgba(137,207,240,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--baby-blue);
  margin-bottom: 1.25rem;
}
.bc-service-card h5 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.bc-service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ── About Section ───────────────────────────────────────────────────────────── */
.bc-about { background: var(--gray-100); }
.bc-about-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.bc-about-img img { width: 100%; height: 420px; object-fit: cover; }
.bc-years-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px; height: 110px;
  background: var(--baby-blue);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.bc-years-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.bc-years-badge .lbl {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--navy);
  text-transform: uppercase;
}

/* ── Expertise Grid ──────────────────────────────────────────────────────────── */
.bc-expertise { background: var(--navy); }
.bc-expertise .bc-section-title { color: #fff; }
.bc-expertise .bc-section-sub { color: rgba(255,255,255,0.55); }
.bc-expertise-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.75rem;
  height: 100%;
  transition: background 0.2s, border-color 0.2s;
}
.bc-expertise-card:hover {
  background: rgba(137,207,240,0.08);
  border-color: rgba(137,207,240,0.3);
}
.bc-expertise-card h6 {
  font-size: 0.95rem;
  color: var(--baby-blue);
  margin-bottom: 0.75rem;
}
.bc-expertise-card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.bc-expertise-card ul li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding: 0.2rem 0;
}
.bc-expertise-card ul li::before {
  content: '→ ';
  color: var(--baby-blue);
  font-weight: 600;
}

/* ── Why Choose Us ───────────────────────────────────────────────────────────── */
.bc-why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.bc-why-icon {
  font-size: 2.5rem;
  color: var(--baby-blue);
  margin-bottom: 1rem;
}
.bc-why-card h5 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.bc-why-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* ── Reach Section ───────────────────────────────────────────────────────────── */
.bc-reach { background: var(--navy-mid); }
.bc-reach .bc-section-title { color: #fff; }
.bc-reach-region {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(137,207,240,0.15);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}
.bc-reach-region h5 { color: var(--baby-blue); font-size: 1rem; margin-bottom: 0.5rem; }
.bc-reach-region p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 0; }

/* ── Contact Section ─────────────────────────────────────────────────────────── */
.bc-contact { background: var(--gray-100); }
.bc-contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(13,27,42,0.07);
}
.bc-contact-form .form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.bc-contact-form .form-control,
.bc-contact-form .form-select {
  border: 1px solid #dde2e8;
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s;
}
.bc-contact-form .form-control:focus,
.bc-contact-form .form-select:focus {
  border-color: var(--baby-blue);
  box-shadow: 0 0 0 3px rgba(137,207,240,0.15);
}
.bc-contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bc-contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(137,207,240,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--baby-blue);
  flex-shrink: 0;
}
.bc-contact-info-item a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.bc-contact-info-item a:hover { color: var(--baby-blue); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.bc-footer { background: var(--navy); }
.bc-footer-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--baby-blue);
  margin-bottom: 1rem;
}
.bc-footer-links { padding: 0; }
.bc-footer-links li { margin-bottom: 0.5rem; }
.bc-footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.bc-footer-links a:hover { color: var(--baby-blue); }
.bc-footer-contact { padding: 0; }
.bc-footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.bc-footer-contact li i { color: var(--baby-blue); }
.bc-footer-contact a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-footer-contact a:hover { color: var(--baby-blue); }
.border-white-10 { border-color: rgba(255,255,255,0.1) !important; }

/* ── Admin Panel ─────────────────────────────────────────────────────────────── */
.bc-admin-body { background: #f0f2f5; min-height: 100vh; padding-top: 0; }
.bc-admin-sidebar {
  width: 240px;
  background: var(--navy);
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.bc-admin-main { margin-left: 240px; padding: 2rem; }
.bc-admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  margin: 0 0.5rem 0.25rem;
  transition: background 0.2s, color 0.2s;
}
.bc-admin-nav-link:hover,
.bc-admin-nav-link.active {
  background: rgba(137,207,240,0.1);
  color: var(--baby-blue);
}
.bc-admin-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.bc-status-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.bc-status-new    { background: rgba(255,193,7,0.15);  color: #b8860b; }
.bc-status-read   { background: rgba(13,110,253,0.12); color: #0d6efd; }
.bc-status-replied{ background: rgba(25,135,84,0.12);  color: #198754; }

/* ── Login Page ──────────────────────────────────────────────────────────────── */
.bc-login-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.bc-login-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(8px);
}

/* ── Utilities ───────────────────────────────────────────────────────────────── */
.text-baby-blue { color: var(--baby-blue) !important; }
.bg-navy        { background: var(--navy) !important; }
.font-display   { font-family: var(--font-display) !important; }

/* ── Animations ──────────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Gallery / Case Studies ─────────────────────────────────────────────────── */
.bc-page-hero {
  background: var(--navy);
  padding: 6rem 0 4rem;
  margin-top: 72px;
}
.bc-page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
}
.bc-page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.bc-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--baby-blue);
  margin-bottom: 0.75rem;
}
.bc-filter-btn {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.2s;
}
.bc-filter-btn:hover,
.bc-filter-btn.active {
  background: var(--navy);
  color: #fff;
}
.bc-gallery-section {
  background: #f4f6f9;
}
.bc-case-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(13,27,42,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.bc-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13,27,42,0.13);
}
.bc-case-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--baby-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.bc-case-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--baby-blue);
  background: rgba(137,207,240,0.15);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.bc-case-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.bc-case-body {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.bc-case-results {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.bc-case-results li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.bc-case-results li i {
  color: var(--baby-blue);
  margin-right: 0.4rem;
}
.bc-case-meta {
  font-size: 0.75rem;
  color: #718096;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.75rem;
  margin-top: auto;
}
.bc-case-meta i {
  margin-right: 0.25rem;
}
