/* ============================================================
   BBCS Design System — Beyond Borders Consulting Services
   Built on Bootstrap 5 · 60/30/10 Color Rule
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ============================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* Brand Colors - Restored Navy & Gold Theme */
  --navy: #0A1A2F;
  /* Deep Navy */
  --navy-light: #172A45;
  /* Lighter Navy */
  --navy-dark: #050D18;
  /* Darker Navy */
  --royal-blue: #0A1A2F;
  /* Mapped to Deep Navy */
  --royal-blue-hover: #D4AF37;
  /* Mapped to Gold */
  --royal-blue-light: #172A45;
  --gold: #D4AF37;
  /* Gold */
  --gold-light: #E5C354;
  /* Lighter Gold */
  --gold-dark: #B38F24;
  /* Darker Gold */
  --indigo-accent: #0A1A2F;
  /* Mapped back to Deep Navy */

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #E5C354 0%, #D4AF37 50%, #B38F24 100%);
  --aurora-gradient: linear-gradient(135deg, #172A45 0%, #0A1A2F 50%, #D4AF37 100%);
  --dark-gradient: linear-gradient(135deg, #0A1A2F 0%, #050D18 100%);
  --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);

  /* Glassmorphism Settings (Light theme frosted glass) */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(10, 26, 47, 0.08);
  --glass-border-hover: rgba(212, 175, 55, 0.35);

  --pearl: #F8F9FA;
  --pearl-warm: #F5F3EE;
  --white: #FFFFFF;
  --text-light: #5B626B;
  /* Slate Gray */
  --text-muted: #718096;
  /* Dark Slate Gray for readability */
  --border-light: #E2E8F0;
  /* Clean Light Gray Border */
  --charcoal: #1E1E1E;
  /* Charcoal */

  /* Typography */
  --font-heading: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-body: 'Outfit', 'Montserrat', sans-serif;

  /* Spacing */
  --section-py: 120px;
  --section-py-sm: 80px;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(10, 26, 47, 0.04), 0 2px 4px -1px rgba(10, 26, 47, 0.02);
  --shadow-md: 0 10px 15px -3px rgba(10, 26, 47, 0.06), 0 4px 6px -2px rgba(10, 26, 47, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(10, 26, 47, 0.08), 0 10px 10px -5px rgba(10, 26, 47, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(10, 26, 47, 0.15);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.12);
  --shadow-glow-indigo: 0 0 30px rgba(10, 26, 47, 0.08);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ============================================================
   2. BASE RESET & TYPOGRAPHY
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

a {
  color: var(--royal-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--royal-blue-hover);
}

::selection {
  background: var(--royal-blue);
  color: var(--white);
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.text-navy {
  color: var(--navy) !important;
}

.text-royal-blue {
  color: var(--royal-blue) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-teal {
  color: var(--teal) !important;
}

.text-pearl {
  color: var(--pearl) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-royal-blue {
  background-color: var(--royal-blue) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.bg-teal {
  background-color: var(--gold) !important;
}

.bg-pearl {
  background-color: var(--pearl) !important;
}

.bg-pearl-warm {
  background-color: var(--pearl-warm) !important;
}

.font-heading {
  font-family: var(--font-heading) !important;
}

.font-body {
  font-family: var(--font-body) !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.section-padding {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
}

.gold-line-center {
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin: 0 auto;
}

/* --- Glassmorphism & Modern Visual Effects --- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.glass-panel:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Mouse-tracking Glowing Border Card Effect */
.glow-card {
  position: relative;
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  z-index: 1;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  /* border thickness */
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(212, 175, 55, 0.4),
      rgba(79, 70, 229, 0.25) 30%,
      transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.glow-card:hover::before {
  opacity: 1;
}

.glow-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow-indigo);
  border-color: rgba(255, 255, 255, 0.15);
}

.aurora-bg {
  position: relative;
  overflow: hidden;
}

.aurora-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--aurora-gradient);
  filter: blur(140px);
  opacity: 0.15;
  top: -150px;
  right: -100px;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  animation: auroraFloat 18s ease-in-out infinite alternate;
}

@keyframes auroraFloat {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(80px, 60px) rotate(120deg) scale(1.25);
  }
}

.accent-text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.accent-indigo-gradient {
  background: linear-gradient(135deg, #818CF8 0%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-bg {
  background: var(--gold-gradient) !important;
}

.indigo-gradient-bg {
  background: linear-gradient(135deg, #4F46E5 0%, #818CF8 100%) !important;
}


.subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.bbcs-navbar {
  padding: 18px 0;
  transition: all var(--transition-base);
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

.bbcs-navbar.scrolled {
  background: var(--navy);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.bbcs-navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.bbcs-navbar .navbar-brand img {
  height: 80px !important;
  width: auto;
  max-width: 360px;
  transition: height var(--transition-base);
}

.bbcs-navbar.scrolled .navbar-brand img {
  height: 50px !important;
}

@media (max-width: 575.98px) {
  .bbcs-navbar .navbar-brand img {
    height: 60px !important;
    max-width: 270px;
  }

  .bbcs-navbar.scrolled .navbar-brand img {
    height: 40px !important;
  }
}

.bbcs-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85) !important;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  transition: color var(--transition-fast);
  position: relative;
}

.bbcs-navbar .nav-link:hover,
.bbcs-navbar .nav-link.active {
  color: var(--white) !important;
}

.bbcs-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.bbcs-navbar .nav-link:hover::after,
.bbcs-navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bbcs-navbar .navbar-toggler {
  border: none;
  padding: 4px 8px;
  color: var(--white);
}

.bbcs-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.bbcs-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-cta-btn {
  background: var(--royal-blue) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  transition: all var(--transition-base) !important;
}

.navbar-cta-btn:hover {
  background: var(--royal-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Dropdown styling */
.bbcs-navbar .dropdown-menu {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px 0;
  margin-top: 10px;
  box-shadow: var(--shadow-xl);
}

.bbcs-navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 8px 20px;
  transition: all var(--transition-fast);
}

.bbcs-navbar .dropdown-item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 26, 47, 0.95) 0%,
      rgba(10, 26, 47, 0.85) 60%,
      rgba(5, 13, 24, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero h1 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 .accent-text {
  color: var(--gold);
  font-style: italic;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero .hero-subtitle-lg {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-style: italic;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(196, 161, 55, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Sub-page hero (with bottom and right padding) */
.hero-sub {
  min-height: 60vh;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-sub .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 70px;
  padding-right: clamp(1rem, 5vw, 4rem);
}

.hero-sub .hero-bg::after {
  background: linear-gradient(135deg,
      rgba(10, 26, 47, 0.95) 0%,
      rgba(10, 26, 47, 0.85) 60%,
      rgba(5, 13, 24, 0.7) 100%);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn-primary-bbcs {
  background-color: var(--navy);
  color: var(--white) !important;
  border: 1px solid var(--navy);
  padding: 15px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn-primary-bbcs:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary-bbcs .btn-arrow {
  transition: transform var(--transition-base);
}

.btn-primary-bbcs:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-outline-light-bbcs {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-outline-light-bbcs:hover {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy) !important;
  border: 1px solid var(--gold);
  padding: 15px 36px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-glow-indigo);
}

/* ============================================================
   7. SECTION STYLES
   ============================================================ */

/* --- Asymmetric Editorial About Section --- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  color: var(--navy);
}

.about-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent 70%);
  top: 10%;
  left: -200px;
  pointer-events: none;
}

.about-section h2 {
  color: var(--navy);
}

.about-section p {
  color: var(--text-light);
}

.about-section .lead-text {
  font-size: 1.25rem;
  line-height: 1.85;
  color: var(--navy);
  font-weight: 300;
  margin-bottom: 24px;
}

/* Overlapping Asymmetric Frame */
.asymmetric-image-frame {
  position: relative;
  padding-bottom: 40px;
}

.asymmetric-image-frame .main-img-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 26, 47, 0.08);
  box-shadow: var(--shadow-xl);
  width: 90%;
  position: relative;
  z-index: 2;
}

.asymmetric-image-frame .offset-glow-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.03), rgba(212, 175, 55, 0.1));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  z-index: 3;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.floating-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.floating-badge .badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
}

/* --- Advisory Cards --- */
/* --- Glassmorphic Advisory Cards --- */
.advisory-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.advisory-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(300px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
      rgba(212, 175, 55, 0.25),
      rgba(10, 26, 47, 0.08) 60%,
      transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.advisory-card:hover::before {
  opacity: 1;
}

.advisory-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-6px);
}

.advisory-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10, 26, 47, 0.03);
  border: 1px solid rgba(10, 26, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--navy);
  transition: all var(--transition-base);
}

.advisory-card:hover .card-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: var(--shadow-sm);
}

.advisory-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.advisory-card:hover h4 {
  color: var(--gold);
}

.advisory-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

.advisory-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.85;
  transform: translateY(0);
  transition: all var(--transition-base);
}

