/* ==========================================================================
   NORWICK ENERGY RESOURCES LIMITED - HAND-CRAFTED ENTERPRISE STYLESHEET
   Hand-Coded Custom UI Architecture, Design Tokens & Responsive Polish
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BRAND TOKENS & CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  --navy: #1B2A4A;
  --navy-dark: #121C33;
  --navy-light: #243B66;
  --green: #5B9C2F;
  --green-hover: #4A8226;
  --green-subtle: rgba(91, 156, 47, 0.12);
  --light-green: #8CE157;
  --light-green-subtle: rgba(140, 225, 87, 0.15);
  --gold: #D4AF37;
  --gold-hover: #C5A059;
  --gold-subtle: rgba(212, 175, 55, 0.14);
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA771C 100%);
  --grey: #F4F5F7;
  --grey-light: #FAFAFC;
  --grey-border: #E2E8F0;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #E2E8F0;
  --white: #FFFFFF;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-height: 84px;
  --header-height-scrolled: 68px;
  --transition-speed: 0.4s;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 3px 10px rgba(18, 28, 51, 0.04);
  --shadow-lg: 0 6px 16px rgba(18, 28, 51, 0.05);
  --shadow-xl: 0 8px 20px rgba(18, 28, 51, 0.06);
  --max-width: 1320px;
}

/* --------------------------------------------------------------------------
   2. BASE RESET & HUMAN HAND-CODED TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background-color: var(--grey-light);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

body.no-scroll {
  overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-hover);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   3. REUSABLE SECTION HEADINGS & ACCENTS
   -------------------------------------------------------------------------- */
.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-subtitle {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--green);
  display: inline-block;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  display: block;
  width: auto;
  margin: 0 auto;
  padding-bottom: 0.85rem;
  line-height: 1.25;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background-color: var(--green);
  border-radius: 2px;
}

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

.section-description {
  max-width: 680px;
  margin: 1.1rem auto 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: center;
}

.section-description-dark {
  color: var(--text-light);
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.header-actions-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   4. HEADER STYLES (STICKY, GLASSMORPHISM & MEGA MENU)
   -------------------------------------------------------------------------- */
.norwick-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(27, 42, 74, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: height var(--transition-speed) ease, background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.norwick-header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  background-color: rgba(18, 28, 51, 0.98);
}

.norwick-header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.norwick-logo {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.norwick-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

.header-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height var(--transition-speed) ease;
}

.norwick-header.scrolled .header-logo-img {
  height: 30px;
}

.norwick-nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .norwick-nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.norwick-nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.5rem;
}

.norwick-nav-item {
  position: relative;
}

.norwick-nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  transition: color var(--transition-speed) ease, background-color var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.norwick-nav-link:hover,
.norwick-nav-link:focus,
.norwick-nav-item.mega-active > .norwick-nav-link {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}

.norwick-nav-link.active {
  color: var(--green);
  font-weight: 700;
  position: relative;
}

.norwick-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background-color: var(--green);
  border-radius: 2px;
}

.chevron-icon {
  font-size: 0.75rem;
  transition: transform var(--transition-speed) ease;
}

.norwick-nav-item.mega-active .chevron-icon {
  transform: rotate(180deg);
}

/* Desktop 2-Column Mega-Menu */
.norwick-mega-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 840px;
  background-color: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  box-shadow: var(--shadow-xl);
  padding: 1.75rem;
  display: none;
  opacity: 0;
  z-index: 1010;
}

.mega-menu-title {
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.mega-menu-link:hover {
  background-color: rgba(91, 156, 47, 0.15);
  color: var(--white);
  transform: translateX(4px);
}

.mega-menu-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  font-size: 0.95rem;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.mega-menu-link:hover .mega-menu-icon {
  background-color: var(--green);
  color: var(--white);
}

.btn-quote {
  background-color: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-quote:hover {
  background-color: var(--green-hover);
  box-shadow: 0 6px 16px rgba(91, 156, 47, 0.35);
  transform: translateY(-1px);
}

/* Hamburger Toggle Button */
.norwick-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

@media (min-width: 992px) {
  .norwick-hamburger {
    display: none;
  }
}

.norwick-hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.norwick-hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.norwick-hamburger.open span:nth-child(2) { opacity: 0; }
.norwick-hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile Drawer & Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 16, 30, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer,
.norwick-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #121C33 0%, #0A101E 100%);
  z-index: 1050;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1), visibility var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 2rem 1.5rem;
  overflow-y: auto;
  box-shadow: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer.open,
.norwick-mobile-drawer.open,
.norwick-mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
}

.mobile-drawer-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.mobile-drawer-close:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: rotate(90deg);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all var(--transition-speed) ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  background: rgba(91, 156, 47, 0.15);
  border-left-color: var(--green);
}

.mobile-nav-link.active {
  color: #8ce157;
  font-weight: 700;
}

.mobile-accordion-toggle {
  cursor: pointer;
}

.mobile-accordion-toggle .accordion-icon {
  font-size: 0.85rem;
  transition: transform var(--transition-speed) ease;
}

.mobile-accordion-toggle.expanded .accordion-icon {
  transform: rotate(180deg);
}

.mobile-divisions-list {
  display: none;
  list-style: none;
  padding-left: 1rem;
  margin: 0.25rem 0 0.5rem 0;
  border-left: 2px solid rgba(91, 156, 47, 0.4);
}

.mobile-division-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  transition: color var(--transition-speed) ease;
}

.mobile-division-link:hover {
  color: var(--green);
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-cta .btn-quote {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   SECTION 1: PREMIUM CORPORATE HERO SECTION WITH FOCUS VIDEO BACKGROUND
   -------------------------------------------------------------------------- */
.hero-premium-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 3.5rem 0 4.5rem 0;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: filter 0.5s ease;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 35%, rgba(91, 156, 47, 0.08) 0%, transparent 70%),
    radial-gradient(circle at 50% 75%, rgba(212, 175, 55, 0.06) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10, 16, 30, 0.55) 0%, rgba(10, 16, 30, 0.35) 50%, rgba(10, 16, 30, 0.75) 100%);
  z-index: 2;
}

.hero-ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.hero-content-track {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 5;
}

/* Staggered Element Entrance & Exit Animations for Slide Items */
.hero-content-slide .hero-live-badge,
.hero-content-slide .hero-premium-title,
.hero-content-slide .hero-premium-subtext,
.hero-content-slide .hero-premium-actions,
.hero-content-slide .hero-highlight-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Staggered Delays on Active Slide */
.hero-content-slide.active .hero-live-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.hero-content-slide.active .hero-premium-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.hero-content-slide.active .hero-premium-subtext {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.hero-content-slide.active .hero-premium-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}

.hero-content-slide.active .hero-highlight-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-content-slide.active .hero-highlight-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.72s;
}

.hero-content-slide.active .hero-highlight-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.84s;
}

/* Glass Slider Navigation Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  background: rgba(10, 16, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.hero-slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
  background: var(--green);
  border-color: var(--light-green);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(91, 156, 47, 0.5);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-dot {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
}

.hero-dot .dot-num {
  font-weight: 800;
  color: var(--gold);
  font-size: 0.75rem;
}

.hero-dot:hover,
.hero-dot.active {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  border-color: var(--light-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(91, 156, 47, 0.4);
}

.hero-dot.active .dot-num {
  color: var(--white);
}

/* Slide Autoplay Progress Bar */
.hero-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 25;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, #8ce157 50%, var(--gold) 100%);
  transition: width 0.05s linear;
}

.hero-premium-section .container {
  position: relative;
  z-index: 10;
}

.hero-premium-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: rgba(18, 28, 51, 0.70);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold);
  animation: pulseGreenDot 2s infinite;
}

.hero-premium-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
}

@media (min-width: 768px) {
  .hero-premium-title {
    font-size: 3.5rem;
  }
}

.highlight-text-gradient {
  background: linear-gradient(135deg, #8CE157 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.hero-premium-subtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f1f5f9;
  margin: 0 auto 2.25rem auto;
  max-width: 720px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.25rem;
}

.btn-hero-primary,
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  min-height: 52px;
  transition: all var(--transition-speed) var(--ease-smooth);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(91, 156, 47, 0.35);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #68ae37 0%, var(--green) 100%);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.btn-hero-primary i {
  transition: transform var(--transition-speed) ease;
}

.btn-hero-primary:hover i {
  transform: translateY(3px);
}

.btn-hero-ghost {
  background: rgba(212, 175, 55, 0.10);
  border-color: var(--gold);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.btn-hero-ghost i {
  transition: transform var(--transition-speed) ease;
}

.btn-hero-ghost:hover i {
  transform: translateX(4px);
}

/* Elevated Glass Highlight Cards Grid */
.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.hero-highlight-card {
  background: rgba(18, 28, 51, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: all var(--transition-speed) var(--ease-smooth);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.hero-highlight-card:hover {
  background: rgba(18, 28, 51, 0.75);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 0 20px rgba(212, 175, 55, 0.15);
}

.highlight-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
}

.hero-highlight-card:hover .highlight-icon {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.05);
}

.highlight-info {
  display: flex;
  flex-direction: column;
}

.highlight-val {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.highlight-lbl {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
}



/* --------------------------------------------------------------------------
   SECTION 2: LUXURY EXECUTIVE STATS BAR (FLOATING CARD STRIP)
   -------------------------------------------------------------------------- */
.stats-bar-section {
  position: relative;
  z-index: 30;
  margin-top: -42px;
  margin-bottom: 2.5rem;
  padding: 0;
  background: transparent;
}

.stats-bar-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 1.75rem 2.25rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border: 1px solid rgba(10, 16, 30, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.stats-bar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #478223 0%, #5B9C2F 25%, #D4AF37 50%, #8CE157 75%, #5B9C2F 100%);
}

.stats-bar-card:hover {
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.6rem 0.5rem;
  border-radius: 12px;
  transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

@media (min-width: 992px) {
  .stat-card:not(:last-child) {
    border-right: 1px solid rgba(10, 16, 30, 0.08);
    padding-right: 1.25rem;
  }
}

.stat-card:hover {
  transform: translateY(-3px);
  background-color: rgba(91, 156, 47, 0.03);
}

.stat-icon-circle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.14) 0%, rgba(91, 156, 47, 0.04) 100%);
  border: 1px solid rgba(91, 156, 47, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover .stat-icon-circle {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: var(--green);
  color: #8ce157;
  box-shadow: 0 8px 20px rgba(10, 16, 30, 0.25);
  transform: scale(1.05);
}

.stat-info-body {
  display: flex;
  flex-direction: column;
}

.stat-number-wrapper {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.1;
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.1rem;
}

.stat-accent {
  color: var(--green);
  font-weight: 800;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color var(--transition-speed) ease;
}

.stat-card:hover .stat-label {
  color: var(--navy-dark);
}

/* --------------------------------------------------------------------------
   SECTION 4: INTRO / ULTRA-LUXURY LIGHT EXECUTIVE ABOUT SHOWCASE
   -------------------------------------------------------------------------- */
.about-teaser-section {
  padding: 6.5rem 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(91, 156, 47, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.about-luxury-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-luxury-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 4.5rem;
    align-items: stretch;
  }
}

/* Left Overlapping Dual Image Gallery */
.about-image-column {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-overlapping-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 490px;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

/* Floating Luxury Backplate Frame Behind Primary Image */
.luxury-image-backplate {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 84%;
  height: calc(100% - 20px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.12) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 1.5px dashed rgba(91, 156, 47, 0.3);
  z-index: 1;
  pointer-events: none;
}

.about-primary-frame {
  width: 84%;
  height: calc(100% - 20px);
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.about-primary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-primary-frame:hover .about-primary-img {
  transform: scale(1.04);
}

.primary-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.05) 0%, rgba(10, 16, 30, 0.2) 100%);
  pointer-events: none;
}

.about-secondary-frame {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border: 4px solid #FFFFFF;
  outline: 1.5px solid var(--green);
  z-index: 5;
}

.about-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-secondary-frame:hover .about-secondary-img {
  transform: scale(1.06);
}

/* Floating Light Luxury Badges */
.about-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 15px 35px rgba(10, 16, 30, 0.12);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  transition: transform 0.3s ease;
}

.about-floating-badge:hover {
  transform: translateY(-3px);
}

.about-badge-top {
  top: 1.25rem;
  right: 1.25rem;
  border: 1px solid rgba(91, 156, 47, 0.3);
  max-width: 240px;
}

.about-badge-bottom {
  bottom: 0.5rem;
  left: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  max-width: 285px;
}

.badge-live-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.pulse-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  border-radius: 50%;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(91, 156, 47, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(91, 156, 47, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(91, 156, 47, 0);
  }
}

.floating-badge-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.15) 0%, rgba(91, 156, 47, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-badge-content {
  display: flex;
  flex-direction: column;
}

.badge-accent-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.badge-accent-title i {
  color: var(--green);
  margin-right: 0.2rem;
}

.badge-number-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.badge-big-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.badge-unit {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
}

.badge-subtext {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.15rem;
}

/* Right Content Column */
.about-content-column {
  display: flex;
  flex-direction: column;
}

.luxury-sub-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(91, 156, 47, 0.08);
  border: 1px solid rgba(91, 156, 47, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  width: fit-content;
}

.about-luxury-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.text-gradient-green-gold {
  color: var(--green);
  background: linear-gradient(135deg, var(--green) 0%, #3b6b1d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-lead-text {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Ultra Pillars 2x2 Grid */
.ultra-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 576px) {
  .ultra-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(10, 16, 30, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 156, 47, 0.35);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.pillar-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(91, 156, 47, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-pillar-card:hover .pillar-icon-box {
  background: var(--green);
  color: var(--white);
}

.pillar-info {
  display: flex;
  flex-direction: column;
}

.pillar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.pillar-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

/* Executive Leadership Endorsement Box */
.about-quote-box {
  position: relative;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.08) 0%, rgba(10, 16, 30, 0.03) 100%);
  border: 1px solid rgba(91, 156, 47, 0.25);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 1.25rem 1.5rem 1.25rem 2.75rem;
  margin-bottom: 2rem;
}

.about-quote-box .quote-corner {
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  font-size: 1.25rem;
  color: var(--green);
  opacity: 0.85;
}

.about-quote-box .quote-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #0a101e !important;
  line-height: 1.65;
  font-weight: 600;
  margin: 0;
}

.about-quote-box .executive-board-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(91, 156, 47, 0.3);
}

/* Ultra Action Buttons */
.about-action-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--green) 0%, #478223 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.65rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(91, 156, 47, 0.25);
  transition: all 0.3s ease;
}

.btn-luxury-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  color: var(--white);
}

.btn-luxury-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(10, 16, 30, 0.15);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(91, 156, 47, 0.04);
}

/* --------------------------------------------------------------------------
   SECTION 5: FEATURED DIVISIONS GRID (INDUSTRIAL CARDS)
   -------------------------------------------------------------------------- */
.divisions-section {
  padding: 6rem 0;
  background-color: var(--grey-light);
}

.divisions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 576px) {
  .divisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .divisions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.division-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 3rem 2.25rem 2.5rem;
  min-height: 380px;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04), 0 2px 6px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.division-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, #8ce157 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

/* Topic Background Image Layer */
.division-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

/* Subtle Glass Gradient Overlay - Reduced Opacity for Clear Image Visibility */
.division-card-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 16, 30, 0.65) 0%, rgba(6, 11, 20, 0.55) 100%);
}

.division-card:hover .division-card-bg {
  opacity: 1;
  transform: scale(1);
}

/* Inner elements float above background image */
.division-icon,
.division-title,
.division-summary,
.division-link {
  position: relative;
  z-index: 2;
  transition: all 0.45s ease;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05), 0 0 30px rgba(91, 156, 47, 0.25);
  border-color: var(--green);
}

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

.division-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.12) 0%, rgba(212, 175, 55, 0.10) 100%);
  border: 1px solid rgba(91, 156, 47, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.55rem;
  margin-bottom: 1.85rem;
  box-shadow: 0 6px 16px rgba(91, 156, 47, 0.10);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.division-card:hover .division-icon {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  border-color: #8ce157;
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 22px rgba(91, 156, 47, 0.4);
}

.division-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.35;
  transition: color 0.45s ease, text-shadow 0.45s ease;
}

.division-card:hover .division-title {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.division-summary {
  font-size: 0.94rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  flex-grow: 1;
  transition: color 0.45s ease, text-shadow 0.45s ease;
}

.division-card:hover .division-summary {
  color: #f1f5f9;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.division-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  transition: all 0.45s ease;
}

.division-link i {
  color: var(--green);
  transition: transform 0.45s ease, color 0.45s ease;
}

.division-card:hover .division-link {
  color: #8ce157;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.division-card:hover .division-link i {
  color: #8ce157;
  transform: translateX(6px);
}

.divisions-cta-wrap {
  text-align: center;
}

/* --------------------------------------------------------------------------
   SECTION 5B: OEM BRANDS & TURBINE / ENGINE SPARES STRIP (LIGHT MODE)
   -------------------------------------------------------------------------- */
.oem-spares-strip {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.oem-spares-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #5B9C2F, transparent);
}

.oem-strip-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.oem-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(91, 156, 47, 0.08);
  border: 1px solid rgba(91, 156, 47, 0.25);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2F6C15;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.oem-strip-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0A162E;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.oem-strip-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #64748B;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

.oem-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-bottom: 3rem;
}

@media (max-width: 1180px) {
  .oem-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .oem-brands-grid {
    grid-template-columns: 1fr;
  }
}

.oem-spares-strip .oem-brand-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1.15rem;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.oem-spares-strip .oem-brand-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5B9C2F, #3B741B);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.oem-spares-strip .oem-brand-card:hover {
  background: #FFFFFF;
  border-color: #5B9C2F;
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(91, 156, 47, 0.15);
}

.oem-spares-strip .oem-brand-card:hover::after {
  opacity: 1;
}

.oem-brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: rgba(91, 156, 47, 0.08);
  border: 1px solid rgba(91, 156, 47, 0.2);
  color: #5B9C2F;
  transition: all 0.35s ease;
}

.oem-brand-icon.gold,
.oem-brand-icon.green {
  background: rgba(91, 156, 47, 0.08);
  border: 1px solid rgba(91, 156, 47, 0.2);
  color: #5B9C2F;
}

.oem-spares-strip .oem-brand-card:hover .oem-brand-icon {
  transform: scale(1.08);
  background: #5B9C2F;
  color: #FFFFFF;
  border-color: #5B9C2F;
  box-shadow: 0 4px 14px rgba(91, 156, 47, 0.35);
}

.oem-brand-info {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
}

.oem-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A162E;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.oem-spares-strip .oem-brand-card:hover .oem-brand-name {
  color: #5B9C2F;
}

.oem-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.45;
}

.oem-strip-action {
  text-align: center;
}

.btn-oem-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, #5B9C2F 0%, #427820 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(91, 156, 47, 0.35);
  transition: all 0.35s ease;
}