.advisory-card:hover .card-link {
  opacity: 1;
  color: var(--gold);
  transform: translateX(4px);
}

/* --- Service Explorer Dashboard --- */
.service-explorer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 992px) {
  .service-explorer {
    flex-direction: row;
  }
}

.explorer-sidebar {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.explorer-tab-btn {
  background: rgba(10, 26, 47, 0.02);
  border: 1px solid rgba(10, 26, 47, 0.05);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: left;
  color: rgba(10, 26, 47, 0.65);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.explorer-tab-btn:hover {
  background: rgba(10, 26, 47, 0.05);
  color: var(--navy);
  border-color: rgba(10, 26, 47, 0.15);
}

.explorer-tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.explorer-tab-btn.active .tab-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

.explorer-tab-btn .tab-arrow {
  transition: transform var(--transition-base);
  font-size: 1.1rem;
}

.explorer-main {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(10, 26, 47, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.explorer-panel {
  display: none;
  animation: explorerFadeIn 0.5s ease forwards;
}

.explorer-panel.active {
  display: block;
}

@keyframes explorerFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Content Carousel & Responsive Pill Bar (<992px) */
@media (max-width: 991.98px) {
  .service-explorer {
    gap: 15px;
  }

  .explorer-sidebar {
    flex: 0 0 auto;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    padding: 6px 2px 14px 2px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .explorer-sidebar::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .explorer-tab-btn {
    flex: 0 0 auto;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
  }

  .explorer-tab-btn .tab-arrow {
    display: none;
  }

  .explorer-main {
    padding: 24px 20px;
    min-height: auto;
    border-radius: var(--radius-md);
    touch-action: pan-y pinch-zoom;
  }

  .explorer-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .explorer-panel p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .explorer-detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .explorer-panel .btn-primary-bbcs {
    width: 100%;
    text-align: center;
  }

  /* Carousel Navigation Bar Below Card */
  .explorer-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
    margin-top: 5px;
  }

  .explorer-carousel-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(10, 26, 47, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
  }

  .explorer-carousel-nav:active {
    transform: scale(0.92);
    background: var(--gold);
    color: var(--navy);
  }

  .explorer-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .explorer-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(10, 26, 47, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .explorer-carousel-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--gold);
  }
}

.explorer-panel h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.explorer-panel p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.explorer-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.explorer-detail-item {
  background: rgba(10, 26, 47, 0.02);
  border: 1px solid rgba(10, 26, 47, 0.04);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: all var(--transition-base);
}

.explorer-detail-item:hover {
  background: rgba(10, 26, 47, 0.05);
  border-color: rgba(10, 26, 47, 0.1);
  transform: translateY(-2px);
}

.explorer-detail-item i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: block;
}

.explorer-detail-item h6 {
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.explorer-detail-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- Why BBCS / Features --- */
.feature-block {
  text-align: center;
  padding: 30px 20px;
  transition: all var(--transition-base);
}

.feature-block:hover {
  transform: translateY(-4px);
}

.feature-block .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(10, 26, 47, 0.03);
  border: 1px solid rgba(10, 26, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all var(--transition-base);
}

.feature-block:hover .feature-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-sm);
  border-color: var(--navy);
}

.feature-block h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  color: var(--navy);
}