.btn-oem-gold:hover {
  background: linear-gradient(135deg, #68ae37 0%, #5B9C2F 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(91, 156, 47, 0.45);
}

.btn-oem-gold i {
  transition: transform 0.3s ease;
}

.btn-oem-gold:hover i {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   SECTION 6: WHY CHOOSE NORWICK (LIGHT MODE PREMIUM CARDS)
   -------------------------------------------------------------------------- */
.trust-section-light {
  padding: 6.5rem 0;
  background: #FFFFFF;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.trust-section-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(91, 156, 47, 0.04) 0%, transparent 55%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.trust-section-light .section-title {
  color: #0F172A !important;
}

.trust-section-light .section-description {
  color: #64748B !important;
  max-width: 720px;
}

.trust-subtitle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.trust-title-dash {
  width: 28px;
  height: 2px;
  background: #5B9C2F;
  display: inline-block;
  border-radius: 2px;
}

.trust-accent-sub {
  color: #5B9C2F !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.16em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin-bottom: 0 !important;
}

.trust-glow-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.title-accent-curve {
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #5B9C2F, #D4AF37);
  border-radius: 3px;
  margin: 0.75rem auto 0 auto;
}

.trust-light-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .trust-light-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-light-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2.35rem 2.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.trust-light-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #5B9C2F, #D4AF37);
  transition: width 0.4s ease;
}

.trust-light-card:hover {
  background: #FFFFFF;
  border-color: #5B9C2F;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(91, 156, 47, 0.15);
}

.trust-light-card:hover::before {
  width: 100%;
}

.trust-card-watermark {
  position: absolute;
  top: 0.85rem;
  right: 1.4rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(15, 23, 42, 0.04);
  font-family: var(--font-main);
  pointer-events: none;
  user-select: none;
  transition: color 0.35s ease, transform 0.35s ease;
}

.trust-light-card:hover .trust-card-watermark {
  color: rgba(91, 156, 47, 0.12);
  transform: translateY(-2px);
}

.trust-light-icon {
  width: 58px;
  height: 58px;
  background: #F0FDF4;
  border: 1.5px solid rgba(91, 156, 47, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
  font-size: 1.55rem;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.trust-light-card:hover .trust-light-icon {
  background: #5B9C2F;
  border-color: #5B9C2F;
  color: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.25);
}

.trust-light-body {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.trust-pillar-tag {
  font-size: 0.76rem;
  font-weight: 800;
  color: #AA771C;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.trust-light-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.trust-light-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.trust-metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #855D00;
  background: #FEF9E7;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.trust-metric-chip i {
  color: #D4AF37;
  font-size: 0.85rem;
}

.trust-light-card:hover .trust-metric-chip {
  background: #FFF7CD;
  border-color: #D4AF37;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

@media (max-width: 600px) {
  .trust-light-card {
    padding: 1.75rem 1.4rem;
    gap: 1.15rem;
  }
  .trust-card-watermark {
    font-size: 2.75rem;
    top: 0.5rem;
    right: 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   FALLBACK: DARK MODE TRUST SECTION (RESERVED FOR SUBPAGES IF NEEDED)
   -------------------------------------------------------------------------- */
.trust-section-dark {
  padding: 6.5rem 0;
  background: radial-gradient(circle at 50% 10%, #0F1A2D 0%, #060A13 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-section-dark .section-title {
  color: #FFFFFF !important;
}

.trust-section-dark .section-description {
  color: #94A3B8 !important;
  max-width: 720px;
}

.trust-section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(91, 156, 47, 0.12) 0%, transparent 55%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.trust-dark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .trust-dark-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-dark-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(15, 23, 42, 0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 2.35rem 2.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trust-dark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #5B9C2F, #D4AF37);
  transition: width 0.4s ease;
}

.trust-dark-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(20, 31, 56, 0.8) 100%);
  border-color: rgba(91, 156, 47, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(91, 156, 47, 0.15);
}

.trust-dark-card:hover::before {
  width: 100%;
}

.trust-dark-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.22) 0%, rgba(91, 156, 47, 0.06) 100%);
  border: 1px solid rgba(91, 156, 47, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8CE157;
  font-size: 1.55rem;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.trust-dark-card:hover .trust-dark-icon {
  background: #5B9C2F;
  border-color: #5B9C2F;
  color: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.4);
}

.trust-dark-body {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.trust-dark-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.trust-dark-desc {
  font-size: 0.94rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   SECTION 7: HOW WE DELIVER (CONNECTED ENGINEERING PIPELINE FLOW)
   -------------------------------------------------------------------------- */
.process-section-pipeline {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
}

.process-pipeline-wrapper {
  position: relative;
  margin-top: 3rem;
}

.process-pipeline-line {
  display: none;
}

@media (min-width: 992px) {
  .process-pipeline-line {
    display: block;
    position: absolute;
    top: 76px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, rgba(91, 156, 47, 0.2) 0%, var(--green) 50%, rgba(91, 156, 47, 0.2) 100%);
    border-radius: 3px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(91, 156, 47, 0.25);
  }
}

.process-pipeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .process-pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .process-pipeline-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

.process-pipeline-step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem 1.85rem;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(10, 16, 30, 0.08);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}

/* Alternating Top & Bottom Slow Fluid Slide Background Overlay */
.process-pipeline-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #060c18 100%);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  pointer-events: none;
}

/* Odd Cards (Step 1 & 3): Slide down smoothly from TOP */
.process-pipeline-step:nth-child(odd)::after {
  transform: translateY(-100%);
}

/* Even Cards (Step 2 & 4): Slide up smoothly from BOTTOM */
.process-pipeline-step:nth-child(even)::after {
  transform: translateY(100%);
}

.process-pipeline-step:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.process-pipeline-step:hover {
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05), 0 0 25px rgba(91, 156, 47, 0.2);
  transform: translateY(-8px);
  border-color: var(--green);
}

/* Ensure inner elements float above sliding background with matching slow transitions */
.process-node-circle,
.process-step-title,
.process-step-desc,
.process-card-footer {
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-node-circle {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);
  border: 2px solid rgba(91, 156, 47, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(10, 16, 30, 0.06);
  transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-pipeline-step:hover .process-node-circle {
  border-color: #8ce157;
  background: linear-gradient(135deg, var(--green) 0%, #3e6d20 100%);
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.node-icon {
  font-size: 1.6rem;
  color: var(--navy);
  transition: color 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-pipeline-step:hover .node-icon {
  color: var(--white);
  transform: scale(1.1);
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  transition: color 0.55s ease;
}

.process-pipeline-step:hover .process-step-title {
  color: var(--white);
}

.process-step-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  transition: color 0.55s ease;
}

.process-pipeline-step:hover .process-step-desc {
  color: #cbd5e1;
}

.process-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: rgba(10, 16, 30, 0.03);
  border: 1px solid rgba(10, 16, 30, 0.06);
  border-radius: 8px;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card-footer i {
  color: var(--green);
  font-size: 0.85rem;
  transition: color 0.55s ease;
}

.process-pipeline-step:hover .process-card-footer {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.process-pipeline-step:hover .process-card-footer i {
  color: #8ce157;
}

/* --------------------------------------------------------------------------
   SECTION 8: REGIONS OF OPERATION (PREMIUM ENTERPRISE TABBED SYSTEM)
   -------------------------------------------------------------------------- */
.regions-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.regions-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .regions-layout {
    grid-template-columns: 360px 1fr;
    gap: 3rem;
  }
}

.region-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.region-tab-btn {
  width: 100%;
  background-color: var(--grey);
  border: 1px solid var(--grey-border);
  border-left: 4px solid transparent;
  padding: 1.25rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-align: left;
  transition: all var(--transition-speed) var(--ease-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.region-tab-btn:hover {
  background-color: #E2E8F0;
  border-color: #CBD5E1;
  transform: translateX(4px);
}

.region-tab-btn.active {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  border-color: var(--navy-dark);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.tab-btn-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(18, 28, 51, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
}

.region-tab-btn.active .tab-btn-icon {
  background-color: var(--gold-subtle);
  color: var(--gold);
}

.tab-btn-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tab-btn-text .tab-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  transition: color var(--transition-speed) ease;
}

.tab-btn-text .tab-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
  transition: color var(--transition-speed) ease;
}

.region-tab-btn.active .tab-btn-text .tab-title {
  color: var(--white);
}

.region-tab-btn.active .tab-btn-text .tab-sub {
  color: var(--text-light);
  opacity: 0.85;
}

.region-tab-btn .region-icon {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-speed) ease;
}

.region-tab-btn.active .region-icon {
  color: var(--gold);
  transform: translateX(3px);
}

/* Region Panels Container */
.region-panels-container {
  position: relative;
  width: 100%;
}

.region-panel-content {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #17243E 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: none;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.region-panel-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.region-panel-content.active {
  display: block;
}

.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.region-panel-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.region-panel-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 780px;
}

/* Feature Chips */
.region-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
/*  margin-bottom: 2.5rem;
  padding-bottom: 2rem;*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.region-feature-chip {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.region-feature-chip i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Footer Stats & CTA inside Panel */
.region-panel-footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.region-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.5rem;
}

@media (min-width: 640px) {
  .region-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.region-stat-item .val {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.region-stat-item .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.region-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  align-self: flex-start;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 14px rgba(91, 156, 47, 0.3);
}

.region-panel-btn:hover {
  background-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 156, 47, 0.45);
}

/* --------------------------------------------------------------------------
   SECTION 9: FEATURED PROJECTS / CASE STUDIES PREVIEW
   -------------------------------------------------------------------------- */
.projects-section {
  padding: 6rem 0;
  background-color: var(--grey-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.project-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.05);
}

.project-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.tag-badge {
  background-color: rgba(27, 42, 74, 0.88);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.tag-badge.green {
  background-color: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
}

.project-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.project-outcome {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   SECTION 10: CERTIFICATIONS & ACCREDITATIONS STRIP
   -------------------------------------------------------------------------- */
.certifications-section {
  padding: 4.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.cert-badge-item {
  background-color: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 1.35rem 1rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.cert-badge-item:hover {
  background-color: var(--navy-dark);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.cert-badge-icon {
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.cert-badge-item:hover .cert-badge-icon {
  color: var(--light-green);
}

.cert-badge-name {
  font-size: 0.85rem;
  font-weight: 700;
}

/* Custom Tooltip */
.custom-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background-color: var(--navy-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  display: none;
  z-index: 1020;
  text-align: center;
  line-height: 1.4;
}

.custom-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--navy-dark) transparent transparent transparent;
}

/* --------------------------------------------------------------------------
   SECTION 11: TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   SECTION 11: TESTIMONIALS & CLIENT ENDORSEMENTS (SPLIT 2-CARD SLIDER)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
}

.testimonial-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .testimonial-split-layout {
    grid-template-columns: 0.95fr 1.85fr;
    gap: 2.5rem;
  }
}

/* Left Executive Brand Card */
.testimonial-left-card {
  background: linear-gradient(135deg, var(--navy) 0%, #060c18 100%);
  border-radius: 20px;
  padding: 2.75rem 2.25rem;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-left-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, #8ce157 100%);
}

.testimonial-brand-header .section-subtitle {
  color: #8ce157;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: block;
}

.testimonial-brand-title {
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.testimonial-brand-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.testimonial-trust-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
}

.rating-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.rating-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  display: flex;
  gap: 0.2rem;
}

.rating-number {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.rating-subtext {
  color: #94a3b8;
  font-size: 0.8rem;
}

.testimonial-feature-chips {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feature-chip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 600;
}

.feature-chip-item i {
  color: #8ce157;
  font-size: 0.95rem;
}

/* Right Testimonials Slider Wrapper */
/* Right Testimonials Dual Vertical Marquee Viewport */
.testimonial-right-wrapper {
  position: relative;
  width: 100%;
}

.vertical-testimonial-viewport {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 20px;
  padding: 0.5rem 0.25rem;
}

/* Luxury Top & Bottom Gradient Overlay Fade Mask */
.vertical-testimonial-viewport::before,
.vertical-testimonial-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 65px;
  z-index: 10;
  pointer-events: none;
}

.vertical-testimonial-viewport::before {
  top: 0;
  background: linear-gradient(to bottom, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
}

.vertical-testimonial-viewport::after {
  bottom: 0;
  background: linear-gradient(to top, #F8FAFC 0%, rgba(248, 250, 252, 0) 100%);
}

.vertical-marquee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  height: 100%;
}

/* On mobile (<640px), show only 1 column (Upward Top Slider) */
.marquee-col-down {
  display: none;
}

@media (min-width: 640px) {
  .vertical-marquee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .marquee-col-down {
    display: block;
  }
}

.marquee-col {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  will-change: transform;
}

/* Left Column - Continuous Auto-Scroll UP */
.marquee-track-up {
  animation: verticalMarqueeUp 24s linear infinite;
}

/* Right Column - Continuous Auto-Scroll DOWN */
.marquee-track-down {
  animation: verticalMarqueeDown 24s linear infinite;
}

/* Pause marquee animation on hover */
.vertical-testimonial-viewport:hover .marquee-track-up,
.vertical-testimonial-viewport:hover .marquee-track-down {
  animation-play-state: paused;
}

/* Keyframes for Upward Marquee */
@keyframes verticalMarqueeUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Keyframes for Downward Marquee */
@keyframes verticalMarqueeDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}

.testimonial-card-item {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 1.65rem 1.45rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  border: 1px solid rgba(10, 16, 30, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  width: 100%;
}

.testimonial-card-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05), 0 0 15px rgba(91, 156, 47, 0.15);
  border-color: rgba(91, 156, 47, 0.35);
  z-index: 5;
}

.quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.quote-icon {
  font-size: 1.6rem;
  color: var(--green);
  opacity: 0.9;
}

.card-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  display: flex;
  gap: 0.15rem;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 16, 30, 0.06);
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.12) 0%, rgba(10, 16, 30, 0.06) 100%);
  border: 1px solid rgba(91, 156, 47, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.slider-arrow {
  background-color: var(--white);
  border: 1px solid rgba(10, 16, 30, 0.12);
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.slider-arrow:hover {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.35);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--green);
  transform: scale(1.2);
}

.dot.active {
  background-color: var(--gold);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   SECTION 12: SUSTAINABILITY / CSR HIGHLIGHT
   -------------------------------------------------------------------------- */
.sustainability-section {
  background-color: var(--grey-light);
  color: var(--text-dark);
  padding: 6rem 0;
  border-top: 1px solid var(--grey-border);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .sustainability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sustainability-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.sustainability-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sustainability-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.sustainability-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   SECTION 13: NEWS / INSIGHTS PREVIEW
   -------------------------------------------------------------------------- */
.news-section {
  padding: 6rem 0;
  background-color: var(--grey);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.news-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.news-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.news-card:hover .news-img-wrapper img {
  transform: scale(1.05);
}

.news-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.news-category {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   SECTION 14: CAREERS TEASER (EXECUTIVE RECRUITMENT BANNER)
   -------------------------------------------------------------------------- */
.careers-section {
  padding: 6rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* --------------------------------------------------------------------------
   SECTION 14: OPEN CAREERS & RECRUITMENT GRID
   -------------------------------------------------------------------------- */
.careers-open-section {
  padding: 6rem 0;
  background-color: var(--grey-light);
  position: relative;
}

.careers-perks-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.perk-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--white);
  border: 1px solid var(--grey-border);
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  color: var(--navy-dark);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(10, 16, 30, 0.04);
}

.perk-chip i {
  color: var(--gold);
  font-size: 1rem;
}

.careers-roles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .careers-roles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.career-role-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: all var(--transition-speed) var(--ease-smooth);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.career-role-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.role-card-badge {
  display: inline-block;
  background-color: var(--green-subtle);
  border: 1px solid var(--green-border);
  color: var(--green-hover);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.role-card-badge.contract-badge {
  background-color: var(--gold-subtle);
  border-color: var(--gold-border);
  color: #B8962E;
}

.role-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.role-card-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.role-card-loc i {
  color: var(--green);
}

.role-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.role-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.role-card-link i {
  color: var(--green);
  transition: transform var(--transition-speed) ease;
}

.career-role-card:hover .role-card-link {
  color: var(--green);
}

.career-role-card:hover .role-card-link i {
  transform: translateX(5px);
}

.careers-action-wrap {
  text-align: center;
}

/* --------------------------------------------------------------------------
   SECTION 15: EXECUTIVE PROJECT CONSULTATION STAGE (DARK FULL-WIDTH)
   -------------------------------------------------------------------------- */
.cta-section-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0c1629 100%);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 40%, rgba(91, 156, 47, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-dark-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-dark-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cta-dark-title {
    font-size: 3rem;
  }
}

.cta-dark-subtext {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 760px;
}

.cta-dark-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.cta-dark-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.cta-highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.cta-highlight-chip i {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   16. FOOTER COMPONENT STYLES (ULTRA-EXECUTIVE LUXURY DESIGN)
   -------------------------------------------------------------------------- */
.norwick-footer {
  background-color: #070c18;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(91, 156, 47, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(18, 28, 51, 0.6) 0%, transparent 50%);
  color: var(--text-light);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

/* Gradient accent line on top of footer */
.norwick-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #478223 0%, #5B9C2F 25%, #D4AF37 50%, #8CE157 75%, #478223 100%);
}

/* Top Luxury Credentials Strip */
.footer-credentials-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.75rem;
  margin-bottom: 3.5rem;
  backdrop-filter: blur(8px);
}

.cred-strip-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
}

.cred-strip-item i {
  color: #8ce157;
  font-size: 1rem;
}

.cred-strip-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.12);
  display: none;
}

@media (min-width: 992px) {
  .cred-strip-divider {
    display: block;
  }
}

/* Main Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) { 
  .footer-grid { 
    grid-template-columns: repeat(2, 1fr); 
  } 
}

@media (min-width: 1024px) { 
  .footer-grid { 
    grid-template-columns: 1.2fr 0.85fr 1.1fr 1.35fr; 
    gap: 2.25rem; 
  } 
}

/* Footer Heading */
.footer-heading {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #8ce157);
  border-radius: 3px;
}

/* Logo & Brand Column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 0.55rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 156, 47, 0.3);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 156, 47, 0.12);
  border: 1px solid rgba(91, 156, 47, 0.25);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  color: #8ce157;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.company-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.company-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.45;
}

.detail-icon-box {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition-speed) ease;
}

.company-detail-item:hover .detail-icon-box {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.company-detail-item a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.company-detail-item a:hover {
  color: #8ce157;
}

/* Links Columns */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.link-arrow {
  font-size: 0.7rem;
  color: var(--green);
  transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-link:hover .link-arrow {
  color: #8ce157;
  transform: translateX(2px);
}

/* Footer Divisions 2-Column Grid */
.footer-divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 0.75rem;
}

.footer-divisions-grid .footer-link {
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .footer-divisions-grid {
    grid-template-columns: 1fr;
  }
}

/* Newsletter Card (Column 4) */
.footer-newsletter-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  backdrop-filter: blur(10px);
}

.newsletter-card-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-card-title .title-icon {
  color: #8ce157;
  font-size: 1rem;
}

.newsletter-text {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 1.1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-field {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.newsletter-field:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(91, 156, 47, 0.35);
  background-color: rgba(0, 0, 0, 0.4);
}

.newsletter-field .field-icon {
  color: var(--green);
  font-size: 0.95rem;
  margin-right: 0.65rem;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  width: 100%;
}

.newsletter-input::placeholder {
  color: #64748b;
}

.newsletter-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-speed) ease;
}

.newsletter-btn:hover {
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.45);
  transform: translateY(-2px);
}

.newsletter-btn .btn-arrow {
  font-size: 0.85rem;
  transition: transform var(--transition-speed) ease;
}

.newsletter-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.newsletter-msg {
  display: none;
  font-size: 0.82rem;
  padding: 0.5rem;
  border-radius: 4px;
  margin-top: 0.35rem;
}

.newsletter-msg.success {
  background-color: rgba(91, 156, 47, 0.2);
  color: #8ce157;
  border: 1px solid rgba(91, 156, 47, 0.4);
}

.newsletter-msg.error {
  background-color: rgba(220, 38, 38, 0.2);
  color: #f87171;
  border: 1px solid rgba(220, 38, 38, 0.4);
}

/* Enhanced Executive Social Hub */
.footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(8px);
}

.social-header-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  background: rgba(91, 156, 47, 0.14);
  border: 1px solid rgba(91, 156, 47, 0.3);
  border-radius: 20px;
  padding: 0.22rem 0.65rem;
  color: #8ce157;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.social-chip-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #8ce157;
  box-shadow: 0 0 8px #8ce157;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.social-label {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(91, 156, 47, 0.4);
}

.social-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Divider Line */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  margin-bottom: 1.75rem;
}

/* Footer Bottom Row */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
  padding-top: 0.25rem;
}

@media (min-width: 992px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-left {
  display: flex;
  align-items: center;
}

.copyright-text strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-sep {
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal-divider {
  display: none;
}

@media (min-width: 992px) {
  .footer-legal-divider {
    display: inline-block;
  }
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-speed) ease;
  white-space: nowrap;
}

.footer-legal-links a:hover {
  color: #8ce157;
}

.developer-credit {
  font-size: 0.84rem;
  color: #94a3b8;
  white-space: nowrap;
}

.developer-credit a {
  color: #8ce157;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-speed) ease, text-decoration var(--transition-speed) ease;
}

.developer-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Scroll To Top Button (Fixed Floating Button with 50px Scroll Trigger) */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: var(--navy-dark);
  border: 2px solid var(--green);
  border-radius: 50%;
  color: #8ce157;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  box-shadow: 0 8px 24px rgba(10, 16, 30, 0.05);
  transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease, transform var(--transition-speed) ease, background-color var(--transition-speed) ease, border-color var(--transition-speed) ease, color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background-color: var(--green);
  border-color: #8ce157;
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

/* --------------------------------------------------------------------------
   INNER PAGE HERO BANNER & BREADCRUMBS
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   ULTRA-LUXURY INNER PAGE HERO BANNER
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   ULTRA-LUXURY INNER PAGE HERO BANNER (DARK EXECUTIVE GLASSMORPHISM)
   -------------------------------------------------------------------------- */
.inner-page-hero {
  position: relative;
  background-color: var(--navy-dark);
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  color: var(--white);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
  transform: scale(1.04);
  transition: transform 10s ease;
}

.inner-page-hero:hover .hero-bg-image {
  transform: scale(1.0);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 16, 30, 0.72) 0%, rgba(15, 26, 46, 0.50) 50%, rgba(10, 16, 30, 0.78) 100%);
  pointer-events: none;
  z-index: 2;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, #8ce157 50%, var(--gold) 100%);
  z-index: 4;
}

.hero-ambient-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 225, 87, 0.12) 0%, rgba(197, 160, 89, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 2;
}

.hero-ambient-glow-left {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 156, 47, 0.1) 0%, rgba(15, 26, 46, 0.15) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 2;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.inner-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.inner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(91, 156, 47, 0.18);
  border: 1px solid rgba(91, 156, 47, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8ce157;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.inner-hero-badge i {
  color: var(--gold);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: #8ce157;
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition-speed) ease;
}

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

.breadcrumb-separator {
  font-size: 0.7rem;
  color: var(--gold);
}

.inner-page-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.inner-page-title span.title-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #8ce157 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inner-page-subtitle {
  font-size: 1.12rem;
  color: #cbd5e1;
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.inner-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-metric-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: #8ce157;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.hero-metric-pill i {
  color: #8ce157;
}

.inner-hero-card-wrap {
  position: relative;
}

.inner-hero-card {
  background: rgba(15, 26, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05), 0 1px 3px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.inner-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8ce157 0%, var(--green) 50%, var(--gold) 100%);
}

.card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-status-dot {
  width: 8px;
  height: 8px;
  background-color: #8ce157;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(140, 225, 87, 0.25);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(140, 225, 87, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(140, 225, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(140, 225, 87, 0); }
}

.card-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.card-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.card-stat-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(140, 225, 87, 0.4);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transform: translateY(-3px);
}

.card-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(140, 225, 87, 0.15);
  color: #8ce157;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card-stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.card-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.3;
}

.card-footer-cta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-cta-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}

.card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8ce157;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.card-cta-link:hover {
  gap: 0.65rem;
  color: #ffffff;
}

.card-contact-row {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.card-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(140, 225, 87, 0.15);
  color: #8ce157;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.card-contact-info {
  display: flex;
  flex-direction: column;
}

.card-contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
}

.card-contact-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #8ce157 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-contact-val:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   CONTACT PAGE & INQUIRY FORM STYLES
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 5.5rem 0;
  background-color: var(--grey-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.35fr;
  }
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(10, 16, 30, 0.08);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 156, 47, 0.35);
  box-shadow: 0 15px 35px rgba(91, 156, 47, 0.1);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(91, 156, 47, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-card-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.contact-card-text a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.contact-form-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  border: 1px solid rgba(10, 16, 30, 0.08);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-group-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(10, 16, 30, 0.15);
  font-size: 0.95rem;
  color: var(--navy);
  background-color: #F8FAFC;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--green);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(91, 156, 47, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, #478223 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(91, 156, 47, 0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

/* --------------------------------------------------------------------------
   EXPANDED DIVISIONS & CAREERS CARDS
   -------------------------------------------------------------------------- */
.division-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .division-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .division-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.division-expanded-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 2rem 1.65rem;
  border: 1px solid rgba(10, 16, 30, 0.08);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.division-expanded-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 156, 47, 0.35);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.division-num-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  background: rgba(91, 156, 47, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 1rem;
}

.division-expanded-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.division-expanded-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Careers Job Cards */
.career-jobs-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(10, 16, 30, 0.08);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .job-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.job-card:hover {
  border-color: rgba(91, 156, 47, 0.35);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transform: translateY(-2px);
}

.job-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.job-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-meta-item {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.job-meta-item i {
  color: var(--green);
}

/* --------------------------------------------------------------------------
   ABOUT PAGE - 6 LUXURY CORPORATE SECTIONS
   -------------------------------------------------------------------------- */

/* Section 2: Vision, Mission & Core Values Grid */
.about-vision-section {
  padding: 5.5rem 0;
  background: #ffffff;
  position: relative;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vm-luxury-card {
  background: #f8fafc;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.vm-luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--green) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.vm-luxury-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(91, 156, 47, 0.3);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.vm-luxury-card:hover::before {
  opacity: 1;
}

.vm-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(91, 156, 47, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.vm-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.vm-card-text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
}

/* Section 3: 4 Global Regional Operating Hubs */
.about-hubs-section {
  padding: 5.5rem 0;
  background: #f8fafc;
  border-top: 1px solid rgba(10, 16, 30, 0.06);
  border-bottom: 1px solid rgba(10, 16, 30, 0.06);
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hub-card {
  background: #ffffff;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transition: all 0.35s ease;
}

.hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border-color: rgba(91, 156, 47, 0.3);
}

.hub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.hub-region-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 156, 47, 0.08);
  border: 1px solid rgba(91, 156, 47, 0.2);
  color: var(--green);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hub-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.hub-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hub-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hub-services-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}

.hub-services-list li i {
  color: var(--green);
  font-size: 0.8rem;
}

/* Section 4: Integrated Division Capability Ecosystem */
.about-ecosystem-section {
  padding: 5.5rem 0;
  background: var(--navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.ecosystem-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.ecosystem-intro .section-subtitle {
  color: #8ce157;
}

.ecosystem-intro .section-title {
  color: #ffffff;
}

.ecosystem-intro .section-description {
  color: #cbd5e1;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.eco-pillar-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.eco-pillar-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #8ce157;
  transform: translateY(-4px);
}

.eco-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(140, 225, 87, 0.15);
  color: #8ce157;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.eco-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.eco-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Section 5: HSE & Compliance Framework */
.about-hse-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.hse-flex-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hse-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.hse-badge-card {
  background: #f8fafc;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.hse-badge-card:hover {
  background: #ffffff;
  border-color: rgba(91, 156, 47, 0.3);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transform: translateY(-3px);
}

.hse-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(91, 156, 47, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.hse-badge-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.hse-badge-sub {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

/* Section 6: Corporate Governance & Board Structure */
.about-governance-section {
  padding: 5.5rem 0;
  background: #f8fafc;
  border-top: 1px solid rgba(10, 16, 30, 0.06);
}

.governance-card {
  background: #ffffff;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.gov-info-col h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.gov-info-col p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.gov-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gov-details-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.gov-details-list li i {
  color: var(--green);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   DIVISIONS PAGE - HOVER BACKGROUND IMAGES & 4 NEW LUXURY SECTIONS
   -------------------------------------------------------------------------- */

.division-expanded-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(10, 16, 30, 0.08);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.division-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.65s ease;
  z-index: 1;
  transform: scale(1.08);
}

.division-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 16, 30, 0.94) 0%, rgba(15, 26, 46, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 2;
}

.division-expanded-card > * {
  position: relative;
  z-index: 3;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.division-expanded-card:hover {
  transform: translateY(-7px);
  border-color: #8ce157;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.division-expanded-card:hover .division-card-bg {
  opacity: 0.35;
  transform: scale(1.0);
}

.division-expanded-card:hover .division-card-overlay {
  opacity: 1;
}

.division-expanded-card:hover .division-num-badge {
  background: rgba(140, 225, 87, 0.2);
  color: #8ce157;
  border-color: rgba(140, 225, 87, 0.4);
}

.division-expanded-card:hover .division-expanded-title {
  color: #ffffff;
}

.division-expanded-card:hover .division-expanded-desc {
  color: #cbd5e1;
}

.division-expanded-card:hover .division-link {
  color: #8ce157;
}

.division-expanded-card:hover .division-link i {
  transform: translateX(5px);
}

/* Section 1: 4-Step EPC Execution Methodology */
.divisions-workflow-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.workflow-step-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.workflow-step-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
}

.workflow-step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--light-green-subtle);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.workflow-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.workflow-step-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Section 2: High-Spec Machinery & Materials Portfolio */
.divisions-capabilities-section {
  padding: 5.5rem 0;
  background: var(--grey-light);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cap-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.cap-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--light-green);
}

.cap-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cap-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

.cap-items-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.cap-tag {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  color: var(--navy);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Section 3: Single-Contractor Advantage & Safety Governance */
.divisions-governance-section {
  padding: 5.5rem 0;
  background: var(--navy);
  color: var(--white);
}

.div-gov-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.div-gov-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  color: var(--light-green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.div-gov-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.div-gov-info p {
  font-size: 0.98rem;
  color: var(--grey-border);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.div-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.div-benefit-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.25rem;
}

.div-benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--light-green);
  margin-bottom: 0.35rem;
}

.div-benefit-item p {
  font-size: 0.82rem;
  color: var(--grey-border);
  margin: 0;
  line-height: 1.45;
}

/* Section 4: International Engineering Standards & Compliance Matrix */
.divisions-standards-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.standard-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-speed) ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.standard-card:hover {
  background: var(--white);
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.standard-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.standard-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  background: var(--light-green-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.standard-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.standard-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   CERTIFICATIONS PAGE LUXURY SECTIONS
   ========================================================================== */

/* SECTION 1: CERTIFICATIONS SHOWCASE GRID */
.cert-matrix-section {
  padding: 5.5rem 0;
  background: var(--grey-light);
  position: relative;
}

.cert-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.cert-luxury-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-speed) ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.cert-luxury-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.cert-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cert-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
}

.cert-card-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--light-green-subtle);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cert-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cert-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.cert-card-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.cert-card-footer i {
  color: var(--green);
}

/* SECTION 2: 4-PILLAR GOVERNANCE PROTOCOL */
.cert-governance-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.pillar-card:hover {
  background: var(--white);
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pillar-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light-green-subtle);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* SECTION 3: EXECUTIVE COMPLIANCE SPOTLIGHT (2-COLUMN LIGHT LUXURY) */
.cert-spotlight-section {
  padding: 6rem 0;
  background: var(--grey-light);
  position: relative;
  border-top: 1px solid var(--grey-border);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.spotlight-content {
  position: relative;
}

.luxury-chip-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.35);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spotlight-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1.25rem 0 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.spotlight-title .text-highlight {
  color: var(--green);
}

.spotlight-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.spotlight-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.spotlight-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-sm);
}

.spotlight-feature-item:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.spotlight-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
}

.spotlight-feature-text h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.spotlight-feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.spotlight-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid var(--grey-border);
  color: var(--navy);
  text-decoration: none;
  min-height: 52px;
  transition: all var(--transition-speed) var(--ease-smooth);
  box-shadow: var(--shadow-sm);
}

.btn-outline-navy:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-navy i {
  color: var(--green);
  transition: color var(--transition-speed) ease;
}

.btn-outline-navy:hover i {
  color: var(--light-green);
}

/* Right Column: Executive Card */
.spotlight-card-wrap {
  position: relative;
}

.spotlight-cert-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 4px solid var(--light-green);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.spotlight-cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-border);
}

.badge-status-green {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  background: var(--light-green-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cert-year-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.spotlight-cert-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.cert-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cert-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cert-check-item i {
  color: var(--green);
  font-size: 1rem;
}

.spotlight-cert-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 600;
}

.spotlight-cert-footer i {
  color: var(--green);
  font-size: 1.1rem;
}

/* ==========================================================================
   CAREERS PAGE LUXURY SECTIONS (STRICT HOME PAGE COLOR PALETTE)
   ========================================================================== */

/* SECTION 1: WHY BUILD YOUR CAREER */
.careers-culture-section {
  padding: 5.5rem 0;
  background: var(--grey-light);
  position: relative;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.culture-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.culture-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.culture-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.culture-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.culture-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* SECTION 2: 4-STEP RECRUITMENT PROCESS */
.careers-process-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.process-step-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.process-step-card:hover {
  background: var(--white);
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.process-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light-green-subtle);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* SECTION 3: OPEN POSITIONS SHOWCASE */
.careers-jobs-section {
  padding: 5.5rem 0;
  background: var(--grey-light);
  position: relative;
}

.career-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.job-luxury-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-sm);
}

.job-luxury-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.job-details-group {
  flex-grow: 1;
}

.job-title-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.job-tags-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--grey-light);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
}

.job-tag-pill i {
  color: var(--green);
}

/* SECTION 4: GENERAL TALENT SPOTLIGHT (2-COLUMN LIGHT LUXURY) */
.careers-spotlight-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  border-top: 1px solid var(--grey-border);
}

.careers-spec-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-top: 4px solid var(--light-green);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
}

.careers-spec-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   NEWS & INSIGHTS PAGE LUXURY SECTIONS (STRICT HOME PAGE COLOR PALETTE)
   ========================================================================== */

/* SECTION 1: FEATURED LEAD STORY & MEDIA HUB */
.news-featured-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.featured-news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .featured-news-layout {
    grid-template-columns: 1.4fr 0.9fr;
    gap: 3rem;
  }
}

.featured-main-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-self: start;
}

.featured-main-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
}

.featured-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-main-card:hover .featured-img-wrap img {
  transform: scale(1.05);
}

.featured-category-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.05);
}

.featured-category-badge i {
  color: var(--green);
}

.featured-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.featured-meta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.news-meta-pill {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.news-meta-pill.green {
  color: var(--green);
  font-weight: 700;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.featured-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.featured-action-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0;
}

/* Sidebar Widgets */
.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--grey-border);
}

.press-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.category-pill-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.category-pill-item:hover,
.category-pill-item.active {
  border-color: var(--light-green);
  background: var(--light-green-subtle);
  color: var(--green);
  transform: translateX(4px);
}

.cat-count {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--grey-light);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  color: var(--text-muted);
}

.category-pill-item.active .cat-count {
  background: var(--green);
  color: var(--white);
}

.bulletin-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bulletin-item {
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--grey-border);
}

.bulletin-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.bulletin-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}

.bulletin-heading {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.bulletin-heading a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.bulletin-heading a:hover {
  color: var(--green);
}

/* SECTION 2: OFFICIAL PRESS RELEASES & TECHNICAL INSIGHTS GRID */
.news-grid-section {
  padding: 5.5rem 0;
  background: var(--grey-light);
  position: relative;
}

.news-luxury-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .news-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .news-luxury-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-luxury-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.news-luxury-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.news-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-luxury-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(27, 42, 74, 0.9);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.news-card-tag i {
  color: var(--green);
}

.news-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.news-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.news-card-img-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.news-card-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.news-card-title a:hover {
  color: var(--green);
}

.news-read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-speed) ease;
}

.news-read-more i {
  color: var(--green);
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.news-read-more:hover {
  color: var(--green);
}

.news-read-more:hover i {
  transform: translateX(4px);
}

.division-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Single Blog Featured Media Image */
.single-blog-featured-media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: none;
  border: 1px solid var(--grey-border);
  background: var(--grey-light);
}

.single-blog-featured-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.single-blog-featured-media .media-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--grey-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--grey-border);
}

.single-blog-featured-media .media-caption i {
  color: var(--green);
}

/* Dynamic News Pagination Controls */
.news-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--grey-border);
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.85rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  user-select: none;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--light-green);
  background: var(--light-green-subtle);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pagination-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* SECTION 3: EXECUTIVE INTELLIGENCE & TECHNICAL WHITEPAPERS */
.news-reports-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.report-luxury-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.report-luxury-card:hover {
  background: var(--white);
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.report-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
}

.report-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
}

.report-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.report-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.report-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--grey-border);
}

.report-luxury-card .btn-outline-navy {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* SECTION 4: MEDIA & INVESTOR RELATIONS SPOTLIGHT */
.news-media-spotlight {
  padding: 6rem 0;
  background: var(--grey-light);
  position: relative;
  border-top: 1px solid var(--grey-border);
}

.media-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .media-spotlight-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
  }
}

.media-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 1.25rem 0 1rem;
}

.media-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.media-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.media-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.media-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}

.media-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.media-val, .media-val a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.media-val a:hover {
  color: var(--green);
}

.media-badges-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.media-chip {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.media-sub-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 4px solid var(--light-green);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
}

.sub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.sub-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  background: var(--light-green-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.sub-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.media-sub-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.sub-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sub-input-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.sub-input-group .input-icon {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.1rem;
}

.sub-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3.2rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
  background: var(--grey-light);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  outline: none;
  transition: all var(--transition-speed) ease;
}

.sub-input:focus {
  border-color: var(--light-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(140, 225, 87, 0.2);
}

.sub-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}

.checkbox-label input {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}

.sub-card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sub-card-footer i {
  color: var(--green);
}

/* ==========================================================================
   CONTACT PAGE LUXURY SECTIONS (STRICT HOME PAGE COLOR PALETTE)
   ========================================================================== */

/* SECTION 1: GLOBAL HEADQUARTERS & HUBS */
.contact-offices-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .offices-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.office-luxury-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-sm);
}

.office-luxury-card:hover {
  background: var(--white);
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.office-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.office-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
}

.office-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
}

.office-badge.green {
  color: var(--green);
  background: var(--light-green-subtle);
  border-color: rgba(140, 225, 87, 0.3);
}

.office-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.office-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.office-contact-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.office-contact-meta a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.office-contact-meta a:hover {
  color: var(--green);
}

.office-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-border);
}

.office-chip {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* SECTION 2: 4-STEP TECHNICAL RFP PROTOCOL */
.contact-protocol-section {
  padding: 5.5rem 0;
  background: var(--grey-light);
  position: relative;
}

.rfp-steps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .rfp-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .rfp-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rfp-step-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-speed) ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.rfp-step-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.rfp-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light-green-subtle);
  line-height: 1;
  margin-bottom: 1rem;
}

.rfp-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.rfp-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.rfp-step-tag {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--grey-border);
}

/* SECTION 3: DEPARTMENTAL CONTACT DESKS */
.contact-desks-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.desks-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .desks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.desk-luxury-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.desk-luxury-card:hover {
  background: var(--white);
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.desk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.desk-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-green-subtle);
  border: 1px solid rgba(140, 225, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
}

.desk-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
}

.desk-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.desk-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.desk-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--grey-border);
}

.desk-contact-info a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.desk-contact-info a:hover {
  color: var(--green);
}

.desk-luxury-card .btn-outline-navy {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* SECTION 4: EXECUTIVE VIP FAST-TRACK HOTLINE SPOTLIGHT */
.contact-vip-spotlight {
  padding: 6rem 0;
  background: var(--grey-light);
  position: relative;
  border-top: 1px solid var(--grey-border);
}

.vip-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .vip-spotlight-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
  }
}

.vip-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 1.25rem 0 1rem;
}

.vip-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.vip-highlights-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.vip-chip {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-vip-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 4px solid var(--light-green);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-md);
}

.vip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.vip-status-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  background: var(--light-green-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.vip-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-vip-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.vip-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.vip-action-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vip-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.vip-card-footer i {
  color: var(--green);
}

/* ==========================================================================
   ULTRA-LUXURY LIGHT EXECUTIVE CTA SECTION (FULL-WIDTH, NON-BOXED)
   ========================================================================== */
.cta-section-light {
  padding: 5.5rem 0;
  background: var(--grey-light);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  position: relative;
  text-align: center;
}

.cta-light-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-light-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 1.25rem 0 1rem;
  letter-spacing: -0.02em;
}

.cta-light-title .title-highlight {
  color: var(--green);
}

.cta-light-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 780px;
}

.cta-light-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-light-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-light-chip {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--grey-border);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   CONCEPT: ROYAL MINIMALIST MAGAZINE EDITORIAL STYLES (SINGLE-BLOG.HTML)
   ========================================================================== */

/* Full-Bleed Royal Magazine Hero Banner */
.magazine-hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 0 4.5rem 0;
  overflow: hidden;
  background-color: var(--navy-dark);
  color: var(--white);
}

.magazine-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.03);
  z-index: 1;
}

.magazine-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 12, 23, 0.75) 0%, rgba(7, 12, 23, 0.92) 100%);
  z-index: 2;
}

.magazine-ambient-gold {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 3;
}

.magazine-title-card {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(14, 23, 42, 0.88) 0%, rgba(7, 12, 23, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 3.5rem 3.5rem 3rem 3.5rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .magazine-title-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}

.magazine-gold-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%);
  border-radius: 4px;
  margin-bottom: 1.75rem;
}

.magazine-badge-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.mag-pill {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mag-pill.gold {
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

.mag-pill.green {
  background: rgba(91, 156, 47, 0.18);
  border: 1px solid var(--green-light);
  color: #8ce157;
}

.mag-pill.dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}

.magazine-headline {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.35rem;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .magazine-headline {
    font-size: 3.5rem;
  }
}

.mag-gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #8ce157 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.magazine-subheadline {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #f1f5f9;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.magazine-author-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.author-profile-block {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.mag-author-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
}

.mag-author-details {
  display: flex;
  flex-direction: column;
}

.mag-author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verified-icon {
  color: #8ce157;
  font-size: 0.9rem;
}

.mag-author-title {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.mag-publish-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.mag-hero-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mag-tool-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mag-tool-btn:hover {
  background: var(--green);
  border-color: var(--light-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(91, 156, 47, 0.45);
}

/* Centered Editorial Reading Section */
.magazine-article-section {
  position: relative;
  padding: 5.5rem 0;
  background: #fafcfd;
}

/* Fixed Left Floating Share Dock */
.floating-share-dock {
  position: fixed;
  top: 40%;
  left: 1.75rem;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 16, 30, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0.65rem;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {
  .floating-share-dock {
    display: none;
  }
}

.dock-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.dock-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dock-btn.linkedin:hover { background: #0077b5; border-color: #0077b5; transform: scale(1.1); }
.dock-btn.twitter:hover { background: #000000; border-color: #000000; transform: scale(1.1); }
.dock-btn.facebook:hover { background: #1877f2; border-color: #1877f2; transform: scale(1.1); }
.dock-btn.copy:hover { background: var(--green); border-color: var(--green); transform: scale(1.1); }

/* Centered Article Container */
.magazine-centered-wrap {
  max-width: 880px;
  margin: 0 auto;
}

/* 3-Card Spec Summary Strip */
.magazine-spec-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.spec-strip-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transition: all 0.35s ease;
}

.spec-strip-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.18);
}

.strip-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-info {
  display: flex;
  flex-direction: column;
}

.strip-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
}

.strip-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section Formatting */
.magazine-content-block {
  margin-bottom: 4rem;
}

.magazine-section-header {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin: 2.5rem 0 1.5rem 0;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.85rem;
}

.magazine-section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%);
  border-radius: 4px;
}

.magazine-paragraph {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.magazine-paragraph.drop-cap::first-letter {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border: 2px solid var(--gold);
  border-radius: 14px;
  float: left;
  line-height: 0.85;
  padding: 0.65rem 0.9rem;
  margin-right: 1.25rem;
  margin-top: 0.25rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

/* Full-Width Featured Canvas */
.magazine-featured-canvas {
  margin: 3.5rem -2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border: 1px solid var(--grey-border);
}

@media (max-width: 992px) {
  .magazine-featured-canvas {
    margin: 2.5rem 0;
  }
}

.canvas-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.canvas-caption {
  padding: 1.1rem 1.75rem;
  background: var(--navy-dark);
  color: #cbd5e1;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Technical Matrix Grid (4 Box Cards) */
.magazine-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.matrix-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transition: all 0.35s ease;
}

.matrix-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(91, 156, 47, 0.18);
}

.matrix-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(91, 156, 47, 0.12);
  color: var(--green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem auto;
}

.matrix-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.matrix-card-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.matrix-card-sub {
  font-size: 0.78rem;
  color: #64748b;
}

/* Full-Bleed Pullquote Canvas */
.magazine-pullquote-canvas {
  background: linear-gradient(135deg, #060a14 0%, #0e172a 100%);
  padding: 5rem 0;
  margin: 4.5rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pullquote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pullquote-watermark {
  font-size: 5.5rem;
  color: rgba(212, 175, 55, 0.12);
  margin-bottom: 1rem;
  display: block;
}

.pullquote-text {
  font-size: 1.85rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .pullquote-text {
    font-size: 1.35rem;
  }
}

.pullquote-author .name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.pullquote-author .role {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Visual Gallery & Results Grid */
.magazine-visual-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin: 2.5rem 0;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  background: var(--white);
  transition: all 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 15px 35px rgba(91, 156, 47, 0.2);
}

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-label {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.magazine-results-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.result-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transition: all 0.35s ease;
}

.result-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(91, 156, 47, 0.15);
}

.result-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(91, 156, 47, 0.14);
  color: var(--green);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-body h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.result-body p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Centered Author Spotlight Banner */
.magazine-author-spotlight {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 4rem 0 3.5rem 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .magazine-author-spotlight {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
  }
}

.spotlight-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  flex-shrink: 0;
}

.spotlight-info {
  flex: 1;
}

.spotlight-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.spotlight-role {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 800;
  display: block;
  margin-bottom: 0.85rem;
}

.spotlight-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.spotlight-actions {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
}

/* Prev / Next Magazine Strip */
.magazine-prev-next-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.prev-next-box {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 1.85rem;
  text-decoration: none;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.prev-next-box:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(91, 156, 47, 0.15);
}

.arrow-lbl {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
}

.prev-next-box.next .arrow-lbl {
  justify-content: flex-end;
}

.title-lbl {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
}

/* ==========================================================================
   EXECUTIVE GLASS JOURNAL & SPLIT-CANVAS ARCHITECTURE (ULTRA-LUXURY SINGLE BLOG)
   ========================================================================== */

/* Top Fixed Scroll Reading Progress Line */
.exec-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Main Container & Section Spacing */
.exec-journal-main {
  background-color: #F8FAFC;
  color: var(--navy-dark);
}

/* Executive Hero Banner */
.exec-hero-banner {
  background: linear-gradient(180deg, #0A101E 0%, #0F1A2E 100%);
  padding: 4rem 0 4.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.exec-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
}

.exec-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.exec-breadcrumb a {
  color: #8ce157;
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

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

.exec-breadcrumb .sep {
  font-size: 0.65rem;
  color: var(--gold);
}

.exec-breadcrumb .current {
  color: #cbd5e1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

/* Hero Split Grid */
.exec-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .exec-hero-split-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.exec-topic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.badge-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulseDot 2s infinite ease-in-out;
}

.exec-main-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .exec-main-headline {
    font-size: 2.1rem;
  }
}

.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #8ce157 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exec-lead-deck {
  font-size: 1.12rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 760px;
}

/* Author Meta Strip */
.exec-author-meta-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  margin-bottom: 1.75rem;
}

.author-avatar-wrap {
  position: relative;
  width: 46px;
  height: 46px;
}

.author-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.avatar-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background-color: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0F1A2E;
}

.author-info-block {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
}

.author-role {
  font-size: 0.78rem;
  color: #94a3b8;
}

.meta-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.15);
}

.meta-pills-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-pill.highlight {
  color: #8ce157;
}