.feature-block p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Industries Pills --- */
.industry-pill {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(10, 26, 47, 0.08);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--navy);
  background: rgba(10, 26, 47, 0.03);
  transition: all var(--transition-base);
  margin: 6px;
  cursor: default;
}

.industry-pill:hover {
  border-color: var(--gold);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner .accent-italic {
  font-style: italic;
  color: var(--gold);
}

/* --- Expertise Grid (Aviation page) --- */
.expertise-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.expertise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.expertise-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-4px);
  background: var(--glass-bg-hover);
}

.expertise-card:hover::after {
  transform: scaleX(1);
}

.expertise-card .expertise-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(10, 26, 47, 0.05);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
}

.expertise-card .expertise-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.expertise-card h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.expertise-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.65;
}

/* --- Breadcrumb --- */
.bbcs-breadcrumb {
  padding: 16px 0;
  background: transparent;
  position: relative;
  z-index: 3;
}

.bbcs-breadcrumb .breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
}

.bbcs-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bbcs-breadcrumb .breadcrumb-item a:hover {
  color: var(--white);
}

.bbcs-breadcrumb .breadcrumb-item.active {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}

.bbcs-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   8. FOOTER
   ============================================================ */
.bbcs-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.bbcs-footer .footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.bbcs-footer .footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.bbcs-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.bbcs-footer h6 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.bbcs-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bbcs-footer .footer-links li {
  margin-bottom: 10px;
}

.bbcs-footer .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 400;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bbcs-footer .footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.bbcs-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.bbcs-footer .footer-contact-item i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 0.85rem;
}

.footer-values {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 24px 0;
}

.footer-values .values-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-values .values-text .value-dot {
  color: var(--gold);
  margin: 0 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ============================================================
   9. SCROLL ANIMATIONS (Guaranteed Content Visibility)
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-children,
.reveal-children > * {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-children.revealed > * {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-children.revealed>*:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-children.revealed>*:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-children.revealed>*:nth-child(3) {
  transition-delay: 0.15s;
}

.reveal-children.revealed>*:nth-child(4) {
  transition-delay: 0.2s;
}

.reveal-children.revealed>*:nth-child(5) {
  transition-delay: 0.25s;
}

.reveal-children.revealed>*:nth-child(6) {
  transition-delay: 0.3s;
}

.reveal-children.revealed>*:nth-child(7) {
  transition-delay: 0.35s;
}

.reveal-children.revealed>*:nth-child(8) {
  transition-delay: 0.4s;
}

.reveal-children.revealed>*:nth-child(9) {
  transition-delay: 0.45s;
}

.reveal-children.revealed>*:nth-child(10) {
  transition-delay: 0.5s;
}

.reveal-children.revealed>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   10. RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  :root {
    --section-py: 70px;
  }

  .bbcs-navbar {
    background: var(--navy) !important;
    padding: 12px 0;
  }

  .bbcs-navbar .navbar-collapse {
    background: var(--navy);
    padding: 16px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 85vh;
  }

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

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

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-py: 50px;
  }

  .hero {
    min-height: 80vh;
  }

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

  h2 {
    font-size: 1.75rem;
  }

  .advisory-card {
    padding: 30px 24px;
  }

  .bbcs-footer {
    padding: 50px 0 0;
  }
}

/* ============================================================
   11. MISC
   ============================================================ */

/* Stats section */
.stat-item {
  text-align: center;
  padding: 24px 16px;
}

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

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.glass-panel .stat-label {
  color: rgba(10, 26, 47, 0.75) !important;
}

/* Decorative elements */
.deco-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.12);
  position: absolute;
  pointer-events: none;
}

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Override bootstrap focus */
.form-control:focus,
.btn:focus {
  box-shadow: 0 0 0 3px rgba(10, 26, 47, 0.2);
}

/* Offcanvas for mobile */
@media (max-width: 991.98px) {
  .navbar-cta-btn {
    margin-top: 12px;
    display: block;
    text-align: center;
  }
}

/* --- Premium Custom Contact Modal Portal --- */
.contact-portal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 47, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.contact-portal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.contact-portal-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 26, 47, 0.08);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 580px;
  padding: 40px;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base), opacity var(--transition-base);
  position: relative;
}

.contact-portal-backdrop.active .contact-portal-content {
  transform: scale(1) translateY(0);
}

.contact-portal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(10, 26, 47, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.contact-portal-close:hover {
  color: var(--navy);
}

/* Custom Floating Label Inputs */
.custom-input-group {
  position: relative;
  margin-bottom: 24px;
}

.custom-input-group input,
.custom-input-group textarea {
  width: 100%;
  padding: 16px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 26, 47, 0.15);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-base);
}

.custom-input-group textarea {
  min-height: 100px;
  resize: none;
}

.custom-input-group label {
  position: absolute;
  top: 16px;
  left: 0;
  color: rgba(10, 26, 47, 0.5);
  font-family: var(--font-body);
  font-size: 1rem;
  pointer-events: none;
  transition: all var(--transition-base);
}