/* Audio Executive Briefing Card */
.exec-audio-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(10, 16, 30, 0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.audio-left-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-play-trigger {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  border: none;
  color: var(--navy-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.audio-play-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
}

.audio-track-info {
  display: flex;
  flex-direction: column;
}

.track-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
}

.track-duration {
  font-size: 0.76rem;
  color: #cbd5e1;
}

.audio-wave-visualizer {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 24px;
}

.wave-bar {
  width: 3px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 3px;
  transition: height 0.3s ease;
}

.exec-audio-card.playing .wave-bar:nth-child(1) { animation: wavePulse 1.2s infinite ease-in-out 0.1s; }
.exec-audio-card.playing .wave-bar:nth-child(2) { animation: wavePulse 1.2s infinite ease-in-out 0.3s; }
.exec-audio-card.playing .wave-bar:nth-child(3) { animation: wavePulse 1.2s infinite ease-in-out 0.2s; }
.exec-audio-card.playing .wave-bar:nth-child(4) { animation: wavePulse 1.2s infinite ease-in-out 0.4s; }
.exec-audio-card.playing .wave-bar:nth-child(5) { animation: wavePulse 1.2s infinite ease-in-out 0.15s; }
.exec-audio-card.playing .wave-bar:nth-child(6) { animation: wavePulse 1.2s infinite ease-in-out 0.35s; }
.exec-audio-card.playing .wave-bar:nth-child(7) { animation: wavePulse 1.2s infinite ease-in-out 0.25s; }
.exec-audio-card.playing .wave-bar:nth-child(8) { animation: wavePulse 1.2s infinite ease-in-out 0.45s; }

@keyframes wavePulse {
  0%, 100% { height: 6px; }
  50% { height: 22px; }
}

.audio-speed-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.audio-speed-pill:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold);
}

/* Featured Hero Media Frame */
.exec-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--navy);
}

.exec-frame-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(10, 16, 30, 0.85);
  border: 1px solid rgba(140, 225, 87, 0.4);
  color: #8ce157;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.exec-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.exec-media-frame:hover .exec-hero-img {
  transform: scale(1.04);
}

.exec-media-caption {
  padding: 0.9rem 1.25rem;
  background: rgba(10, 16, 30, 0.92);
  color: #cbd5e1;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Journal Canvas Section & Grid Layout */
.exec-journal-canvas-section {
  padding: 4.5rem 0 5rem 0;
}

.exec-split-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .exec-split-container {
    grid-template-columns: 320px 1fr;
  }
}

/* Sticky Console Sidebar */
.exec-sticky-sidebar {
  position: sticky;
  top: 100px;
}

.exec-console-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--grey-border);
}

.console-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.console-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(91, 156, 47, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulseDot 2s infinite ease-in-out;
}

/* TOC Navigation */
.exec-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.exec-toc-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.exec-toc-link:hover {
  background: rgba(91, 156, 47, 0.08);
  color: var(--green);
  transform: translateX(4px);
}

.exec-toc-link.active {
  background: var(--navy-dark);
  color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(10, 16, 30, 0.2);
}

.toc-num {
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.8;
}

.exec-toc-link.active .toc-num {
  color: var(--gold);
}

/* Key Takeaways Sidebar Box */
.exec-takeaways-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  padding: 1.25rem;
}

.takeaway-header {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.takeaway-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.takeaway-list li {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.takeaway-list li i {
  color: var(--green);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Actions Toolbar Dock */
.exec-actions-dock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.exec-action-btn {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.25s ease;
}

.exec-action-btn i {
  font-size: 0.95rem;
  color: var(--green);
}

.exec-action-btn:hover {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

.exec-action-btn:hover i {
  color: var(--gold);
}

/* PDF Download Card */
.exec-pdf-download-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 14px;
  padding: 1.1rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pdf-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pdf-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.pdf-meta {
  font-size: 0.74rem;
  color: #94a3b8;
  display: block;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--green) 0%, #478223 100%);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.pdf-download-btn:hover {
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.4);
  transform: translateY(-2px);
}

/* Main Reader Canvas Content */
.exec-reader-canvas {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .exec-reader-canvas {
    padding: 1.75rem 1.25rem;
  }
}

.exec-content-block {
  margin-bottom: 3.5rem;
}

.exec-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.tag-number {
  background: var(--navy-dark);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
}

.tag-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exec-section-heading {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.exec-section-subheading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.exec-lead-paragraph {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.exec-drop-cap {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--navy-dark);
  float: left;
  line-height: 0.85;
  padding: 0.4rem 0.65rem 0.2rem 0;
  margin-right: 0.75rem;
  font-family: var(--font-main);
}

.exec-body-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 1.5rem;
}

/* Interactive Tabs Component */
.exec-tabs-wrapper {
  margin: 2.5rem 0;
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  overflow: hidden;
}

.tabs-nav-bar {
  display: flex;
  background: var(--navy-dark);
  overflow-x: auto;
}

.tab-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  transition: all 0.25s ease;
  border-bottom: 3px solid transparent;
}

.tab-nav-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.tab-nav-btn.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border-bottom-color: var(--gold);
}

.tab-content-panel {
  display: none;
  padding: 2rem;
}

.tab-content-panel.active {
  display: block;
}

.tab-inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tab-inner-grid {
    grid-template-columns: 1fr 200px;
  }
}

.tab-headline {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.tab-check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tab-check-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-stat-box {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Quote Canvas inside Reader */
.exec-quote-canvas {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0F1A2E 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
  border-left: 5px solid var(--gold);
}

.quote-icon-bg {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.exec-quote-text {
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.exec-quote-attribution {
  display: flex;
  flex-direction: column;
}

.quote-author {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gold);
}

.quote-title {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* Feature Cards Grid */
.exec-feature-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.exec-feature-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  transition: all 0.3s ease;
}

.exec-feature-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(91, 156, 47, 0.12);
  color: var(--green);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.feature-card-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Dual Visual Gallery */
.exec-dual-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  display: block;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}

/* 4-Box Metric Cards Grid */
.exec-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.exec-metric-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  transition: all 0.3s ease;
}

.exec-metric-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.metric-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.metric-tag {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.metric-sub {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

/* Author Spotlight Card */
.exec-author-spotlight-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2rem;
  margin: 3.5rem 0 2.5rem 0;
}

@media (max-width: 768px) {
  .exec-author-spotlight-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.spotlight-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.spotlight-right {
  flex: 1;
}

.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spotlight-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.spotlight-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
}

.spotlight-badge {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.spotlight-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.1rem;
}

.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.85rem;
  border-top: 1px solid var(--grey-border);
}

.spotlight-email {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.spotlight-email:hover {
  color: var(--green);
}

.spotlight-socials {
  display: flex;
  gap: 0.65rem;
}

.spotlight-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.spotlight-socials a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* Prev / Next Article Navigation Deck */
.exec-prev-next-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.nav-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.nav-direction {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.next-card .nav-direction {
  justify-content: flex-end;
}

.nav-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

/* Recommended Section Padding */
.exec-related-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* ==========================================================================
   PRISTINE CLEAN & CLEAR LUXURY SINGLE BLOG ARCHITECTURE
   ========================================================================== */

.clean-blog-main {
  background-color: #F8FAFC;
  color: var(--navy-dark);
}

/* Clean Hero Banner Section */
.clean-blog-hero {
  background: linear-gradient(180deg, #0A101E 0%, #0F1A2E 100%);
  padding: 4.5rem 0 4rem 0;
  color: var(--white);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clean-blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
}

.clean-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.clean-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 1.75rem;
}

.clean-breadcrumb a {
  color: #8ce157;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.clean-breadcrumb .sep {
  font-size: 0.65rem;
  color: var(--gold);
}

.clean-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.clean-article-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .clean-article-title {
    font-size: 1.95rem;
  }
}

.clean-article-deck {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Clean Metadata Bar */
.clean-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.clean-author-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}

.author-role {
  font-size: 0.78rem;
  color: #94a3b8;
}

.clean-meta-items {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 500;
}

.meta-dot {
  color: rgba(255, 255, 255, 0.25);
}

/* Article Body Section */
.clean-article-body-section {
  padding: 3.5rem 0 5rem 0;
}

.clean-article-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

/* Featured Graphic Canvas */
.clean-featured-graphic {
  background: linear-gradient(135deg, #0F1A2E 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  position: relative;
  overflow: hidden;
}

.clean-featured-graphic::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(140, 225, 87, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.graphic-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 156, 47, 0.18);
  border: 1px solid rgba(91, 156, 47, 0.4);
  color: #8ce157;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.graphic-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.graphic-tags {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 600;
  color: #cbd5e1;
}

.graphic-tags span i {
  color: #8ce157;
  margin-right: 0.35rem;
}

/* Article Reader Canvas */
.clean-content-canvas {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .clean-content-canvas {
    padding: 2rem 1.25rem;
  }
}

.clean-content-canvas p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 1.65rem;
  font-weight: 400;
}

.clean-lead-p {
  font-size: 1.18rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
}

.clean-dropcap {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy-dark);
  float: left;
  line-height: 0.82;
  padding-right: 0.65rem;
  font-family: var(--font-main);
}

.clean-content-canvas h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 2.5rem 0 1.25rem 0;
  letter-spacing: -0.01em;
}

/* Highlight Box */
.clean-highlight-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-left: 5px solid var(--green);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .clean-highlight-box {
    flex-direction: column;
    padding: 1.5rem;
  }
}

.box-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(91, 156, 47, 0.15);
  color: var(--green);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.clean-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.clean-check-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.clean-check-list li i {
  color: var(--green);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Feature Grid */
.clean-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.25rem 0;
}

.feature-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.f-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(91, 156, 47, 0.12);
  color: var(--green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.feature-card p {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Quote Block */
.clean-quote-block {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0F1A2E 100%);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  padding: 2.25rem 2.5rem;
  color: var(--white);
  margin: 2.75rem 0;
}

.clean-quote-block p {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: var(--white) !important;
  margin-bottom: 1rem !important;
}

.clean-quote-block cite {
  font-size: 0.88rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

/* Metrics Grid */
.clean-metrics-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.metric-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.m-val {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.m-lbl {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Author Box */
.clean-author-box {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem;
  margin: 3.5rem 0 2.5rem 0;
}

@media (max-width: 640px) {
  .clean-author-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
}

.author-box-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.author-box-info {
  flex: 1;
}

.author-box-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.author-box-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.65rem;
}

.author-box-bio {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin-bottom: 1.1rem !important;
}

.author-box-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.author-box-links a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s ease;
}

.author-box-links a:hover {
  color: var(--green);
}

/* Prev Next Deck */
.clean-prev-next-deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.p-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.p-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.p-card .dir {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.p-card.next .dir {
  justify-content: flex-end;
}

.p-card .t {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

/* Recommended Section */
.clean-related-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* Placeholder Graphic for News Card when Image is Not Present */
.news-card-placeholder-bg {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #0A101E 0%, #0F1A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.news-card-placeholder-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(91, 156, 47, 0.2) 0%, transparent 70%);
}

/* ==========================================================================
   SOVEREIGN EDITORIAL CANVAS ARCHITECTURE (ULTRA-LUXURY SINGLE BLOG CONCEPT)
   ========================================================================== */

.sovereign-main {
  background-color: #F4F6F9;
  color: var(--navy-dark);
}

/* Sovereign Cover Hero Banner */
.sovereign-hero-banner {
  background: linear-gradient(135deg, #050914 0%, #0D1629 50%, #16223B 100%);
  padding: 5rem 0 5rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sovereign-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
}

.sovereign-hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.sovereign-crown-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sovereign-main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .sovereign-main-title {
    font-size: 2rem;
  }
}

.sovereign-gold-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #8ce157 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-main);
  font-style: italic;
}

.sovereign-deck-text {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

/* Sovereign Meta Toolbar */
.sovereign-meta-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sovereign-author-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sovereign-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  border: 2px solid var(--gold);
}

.sovereign-author-info {
  display: flex;
  flex-direction: column;
}

.sovereign-author-info .name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.sovereign-author-info .role {
  font-size: 0.8rem;
  color: #94a3b8;
}

.sovereign-meta-pills {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.s-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.s-pill.gold {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Featured Canvas Container */
.sovereign-featured-canvas-wrap {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3.5rem;
}

.sovereign-featured-card {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  position: relative;
  overflow: hidden;
}

.featured-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 156, 47, 0.2);
  border: 1px solid rgba(91, 156, 47, 0.4);
  color: #8ce157;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.featured-card-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.75rem;
}

.featured-card-specs {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.spec-item i {
  margin-right: 0.45rem;
}

/* Sovereign Reader Section */
.sovereign-reader-section {
  padding-bottom: 5.5rem;
}

/* 3 Horizontal Spec Strip Cards */
.sovereign-specs-strip {
  max-width: 960px;
  margin: 0 auto 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.strip-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  transition: all 0.35s ease;
}

.strip-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.strip-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.strip-body p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* Sovereign Main Article Canvas */
.sovereign-reader-canvas {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 4rem 3.5rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .sovereign-reader-canvas {
    padding: 2.25rem 1.5rem;
  }
}

.sovereign-reader-canvas p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.sovereign-lead-paragraph {
  font-size: 1.22rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
}

.sovereign-dropcap {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--navy-dark);
  float: left;
  line-height: 0.8;
  padding-right: 0.75rem;
  font-family: var(--font-main);
}

.sovereign-reader-canvas h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 3rem 0 1.5rem 0;
  letter-spacing: -0.01em;
}

/* Sovereign Quote Card */
.sovereign-quote-card {
  background: linear-gradient(135deg, #050914 0%, #16223B 100%);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  margin: 3.25rem 0;
  position: relative;
  overflow: hidden;
  border-left: 6px solid var(--gold);
}

.quote-watermark {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5.5rem;
  color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.sovereign-quote-text {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.sovereign-quote-author .name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.sovereign-quote-author .title {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Feature Grid */
.sovereign-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin: 2.5rem 0;
}

.sovereign-feature-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: all 0.35s ease;
}

.sovereign-feature-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.sovereign-feature-card .s-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(91, 156, 47, 0.14);
  color: var(--green);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.sovereign-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.sovereign-feature-card p {
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Metrics Grid */
.sovereign-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.s-metric-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease;
}

.s-metric-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.18);
}

.s-metric-card .val {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.s-metric-card .lbl {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Author Spotlight Banner */
.sovereign-author-spotlight {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 22px;
  padding: 2.5rem;
  margin: 4rem 0 3rem 0;
}

@media (max-width: 640px) {
  .sovereign-author-spotlight {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
  }
}

.author-circle-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  border: 3px solid var(--white);
}

.author-spotlight-content {
  flex: 1;
}

.author-title-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.author-subtitle-role {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.75rem;
}

.author-bio-p {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin-bottom: 1.25rem !important;
}

.author-action-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.author-action-links a {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.25s ease;
}

.author-action-links a:hover {
  color: var(--green);
}

/* Prev Next Navigation Cards */
.sovereign-prev-next-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.s-nav-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 1.75rem;
  text-decoration: none;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.s-nav-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.s-nav-card .nav-dir {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.s-nav-card.next .nav-dir {
  justify-content: flex-end;
}

.s-nav-card .nav-t {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

/* Sovereign Related Section */
.sovereign-related-section {
  padding: 5rem 0 6rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* ==========================================================================
   ARCHITECTURAL GLASS SPLIT-COVER JOURNAL ARCHITECTURE (ULTRA-LUXURY CONCEPT)
   ========================================================================== */

.arch-journal-main {
  background-color: #F8FAFC;
  color: var(--navy-dark);
}

/* Architectural Hero Section */
.arch-hero-section {
  background: linear-gradient(135deg, #060B18 0%, #0E182D 50%, #17243E 100%);
  padding: 4.5rem 0 4.5rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arch-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
}

.arch-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.arch-breadcrumb a {
  color: #8ce157;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.arch-breadcrumb .sep {
  font-size: 0.65rem;
  color: var(--gold);
}

.arch-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .arch-hero-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.arch-hero-card {
  display: flex;
  flex-direction: column;
}

.arch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.arch-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .arch-title {
    font-size: 1.95rem;
  }
}

.arch-gold-italic {
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #8ce157 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-main);
  font-style: italic;
}

.arch-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-weight: 400;
}

.arch-author-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.author-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info .name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}

.author-info .role {
  font-size: 0.78rem;
  color: #94a3b8;
}

.meta-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Media Graphic Frame */
.arch-media-frame {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  backdrop-filter: blur(15px);
  position: relative;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.frame-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(91, 156, 47, 0.15);
  border: 1px solid rgba(91, 156, 47, 0.35);
  color: #8ce157;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.visual-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.frame-content-visual h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.frame-content-visual p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.75rem;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.v-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.v-stat strong {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
}

.v-stat span {
  font-size: 0.72rem;
  color: #cbd5e1;
}

/* Body Section Layout */
.arch-body-section {
  padding: 4.5rem 0 5.5rem 0;
}

.arch-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .arch-split-layout {
    grid-template-columns: 280px 1fr;
  }
}

/* Sidebar Console */
.arch-sidebar {
  position: sticky;
  top: 100px;
}

.arch-console-box {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.console-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-border);
}

.arch-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.toc-item:hover, .toc-item.active {
  background: rgba(91, 156, 47, 0.08);
  color: var(--green);
  font-weight: 700;
}

.toc-item .n {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold);
}

.arch-sidebar-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  padding: 1.25rem;
}

.arch-sidebar-card h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.arch-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 500;
}

.arch-share-dock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.share-btn {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 0.55rem 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.share-btn:hover {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

/* Reader Content Canvas */
.arch-content-canvas {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .arch-content-canvas {
    padding: 2rem 1.25rem;
  }
}

.arch-block {
  margin-bottom: 3.5rem;
  position: relative;
}

.block-num {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.block-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.arch-content-canvas p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 1.65rem;
  font-weight: 400;
}

.arch-lead-p {
  font-size: 1.18rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
}

.arch-dropcap {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy-dark);
  float: left;
  line-height: 0.82;
  padding-right: 0.65rem;
  font-family: var(--font-main);
}

.arch-quote-box {
  background: linear-gradient(135deg, #060B18 0%, #17243E 100%);
  border-radius: 18px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--gold);
  margin: 2.5rem 0;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.15);
  margin-bottom: 0.5rem;
  display: block;
}

.arch-quote-box .quote-text {
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.quote-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}

.arch-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.25rem 0;
}

.f-box {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
}

.f-box:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.f-box .f-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(91, 156, 47, 0.12);
  color: var(--green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.f-box h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.f-box p {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

.arch-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.m-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.m-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.m-card .val {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.m-card .lbl {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Author Card */
.arch-author-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem;
  margin: 3.5rem 0 2.5rem 0;
}

@media (max-width: 640px) {
  .arch-author-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.author-circle-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.author-card-content {
  flex: 1;
}

.author-card-content h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.role-tag {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.65rem;
}

.author-card-content p {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin-bottom: 1.1rem !important;
}

.card-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.card-links a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s ease;
}

.card-links a:hover {
  color: var(--green);
}

/* Prev Next Grid */
.arch-prev-next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.nav-item {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav-item:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.nav-item .dir {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-item.next .dir {
  justify-content: flex-end;
}

.nav-item h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

/* Architectural Related Section */
.arch-related-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* ==========================================================================
   SPLIT-SCREEN INTERACTIVE CANVAS ARCHITECTURE (USER SELECTED LUXURY CONCEPT)
   ========================================================================== */

.split-canvas-main {
  background-color: #F4F6F9;
  padding: 3.5rem 0 5rem 0;
  color: var(--navy-dark);
}

.padding-x-lg {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .padding-x-lg {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.split-canvas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .split-canvas-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* LEFT CANVAS */
.split-left-canvas {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .split-left-canvas {
    padding: 2rem 1.25rem;
  }
}

.split-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.split-breadcrumb a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.25s ease;
}

.split-breadcrumb a:hover {
  color: var(--navy);
}

.split-breadcrumb .sep {
  font-size: 0.65rem;
  color: var(--gold);
}

.split-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.split-article-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .split-article-title {
    font-size: 1.95rem;
  }
}

.split-gold-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-main);
  font-style: italic;
}

/* Executive Summary Box Left */
.split-exec-summary-card {
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  border-left: 5px solid var(--gold);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  color: var(--white);
  margin-bottom: 2.25rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.summary-card-header {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.summary-card-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.summary-card-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.s-highlight-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Author & Meta Bar */
.split-author-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.25rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.split-author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-circle-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-name-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}

.author-role-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.split-meta-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

/* Article Body */
.split-article-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 1.65rem;
}

.split-lead-p {
  font-size: 1.18rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
}

.split-dropcap {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy-dark);
  float: left;
  line-height: 0.82;
  padding-right: 0.65rem;
  font-family: var(--font-main);
}

.split-quote-box {
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  border-radius: 18px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--gold);
  margin: 2.75rem 0;
}

.quote-watermark-icon {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.split-quote-box p {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: var(--white) !important;
  margin-bottom: 1.25rem !important;
}

.split-quote-box cite {
  font-size: 0.88rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.split-article-body h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 2.75rem 0 1.25rem 0;
  letter-spacing: -0.01em;
}

.split-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2.25rem 0;
}

.split-f-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
}