/* Focus and active states for labels */
.custom-input-group input:focus~label,
.custom-input-group input:not(:placeholder-shown)~label,
.custom-input-group textarea:focus~label,
.custom-input-group textarea:not(:placeholder-shown)~label {
  top: -12px;
  font-size: 0.8rem;
  color: var(--gold-dark);
}

.custom-input-group input:focus,
.custom-input-group textarea:focus {
  border-bottom-color: var(--navy);
}

.custom-input-group .input-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width var(--transition-base);
}

.custom-input-group input:focus~.input-bar,
.custom-input-group textarea:focus~.input-bar {
  width: 100%;
}

/* ============================================================
   WHO WE ARE PAGE COMPONENTS
   ============================================================ */

/* --- Vision & Mission Cards --- */
.vision-mission-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.vision-mission-card:hover {
  background: var(--white);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: translateY(-6px);
}

.vision-mission-card:hover::before {
  opacity: 1;
}

.vm-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.vision-mission-card:hover .vm-icon-box {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05) rotate(3deg);
}

.vision-mission-card h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.vision-mission-card p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--navy-light);
  margin-bottom: 0;
}

/* --- Philosophy Cards --- */
.philosophy-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.philosophy-card .ph-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.25);
  position: absolute;
  top: 20px;
  right: 28px;
  line-height: 1;
  transition: color var(--transition-base);
}

.philosophy-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-6px);
}

.philosophy-card:hover .ph-number {
  color: var(--gold);
}

.philosophy-card .ph-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 26, 47, 0.04);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.philosophy-card:hover .ph-icon {
  background: var(--navy);
  color: var(--white);
}

.philosophy-card h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.philosophy-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Value Cards --- */
.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  background: var(--white);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-5px);
}

.value-card .value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.06) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(10, 26, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.value-card:hover .value-icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: scale(1.08);
}

.value-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.value-card:hover h5 {
  color: var(--navy-dark);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Quote Callout Card --- */
.quote-callout-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.quote-callout-card::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 12rem;
  position: absolute;
  top: -40px;
  left: 20px;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
  pointer-events: none;
}

.quote-callout-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.quote-callout-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* ============================================================
   PRACTICE-SPECIFIC DISTINCT VISUAL LAYOUTS
   ============================================================ */

/* --- 1. Strategic Advisory: Connected Timeline & Deliverables --- */
.strategy-timeline-container {
  position: relative;
  padding-left: 30px;
  border-left: 2px dashed rgba(212, 175, 55, 0.4);
}

.strategy-timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.strategy-timeline-step::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-glow);
}

.strategy-timeline-step h5 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.deliverable-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.deliverable-badge {
  background: rgba(10, 26, 47, 0.05);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(10, 26, 47, 0.08);
}

/* --- 2. Investment Advisory: Deal Ticker & Financial Cards --- */
.deal-ticker-bar {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.deal-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.92rem;
}

.deal-ticker-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

.deal-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.deal-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: translateY(-6px);
}

.deal-badge-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.deal-card h4 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.deal-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.deal-card .deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 26, 47, 0.08);
}

.deal-card .deliverable-item {
  font-size: 0.83rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.deal-card .deliverable-item i {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* --- 3. Government Advisory: Institutional Pillars --- */
.institutional-card {
  background: var(--pearl-warm);
  border: 1px solid rgba(10, 26, 47, 0.1);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  height: 100%;
  transition: all var(--transition-base);
}

.institutional-card:hover {
  border-top-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.institutional-card .inst-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* --- 4. Board & CEO Advisory: Executive Foil Box --- */
.executive-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.executive-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: translateY(-6px);
}

.executive-card h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.executive-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --- 5. Infrastructure & Mobility: Corridor Cards --- */
.corridor-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: all var(--transition-base);
}

.corridor-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-5px);
}

.corridor-card .corridor-icon {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  display: inline-block;
  transition: color var(--transition-base);
}

.corridor-card:hover .corridor-icon {
  color: var(--gold);
}

/* --- Desktop Dropdown Hover Functionality Only (992px & above) --- */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* --- Fix Dropdown Item Colors to Match Navy & Gold Theme --- */
.dropdown-menu {
  background-color: #0A1A2F !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.85) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(212, 175, 55, 0.15) !important;
  color: #D4AF37 !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: rgba(212, 175, 55, 0.2) !important;
  color: #D4AF37 !important;
}