.split-f-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.f-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(91, 156, 47, 0.12);
  color: var(--green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.split-f-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.split-f-card p {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Author Spotlight Card Left */
.split-author-spotlight-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem;
  margin: 3.5rem 0 1.5rem 0;
}

@media (max-width: 640px) {
  .split-author-spotlight-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.spotlight-avatar-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.spotlight-info-wrap {
  flex: 1;
}

.spotlight-info-wrap h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.spotlight-role-pill {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.65rem;
}

.spotlight-info-wrap p {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin-bottom: 1.1rem !important;
}

.spotlight-action-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.spotlight-action-links a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s ease;
}

.spotlight-action-links a:hover {
  color: var(--green);
}

/* RIGHT CANVAS (STICKY) */
.split-right-canvas {
  width: 100%;
}

.split-sticky-panel {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Telemetry Visual Card Right */
.split-visual-card {
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.card-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(91, 156, 47, 0.18);
  border: 1px solid rgba(91, 156, 47, 0.4);
  color: #8ce157;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #8ce157;
  border-radius: 50%;
  box-shadow: 0 0 10px #8ce157;
  animation: pulseDot 2s infinite ease-in-out;
}

.visual-card-graphic {
  margin-bottom: 1.75rem;
}

.graphic-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.visual-card-graphic h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.visual-card-graphic p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

.visual-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.t-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.t-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.t-lbl {
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Interactive Tabs Right Card */
.split-tabs-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.tabs-header-bar {
  display: flex;
  gap: 0.4rem;
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 0.35rem;
  margin-bottom: 1.25rem;
}

.split-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  padding: 0.6rem 0.4rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.split-tab-btn.active {
  background: var(--navy-dark);
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(10, 16, 30, 0.2);
}

.split-tab-pane {
  display: none;
}

.split-tab-pane.active {
  display: block;
}

.split-tab-pane h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.split-tab-pane p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1rem;
}

.pane-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* Quick Actions Dock Card Right */
.split-actions-dock-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.dock-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dock-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dock-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dock-btn.primary {
  background: linear-gradient(135deg, var(--green) 0%, #478223 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.3);
}

.dock-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(91, 156, 47, 0.45);
}

.dock-btn.secondary {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  color: var(--navy);
}

.dock-btn.secondary:hover {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

/* Prev Next Card Right */
.split-prev-next-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.p-link .d {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.p-link.next .d {
  justify-content: flex-end;
}

.p-link .t {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
  transition: color 0.25s ease;
}

.p-link:hover .t {
  color: var(--green);
}

/* Related Section Split */
.split-related-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* ==========================================================================
   MODERN LUXURY MAGAZINE WITH RIGHT SIDEBAR ARCHITECTURE
   ========================================================================== */

.mag-main {
  background-color: #F4F6F9;
  color: var(--navy-dark);
}

/* Magazine Hero Banner */
.mag-hero-banner {
  background: linear-gradient(135deg, #060A14 0%, #0F1A2E 50%, #17243E 100%);
  padding: 4.5rem 0 4rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mag-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
}

.mag-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.mag-breadcrumb a {
  color: #8ce157;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.mag-breadcrumb .sep {
  font-size: 0.65rem;
  color: var(--gold);
}

.mag-hero-header-box {
  max-width: 960px;
}

.mag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.mag-article-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .mag-article-title {
    font-size: 1.95rem;
  }
}

.mag-gold-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #8ce157 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-main);
  font-style: italic;
}

.mag-article-deck {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.mag-meta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mag-author-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mag-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.a-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.a-role {
  font-size: 0.78rem;
  color: #94a3b8;
  display: block;
}

.mag-meta-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 600;
  flex-wrap: wrap;
}

/* Magazine Section Layout */
.mag-content-section {
  padding: 4rem 0 5.5rem 0;
}

.mag-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .mag-layout-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

/* Left Main Content Canvas */
.mag-left-content {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .mag-left-content {
    padding: 2rem 1.25rem;
  }
}

.mag-featured-graphic {
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: var(--white);
  margin-bottom: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(10, 16, 30, 0.12);
}

.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 156, 47, 0.2);
  border: 1px solid rgba(91, 156, 47, 0.4);
  color: #8ce157;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.mag-featured-graphic h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.f-specs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}

.mag-article-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 1.65rem;
}

.mag-lead-p {
  font-size: 1.18rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
}

.mag-dropcap {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy-dark);
  float: left;
  line-height: 0.82;
  padding-right: 0.65rem;
  font-family: var(--font-main);
}

.mag-quote-box {
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  border-radius: 18px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--gold);
  margin: 2.75rem 0;
}

.mag-quote-box p {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  font-style: italic !important;
  line-height: 1.6 !important;
  color: var(--white) !important;
  margin-bottom: 1.25rem !important;
}

.mag-quote-box cite {
  font-size: 0.88rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.mag-article-body h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 2.75rem 0 1.25rem 0;
}

.mag-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2.25rem 0;
}

.mag-f-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
}

.mag-f-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.f-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(91, 156, 47, 0.12);
  color: var(--green);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mag-f-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.mag-f-card p {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 !important;
}

.mag-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.mag-author-box {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem;
  margin: 3.5rem 0 2.5rem 0;
}

@media (max-width: 640px) {
  .mag-author-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.author-avatar-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.author-box-content {
  flex: 1;
}

.author-box-content h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.role-lbl {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.65rem;
}

.author-box-content p {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin-bottom: 1.1rem !important;
}

.author-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.author-links a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s ease;
}

.author-links a:hover {
  color: var(--green);
}

.mag-prev-next-deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

/* Right Sidebar Column */
.mag-right-sidebar {
  width: 100%;
}

.mag-sticky-wrapper {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.widget-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-border);
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  flex: 1;
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.25s ease;
}

.search-form input:focus {
  border-color: var(--green);
  background: var(--white);
}

.search-form button {
  background: var(--navy-dark);
  color: var(--gold);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.search-form button:hover {
  background: var(--green);
  color: var(--white);
}

/* Author Widget Right */
.widget-author-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.mini-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-author-head h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
}

.widget-author-head .sub {
  font-size: 0.76rem;
  color: #64748b;
  display: block;
}

.author-widget p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.1rem;
}

.widget-socials {
  display: flex;
  gap: 0.65rem;
}

.widget-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.widget-socials a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* Categories List Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.categories-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: #f8fafc;
  transition: all 0.25s ease;
}

.categories-list a i {
  color: var(--green);
  margin-right: 0.45rem;
}

.categories-list a:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.categories-list a:hover i {
  color: var(--gold);
}

.categories-list .count {
  font-size: 0.74rem;
  font-weight: 800;
  background: rgba(10, 16, 30, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  color: var(--navy);
}

.categories-list a:hover .count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold);
}

/* Popular Articles Widget */
.popular-articles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.popular-item:hover {
  transform: translateX(4px);
}

.pop-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pop-info h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.25rem;
  transition: color 0.25s ease;
}

.popular-item:hover .pop-info h5 {
  color: var(--green);
}

.pop-date {
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Download Widget */
.download-widget {
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.download-widget .dw-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.download-widget h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.download-widget p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.dw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, #478223 100%);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.35);
  transition: all 0.25s ease;
}

.dw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(91, 156, 47, 0.5);
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-pill {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tag-pill:hover {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

/* Related Section Magazine */
.mag-related-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* ==========================================================================
   ROYAL EXECUTIVE LUXURY MASTER SINGLE BLOG ARCHITECTURE
   ========================================================================== */

.luxury-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
  z-index: 9999;
  transition: width 0.1s linear;
}

.luxury-blog-master {
  background-color: #F4F6F9;
  color: var(--navy-dark);
}

/* Cinematic Royal Hero Banner */
.luxury-hero-banner {
  background: linear-gradient(180deg, #040812 0%, #0A1224 50%, #0F1A30 100%);
  padding: 5.5rem 0 5rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, #8ce157 100%);
}

.luxury-ambient-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(140, 225, 87, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.luxury-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.luxury-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 1.75rem;
}

.luxury-breadcrumb a {
  color: #8ce157;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.luxury-breadcrumb .sep {
  font-size: 0.65rem;
  color: var(--gold);
}

.luxury-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pulse-gold-diamond {
  width: 7px;
  height: 7px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulseDot 2s infinite ease-in-out;
}

.luxury-grand-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .luxury-grand-title {
    font-size: 2.1rem;
  }
}

.shimmer-gold-text {
  background: linear-gradient(135deg, #ffffff 0%, #e2c068 40%, #8ce157 80%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-main);
  font-style: italic;
}

.luxury-lead-deck {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

/* VIP Meta Bar */
.luxury-vip-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vip-author-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-gold-ring-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  border: 2px solid var(--gold);
}

.author-vip-details {
  display: flex;
  flex-direction: column;
}

.author-name-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.author-name-row .a-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.vip-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.author-vip-details .a-title {
  font-size: 0.78rem;
  color: #94a3b8;
}

.vip-meta-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  font-weight: 600;
  flex-wrap: wrap;
}

.vip-stat-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.15);
}

.vip-stat-item.highlight-green {
  color: #8ce157;
}

/* Hologram Visual Canvas Container */
.luxury-visual-canvas-wrap {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3.5rem;
}

.luxury-hologram-card {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0A101E 0%, #16223B 100%);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  position: relative;
  overflow: hidden;
}

.hologram-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(91, 156, 47, 0.18);
  border: 1px solid rgba(91, 156, 47, 0.4);
  color: #8ce157;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.live-pulse {
  width: 7px;
  height: 7px;
  background-color: #8ce157;
  border-radius: 50%;
  box-shadow: 0 0 10px #8ce157;
  animation: pulseDot 2s infinite ease-in-out;
}

.hologram-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.hologram-sub {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.hologram-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
}

.h-metric-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.h-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.h-lbl {
  font-size: 0.78rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Reader Sanctuary Canvas */
.luxury-reader-sanctuary {
  padding-bottom: 5.5rem;
}

.luxury-article-canvas {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 4rem 3.5rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

@media (max-width: 768px) {
  .luxury-article-canvas {
    padding: 2.25rem 1.5rem;
  }
}

.luxury-article-canvas p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.luxury-lead-p {
  font-size: 1.22rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
}

.luxury-dropcap {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--navy-dark);
  float: left;
  line-height: 0.8;
  padding-right: 0.75rem;
  font-family: var(--font-main);
}

.luxury-article-canvas h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 3rem 0 1.5rem 0;
  letter-spacing: -0.01em;
}

/* Obsidian Quote Canvas */
.luxury-obsidian-quote {
  background: linear-gradient(135deg, #040812 0%, #16223B 100%);
  border-radius: 22px;
  padding: 3.25rem 3rem;
  color: var(--white);
  margin: 3.5rem 0;
  position: relative;
  overflow: hidden;
  border-left: 6px solid var(--gold);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.quote-watermark-icon {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.08);
  pointer-events: none;
}

.luxury-obsidian-quote .quote-text {
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.quote-signature-wrap .sig-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.quote-signature-wrap .sig-title {
  font-size: 0.86rem;
  color: #cbd5e1;
}

/* Interactive Tabs Matrix */
.luxury-tabs-matrix {
  margin: 3rem 0;
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  overflow: hidden;
}

.matrix-tabs-header {
  display: flex;
  background: var(--navy-dark);
  overflow-x: auto;
}

.matrix-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  transition: all 0.25s ease;
  border-bottom: 3px solid transparent;
}

.matrix-tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.matrix-tab-btn.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border-bottom-color: var(--gold);
}

.matrix-tab-pane {
  display: none;
  padding: 2.25rem;
}

.matrix-tab-pane.active {
  display: block;
}

.matrix-tab-pane h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.matrix-tab-pane p {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin-bottom: 1.25rem !important;
}

.matrix-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.matrix-check-list li {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Feature Cards Grid */
.luxury-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
  margin: 2.75rem 0;
}

.l-f-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: all 0.35s ease;
}

.l-f-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.f-icon-gold {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.l-f-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.l-f-card p {
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* VIP Author Spotlight */
.luxury-vip-author {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--grey-border);
  border-radius: 22px;
  padding: 2.5rem;
  margin: 4rem 0 3rem 0;
}

@media (max-width: 640px) {
  .luxury-vip-author {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem;
  }
}

.vip-author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b89128 100%);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
  border: 3px solid var(--white);
}

.vip-author-content {
  flex: 1;
}

.vip-author-content h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.role-pill {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.75rem;
}

.vip-author-content p {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin-bottom: 1.25rem !important;
}

.author-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.author-actions a {
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.email-btn {
  background: var(--navy-dark);
  color: var(--gold);
}

.email-btn:hover {
  background: var(--green);
  color: var(--white);
}

.news-btn {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  color: var(--navy);
}

.news-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

/* Royal Prev Next Deck */
.luxury-prev-next-deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.r-card {
  background: #f8fafc;
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 1.75rem;
  text-decoration: none;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.r-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.r-card .dir {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.r-card.next .dir {
  justify-content: flex-end;
}

.r-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}

/* Related Section Luxury */
.luxury-related-section {
  padding: 5rem 0 6rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--grey-border);
}

/* ==========================================================================
   ROYAL EXECUTIVE SINGLE BLOG LUXURY STYLING (LEFT SIDEBAR & FIXED SOCIAL DOCK)
   ========================================================================== */

/* 1. Top Scroll Reading Progress Line */
.luxury-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #5b9c2f 0%, #d4af37 100%);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
}

/* 2. Fixed Left Floating Social Share Dock */
.fixed-social-dock {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  background: rgba(10, 16, 30, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dock-header-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: #d4af37;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 0.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-dock-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  outline: none;
}

.social-dock-btn:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.social-dock-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
}

.social-dock-btn.twitter:hover {
  background: #000000;
  border-color: #ffffff;
  color: #ffffff;
}

.social-dock-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.social-dock-btn.copy:hover {
  background: #5b9c2f;
  border-color: #5b9c2f;
  color: #ffffff;
}

.social-dock-btn.bookmark:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a101e;
}

/* 3. Hero Header Banner */
.luxury-side-hero {
  background: linear-gradient(135deg, #0a101e 0%, #060b14 100%);
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  color: #ffffff;
}

.luxury-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.luxury-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.luxury-breadcrumb a:hover {
  color: #5b9c2f;
}

.luxury-breadcrumb .sep {
  font-size: 0.65rem;
  color: #64748b;
}

.royal-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
}

.pulse-diamond {
  width: 8px;
  height: 8px;
  background: #5b9c2f;
  border-radius: 50%;
  box-shadow: 0 0 10px #5b9c2f;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.luxury-side-title {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1.25rem;
  max-width: 950px;
}

.shimmer-gold-italic {
  font-style: normal;
  color: var(--green);
  text-shadow: none;
}

.luxury-side-deck {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 880px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.luxury-side-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #5b9c2f 0%, #3b6b1d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 0.95rem;
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.a-name {
  display: block;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

.a-role {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.meta-tags-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.tag-item {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* 4. Main 2-Column Section */
.luxury-side-content-section {
  padding: 4.5rem 0 6rem;
  background: #f8fafc;
}

.luxury-side-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* 5. Left Sticky Sidebar */
.luxury-left-sidebar {
  width: 100%;
  position: relative;
  height: 100%;
}

.sidebar-sticky-wrapper {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  z-index: 10;
}

.side-widget {
  background: #ffffff;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: none;
}

.widget-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a101e;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 2px solid rgba(91, 156, 47, 0.15);
  padding-bottom: 0.75rem;
}

.side-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.side-toc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.side-toc-link .num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  background: rgba(10, 16, 30, 0.05);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.side-toc-link:hover,
.side-toc-link.active {
  background: rgba(91, 156, 47, 0.08);
  color: #0a101e;
  border-left-color: #5b9c2f;
}

.side-toc-link.active .num {
  background: #5b9c2f;
  color: #ffffff;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.highlights-list li {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.highlights-list li i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.side-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.side-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.side-cat-list a:hover {
  background: #0a101e;
  color: #ffffff;
  transform: translateX(3px);
}

.side-cat-list a .badge {
  background: rgba(91, 156, 47, 0.15);
  color: #5b9c2f;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

.side-cat-list a:hover .badge {
  background: #5b9c2f;
  color: #ffffff;
}

.pdf-download-widget {
  background: linear-gradient(135deg, #0a101e 0%, #17243e 100%);
  color: #ffffff;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pdf-icon {
  width: 52px;
  height: 52px;
  background: rgba(91, 156, 47, 0.2);
  border: 1px solid #5b9c2f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #8ce157;
  margin: 0 auto 1rem;
}

.pdf-download-widget h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.pdf-download-widget p {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

.download-pdf-btn {
  width: 100%;
  background: linear-gradient(135deg, #5b9c2f 0%, #3e6d20 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(91, 156, 47, 0.3);
}

.download-pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

/* 6. Right Main Reader Canvas */
.luxury-right-reader-canvas {
  background: #ffffff;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 20px;
  padding: 1.25rem 1.5rem 2.5rem;
  box-shadow: none;
}

.hologram-showcase-card {
  background: linear-gradient(135deg, #060b14 0%, #0a101e 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(91, 156, 47, 0.3);
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.card-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(91, 156, 47, 0.15);
  border: 1px solid rgba(91, 156, 47, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #8ce157;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #8ce157;
  border-radius: 50%;
  box-shadow: 0 0 8px #8ce157;
}

.hologram-showcase-card h2 {
  font-family: var(--font-main);
  font-size: 1.85rem;
  color: #ffffff;
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.showcase-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.s-metric strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.s-metric span {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reader-body-content {
  line-height: 1.85;
  color: #334155;
  font-size: 1.05rem;
}

.reading-section {
  margin-bottom: 3rem;
  scroll-margin-top: 120px;
}

.lead-p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.dropcap-gold {
  float: left;
  font-family: var(--font-main);
  font-size: 4.2rem;
  line-height: 0.8;
  font-weight: 900;
  color: #5b9c2f;
  margin-right: 0.85rem;
  margin-top: 0.2rem;
  text-shadow: 2px 2px 0px rgba(212, 175, 55, 0.2);
}

.obsidian-quote-box {
  position: relative;
  background: linear-gradient(135deg, #0a101e 0%, #17243e 100%);
  border-left: 5px solid #5b9c2f;
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  margin: 2.5rem 0;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.quote-watermark {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.06);
}

.obsidian-quote-box .quote-text {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: #f8fafc;
  margin-bottom: 1.25rem;
}

.quote-author-info .name {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: #d4af37;
}

.quote-author-info .role {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.reading-section h2 {
  font-family: var(--font-main);
  font-size: 1.95rem;
  font-weight: 800;
  color: #0a101e;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  border-left: 4px solid #5b9c2f;
  padding-left: 1rem;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.f-card {
  background: #f8fafc;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.f-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 156, 47, 0.4);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.f-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(91, 156, 47, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #5b9c2f;
  margin-bottom: 1rem;
}

.f-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a101e;
  margin-bottom: 0.5rem;
}

.f-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.interactive-tabs-matrix {
  background: #f8fafc;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 18px;
  padding: 1.75rem;
  margin: 2.5rem 0;
}

.matrix-tabs-bar {
  display: flex;
  gap: 0.75rem;
  border-bottom: 2px solid rgba(10, 16, 30, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.matrix-btn {
  background: #ffffff;
  border: 1px solid rgba(10, 16, 30, 0.1);
  border-radius: 10px;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.matrix-btn.active,
.matrix-btn:hover {
  background: #0a101e;
  color: #ffffff;
  border-color: #0a101e;
}

.matrix-btn.active i {
  color: #8ce157;
}

.matrix-pane {
  display: none;
}

.matrix-pane.active {
  display: block;
  animation: fadeInPane 0.4s ease;
}

@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.matrix-pane h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a101e;
  margin-bottom: 0.6rem;
}

.matrix-pane p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1rem;
}

.pane-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pane-checklist li {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.metrics-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.m-box {
  background: linear-gradient(135deg, #0a101e 0%, #17243e 100%);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #ffffff;
}

.m-box .val {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.m-box .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vip-author-card {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.06) 0%, rgba(10, 16, 30, 0.03) 100%);
  border: 1px solid rgba(91, 156, 47, 0.25);
  border-radius: 20px;
  padding: 2.25rem;
  margin-top: 2rem;
}

.author-avatar-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5b9c2f 0%, #3e6d20 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  border: 3px solid #d4af37;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(91, 156, 47, 0.25);
}

.author-bio-wrap h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a101e;
  margin-bottom: 0.25rem;
  border: none;
  padding: 0;
}

.author-role-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5b9c2f;
  margin-bottom: 0.75rem;
}

.author-bio-wrap p {
  font-size: 0.92rem;
  color: #475569;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.author-action-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #5b9c2f;
  color: #ffffff;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-email:hover {
  background: #478223;
  color: #ffffff;
}

.btn-news {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0a101e;
  color: #ffffff;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-news:hover {
  background: #17243e;
  color: #ffffff;
}

/* 7. Previous and Next Deck Row */
.prev-next-deck-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 16, 30, 0.08);
}

.nav-card-item {
  background: #f8fafc;
  border: 1px solid rgba(10, 16, 30, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.nav-card-item:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.nav-card-item .dir {
  font-size: 0.8rem;
  font-weight: 800;
  color: #5b9c2f;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-card-item.next .dir {
  justify-content: flex-end;
}

.nav-card-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a101e;
  line-height: 1.45;
  margin: 0;
}

/* 8. Luxury Side Related Section */
.luxury-side-related-section {
  padding: 5rem 0 6rem 0;
  background-color: #ffffff;
  border-top: 1px solid rgba(10, 16, 30, 0.08);
}

/* ==========================================================================
   NEW ULTRA-LUXURY SINGLE DIVISION SHOWCASE STYLING (SINGLE-DIVISIONS.HTML)
   100% Brand Token Palette Integration
   ========================================================================== */

/* 1. Portal Hero Banner */
.division-portal-hero {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5.5rem 0 6.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.division-portal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(91, 156, 47, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.portal-hero-content {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portal-hero-content .luxury-breadcrumb {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: rgba(10, 16, 30, 0.55);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.royal-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(10, 16, 30, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.portal-hero-title {
  font-family: var(--font-main);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.35rem;
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75), 0 2px 6px rgba(0, 0, 0, 0.9); */
  text-align: center;
}

.portal-hero-title .shimmer-gold-italic {
  font-style: italic;
  color: var(--green);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: initial;
}

.portal-hero-deck {
  font-size: 1.18rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  font-weight: 400;
}

.portal-action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

/* 2. Overview Dual Section */
.division-overview-section {
  padding: 4.5rem 0 5rem;
  background: var(--grey-light);
}

.overview-dual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.accreditations-flex-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.acc-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--grey-border);
  box-shadow: 0 4px 15px rgba(10, 16, 30, 0.03);
  transition: all 0.3s ease;
}

.acc-badge-chip:hover {
  transform: translateX(5px);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(91, 156, 47, 0.12);
}

.acc-badge-chip i {
  font-size: 1.1rem;
  color: var(--green);
}

/* Executive Showcase Composite Card */
.executive-showcase-composite-card {
  background: var(--navy-dark);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.executive-showcase-composite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.composite-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.composite-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.executive-showcase-composite-card:hover .composite-img {
  transform: scale(1.06);
}

.composite-badge-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 16, 30, 0.82);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.composite-badge-overlay .live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--light-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--light-green);
}

.composite-card-body {
  padding: 2rem;
  color: var(--white);
}

.composite-card-body h3 {
  font-family: var(--font-main);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.composite-subtext {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.showcase-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.s-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  transition: background 0.3s ease;
}

.s-metric:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.s-metric strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.s-metric span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* 3. Executive Operational Disciplines Section (Light Executive Alternating Banners) */
.division-disciplines-section {
  padding: 6.5rem 0;
  background: var(--grey-light);
  position: relative;
  color: var(--text-dark);
}

.division-disciplines-section .section-title {
  color: var(--text-dark);
}

.disciplines-split-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 4rem;
}

.discipline-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.discipline-split-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.discipline-split-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.discipline-split-card:hover::before {
  opacity: 1;
}

.discipline-split-card.reverse-layout .split-image-col {
  order: 2;
}

.discipline-split-card.reverse-layout .split-content-col {
  order: 1;
}

.split-image-col {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(10, 16, 30, 0.12);
}

.split-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.discipline-split-card:hover .split-image-col img {
  transform: scale(1.08);
}

.split-arm-pill {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(10, 16, 30, 0.85);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 0.5rem 1.15rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.split-arm-pill i {
  color: var(--gold);
}

.split-content-col {
  display: flex;
  flex-direction: column;
}

.split-content-col h3 {
  font-family: var(--font-main);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.95rem;
  line-height: 1.25;
}

.split-content-col p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.split-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.split-spec-item {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(10, 16, 30, 0.02);
  transition: all 0.3s ease;
}

.split-spec-item:hover {
  background: rgba(91, 156, 47, 0.06);
  border-color: rgba(91, 156, 47, 0.3);
  transform: translateY(-2px);
}

.split-spec-item i {
  color: var(--green);
  font-size: 0.95rem;
}

.split-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--green);
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  box-shadow: 0 2px 10px rgba(10, 16, 30, 0.02);
}

.split-footer-bar span.spec-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.split-footer-bar span.spec-value {
  color: var(--green);
  font-weight: 800;
}

/* 4. Division Quote Section */
.division-quote-section {
  padding: 2rem 0;
  background: var(--white);
}

/* 5. Fleet & Matrix Section */
.division-fleet-matrix-section {
  padding: 6rem 0;
  background: var(--grey-light);
}

.equipment-fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.fleet-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 35px rgba(212, 175, 55, 0.15);
}

.fleet-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 1.15rem;
}

.fleet-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.fleet-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.fleet-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.fleet-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  background: rgba(10, 16, 30, 0.05);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

/* 6. Unboxed Executive RFP Consultation Inquiry Section (100% Light Mode & Strict Brand Tokens) */
.division-rfp-section {
  padding: 6.5rem 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(91, 156, 47, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--grey-light) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.unboxed-rfp-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}

.unboxed-rfp-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Distinctive Executive Engineering Telemetry Tag (Unique Design) */
.rfp-unique-executive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--green);
  padding: 0.45rem 1.15rem 0.45rem 0.65rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.04);
  margin-bottom: 0.5rem;
  align-self: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.rfp-unique-executive-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 156, 47, 0.4);
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.08);
}

.rfp-unique-executive-badge .badge-icon-box {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(91, 156, 47, 0.25);
}

.rfp-unique-executive-badge .badge-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.rfp-unique-executive-badge .badge-category {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rfp-unique-executive-badge .badge-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.1rem;
}

.rfp-unique-executive-badge .live-pulse {
  font-size: 0.55rem;
  animation: pulseGreenDot 2s infinite;
}

.unboxed-rfp-title {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
}

.unboxed-rfp-lead {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.rfp-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.rfp-guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.rfp-guarantee-item .g-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.04);
  flex-shrink: 0;
}

.rfp-guarantee-item .g-text-wrap h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.2rem;
}

.rfp-guarantee-item .g-text-wrap p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.rfp-direct-contact-bar {
  padding-top: 1rem;
  border-top: 1px dashed var(--grey-border);
}

.d-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--navy-dark);
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  border: 1px solid var(--grey-border);
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.04);
}

.unboxed-rfp-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 20px;
  padding: 3rem 2.75rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.unboxed-rfp-form-wrap:hover {
  border-color: rgba(91, 156, 47, 0.4);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.rfp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.rfp-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rfp-field.full-width {
  grid-column: span 2;
}

.rfp-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.rfp-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 0.85rem 1.15rem;
  color: var(--navy-dark);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  outline: none;
}

.rfp-input:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 156, 47, 0.12);
}

.rfp-input option {
  background: var(--white);
  color: var(--navy-dark);
}

.rfp-textarea {
  resize: vertical;
}

.rfp-submit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.btn-luxury-primary {
  background-color: var(--green);
  color: var(--white);
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(91, 156, 47, 0.25);
  text-decoration: none;
}

.btn-luxury-primary:hover {
  background-color: var(--green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.btn-luxury-primary i {
  transition: transform 0.3s ease;
}

.btn-luxury-primary:hover i {
  transform: translateX(4px);
}

.rfp-privacy-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* ==========================================================================
   IMAGE ENHANCEMENTS FOR SINGLE DIVISION PAGE
   ========================================================================== */
.overview-showcase-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
  border: 1px solid var(--grey-border);
}

.overview-showcase-img-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.overview-showcase-img-box:hover img {
  transform: scale(1.05);
}

.img-badge-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 16, 30, 0.82);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.disc-card-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}

.disc-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.disc-card:hover .disc-card-img-wrap img {
  transform: scale(1.08);
}

.fleet-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.07);
}

.division-card-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.division-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.division-card:hover .division-card-img-wrap img {
  transform: scale(1.08);
}

/* ==========================================================================
   ULTRA-LUXURY LIGHT MODE OPERATIONAL DISCIPLINES SHOWCASE DECK
   ========================================================================== */
/* ==========================================================================
   TECHNICAL EQUIPMENT & VESSEL SPECIFICATION FLEET CARDS
   ========================================================================== */
.division-fleet-showcase-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-light) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.fleet-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  margin-top: 3.5rem;
}

.fleet-showcase-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.fleet-showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.fleet-img-frame {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.fleet-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-showcase-card:hover .fleet-img-frame img {
  transform: scale(1.06);
}

.fleet-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(18, 28, 51, 0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.45rem 0.95rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 2;
}

.fleet-card-content {
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-cat-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.fleet-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.fleet-card-desc {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex: 1;
}

.fleet-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.f-tel-box {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.fleet-showcase-card:hover .f-tel-box {
  background: var(--white);
  border-color: rgba(91, 156, 47, 0.3);
}

.f-tel-box strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.1;
}

.f-tel-box span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.fleet-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fleet-footer-strip {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--navy-dark);
  margin-top: auto;
}

.footer-spec-label {
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-spec-val {
  font-weight: 800;
}

/* ==========================================================================
   UNBOXED LIGHT MODE EXECUTIVE LEADERSHIP SHOWCASE (NO BOX WRAPPER)
   ========================================================================== */
.division-quote-section {
  padding: 5.5rem 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(91, 156, 47, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--grey-light) 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.unboxed-executive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .unboxed-executive-layout {
    grid-template-columns: 0.9fr 1.25fr;
    gap: 4rem;
  }
}

/* Left Column: Executive Photo Spotlight */
.exec-spotlight-col {
  width: 100%;
}

.exec-photo-frame {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(10, 16, 30, 0.12);
  border: 1px solid var(--grey-border);
}

.exec-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.executive-showcase-deck:hover .exec-photo-frame img {
  transform: scale(1.05);
}

.exec-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.15) 0%, rgba(10, 16, 30, 0.75) 100%);
  pointer-events: none;
}

.exec-top-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(10, 16, 30, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.45rem 0.95rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 2;
}

.exec-bottom-meta {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 2;
}

.exec-bottom-meta .exec-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.exec-bottom-meta .exec-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* Right Column: Content & Quote */
.exec-content-col {
  display: flex;
  flex-direction: column;
}

.exec-tag-row {
  margin-bottom: 1rem;
}

.exec-directive-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.exec-quote-text {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.65;
  margin: 0 0 1.75rem 0;
  position: relative;
}

.exec-opening-quote {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 0.8;
  display: inline-block;
  margin-right: 0.25rem;
  vertical-align: middle;
}

/* 3 Executive Pillars Grid */
.exec-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.pillar-chip {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.executive-showcase-deck:hover .pillar-chip {
  background: #FFFFFF;
  border-color: rgba(91, 156, 47, 0.3);
}

.pillar-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pillar-text strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
}

.pillar-text span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Footer Verification Bar */
.exec-card-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-border);
}

.verify-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   SMART LIGHT MODE MATRIX TABS & FLEET SHOWCASE DECK
   ========================================================================== */
/* ==========================================================================
   ULTRA-LUXURY UNBOXED PROJECT CASE STUDIES & GLOBAL DELIVERY SHOWCASE
   ========================================================================== */
/* ==========================================================================
   GLOBAL OPERATOR PARTNERSHIPS & CLASSIFICATION SOCIETIES
   ========================================================================== */
.division-partnerships-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-light) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.class-societies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.society-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 18px;
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.society-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.society-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.society-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-verified {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy-dark);
  background: var(--grey);
  border: 1px solid var(--grey-border);
  padding: 0.35rem 0.75rem;
  border-radius: 30px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.society-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.society-desc {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.society-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-border);
}

.s-spec-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.society-card-footer {
  padding-top: 0.85rem;
  border-top: 1px solid var(--grey-border);
}

.footer-acc-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Operator Vendor Qualification Strip */
.operator-vendor-strip {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
  .operator-vendor-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.vendor-strip-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-transform: uppercase;
}

.partner-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.partner-chip {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 30px;
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.3s ease;
}

.partner-chip:hover {
  border-color: var(--green);
  background: var(--white);
}

/* ==========================================================================
   SOVEREIGN LIGHT MODE FAQ ACCORDION SECTION
   ========================================================================== */
.division-faq-section {
  padding: 6rem 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(91, 156, 47, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--grey-light) 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.faq-accordion-deck {
  max-width: 900px;
  margin: 3.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(10, 16, 30, 0.03);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.faq-item.active {
  border-color: rgba(91, 156, 47, 0.5);
  box-shadow: 0 4px 14px rgba(10, 16, 30, 0.04);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.35rem 1.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-item.active .faq-question-btn {
  background: rgba(91, 156, 47, 0.04);
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.4;
}

.faq-q-left i {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.faq-chevron {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

/* ==========================================================================
   ULTRA-LUXURY 13-DIVISIONS INTERACTIVE CAROUSEL DECK
   ========================================================================== */
.divisions-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.slider-controls-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.slider-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  color: var(--navy-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.04);
  outline: none;
}

.slider-control-btn:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.25);
}

.slider-control-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.divisions-slider-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0 1rem;
}

.divisions-slider-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.division-slide-card {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  min-width: 0;
  display: flex;
}

.division-slide-card .division-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.slider-dots-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.slider-dot.active {
  width: 28px;
  border-radius: 20px;
  background: var(--green);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.65rem;
}

.faq-item.active .faq-answer-body {
  max-height: 300px;
  padding: 0 1.65rem 1.5rem 3.65rem;
}

.faq-answer-body p {
  font-size: 0.96rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   UNIQUE UNBOXED EXECUTIVE FAQ KNOWLEDGE BASE (100% LIGHT MODE)
   ========================================================================== */
.unique-faq-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-light) 100%);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
}

.unique-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4.5rem;
  align-items: start;
}

/* Left Column: Sticky Side Intro Header */
.unique-faq-intro {
  position: sticky;
  top: 110px;
}

.unique-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--grey);
  border: 1px solid var(--grey-border);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.unique-faq-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.unique-faq-title .title-highlight {
  color: var(--green);
  font-style: normal;
  text-shadow: none;
}

.unique-faq-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

/* Executive Micro Assistance Card */
.unique-faq-help-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 1.65rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.unique-faq-help-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.faq-help-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.faq-help-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}

.faq-help-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.btn-faq-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faq-direct:hover {
  color: var(--green);
  transform: translateX(3px);
}

/* Right Column: Unboxed Accordion Telemetry Rows */
.unique-faq-accordion {
  display: flex;
  flex-direction: column;
}

.unique-faq-item {
  border-bottom: 1px solid var(--grey-border);
  padding: 1.35rem 0;
  transition: all 0.3s ease;
}

.unique-faq-item:first-child {
  padding-top: 0;
}

.unique-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: transparent;
  border: none;
  padding: 0.5rem 0;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-num-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.unique-faq-item.active .faq-num-wrap {
  background: var(--navy-dark);
  color: var(--gold);
}

.faq-question {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.45;
  transition: color 0.3s ease;
}

.unique-faq-trigger:hover .faq-question,
.unique-faq-item.active .faq-question {
  color: var(--green);
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--navy-dark);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.unique-faq-item.active .faq-icon-wrap {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.unique-faq-body {
  padding-left: 3.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.5rem;
  display: none;
}

.faq-body-inner {
  border-left: 3px solid #5B9C2F;
  padding-left: 1.25rem;
}

.faq-body-inner p {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
  border-left: none;
  padding-left: 0;
}

/* ==========================================================================
   EXECUTIVE VIP FAST-TRACK HOTLINE SPOTLIGHT SECTION
   ========================================================================== */
.contact-vip-spotlight {
  padding: 5.5rem 0;
  background: var(--grey-light);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  position: relative;
}

.vip-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .vip-spotlight-grid {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 4rem;
  }
}

.vip-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.08);
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.vip-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.vip-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.vip-highlights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vip-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  padding: 0.55rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
}

.vip-chip:hover {
  border-color: var(--light-green);
  transform: translateY(-2px);
}

/* Right Column Card */
.vip-card-wrap {
  width: 100%;
}

.contact-vip-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-top: 4px solid var(--green);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-speed) ease;
}

.contact-vip-card:hover {
  box-shadow: 0 12px 30px rgba(27, 42, 74, 0.08);
}

.vip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-border);
}

.vip-status-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  background: var(--light-green-subtle);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.vip-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.vip-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.vip-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.vip-action-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vip-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--green);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
  transition: all var(--transition-speed) ease;
}

.vip-btn-call:hover {
  background: #1eb052;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
  color: var(--white);
}

.vip-btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid var(--grey-border);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.vip-btn-email:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.vip-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px dashed var(--grey-border);
}

/* ==========================================================================
   SPECIALIZED DEPARTMENTAL PROCUREMENT DESKS SECTION
   ========================================================================== */
.contact-desks-section {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}

.desks-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 992px) {
  .desks-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.desk-luxury-card {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.desk-luxury-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  background: var(--white);
}

.desk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.desk-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light-green-subtle);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.desk-luxury-card:hover .desk-icon-box {
  background: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

.desk-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--grey-border);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(27, 42, 74, 0.04);
}

.desk-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.desk-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.desk-contact-info {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.desk-contact-info span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desk-contact-info a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.desk-contact-info a:hover {
  color: var(--green);
}

.desk-cta-btn {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.1);
}

.desk-cta-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
}

.desk-cta-btn i {
  transition: transform 0.3s ease;
}

.desk-cta-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   CORPORATE OFFICES & INTERNATIONAL HUBS (CLEAN 2X2 GRID)
   ========================================================================== */
.contact-offices-section {
  padding: 5.5rem 0;
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-border);
  position: relative;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 992px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
  }
}

.office-luxury-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
}

.office-luxury-card:hover {
  border-color: var(--light-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.office-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.office-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--light-green-subtle);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all 0.3s ease;
}

.office-luxury-card:hover .office-icon-box {
  background: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

.office-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.office-badge.green {
  color: var(--green);
  background: var(--light-green-subtle);
  border-color: rgba(34, 197, 94, 0.2);
}

.office-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.office-address {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.sub-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  display: block;
  margin-top: 0.25rem;
}

.office-contact-box {
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

@media (min-width: 576px) {
  .office-contact-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.contact-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-item a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.contact-item a:hover {
  color: var(--green);
}


/* ==========================================================================
   DRILLING & WORKOVER DIVISION DEDICATED STYLES
   ========================================================================== */

/* 1. Tactical Rig Hero */
.drilling-hero {
  position: relative;
  background: linear-gradient(135deg, #0A192F 0%, #0F2A4A 100%), url('https://images.unsplash.com/photo-1541888946425-d0fbb186a5b7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 7rem 0 5rem;
  color: #FFFFFF;
  overflow: hidden;
}

.drilling-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(217, 119, 6, 0.15), transparent 60%), linear-gradient(to bottom, rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.95));
  z-index: 1;
}

.drilling-hero-content {
  max-width: 850px;
}

.drilling-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.4);
  color: #F59E0B;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.drilling-hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.title-highlight-gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.drilling-hero-subtext {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.drilling-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.drilling-hero-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.hero-spec-item {
  display: flex;
  flex-direction: column;
}

.hero-spec-item .spec-label {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-spec-item .spec-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #F59E0B;
  margin-top: 0.2rem;
}

/* 2. Rig Stats Bar */
.drilling-stats-bar {
  background: #0A192F;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.counter-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
}

.counter-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(217, 119, 6, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F59E0B;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.counter-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.counter-label {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 0.3rem;
}

/* 3. Fleet & Machinery Section */
.drilling-fleet-section {
  padding: 5rem 0;
  background: #F8FAFC;
}

.fleet-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.fleet-tab-btn {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #475569;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fleet-tab-btn:hover,
.fleet-tab-btn.active {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.15);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.fleet-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(217, 119, 6, 0.4);
}

.fleet-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.fleet-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F59E0B;
  color: #0A192F;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.fleet-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.fleet-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fleet-specs-list li {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-fleet-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
  background: #F1F5F9;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-fleet-action:hover {
  background: var(--navy);
  color: #FFFFFF;
}

/* 4. Well Lifecycle Flow */
.drilling-flow-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.drilling-flow-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}

.flow-step-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.flow-step-card:hover {
  background: #FFFFFF;
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.08);
  border-color: #D97706;
  transform: translateY(-3px);
}

.flow-step-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(148, 163, 184, 0.25);
}

.flow-step-icon {
  width: 50px;
  height: 50px;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D97706;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.flow-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.flow-step-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.6;
}

/* 5. Spotlight Grid */
.drilling-spotlight-section {
  padding: 5rem 0;
  background: #0A192F;
  color: #FFFFFF;
}

.drilling-spotlight-section .section-title {
  color: #FFFFFF;
}

.drilling-spotlight-section .section-description {
  color: #94A3B8;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.spotlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.spotlight-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
}

.spotlight-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F59E0B;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.spotlight-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.spotlight-text {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.spotlight-chip {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #F59E0B;
  letter-spacing: 0.5px;
}

/* 6. Compliance Box */
.drilling-compliance-section {
  padding: 4.5rem 0;
  background: #F8FAFC;
}

.compliance-box {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: 24px;
  padding: 3.5rem;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.compliance-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.compliance-desc {
  font-size: 1rem;
  color: #94A3B8;
  max-width: 700px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.compliance-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
}

.badge-item i {
  font-size: 1.6rem;
  color: #F59E0B;
}

.badge-item strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.badge-item span {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* 7. FAQ Accordion */
.drilling-faq-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.faq-accordion-container {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #D97706;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #F8FAFC;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question-btn:hover {
  background: #F1F5F9;
}

.faq-icon {
  font-size: 0.9rem;
  color: #D97706;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #FFFFFF;
}

.faq-item.active .faq-answer-panel {
  max-height: 250px;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-answer-panel p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   MASTER DIVISION SINGLE PAGE SYSTEM (MATCHING USER IMAGE 2 & IMAGE 3)
   ========================================================================== */

/* --- IMAGE 2 HERO SECTION STYLING --- */
.division-master-hero {
  position: relative;
  background-color: #0A162E;
  background-size: cover;
  background-position: center;
  padding: 5rem 0 7rem;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.division-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 46, 0.75) 0%, rgba(10, 22, 46, 0.92) 100%);
  z-index: 1;
}

.division-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.hero-breadcrumb-pill .text-green {
  color: #5B9C2F;
}

.hero-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 22, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-category-pill i {
  color: #5B9C2F;
}

.division-master-hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.18;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.division-master-hero-subtext {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.65;
  max-width: 800px;
  margin-bottom: 2.25rem;
}

.division-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-hero-green {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #5B9C2F;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(91, 156, 47, 0.3);
}

.btn-hero-green:hover {
  background: #4A8325;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(91, 156, 47, 0.4);
}

.btn-hero-white-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFFFFF;
  color: #0A162E;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-white-glass:hover {
  background: #F8FAFC;
  color: #0A162E;
  transform: translateY(-2px);
}

/* Floating Stats Card Ribbon (Overlapping Hero) */
.division-hero-floating-stats {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  border-top: 4px solid #5B9C2F;
  box-shadow: 0 15px 40px rgba(10, 22, 46, 0.08);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .division-hero-floating-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -2rem;
  }
}

@media (max-width: 576px) {
  .division-hero-floating-stats {
    grid-template-columns: 1fr;
  }
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  border-right: 1px solid #F1F5F9;
}

.hero-stat-card:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(91, 156, 47, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B9C2F;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0A162E;
  line-height: 1.1;
  margin: 0;
}

.stat-info p {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0.25rem 0 0 0;
}


/* --- IMAGE 3 EXECUTIVE FAQ SECTION STYLING --- */
.division-executive-faq-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.faq-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .faq-two-col-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.faq-left-col {
  display: flex;
  flex-direction: column;
}

.faq-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0A162E;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.faq-pill-badge i {
  color: #0A162E;
}

.faq-left-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0A162E;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.faq-left-title .text-green {
  color: #5B9C2F;
}

.faq-left-description {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.faq-engineer-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: auto;
}

.engineer-card-icon {
  width: 44px;
  height: 44px;
  background: #FEF3C7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A162E;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.engineer-card-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.35rem;
}

.engineer-card-content p {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.engineer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0A162E;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.engineer-card-link:hover {
  color: #5B9C2F;
}

/* Right Column Accordion Stack */
.executive-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exec-faq-item {
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

/*.exec-faq-item.active {
  border-left: 3px solid #5B9C2F;
  padding-left: 1rem;
}*/

.exec-faq-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 0;
  cursor: pointer;
  text-align: left;
}

.faq-number-box {
  width: 34px;
  height: 34px;
  background: #F1F5F9;
  color: #94A3B8;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.exec-faq-item.active .faq-number-box {
  background: #0A162E;
  color: #FFFFFF;
}

.faq-question-text {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0A162E;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.exec-faq-item.active .faq-question-text {
  color: #5B9C2F;
}

.faq-toggle-circle {
  width: 32px;
  height: 32px;
  background: #F1F5F9;
  color: #64748B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.exec-faq-item.active .faq-toggle-circle {
  background: #5B9C2F;
  color: #FFFFFF;
}

.exec-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.exec-faq-item.active .exec-faq-body {
  max-height: 300px;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

.exec-faq-body p {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}


/* --- GENERIC DIVISION SECTION COMPONENTS --- */
.division-section-white {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.division-section-light {
  padding: 5.5rem 0;
  background: #F8FAFC;
}

.division-section-navy {
  padding: 5.5rem 0;
  background: #0A162E;
  color: #FFFFFF;
}

.section-header-center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-header-center .section-subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #5B9C2F;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-header-center .section-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0A162E;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.division-section-navy .section-header-center .section-title {
  color: #FFFFFF;
}

.section-header-center .section-description {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.65;
}

.division-section-navy .section-header-center .section-description {
  color: #94A3B8;
}

.division-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card-premium {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.25rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 156, 47, 0.4);
  box-shadow: 0 15px 35px rgba(91, 156, 47, 0.1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(91, 156, 47, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B9C2F;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5B9C2F;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.process-step-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid #E2E8F0;
  position: relative;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  background: #FFFFFF;
  border-color: #5B9C2F;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-number-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(91, 156, 47, 0.2);
}

.step-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(91, 156, 47, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B9C2F;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.55;
}

/* ==========================================================================
   EXECUTIVE FAQ SECTION (IMAGE 3 DESIGN MATCHING 100%)
   ========================================================================== */
.division-executive-faq-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.faq-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .faq-two-col-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Left Column */
.faq-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.faq-pill-badge i {
  color: #64748B;
  font-size: 0.9rem;
}

.faq-left-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0A162E;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.faq-left-title .text-green {
  color: #5B9C2F;
}

.faq-left-description {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.faq-engineer-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  width: 100%;
  max-width: 480px;
}

.engineer-card-icon {
  width: 48px;
  height: 48px;
  background-color: #FEF3C7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A162E;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.engineer-card-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.4rem;
}

.engineer-card-content p {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.engineer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0A162E;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.engineer-card-link:hover {
  color: #5B9C2F;
  transform: translateX(3px);
}

/* Right Column Accordion Stack */
.executive-faq-stack {
  display: flex;
  flex-direction: column;
}

.exec-faq-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 1.25rem 0;
}

.exec-faq-item:first-child {
  padding-top: 0;
}

.exec-faq-header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-number-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #F1F5F9;
  color: #D97706;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.exec-faq-item.active .faq-number-box {
  background-color: #0A162E;
  color: #FFFFFF;
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A162E;
  flex: 1;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.exec-faq-item.active .faq-question-text {
  color: #5B9C2F;
}

.faq-toggle-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.exec-faq-item.active .faq-toggle-circle {
  background-color: #5B9C2F;
  border-color: #5B9C2F;
  color: #FFFFFF;
}

.exec-faq-body {
  display: none;
  padding: 1rem 0 0.5rem 3.25rem;
}

.exec-faq-body p {
  border-left: 3px solid #5B9C2F;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   6.5 UNIQUE UNBOXED EXECUTIVE FAQ KNOWLEDGE BASE STYLES
   ========================================================================== */
.unique-faq-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.unique-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .unique-faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.unique-faq-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.unique-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.unique-faq-badge i {
  font-size: 0.9rem;
}

.unique-faq-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0A162E;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.unique-faq-title .title-highlight {
  color: #5B9C2F;
}

.unique-faq-lead {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.unique-faq-help-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  width: 100%;
  max-width: 480px;
}

.faq-help-icon {
  width: 48px;
  height: 48px;
  background-color: #FEF3C7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-help-content .faq-help-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.4rem;
}

.faq-help-content .faq-help-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.btn-faq-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0A162E;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-faq-direct:hover {
  color: #5B9C2F;
  transform: translateX(3px);
}

.unique-faq-accordion {
  display: flex;
  flex-direction: column;
}

.unique-faq-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 1.25rem 0;
}

.unique-faq-item:first-child {
  padding-top: 0;
}

.unique-faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-num-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #F1F5F9;
  color: #D97706;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.unique-faq-item.active .faq-num-wrap {
  background-color: #0A162E;
  color: #FFFFFF;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A162E;
  flex: 1;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.unique-faq-trigger *,
.exec-faq-header * {
  pointer-events: none;
}

.unique-faq-item.active .faq-question {
  color: #5B9C2F;
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.unique-faq-item.active .faq-icon-wrap {
  background-color: #5B9C2F;
  border-color: #5B9C2F;
  color: #FFFFFF;
}

.unique-faq-body {
  display: none;
  padding: 1rem 0 0.5rem 3.25rem;
}

.faq-body-inner p {
  border-left: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   UNIQUE DIVISION SINGLE PAGE STYLES & TELEMETRY DASHBOARD
   ========================================================================== */
.division-single-hero {
  position: relative;
  padding: 140px 0 80px 0;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
}

.division-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.div-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.div-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.div-hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-actions-flex {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-telemetry-box {
  background: rgba(10, 22, 46, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.t-box-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.t-metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.t-metric-card:hover {
  background: rgba(91, 156, 47, 0.15);
  border-color: var(--green);
  transform: translateY(-2px);
}

.t-metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.t-metric-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.division-case-spotlight-card {
  background: linear-gradient(135deg, #0A162E 0%, #112244 100%);
  border-radius: 16px;
  padding: 2.5rem;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(10, 22, 46, 0.2);
}

.case-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: center;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.case-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.case-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.case-highlights-flex {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.c-chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 991px) {
  .division-hero-grid,
  .case-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   SPECIFIC DIVISION PAGE (divisions/drilling-workover.html) STYLES
   ========================================================================== */
.breadcrumb-bar {
  background-color: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 0.85rem 0;
  font-size: 0.88rem;
  color: #64748B;
  margin-top: 80px;
}

.breadcrumb-bar a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-bar a:hover {
  color: #5B9C2F;
}

.breadcrumb-bar span.sep {
  margin: 0 0.5rem;
  color: #CBD5E1;
}

.breadcrumb-bar span.current {
  color: #0A162E;
  font-weight: 600;
}

.division-hero-charcoal {
  background-color: #333333;
  color: #FFFFFF;
  padding: 4.5rem 0;
  text-align: left;
}

.division-hero-charcoal .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.division-hero-charcoal h1 {
  font-size: 2.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.division-hero-charcoal .lede {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #E2E8F0;
  max-width: 820px;
  margin-bottom: 2rem;
}

.division-hero-charcoal .hero-cta-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.core-services-numbered-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.core-service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.core-service-item:hover {
  border-color: #5B9C2F;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.core-service-num {
  width: 42px;
  height: 42px;
  background: #0A162E;
  color: #D4AF37;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.core-service-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A162E;
  line-height: 1.4;
  margin-top: 0.35rem;
}

.paper-bg-section {
  background-color: #F5F5F2;
  padding: 5rem 0;
}

.equipment-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.equipment-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.equipment-card i {
  font-size: 1.5rem;
  color: #5B9C2F;
  flex-shrink: 0;
}

.equipment-card span {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0A162E;
  line-height: 1.35;
}

.pumps-row-box {
  background: #FFFFFF;
  border: 1px dashed #CBD5E1;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: #334155;
}

.subcontracting-callout-block {
  background: linear-gradient(135deg, rgba(91, 156, 47, 0.08) 0%, rgba(10, 22, 46, 0.05) 100%);
  border-left: 4px solid #5B9C2F;
  border-radius: 0 12px 12px 0;
  padding: 2rem;
  margin: 3rem 0;
}

.subcontracting-callout-block p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A162E;
  line-height: 1.65;
  margin: 0;
}

.related-divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-division-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-division-card:hover {
  border-color: #5B9C2F;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.related-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.related-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(91, 156, 47, 0.1);
  color: #5B9C2F;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.related-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A162E;
  margin: 0;
}

.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5B9C2F;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-card-link:hover {
  color: #0A162E;
}

/* ==========================================================================
   EXCLUSIVE DRILLING & WORKOVER UNIQUE SECTION STYLES (EXECUTIVE MATRIX)
   ========================================================================== */
.matrix-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .matrix-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.matrix-service-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(10, 16, 30, 0.04);
  position: relative;
}

@media (min-width: 576px) {
  .matrix-service-card {
    flex-direction: row;
  }
}

.matrix-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 156, 47, 0.45);
  box-shadow: 0 16px 38px rgba(10, 16, 30, 0.09), 0 0 20px rgba(91, 156, 47, 0.12);
}

.matrix-card-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .matrix-card-media {
    width: 210px;
    height: auto;
    min-height: 220px;
  }
}

.matrix-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.matrix-service-card:hover .matrix-img {
  transform: scale(1.08);
}

.matrix-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 46, 0.15) 0%, rgba(10, 22, 46, 0.65) 100%);
}

.matrix-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 22, 46, 0.88);
  backdrop-filter: blur(6px);
  color: #D4AF37;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  z-index: 2;
}

.matrix-card-content {
  padding: 1.5rem 1.6rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.matrix-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.matrix-icon-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(10, 22, 46, 0.06) 0%, rgba(91, 156, 47, 0.12) 100%);
  border: 1px solid rgba(91, 156, 47, 0.25);
  color: #5B9C2F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.matrix-service-card:hover .matrix-icon-box {
  background: #0A162E;
  border-color: #D4AF37;
  color: #D4AF37;
}

.matrix-spec-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.matrix-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.matrix-card-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.matrix-card-footer {
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
}

.matrix-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #5B9C2F;
  text-decoration: none;
  transition: all 0.3s ease;
}

.matrix-link i {
  transition: transform 0.3s ease;
}

.matrix-service-card:hover .matrix-link {
  color: #0A162E;
}

.matrix-service-card:hover .matrix-link i {
  transform: translateX(4px);
  color: #5B9C2F;
}

.unique-core-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.unique-core-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-top: 4px solid #5B9C2F;
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.unique-core-card:hover {
  border-top-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 22, 46, 0.12);
}

.u-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.u-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(91, 156, 47, 0.1);
  color: #5B9C2F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.unique-core-card:hover .u-card-icon {
  background: #0A162E;
  color: #D4AF37;
}

.u-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.08em;
  background: #F1F5F9;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.u-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.u-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.u-card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5B9C2F;
  text-decoration: none;
  transition: color 0.2s ease;
}

.unique-core-card:hover .u-card-footer-link {
  color: #0A162E;
}

.unique-procurement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.procurement-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.procurement-card:hover {
  border-color: #5B9C2F;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.p-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.p-card-icon {
  width: 44px;
  height: 44px;
  background: #0A162E;
  color: #D4AF37;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.p-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A162E;
  margin: 0;
  line-height: 1.3;
}

.p-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.p-card-list li {
  font-size: 0.9rem;
  color: #475569;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px dashed #F1F5F9;
}

.p-card-list li:last-child {
  border-bottom: none;
}

.p-card-list li i {
  color: #5B9C2F;
  font-size: 0.8rem;
}

.p-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  align-self: flex-start;
}

.pumps-executive-bar {
  background: #0A162E;
  color: #FFFFFF;
  border-radius: 14px;
  padding: 1.4rem 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 25px rgba(10, 22, 46, 0.15);
}

.pumps-bar-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #D4AF37;
}

.pumps-tags-flex {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.p-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #F8FAFC;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

.subcontracting-command-box {
  background: linear-gradient(135deg, #0A162E 0%, #1A2E50 100%);
  border-left: 4px solid #D4AF37;
  border-radius: 14px;
  padding: 2.25rem;
  margin-top: 2.5rem;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(10, 22, 46, 0.2);
}

.subcontracting-command-box p {
  font-size: 1.12rem;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.7;
  margin: 0;
}

.u-card-img-frame {
  position: relative;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.u-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unique-core-card:hover .u-card-img {
  transform: scale(1.08);
}

.u-card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 46, 0.1) 0%, rgba(10, 22, 46, 0.6) 100%);
}

.u-card-img-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10, 22, 46, 0.85);
  backdrop-filter: blur(4px);
  color: #D4AF37;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.procurement-split-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: flex-start;
}

.procurement-feature-showcase {
  position: sticky;
  top: 100px;
  background: #0A162E;
  border-radius: 16px;
  overflow: hidden;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(10, 22, 46, 0.2);
}

.p-showcase-img-wrap {
  position: relative;
  height: 240px;
}

.p-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-showcase-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 22, 46, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-showcase-body {
  padding: 1.75rem;
}

.p-showcase-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.p-showcase-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   POWER GENERATION EXCLUSIVE SECTION 4: 4-COLUMN HIGH-VOLTAGE GRID CARDS
   ========================================================================== */
.pg-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 576px) {
  .pg-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .pg-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.pg-service-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(10, 16, 30, 0.04);
  position: relative;
}

.pg-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5B9C2F 0%, #D4AF37 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.pg-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 156, 47, 0.4);
  box-shadow: 0 16px 36px rgba(10, 16, 30, 0.09), 0 0 20px rgba(91, 156, 47, 0.12);
}

.pg-service-card:hover::before {
  opacity: 1;
}

.pg-card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.pg-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pg-service-card:hover .pg-card-img {
  transform: scale(1.08);
}

.pg-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 22, 46, 0.2) 0%, rgba(10, 22, 46, 0.75) 100%);
}

.pg-voltage-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 22, 46, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pg-category-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 22, 46, 0.85);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border-left: 3px solid #5B9C2F;
  text-transform: uppercase;
  z-index: 2;
}

.pg-card-body {
  padding: 1.4rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pg-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.pg-icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(91, 156, 47, 0.1);
  border: 1px solid rgba(91, 156, 47, 0.25);
  color: #5B9C2F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.pg-service-card:hover .pg-icon-circle {
  background: #0A162E;
  border-color: #D4AF37;
  color: #D4AF37;
}

.pg-spec-chip {
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pg-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.pg-card-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.pg-card-footer {
  padding: 0.85rem 1.25rem 1.1rem;
  background: #F8FAFC;
  border-top: 1px solid #F1F5F9;
}

.pg-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5B9C2F;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pg-card-btn i {
  transition: transform 0.3s ease;
}

.pg-service-card:hover .pg-card-btn {
  color: #0A162E;
}

.pg-service-card:hover .pg-card-btn i {
  transform: translateX(4px);
  color: #5B9C2F;
}

/* ==========================================================================
   REGIONS OF OPERATION SECTION (ENTERPRISE TABBED SYSTEM)
   ========================================================================== */
.regions-section {
  padding: 5.5rem 0;
  background-color: #FFFFFF;
  position: relative;
}

.regions-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .regions-layout {
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
  }
}

.region-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-tab-item {
  list-style: none;
}

.region-tab-btn {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-left: 4px solid transparent;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(10, 16, 30, 0.02);
}

.region-tab-btn:hover {
  background: #FFFFFF;
  border-color: rgba(91, 156, 47, 0.3);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(10, 16, 30, 0.05);
}

.region-tab-btn.active {
  background: #0A162E;
  color: #FFFFFF;
  border-color: #0A162E;
  border-left-color: #D4AF37;
  box-shadow: 0 10px 25px rgba(10, 22, 46, 0.15);
  transform: translateX(6px);
}

.tab-btn-icon {
  width: 42px;
  height: 42px;
  background: rgba(10, 22, 46, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B9C2F;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.region-tab-btn.active .tab-btn-icon {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
}

.tab-btn-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tab-btn-text .tab-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0A162E;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.tab-btn-text .tab-sub {
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.region-tab-btn.active .tab-btn-text .tab-title {
  color: #FFFFFF;
}

.region-tab-btn.active .tab-btn-text .tab-sub {
  color: #CBD5E1;
}

.region-tab-btn .region-icon {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.region-tab-btn.active .region-icon {
  color: #D4AF37;
  transform: translateX(3px);
}

.region-display-container {
  position: relative;
  width: 100%;
}

.region-tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.region-tab-panel.active {
  display: block;
  opacity: 1;
}

.region-display-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 16, 30, 0.06);
}

.region-card-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .region-card-img-wrap {
    height: 300px;
  }
}

.region-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-card-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(10, 22, 46, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
}

.region-card-body {
  padding: 1.35rem 1.5rem 1.25rem;
}

.region-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.region-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.region-features-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.region-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

/* ==========================================================================
   SMART EXECUTIVE RFP COMMAND CONSOLE SECTION (CTA FORM)
   ========================================================================== */
.smart-rfp-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0A162E 0%, #060C18 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.smart-rfp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(91, 156, 47, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.smart-rfp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .smart-rfp-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
  }
}

.smart-rfp-info {
  display: flex;
  flex-direction: column;
}

.smart-rfp-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.smart-rfp-deck {
  color: #CBD5E1;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.smart-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .smart-contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) and (max-width: 1240px) {
  .smart-contact-cards {
    grid-template-columns: 1fr;
  }
}

.smart-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 0;
}

.smart-contact-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(91, 156, 47, 0.4);
  transform: translateY(-2px);
}

.smart-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(91, 156, 47, 0.18);
  border: 1px solid rgba(91, 156, 47, 0.35);
  color: #8CE157;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.smart-card-icon.gold {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.35);
  color: #D4AF37;
}

.smart-card-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.smart-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smart-card-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smart-sla-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 16, 30, 0.2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 4px solid #D4AF37;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: #F8FAFC;
  font-weight: 600;
}

.smart-form-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  color: #0A162E;
}

.smart-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #5B9C2F 0%, #D4AF37 100%);
}

.smart-form-header {
  margin-bottom: 1.75rem;
}

.smart-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.35rem;
}

.smart-form-sub {
  font-size: 0.88rem;
  color: #64748B;
}

.smart-field-group {
  position: relative;
  margin-bottom: 1.15rem;
}

.smart-field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.4rem;
}

.smart-input-wrap {
  position: relative;
}

.smart-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.smart-input-wrap textarea + .smart-input-icon {
  top: 18px;
  transform: none;
}

.smart-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 42px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0A162E;
  transition: all 0.3s ease;
}

.smart-input:focus {
  background: #FFFFFF;
  border-color: #5B9C2F;
  box-shadow: 0 0 0 4px rgba(91, 156, 47, 0.12);
  outline: none;
}

.smart-input-wrap:focus-within .smart-input-icon {
  color: #5B9C2F;
}

.smart-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 576px) {
  .smart-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.smart-submit-btn {
  width: 100%;
  padding: 0.95rem 1.75rem;
  background: linear-gradient(135deg, #5B9C2F 0%, #478223 100%);
  color: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 10px 25px rgba(91, 156, 47, 0.35);
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.smart-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(91, 156, 47, 0.45);
}

.smart-submit-btn i {
  transition: transform 0.3s ease;
}

.smart-submit-btn:hover i {
  transform: translateX(4px);
}

.smart-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748B;
  margin-top: 1rem;
}

/* ==========================================================================
   MATERIALS PROCUREMENT — SUPPLY CHAIN DIVISION EXCLUSIVE STYLES
   ========================================================================== */
.procurement-services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .procurement-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .procurement-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proc-service-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(10, 22, 46, 0.03);
  position: relative;
}

.proc-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 18px 40px rgba(10, 22, 46, 0.12);
}

.proc-card-media {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.proc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proc-service-card:hover .proc-card-img {
  transform: scale(1.08);
}

.proc-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 22, 46, 0.05) 0%, rgba(10, 22, 46, 0.45) 100%);
}

.proc-badge-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 22, 46, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.proc-lead-time-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(91, 156, 47, 0.9);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.proc-card-body {
  padding: 1.75rem 1.5rem 1.25rem 1.5rem;
  flex-grow: 1;
}

.proc-spec-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.proc-chip {
  font-size: 0.74rem;
  font-weight: 700;
  color: #475569;
  background: #F1F5F9;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}

.proc-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.proc-card-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.proc-card-footer {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid #F1F5F9;
}

.proc-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.1rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  color: #0A162E;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.proc-service-card:hover .proc-card-btn {
  background: #0A162E;
  border-color: #0A162E;
  color: #FFFFFF;
}

.proc-card-btn i {
  color: #5B9C2F;
  transition: transform 0.3s ease;
}

.proc-service-card:hover .proc-card-btn i {
  color: #D4AF37;
  transform: translateX(4px);
}

/* Executive Dual Grid Layout for Overview */
.executive-overview-grid,
.overview-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .executive-overview-grid,
  .overview-dual-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* Region Tab Panel Visibility Fix */
.region-tab-panel {
  display: none;
}
.region-tab-panel.active {
  display: block;
}

/* OEM Brand Grid Styling */
.oem-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .oem-brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .oem-brand-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.oem-brand-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(10, 22, 46, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.oem-brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 25px rgba(10, 22, 46, 0.08);
}

.oem-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(91, 156, 47, 0.08);
  border: 1px solid rgba(91, 156, 47, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5B9C2F;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  transition: all 0.3s ease;
}

.oem-brand-card:hover .oem-icon-box {
  background: #5B9C2F;
  color: #FFFFFF;
}

.oem-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.oem-brand-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748B;
}

/* ==========================================================================
   DIVISION HERO BANNER & BREADCRUMB STYLES
   ========================================================================== */
.division-hero {
  position: relative;
  padding: 8rem 0 5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF !important;
}

.division-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.division-hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  color: #FFFFFF !important;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  color: #D4AF37 !important;
  background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.division-hero-subtext {
  font-size: 1.1rem;
  color: #CBD5E1 !important;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 2rem auto;
}

/* Breadcrumbs Styling */
.division-breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94A3B8 !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #64748B;
  font-weight: 400;
}

.breadcrumb-item a {
  color: #CBD5E1 !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb-item a:hover {
  color: #5B9C2F !important;
}

.breadcrumb-item.active {
  color: #FFFFFF !important;
  font-weight: 700;
}

/* Hero Key Metrics Grid */
.division-hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .division-hero-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-metric-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-metric-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.hero-metric-val {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #FFFFFF !important;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.hero-metric-lbl {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94A3B8 !important;
  line-height: 1.3;
}

/* ==========================================================================
   STRATEGIC WAREHOUSE & REGIONS SECTION STYLES
   ========================================================================== */
.regions-section {
  padding: 6rem 0;
  background-color: #F8FAFC;
}

.section-subtitle-green-lines {
  display: block;
  color: #5B9C2F;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   A) 4-COLUMN GRID MATRIX TABS (MATERIALS PROCUREMENT PAGE)
   -------------------------------------------------------------------------- */
.region-tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.region-tabs-wrapper .region-tabs-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem auto;
}

@media (min-width: 640px) {
  .region-tabs-wrapper .region-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .region-tabs-wrapper .region-tabs-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

.region-tabs-wrapper .region-tab-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  color: #1E293B;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(10, 22, 46, 0.03);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.region-tabs-wrapper .region-tab-btn .tab-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F1F5F9;
  color: #0A162E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.region-tabs-wrapper .region-tab-btn i {
  font-size: 1.2rem;
}

.region-tabs-wrapper .region-tab-btn:hover {
  border-color: #5B9C2F;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(10, 22, 46, 0.08);
}

.region-tabs-wrapper .region-tab-btn:hover .tab-icon-box {
  background: #E2E8F0;
  color: #5B9C2F;
}

.region-tabs-wrapper .region-tab-btn.active {
  background: #0A162E;
  border-color: #0A162E;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(10, 22, 46, 0.25);
}

.region-tabs-wrapper .region-tab-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37 0%, #5B9C2F 100%);
}

.region-tabs-wrapper .region-tab-btn.active .tab-icon-box {
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
}

/* --------------------------------------------------------------------------
   B) 2-COLUMN SIDEBAR TABBED LAYOUT (POWER GENERATION & DRILLING PAGES)
   -------------------------------------------------------------------------- */
.regions-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .regions-layout {
    grid-template-columns: 360px 1fr;
    gap: 2.5rem;
  }
}

.region-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.region-tab-item {
  width: 100%;
}

.regions-layout .region-tab-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  color: #1E293B;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 22, 46, 0.03);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.regions-layout .region-tab-btn .tab-btn-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: #F1F5F9;
  color: #5B9C2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.regions-layout .region-tab-btn .tab-btn-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.regions-layout .region-tab-btn .tab-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0A162E;
  line-height: 1.3;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.regions-layout .region-tab-btn .tab-sub {
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.regions-layout .region-tab-btn .region-icon {
  font-size: 0.85rem;
  color: #94A3B8;
  transition: all 0.3s ease;
}

.regions-layout .region-tab-btn:hover {
  border-color: #5B9C2F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 22, 46, 0.06);
}

.regions-layout .region-tab-btn:hover .tab-btn-icon {
  background: #E2E8F0;
  color: #5B9C2F;
}

.regions-layout .region-tab-btn:hover .region-icon {
  color: #5B9C2F;
  transform: translateX(3px);
}

.regions-layout .region-tab-btn.active {
  background: #0A162E;
  border-color: #0A162E;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(10, 22, 46, 0.2);
}

.regions-layout .region-tab-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #D4AF37 0%, #5B9C2F 100%);
}

.regions-layout .region-tab-btn.active .tab-btn-icon {
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
}

.regions-layout .region-tab-btn.active .tab-title {
  color: #FFFFFF;
}

.regions-layout .region-tab-btn.active .tab-sub {
  color: #CBD5E1;
}

.regions-layout .region-tab-btn.active .region-icon {
  color: #D4AF37;
  transform: translateX(3px);
}



.region-card-body {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.75rem;
  box-shadow: 0 10px 30px rgba(10, 22, 46, 0.04);
}

.region-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0A162E;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.region-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.region-features-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B;
  background: #F0FDF4;
  border: 1px solid rgba(91, 156, 47, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
}

.region-feature-chip i {
  color: #5B9C2F;
}

.double-underline-green {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0.65rem auto 1.5rem auto;
}

.double-underline-green span {
  display: block;
  width: 44px;
  height: 3px;
  background-color: #5B9C2F;
  border-radius: 2px;
}



/* ==========================================================================
   TRUST PILLARS GRID STYLES (MATERIALS PROCUREMENT SECTION 6)
   ========================================================================== */
.trust-section-dark {
  padding: 6rem 0;
  background: linear-gradient(180deg, #091326 0%, #0D1A33 100%);
  color: #FFFFFF;
}

.trust-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.trust-subtitle {
  display: block;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.trust-section-header .section-title {
  color: #FFFFFF !important;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.title-underline-green {
  display: block;
  width: 48px;
  height: 4px;
  background-color: #5B9C2F;
  border-radius: 2px;
  margin: 0.85rem auto 1.5rem auto;
}

.trust-section-header .section-description {
  color: #CBD5E1 !important;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 680px;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-pillar-card {
  background: #111E36;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  color: #FFFFFF;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.trust-pillar-card:hover {
  transform: translateY(-5px);
  background: #152544;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.pillar-tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.35rem;
}

.pillar-tag.tag-gold {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
}

.pillar-tag.tag-green {
  background: rgba(91, 156, 47, 0.15);
  border: 1px solid rgba(91, 156, 47, 0.3);
  color: #8CE157;
}

.trust-pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.trust-pillar-card p {
  font-size: 0.92rem;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
}


/* ==========================================================================
   BUTTON ALL DIVISIONS STYLES
   ========================================================================== */
.btn-all-divisions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #0A162E;
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 22, 46, 0.15);
}

/* ==========================================================================
   CONSTRUCTION DIVISION (DIVISION 05) UNIQUE TOP SECTIONS DESIGN
   ========================================================================== */

/* --- SECTION 1: HERO BANNER (CONSTRUCTION MASTER HERO) --- */
.construction-hero-master {
  position: relative;
  padding: 8rem 0 6rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(10, 22, 46, 0.95) 0%, rgba(6, 11, 20, 0.98) 100%),
              url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-bottom: 3px solid #D4AF37;
}

.construction-hero-master::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(6, 11, 20, 0.88) 0%, rgba(10, 22, 46, 0.75) 50%, rgba(6, 11, 20, 0.92) 100%);
  pointer-events: none;
}

.construction-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .construction-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.construction-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.construction-hero-left .luxury-breadcrumb {
  margin-bottom: 1.25rem;
}

.construction-hero-left .royal-badge-pill {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F3E5AB;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.construction-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.18;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .construction-hero-title {
    font-size: 3.2rem;
  }
}

.construction-hero-title .title-accent {
  color: #D4AF37;
  background: linear-gradient(135deg, #FFF 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.construction-hero-deck {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 2rem;
  max-width: 640px;
}

.construction-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Blueprint Command Card on Hero Right */
.construction-hero-blueprint-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.08);
  position: relative;
}

.construction-hero-blueprint-card::before {
  content: 'TECHNICAL SPECIFICATIONS';
  position: absolute;
  top: -12px;
  right: 20px;
  background: #D4AF37;
  color: #060B14;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
}

.blueprint-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blueprint-card-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.blueprint-card-header h4 i {
  color: #D4AF37;
}

.blueprint-status-tag {
  background: rgba(91, 156, 47, 0.2);
  border: 1px solid #5B9C2F;
  color: #8CE157;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blueprint-status-tag .pulse-dot {
  width: 6px;
  height: 6px;
  background: #8CE157;
  border-radius: 50%;
  box-shadow: 0 0 8px #8CE157;
}

.blueprint-specs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blueprint-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.blueprint-spec-item .label {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blueprint-spec-item .label i {
  color: #D4AF37;
  width: 16px;
}

.blueprint-spec-item .value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* --- SECTION 2: FLOATING STATS BAR (CONSTRUCTION STATS UNIQUE BAR) --- */
.construction-stats-unique-bar {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  margin-bottom: 4rem;
}

.construction-stats-wrapper {
  background: #0B132B;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .construction-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .construction-stats-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #D4AF37;
  border-radius: 10px;
  padding: 1.25rem 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.c-stat-box:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

.c-stat-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.c-stat-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.c-stat-lbl {
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 600;
}

/* --- SECTION 3: EXECUTIVE OVERVIEW (CONSTRUCTION OVERVIEW CUSTOM GRID) --- */
.construction-overview-custom-section {
  padding: 3rem 0 5.5rem 0;
  background-color: #FFFFFF;
}

.construction-overview-custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .construction-overview-custom-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.construction-badge-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #D4AF37;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.construction-overview-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.construction-overview-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

/* 3 Focus Feature Cards */
.construction-focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .construction-focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.construction-focus-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.25rem 1rem;
  transition: all 0.3s ease;
}

.construction-focus-card:hover {
  border-color: #D4AF37;
  background: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.construction-focus-icon {
  width: 42px;
  height: 42px;
  background: #0F172A;
  color: #D4AF37;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.construction-focus-card h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.construction-focus-card p {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Composite Asymmetric Gallery Showcase (Right Side of Overview) */
.construction-multi-photo-card {
  position: relative;
  background: #0F172A;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.construction-main-img-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.construction-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.construction-photo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.construction-photo-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #5B9C2F;
  border-radius: 50%;
  box-shadow: 0 0 10px #5B9C2F;
}

.construction-specs-overlay-bar {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 500px) {
  .construction-specs-overlay-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-overlay-stat {
  text-align: center;
}

.c-overlay-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: #D4AF37;
}

.c-overlay-stat span {
  font-size: 0.72rem;
  color: #94A3B8;
  text-transform: uppercase;
  font-weight: 700;
}

/* ==========================================================================
   SECTION 4: HEAVY INDUSTRIAL CONSTRUCTION TELEMETRY DASHBOARD
   ========================================================================== */
.construction-telemetry-dashboard {
  background: #0B132B;
  padding: 3.5rem 0;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.construction-telemetry-dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.construction-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .construction-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .construction-dashboard-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-dash-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.35s ease;
}

.c-dash-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.c-dash-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 1.35rem;
}

.c-dash-icon.green {
  background: rgba(91, 156, 47, 0.15);
  border-color: rgba(91, 156, 47, 0.4);
  color: #8CE157;
}

.c-dash-body {
  display: flex;
  flex-direction: column;
}

.c-dash-body strong {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.c-dash-body span {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 0.25rem;
}


/* ==========================================================================
   SECTION 5: CORE CONSTRUCTION & EPC CAPABILITIES (ASYMMETRIC MASTER CARDS)
   ========================================================================== */
.construction-master-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .construction-master-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .construction-master-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-master-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  border-left: 5px solid #D4AF37;
  padding: 2.25rem 1.85rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  position: relative;
}

.c-master-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: #CBD5E1;
  border-left-color: #0F172A;
}

.c-master-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.c-master-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: #D4AF37;
  opacity: 0.85;
}

.c-master-tag {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #B45309;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.c-master-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.c-master-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #0F172A;
  color: #D4AF37;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.c-master-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.35;
  margin: 0;
}

.c-master-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 1.25rem;
}

.c-master-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.c-master-checklist li {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.c-master-checklist li i {
  color: #5B9C2F;
  font-size: 0.95rem;
}

.c-master-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  margin-top: auto;
}

.c-master-btn:hover {
  background: #0F172A;
  color: #FFFFFF !important;
  border-color: #0F172A;
}

.c-master-btn i {
  transition: transform 0.3s ease;
}

.c-master-btn:hover i {
  transform: translateX(4px);
  color: #D4AF37;
}

/* ==========================================================================
   SECTION 9: REGIONAL HUBS TABS UNIQUE HIGH-TECH DESIGN
   ========================================================================== */
.c-tabs-control-bar {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  background: #0B132B;
  padding: 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(11, 19, 43, 0.15);
}

@media (min-width: 640px) {
  .c-tabs-control-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .c-tabs-control-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-tab-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: left;
}

.c-tab-pill:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.c-tab-pill.active {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 2px solid #D4AF37 !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.c-tab-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 1.15rem;
}

.c-tab-pill.active .c-tab-icon {
  background: #D4AF37;
  color: #060B14;
}

.c-tab-label-group {
  display: flex;
  flex-direction: column;
}

.c-tab-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #D4AF37;
  text-transform: uppercase;
}

.c-tab-label-group strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-top: 0.2rem;
}

/* Tab Panel Active Frame */
.c-hub-master-panel {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
}

.c-hub-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .c-hub-panel-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.c-hub-location-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.c-location-pin {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #FEF3C7;
  color: #B45309;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.c-hub-location-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0F172A;
  margin: 0 0 0.25rem 0;
  line-height: 1.25;
}

.c-location-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748B;
  margin: 0;
}

.c-hub-summary {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.75rem;
}

.c-hub-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .c-hub-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-hub-spec-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.spec-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #0F172A;
  color: #D4AF37;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.c-hub-spec-box strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F172A;
}

.c-hub-spec-box span {
  font-size: 0.75rem;
  color: #64748B;
}

/* Right Desk Card */
.c-hub-desk-card {
  background: #0F172A;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  padding: 2rem;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.desk-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.desk-card-header h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.desk-live-pill {
  background: rgba(91, 156, 47, 0.2);
  border: 1px solid #5B9C2F;
  color: #8CE157;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.desk-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 1.25rem;
}

.desk-noc-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.desk-noc-tags span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-desk-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #D4AF37;
  color: #060B14 !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.c-desk-action-btn:hover {
  background: #FFFFFF;
  color: #0F172A !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   PULSE DOT ANIMATION STYLES (UNIVERSAL GREEN & GOLD GLOW DOTS)
   ========================================================================== */
.pulse-dot,
.live-dot,
.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: #5B9C2F;
  border-radius: 50%;
  box-shadow: 0 0 10px #5B9C2F, 0 0 18px rgba(91, 156, 47, 0.6);
  animation: pulseDotGlow 1.8s ease-in-out infinite;
  vertical-align: middle;
}

.pulse-dot.gold,
.badge-dot.gold {
  background-color: #D4AF37;
  box-shadow: 0 0 10px #D4AF37, 0 0 18px rgba(212, 175, 55, 0.6);
  animation: pulseGoldGlow 1.8s ease-in-out infinite;
}

@keyframes pulseDotGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(91, 156, 47, 0.7);
  }
  70% {
    transform: scale(1.25);
    box-shadow: 0 0 0 8px rgba(91, 156, 47, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(91, 156, 47, 0);
  }
}

@keyframes pulseGoldGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    transform: scale(1.25);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* ==========================================================================
   SECTION 13: LIGHT EXECUTIVE CTA STRIP (CUSTOM FLOATING LUXURY CARD)
   ========================================================================== */
.executive-cta-light {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.cta-light-card {
  max-width: 940px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  border-top: 4px solid #D4AF37;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-light-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-light-card .royal-badge-pill {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #B45309;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.cta-light-card h2 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .cta-light-card h2 {
    font-size: 1.85rem;
  }
}

.cta-light-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 2.25rem auto;
}

.cta-light-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #FFFFFF;
  border: 2px solid #0F172A;
  color: #0F172A !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn-outline-navy:hover {
  background: #0F172A;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.btn-outline-navy i {
  color: #5B9C2F;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.btn-outline-navy:hover i {
  color: #D4AF37;
}

.cta-light-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid #E2E8F0;
  padding-top: 1.75rem;
}

.cta-light-chip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.cta-light-chip:hover {
  background: #FFFFFF;
  border-color: #D4AF37;
  transform: translateY(-2px);
}

/* ==========================================================================
   MINING TECHNOLOGIES COMMERCIAL TENDER DESK (SECTION 10) STYLES
   ========================================================================== */
.commercial-rfp-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #0B132B 0%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}

.commercial-rfp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5B9C2F 0%, #D4AF37 50%, #5B9C2F 100%);
}

.rfp-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .rfp-wrapper {
    grid-template-columns: 1fr;
  }
}

.rfp-form-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.rfp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.rfp-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  letter-spacing: -0.5px;
}

.rfp-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rfp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .rfp-form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .form-group.full-width {
    grid-column: span 1;
  }
}

.form-group label {
  color: #E2E8F0;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 1.1rem;
  color: #D4AF37;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
}

.input-with-icon textarea + i,
.input-with-icon:has(textarea) i {
  top: 1.1rem;
  transform: none;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.92rem;
  padding: 0.85rem 1rem 0.85rem 2.85rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-with-icon select option {
  background: #0F172A;
  color: #FFFFFF;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-submit-rfp {
  grid-column: span 2;
  width: 100%;
  background: linear-gradient(135deg, #5B9C2F 0%, #447A21 100%);
  color: #FFFFFF;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(91, 156, 47, 0.3);
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .btn-submit-rfp {
    grid-column: span 1;
  }
}

.btn-submit-rfp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #447A21 0%, #35611A 100%);
  box-shadow: 0 10px 25px rgba(91, 156, 47, 0.45);
}

.rfp-info-col {
  display: flex;
  flex-direction: column;
}

.rfp-sla-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.rfp-sla-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.rfp-sla-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sla-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sla-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.sla-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(4px);
}

.sla-info-item i {
  font-size: 1.25rem;
  color: #D4AF37;
  width: 24px;
  text-align: center;
}

.sla-info-item small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.sla-info-item strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
}


/* ==========================================================================
   MINING TECHNOLOGIES UNIQUE FAQ ACCORDION (SECTION 11) STYLES
   ========================================================================== */
.unique-faq-section {
  padding: 5.5rem 0;
  background-color: #F8FAFC !important;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.unique-faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.unique-faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.unique-faq-item:hover {
  border-color: #CBD5E1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.unique-faq-item.active {
  border-color: #5B9C2F;
  box-shadow: 0 8px 24px rgba(91, 156, 47, 0.12);
}

.unique-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  gap: 1rem;
  font-family: inherit;
}

.unique-faq-trigger:hover {
  color: #5B9C2F;
}

.unique-faq-item.active .unique-faq-trigger {
  color: #5B9C2F;
  font-weight: 800;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.unique-faq-item.active .faq-toggle-icon {
  background: #5B9C2F;
  color: #FFFFFF;
}

.unique-faq-body {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #F1F5F9;
  margin-top: 0.25rem;
  padding-top: 1rem;
}

/* ==========================================================================
   HUMAN RESOURCES & TRAINING DIVISION SPECIFIC STYLES
   ========================================================================== */

/* Section 2: Dark Executive Overview & Stats Matrix */
.division-section-dark {
  background: #0A101E !important;
  color: #FFFFFF !important;
}

.construction-exec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .construction-exec-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.c-exec-content {
  display: flex;
  flex-direction: column;
}

.c-exec-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF !important;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.c-exec-lead {
  font-size: 1.1rem;
  color: #CBD5E1 !important;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.c-exec-body {
  font-size: 0.98rem;
  color: #94A3B8 !important;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.c-exec-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.c-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #E2E8F0 !important;
}

.c-highlight-item i {
  color: #5B9C2F !important;
  font-size: 1.1rem;
}

.c-exec-stats-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.c-stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c-stats-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin: 0;
}

.c-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: #D4A017 !important;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.c-stats-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.c-stat-box {
  background: #0F172A;
  border: 1px solid #1E293B;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.c-stat-box:hover {
  border-color: #D4A017;
  transform: translateY(-2px);
}

.c-stat-box .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #D4A017 !important;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.c-stat-box .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94A3B8 !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.c-stats-footer-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(91, 156, 47, 0.12);
  border: 1px solid rgba(91, 156, 47, 0.3);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.c-dash-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #5B9C2F;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.c-dash-body {
  display: flex;
  flex-direction: column;
}

.c-dash-body strong {
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.c-dash-body span {
  color: #94A3B8 !important;
  font-size: 0.78rem;
  font-weight: 500;
}


/* Section 3: Light Regional Workforce Hubs & Tab Control */
.division-section-light {
  background: #FFFFFF !important;
  padding: 5.5rem 0;
}

.section-header-center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5B9C2F;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0A101E;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.c-tabs-control-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  background: #F8FAFC;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}

.c-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.c-tab-btn:hover {
  color: #0A101E;
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.c-tab-btn.active {
  background: #0A101E !important;
  color: #FFFFFF !important;
  border-color: #0A101E !important;
  box-shadow: 0 4px 12px rgba(10, 16, 30, 0.15);
}

.c-tab-btn.active i {
  color: #D4A017 !important;
}

.region-tab-panel {
  display: none;
}

.region-tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.c-hub-master-panel {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.c-hub-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .c-hub-panel-grid {
    grid-template-columns: 1.4fr 0.9fr;
  }
}

.c-hub-location-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.c-location-pin {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(10, 16, 30, 0.06);
  border: 1px solid rgba(10, 16, 30, 0.1);
  color: #0A101E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.c-hub-location-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0A101E;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.c-location-sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: #5B9C2F;
  margin: 0;
}

.c-hub-summary {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.c-hub-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .c-hub-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-hub-spec-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.25s ease;
}

.c-hub-spec-box:hover {
  border-color: #5B9C2F;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.c-hub-spec-box .spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(91, 156, 47, 0.1);
  color: #5B9C2F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.c-hub-spec-box strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0A101E;
  margin-bottom: 0.15rem;
}

.c-hub-spec-box span {
  display: block;
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 500;
}

.c-hub-desk-card {
  background: #0A101E;
  border: 1px solid #1E293B;
  border-radius: 14px;
  padding: 2rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 12px 28px rgba(10, 16, 30, 0.25);
}

.desk-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.desk-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
}

.desk-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(91, 156, 47, 0.15);
  border: 1px solid rgba(91, 156, 47, 0.4);
  color: #5B9C2F !important;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.desk-card-text {
  font-size: 0.92rem;
  color: #CBD5E1 !important;
  line-height: 1.6;
  margin: 0;
}

.desk-noc-tags {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.desk-noc-tags span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-desk-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #5B9C2F;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 14px rgba(91, 156, 47, 0.3);
}

.c-desk-action-btn:hover {
  background: #4B8226;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(91, 156, 47, 0.45);
}

/* ==========================================================================
   SECTION 5: 5-STAGE RAPID WORKFORCE MOBILIZATION FRAMEWORK
   ========================================================================== */
.hr-workflow-section {
  background: #070C16 !important;
  padding: 5.5rem 0 !important;
  position: relative;
  overflow: hidden;
}

.hr-workflow-section .section-title {
  color: #FFFFFF !important;
  font-size: 2.35rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  margin-bottom: 1rem !important;
  letter-spacing: -0.02em !important;
}

.hr-workflow-section .section-description {
  color: #94A3B8 !important;
  font-size: 1.05rem !important;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65 !important;
}

.construction-workflow-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1.25rem !important;
  margin-top: 3.5rem !important;
}

@media (max-width: 1200px) {
  .construction-workflow-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
  }
}

@media (max-width: 768px) {
  .construction-workflow-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

.c-workflow-step {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(11, 19, 43, 0.95) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-top: 3px solid #D4AF37 !important;
  border-radius: 16px !important;
  padding: 2.25rem 1.35rem !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.35s ease !important;
  position: relative !important;
}

.c-workflow-step:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
  border-top-color: #5B9C2F !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

.c-workflow-step .step-badge {
  width: 46px !important;
  height: 46px !important;
  border-radius: 10px !important;
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: #D4AF37 !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.25rem !important;
  font-family: 'Inter', sans-serif !important;
  transition: all 0.3s ease !important;
}

.c-workflow-step:hover .step-badge {
  background: #D4AF37 !important;
  color: #060B14 !important;
}

.c-workflow-step .step-title {
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.35 !important;
  margin-bottom: 0.75rem !important;
}

.c-workflow-step .step-desc {
  font-size: 0.86rem !important;
  color: #94A3B8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ==========================================================================
   SECTION 6: FLAGSHIP WORKFORCE SOURCING & TRAINING PROJECTS
   ========================================================================== */
.hr-projects-section {
  padding: 5.5rem 0 !important;
  background: #FFFFFF !important;
}

.construction-showcase-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  margin-top: 3.5rem !important;
}

@media (max-width: 991px) {
  .construction-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 640px) {
  .construction-showcase-grid {
    grid-template-columns: 1fr !important;
  }
}

.c-showcase-card {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  border: 1px solid #E2E8F0 !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.35s ease !important;
}

.c-showcase-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12) !important;
  border-color: #D4AF37 !important;
}

.c-showcase-img-wrap {
  position: relative !important;
  height: 230px !important;
  overflow: hidden !important;
  background: #0B132B !important;
}

.c-showcase-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.c-showcase-card:hover .c-showcase-img {
  transform: scale(1.05) !important;
}

.c-showcase-tag {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  background: rgba(11, 19, 43, 0.88) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  backdrop-filter: blur(6px) !important;
  color: #D4AF37 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 0.35rem 0.8rem !important;
  border-radius: 50px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  z-index: 2 !important;
}

.c-showcase-content {
  padding: 1.75rem 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.c-showcase-title {
  font-size: 1.18rem !important;
  font-weight: 800 !important;
  color: #0A101E !important;
  line-height: 1.35 !important;
  margin-bottom: 0.85rem !important;
}

.c-showcase-text {
  font-size: 0.88rem !important;
  color: #64748B !important;
  line-height: 1.6 !important;
  margin-bottom: 1.25rem !important;
  flex-grow: 1 !important;
}

.c-showcase-specs {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 10px !important;
  padding: 0.85rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
  margin-top: auto !important;
}

.c-showcase-specs div {
  font-size: 0.82rem !important;
  color: #475569 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.c-showcase-specs div strong {
  color: #0A101E !important;
  font-weight: 700 !important;
}

.division-section-dark .section-title {
  color: #FFFFFF !important;
}

.division-section-dark .section-description {
  color: #94A3B8 !important;
}

























