/* ==========================================================================
   PRIME CONNECT SOLUTIONS (PCSGroup) - PLATINUM LUXURY & SAPPHIRE DESIGN SYSTEM
   Pixel-Perfect Auto-Responsiveness for Mobile, iPad/Tablet & 4K Displays
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cinzel:wght@700;800&display=swap');

:root {
  /* High-End Platinum & Sapphire Palette with Multi-Stop Gradients */
  --bg-body: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-surface: #F1F5F9;
  --bg-tint: #EFF6FF;

  --navy-primary: #0B192C;
  --navy-dark: #050C16;
  --navy-light: #1E3E62;
  --navy-gradient: linear-gradient(135deg, #0B192C 0%, #162E4D 50%, #1E3E62 100%);
  --navy-gradient-hover: linear-gradient(135deg, #122846 0%, #1E4670 100%);
  
  --sapphire-blue: #0A58CA;
  --sapphire-light: #3880F5;
  --sapphire-gradient: linear-gradient(135deg, #0A58CA 0%, #2575FC 50%, #003B95 100%);
  --sapphire-gradient-hover: linear-gradient(135deg, #186BE8 0%, #3B82F6 100%);

  --gold-accent: #D97706;
  --gold-light: #F59E0B;
  --gold-tint: #FEF3C7;
  --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 60%, #B45309 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%);
  --gold-pill-gradient: linear-gradient(135deg, #FFFDF5 0%, #FEF3C7 100%);
  --gold-border: rgba(217, 119, 6, 0.3);

  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --wa-gradient: linear-gradient(135deg, #25D366 0%, #1DA851 50%, #128C7E 100%);
  --wa-gradient-hover: linear-gradient(135deg, #2EE872 0%, #20BA59 100%);

  --card-bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
  --text-gold-gradient: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #B45309 100%);
  --text-blue-gradient: linear-gradient(135deg, #0A58CA 0%, #2575FC 100%);
  --text-navy-gradient: linear-gradient(135deg, #0B192C 0%, #0A58CA 100%);

  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --border-light: #E2E8F0;
  --border-card: #EAEFF5;

  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 10px rgba(11, 25, 44, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 25, 44, 0.07);
  --shadow-lg: 0 16px 40px rgba(11, 25, 44, 0.1);
  --shadow-gold: 0 8px 25px rgba(217, 119, 6, 0.25);
  --shadow-blue: 0 8px 25px rgba(10, 88, 202, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

/* ==========================================================================
   RESET & FLUID AUTO-RESPONSIVE SETUP
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--bg-body);
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Radial Glows */
body::before {
  content: '';
  position: fixed;
  top: -10%;
  right: -5%;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(circle, rgba(10, 88, 202, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: -5%;
  width: min(500px, 70vw);
  height: min(500px, 70vw);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 24px);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* ==========================================================================
   TOP NOTICE BAR
   ========================================================================== */
.topbar {
  background: var(--navy-primary);
  color: #E2E8F0;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold-light);
  position: relative;
  z-index: 1001;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.badge-gold-pill {
  background: var(--gold-pill-gradient);
  color: var(--gold-accent);
  border: 1px solid var(--gold-border);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.08);
}

/* ==========================================================================
   STICKY NAVBAR
   ========================================================================== */
.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.navbar-sticky.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Brand Logo */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-crest {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy-primary);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
}

.brand-name-text {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 900;
  color: var(--navy-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--sapphire-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-accent);
  border-radius: 2px;
}

/* Navigation Dropdown Menu (Executive Suite) */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  width: 410px;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(11, 25, 44, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 1050;
  overflow: hidden;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B 0%, #0A58CA 50%, #25D366 100%);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}

.dropdown-header-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 10px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.dropdown-header-badge {
  background: rgba(10, 88, 202, 0.1);
  color: var(--sapphire-blue);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
}

.dropdown-items-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-item-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-item-link:hover {
  background: #F8FAFD;
  transform: translateX(4px);
}

.dropdown-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.dropdown-icon-box.gradient-gold {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.dropdown-icon-box.gradient-sapphire {
  background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
  color: #1D4ED8;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.dropdown-icon-box.gradient-navy {
  background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
  color: #4338CA;
  border: 1px solid rgba(79, 70, 229, 0.3);
}

.dropdown-icon-box.gradient-cyan {
  background: linear-gradient(135deg, #CCFBF1 0%, #99F6E4 100%);
  color: #0F766E;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.dropdown-icon-box.gradient-amber {
  background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
  color: #C2410C;
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.dropdown-item-link:hover .dropdown-icon-box {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(11, 25, 44, 0.12);
}

.dropdown-item-text {
  flex: 1;
  min-width: 0;
}

.dropdown-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}

.dropdown-item-head strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.25;
}

.item-tag-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1px 6px;
  border-radius: 4px;
  background: #F1F5F9;
  color: var(--text-muted);
}

.dropdown-item-link:hover .item-tag-pill {
  background: rgba(10, 88, 202, 0.1);
  color: var(--sapphire-blue);
}

.dropdown-item-text span {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-arrow {
  color: var(--text-light);
  opacity: 0.4;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dropdown-item-link:hover .dropdown-arrow {
  opacity: 1;
  color: var(--sapphire-blue);
  transform: translateX(3px);
}

.dropdown-footer-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 10px 18px;
  text-align: center;
}

.dropdown-footer-strip a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sapphire-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.dropdown-footer-strip a:hover {
  gap: 9px;
  color: var(--navy-primary);
}

/* Header Buttons */
.nav-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-wa-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--wa-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-wa-header:hover {
  background: var(--wa-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--navy-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(11, 25, 44, 0.2);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-call-header:hover {
  background: var(--navy-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 25, 44, 0.3);
}

.mobile-nav-toggle {
  display: none;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--navy-primary);
  font-size: 1.4rem;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-light);
  z-index: 2000;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer-panel.open {
  right: 0;
}

.drawer-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer Accordion Submenu */
.drawer-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

.drawer-accordion-btn svg {
  transition: transform 0.25s ease;
}

.drawer-accordion-btn.active svg {
  transform: rotate(180deg);
}

.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 12px;
  margin-top: 10px;
  border-left: 2px solid var(--gold-border);
}

.drawer-submenu.open {
  display: flex;
}

.drawer-sublink {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  text-decoration: none;
}

/* Subpage Hero & Details Layout */
.subpage-hero {
  padding: clamp(40px, 5vw, 70px) 0 clamp(35px, 4.5vw, 60px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F6FB 100%);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb-trail a {
  color: var(--sapphire-blue);
  text-decoration: none;
}

.breadcrumb-separator {
  color: var(--text-light);
}

.subpage-2col-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.service-feature-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 36px 0;
}

.service-feature-item {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--sapphire-blue);
  box-shadow: var(--shadow-md);
}

.service-cta-banner {
  background: var(--navy-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 50px) clamp(20px, 4vw, 40px);
  text-align: center;
  box-shadow: 0 16px 40px rgba(11, 25, 44, 0.2);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   HERO SECTION (LUXURY PLATINUM DAYLIGHT)
   ========================================================================== */
.hero-stage {
  padding: clamp(35px, 5vw, 75px) 0 clamp(40px, 6vw, 80px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F6FB 100%);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.hero-2col-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: 100%;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  width: 100%;
}

.hero-pill-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-h1-title {
  font-family: var(--font-head);
  font-size: clamp(1.95rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.16;
  color: var(--navy-primary);
  letter-spacing: -0.02em;
  word-break: break-word;
}

.hero-h1-title span {
  background: var(--text-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-p-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 580px;
}

.hero-actions-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px rgba(11, 25, 44, 0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: var(--navy-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(11, 25, 44, 0.35);
}

.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-hero-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

/* Live Service Pillar Ticker Pill */
.badge-service-ticker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-primary);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.ticker-live-dot {
  color: var(--wa-green);
  font-size: 0.65rem;
  animation: softBlink 1.8s infinite ease-in-out;
}

.ticker-prefix {
  color: var(--text-muted);
  font-weight: 600;
}

.ticker-animated-text {
  color: var(--sapphire-blue);
  font-weight: 800;
  display: inline-block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ticker-animated-text.fade-out {
  opacity: 0;
  transform: translateY(-4px);
}

.ticker-animated-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Trust Strip */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-primary);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-card);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.trust-check {
  color: var(--wa-green);
  font-weight: 900;
  font-size: 0.82rem;
}

.hero-stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  margin-top: 6px;
  width: 100%;
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
}

.hero-stat-val {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  background: var(--text-navy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Hero Visual Showcase with 3D Tilt Wrapper */
.hero-visual-card-wrap {
  perspective: 1000px;
  width: 100%;
}

.hero-visual-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(14px, 2.5vw, 20px);
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.hero-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: clamp(240px, 32vw, 360px);
  position: relative;
}

/* Hero Crossfade Slideshow Styles */
.hero-slideshow-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-primary);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.8s ease-in-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide Caption Overlay Tag */
.hero-slide-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(11, 25, 44, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.caption-pulse-dot {
  color: var(--gold-light);
  font-size: 0.8rem;
  animation: softBlink 1.5s infinite ease-in-out;
}

/* Nav Arrows */
.hero-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--navy-primary);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  transition: all 0.25s ease;
  line-height: 1;
}

.hero-slideshow-container:hover .hero-slide-arrow {
  opacity: 1;
}

.hero-slide-arrow.prev { left: 10px; }
.hero-slide-arrow.next { right: 10px; }

.hero-slide-arrow:hover {
  background: var(--navy-primary);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

/* Slide Dots */
.hero-slide-dots {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
  background: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.slide-dot.active {
  width: 20px;
  background: var(--gold-light);
}

.hero-float-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-float-chip.chip-top {
  top: -12px;
  right: -10px;
}

.hero-float-chip.chip-bottom {
  bottom: -12px;
  left: -10px;
}

.chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--gold-tint);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-text strong {
  font-size: 0.84rem;
  color: var(--navy-primary);
  display: block;
}

.chip-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION (INTERACTIVE SUITE & CARDS)
   ========================================================================== */
.section-pad {
  padding: clamp(48px, 6vw, 85px) 0;
  position: relative;
}

.section-bg-white {
  background: #FFFFFF;
}

.section-head-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(24px, 4vw, 42px);
  padding: 0 10px;
}

.section-h2-main {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-primary);
  margin: 8px 0 10px;
}

.section-h2-main span {
  background: var(--text-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.section-p-sub {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  color: var(--text-muted);
}

/* Interactive Tabs Bar */
.service-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.service-tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.service-tab-btn:hover, .service-tab-btn.active {
  background: var(--navy-gradient);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(11, 25, 44, 0.2);
}

/* Active Service Interactive Showcase Panel */
.service-showcase-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(20px, 3.5vw, 36px);
  align-items: center;
  margin-bottom: 36px;
}

.showcase-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: clamp(220px, 28vw, 340px);
  position: relative;
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--navy-primary);
}

.showcase-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

.showcase-bullets-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.showcase-li {
  font-size: 0.86rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-li .star {
  color: var(--gold-accent);
  font-weight: bold;
}

/* 5 Services Cards Grid */
.services-5cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  width: 100%;
}

.service-card-box {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-lg);
}

.service-card-img-wrap {
  height: 170px;
  overflow: hidden;
  position: relative;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-box:hover .service-card-img-wrap img {
  transform: scale(1.06);
}

.service-card-pill-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 25, 44, 0.9);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.service-card-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.service-card-h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.service-card-p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border-light);
}

.btn-card-details {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--sapphire-blue);
  background: none;
  border: none;
  cursor: pointer;
}

.btn-card-inquire {
  background: var(--navy-primary);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.btn-card-inquire:hover {
  background: var(--gold-accent);
}

/* ==========================================================================
   HOW WE DELIVER (EXECUTIVE CONNECTED LUXURY ROADMAP)
   ========================================================================== */
.process-luxury-stage {
  background: radial-gradient(circle at 50% -20%, #16365C 0%, #0B192C 100%);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 44px);
  box-shadow: 0 20px 50px rgba(11, 25, 44, 0.35);
  position: relative;
  overflow: hidden;
}

.process-luxury-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.process-track-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.process-luxury-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.process-luxury-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  box-shadow: 0 16px 36px rgba(217, 119, 6, 0.3);
}

.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.process-step-badge {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.process-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
  flex-shrink: 0;
}

.process-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-card-p {
  font-size: 0.86rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 16px;
}

.process-pill-output {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.process-pill-output span {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   MULTI-SERVICE SOLUTION PACKAGES
   ========================================================================== */
.packages-4grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  width: 100%;
}

.package-card-box {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 2.5vw, 28px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card-box:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-lg);
}

.package-card-box.featured {
  border: 2px solid var(--gold-accent);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF8 100%);
}

.package-badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.package-top-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sapphire-blue);
  margin-bottom: 6px;
}

.package-name {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.package-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.package-included-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-primary);
  margin-bottom: 10px;
}

.package-bullets-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.package-bullets-ul li {
  font-size: 0.84rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.package-bullets-ul li span {
  color: var(--wa-green);
  font-weight: 900;
}

.btn-package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(11, 25, 44, 0.2);
}

.btn-package-cta:hover {
  background: var(--navy-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 25, 44, 0.3);
}

.btn-package-cta.gold {
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

.btn-package-cta.gold:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

/* ==========================================================================
   5 SERVICES DELIVERABLES MATRIX (CORPORATE COMPARISON TABLE)
   ========================================================================== */
.matrix-table-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--gold-accent);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px rgba(11, 25, 44, 0.08);
  overflow: hidden;
  position: relative;
}

.matrix-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  text-align: left;
}

/* Table Head */
.matrix-table thead {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 2px solid var(--border-light);
}

.matrix-table th {
  padding: 22px 18px;
  vertical-align: top;
}

.th-dimension {
  width: 22%;
  background: var(--navy-primary) !important;
  color: #FFFFFF !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}

.th-dim-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.th-dim-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.th-dim-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.th-dim-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.96rem;
  font-weight: 800;
  color: #FFFFFF !important;
  line-height: 1.25;
}

.th-dim-sub {
  display: block;
  font-size: 0.72rem;
  color: #F59E0B !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.th-pillar {
  width: 15.6%;
  border-right: 1px solid var(--border-card);
  transition: background-color 0.2s ease;
}

.th-pillar:last-child {
  border-right: none;
}

.th-pillar:hover {
  background-color: var(--bg-tint);
}

.th-pillar-head-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.th-pillar-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 2px;
}

.th-pillar-badge {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-accent);
  background: var(--gold-tint);
  border: 1px solid var(--gold-border);
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.th-pillar-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-surface);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.th-pillar:hover .th-pillar-icon-box {
  background: var(--gold-tint);
  color: var(--gold-accent);
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.th-pillar-name {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.25;
}

.th-pillar-tag {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Table Body */
.matrix-table tbody tr {
  border-bottom: 1px solid var(--border-card);
  transition: background-color 0.2s ease;
}

.matrix-table tbody tr:nth-child(even) {
  background-color: #FAFCFE;
}

.matrix-table tbody tr:hover {
  background-color: #EFF6FF !important;
}

.matrix-table td {
  padding: 16px 18px;
  font-size: 0.85rem;
  color: var(--text-body);
  vertical-align: middle;
  border-right: 1px solid var(--border-card);
}

.matrix-table td:last-child {
  border-right: none;
}

.td-dimension-title {
  background: #F8FAFC;
  border-right: 1px solid var(--border-light) !important;
}

.matrix-table tbody tr:hover .td-dimension-title {
  background: #EFF6FF;
}

.td-dimension-title strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 2px;
}

.td-dimension-title span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.td-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.td-check-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #15803D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* SLA Highlight Row */
.tr-sla-highlight {
  background: #FFFDF8 !important;
  border-top: 2px solid var(--gold-border);
  border-bottom: 2px solid var(--gold-border) !important;
}

.td-sla-box {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-border);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.35;
}

.sla-star {
  color: var(--gold-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Action Triggers Row */
.tr-action-row {
  background: #FFFFFF !important;
}

.btn-table-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--navy-primary);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(11, 25, 44, 0.12);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-table-inquire:hover {
  background: var(--gold-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

/* ==========================================================================
   SCOPE ESTIMATOR (INTERACTIVE STUDIO)
   ========================================================================== */
.estimator-board-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 3.5vw, 36px);
  width: 100%;
}

.estimator-step-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-2col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
  width: 100%;
}

.chk-item-wrap {
  position: relative;
  width: 100%;
}

.chk-item-wrap input {
  position: absolute;
  opacity: 0;
}

.chk-item-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all 0.2s ease;
  width: 100%;
}

.chk-item-wrap input:checked + .chk-item-label {
  background: var(--bg-tint);
  border-color: var(--sapphire-blue);
  color: var(--sapphire-blue);
}

.custom-box-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #CBD5E1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-item-wrap input:checked + .chk-item-label .custom-box-icon {
  background: var(--sapphire-blue);
  border-color: var(--sapphire-blue);
  color: #FFF;
}

.chk-item-wrap input:checked + .chk-item-label .custom-box-icon::after {
  content: '✓';
  font-size: 11px;
  font-weight: bold;
}

.timeline-radios-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.timeline-radios-row input {
  display: none;
}

.timeline-radio-tag {
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.timeline-radios-row input:checked + .timeline-radio-tag {
  background: var(--navy-primary);
  color: #FFFFFF;
  border-color: var(--navy-primary);
}

/* Blueprint Summary Panel */
.estimator-navy-summary {
  background: var(--navy-primary);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.blueprint-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.blueprint-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  max-height: 180px;
  overflow-y: auto;
}

.blueprint-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.blueprint-tag-pill {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ==========================================================================
   FAQ ACCORDION (5 SERVICES)
   ========================================================================== */
.faq-accordion-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.faq-item-card.active {
  border-color: var(--sapphire-blue);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q-text {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.4;
}

.faq-item-card.active .faq-q-text {
  color: var(--sapphire-blue);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.faq-item-card.active .faq-toggle-icon {
  background: var(--sapphire-blue);
  color: #FFFFFF;
}

.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item-card.active .faq-answer-pane {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer-pane p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border-card);
  padding-top: 14px;
}

/* ==========================================================================
   ABOUT US & FOUNDING STORY (EST. AUGUST 19)
   ========================================================================== */
.about-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: 100%;
}

.about-photo-card {
  position: relative;
  width: 100%;
}

.about-photo-card img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-badge-founded {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.founded-gold-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gold-accent);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 800;
}

.founded-gold-icon span {
  font-size: 0.6rem;
  text-transform: uppercase;
}

.founded-gold-icon strong {
  font-size: 1.15rem;
}

.about-stats-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.about-stat-tile {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   HEADQUARTERS & CONTACT HUB
   ========================================================================== */
.contact-2col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3.5vw, 36px);
  width: 100%;
}

.contact-card-white {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
}

.contact-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-tint);
  color: var(--sapphire-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-copy-address {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--navy-primary);
  cursor: pointer;
  align-self: center;
}

.btn-copy-address:hover {
  background: var(--gold-accent);
  color: #FFFFFF;
}

/* Contact Form */
.form-group-item {
  margin-bottom: 14px;
}

.form-label-text {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 5px;
}

.form-input-box {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
}

.form-input-box:focus {
  background: #FFFFFF;
  border-color: var(--sapphire-blue);
}

/* Map Frame */
.map-embed-holder {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  height: clamp(200px, 26vw, 260px);
  position: relative;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.map-embed-holder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-location-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-primary);
  max-width: calc(100% - 20px);
}

/* ==========================================================================
   MODAL & TOAST
   ========================================================================== */
.modal-overlay-wrap {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay-wrap.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(20px, 4vw, 32px);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg-surface);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
}

/* Toast */
.toast-anchor-dock {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast-message-pill {
  background: var(--navy-primary);
  color: #FFFFFF;
  border-left: 4px solid var(--gold-accent);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   UNIFIED LUXURY BOARD FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-primary);
  color: #94A3B8;
  padding: clamp(40px, 5vw, 55px) 0 32px;
  border-top: 3px solid var(--gold-accent);
  position: relative;
}

/* Centered Brand Header */
.footer-brand-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.footer-brand-tagline {
  font-size: clamp(0.86rem, 1.6vw, 0.94rem);
  line-height: 1.65;
  color: #94A3B8;
  max-width: 620px;
  margin: 0 auto;
}

/* Unified Luxury Board Deck */
.footer-unified-deck {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3.2vw, 34px);
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.35fr;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: 24px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-deck-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-deck-col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: clamp(16px, 2.5vw, 28px);
}

.footer-title-h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  line-height: 1.2;
  text-align: left;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding: 0;
  margin: 0;
}

.footer-nav-list a {
  font-size: 0.86rem;
  color: #94A3B8;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

/* Headquarters Column Details */
.footer-deck-hq {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-hq-address-txt {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 14px;
}

.footer-hq-actions-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-phone-btn {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.footer-phone-btn:hover {
  color: var(--gold-light);
}

.footer-wa-link {
  color: var(--wa-green);
  font-size: 0.84rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-wa-link:hover {
  opacity: 0.85;
}

/* Clean Centered Legal Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
   SLEEK FLOATING ACTIONS DOCK
   ========================================================================== */
.floating-dock-row {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-action-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  backdrop-filter: blur(4px);
}

.floating-action-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.floating-action-circle.wa {
  background: var(--wa-gradient);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-action-circle.call {
  background: var(--sapphire-gradient);
  box-shadow: 0 6px 20px rgba(10, 88, 202, 0.4);
}

.floating-action-circle.top-btn {
  background: var(--navy-gradient);
  box-shadow: 0 6px 20px rgba(11, 25, 44, 0.35);
}

/* ==========================================================================
   IPAD & ALL TABLETS (600px - 1024px)
   ========================================================================== */
@media (min-width: 600px) and (max-width: 1024px) {
  .site-wrap {
    padding: 0 clamp(20px, 3.5vw, 32px);
  }
  
  /* Navbar on Tablet */
  .nav-menu {
    gap: 10px;
  }
  .nav-link {
    font-size: 0.78rem;
  }
  .btn-wa-header, .btn-call-header {
    padding: 6px 10px;
    font-size: 0.74rem;
  }
  
  /* Hero on Tablet */
  .hero-2col-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }
  .hero-h1-title {
    font-size: 2.2rem;
  }
  
  /* Process & Packages on Tablet */
  .process-track-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .packages-4grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  /* Services Showcase on Tablet */
  .service-showcase-panel {
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    padding: 24px;
  }
  .showcase-visual {
    height: 280px;
  }
  
  /* 5 Services Cards on Tablet */
  .services-5cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  /* Scope Estimator on Tablet */
  .estimator-board-card {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    padding: 24px;
  }
  
  /* About & Contact on Tablet */
  .about-2col-grid, .contact-2col-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  /* TABLET FOOTER */
  .footer-unified-deck {
    grid-template-columns: 1.05fr 0.95fr 1.3fr;
    gap: 20px;
    padding: 24px 26px;
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-deck-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 16px;
  }
  .footer-bottom-bar {
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
}

/* ==========================================================================
   MOBILE MEDIA QUERIES (< 600px)
   ========================================================================== */
@media (max-width: 599px) {
  .nav-menu, .nav-cta-row .btn-call-header {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .topbar-right {
    display: none;
  }
  .topbar-flex {
    justify-content: center;
    text-align: center;
  }
  .hero-2col-layout,
  .service-showcase-panel,
  .estimator-board-card,
  .about-2col-grid,
  .contact-2col-layout {
    grid-template-columns: 1fr;
  }
  .process-track-container,
  .packages-4grid {
    grid-template-columns: 1fr;
  }
  .process-luxury-stage {
    padding: 30px 18px;
    border-radius: var(--radius-lg);
  }
  .checkbox-2col-layout {
    grid-template-columns: 1fr;
  }
  .hero-actions-group .btn-hero-primary,
  .hero-actions-group .btn-hero-gold {
    width: 100%;
  }
  .hero-stats-band {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
  }
  .hero-stat-box {
    background: #FFFFFF;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 10px 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(11, 25, 44, 0.04);
  }
  .hero-stat-val {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
    line-height: 1.2;
  }
  .hero-stat-sub {
    font-size: clamp(0.62rem, 2vw, 0.68rem);
    line-height: 1.2;
    margin-top: 3px;
  }
  
  /* MOBILE FOOTER: 2-Column Top + Full Width Bottom HQ */
  .footer-unified-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 16px;
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
  }
  
  /* Col 1: Services */
  .footer-unified-deck .footer-deck-col:nth-child(1) {
    grid-column: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 12px;
    padding-bottom: 0;
  }
  
  /* Col 2: Navigation */
  .footer-unified-deck .footer-deck-col:nth-child(2) {
    grid-column: 2;
    border-right: none;
    padding-right: 0;
    padding-bottom: 0;
  }
  
  /* Col 3: Headquarters */
  .footer-unified-deck .footer-deck-col.footer-deck-hq {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 4px;
  }
  
  .site-footer {
    padding: 36px 0 28px;
  }
  
  .footer-bottom-bar {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 16px 40px 0 40px;
  }
  
  .floating-dock-row {
    bottom: 16px;
    right: 14px;
    gap: 8px;
  }
  
  .floating-action-circle {
    width: 40px;
    height: 40px;
  }
  
  .floating-action-circle svg {
    width: 20px;
    height: 20px;
  }
  
  .about-stats-2col {
    grid-template-columns: 1fr;
  }
  .about-badge-founded {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 14px;
  }
  .hero-float-chip {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .site-wrap {
    padding: 0 16px;
  }
  .nav-container {
    height: 66px;
  }
  .btn-wa-header span {
    display: none;
  }
  .btn-wa-header {
    padding: 8px 12px;
  }
  .topbar {
    font-size: 0.72rem;
  }
  .hero-stage {
    padding: 24px 0 36px;
  }
  .hero-trust-row {
    gap: 6px;
  }
  .trust-chip {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  .badge-service-ticker {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
}

/* ==========================================================================
   INTERACTIVE ANIMATIONS, KEYFRAMES & SCROLL REVEAL SUITE
   ========================================================================== */

/* 1. Global Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--sapphire-blue), var(--sapphire-light), var(--gold-light));
  z-index: 10002;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6), 0 0 20px rgba(10, 88, 202, 0.4);
  transition: width 0.08s ease-out;
  pointer-events: none;
}

/* 2. Keyframe Definitions */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(8px) rotate(-0.5deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    transform: scale(1.02);
  }
}

@keyframes radarPing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes callRadarPing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(10, 88, 202, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(10, 88, 202, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(10, 88, 202, 0);
  }
}

@keyframes shimmerSweep {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes softBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-8deg) scale(1.1); }
  75% { transform: rotate(8deg) scale(1.1); }
}

/* 3. Floating Micro-Animations */
.hero-float-chip.chip-top {
  animation: floatSlow 5s ease-in-out infinite;
}

.hero-float-chip.chip-bottom {
  animation: floatReverse 6s ease-in-out infinite;
}

.about-badge-founded {
  animation: floatSlow 6s ease-in-out infinite;
}

/* Animated Clock & Badge Dots */
#live-uae-clock {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.topbar-right span[style*="#25D366"] {
  display: inline-block;
  animation: softBlink 1.8s infinite ease-in-out;
}

/* Floating Actions Pulse */
.floating-action-circle.wa {
  animation: radarPing 2.5s infinite ease-in-out;
}

.floating-action-circle.call {
  animation: callRadarPing 3s infinite ease-in-out 0.5s;
}

/* Back to Top Floating Button */
.floating-action-circle.top-btn {
  background: var(--navy-primary);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-action-circle.top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-action-circle.top-btn:hover {
  background: var(--gold-accent);
  color: #FFFFFF;
  border-color: var(--gold-light);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
}

/* 4. Luxury Hover & Icon Transitions */
.brand-crest {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.brand-mark:hover .brand-crest {
  transform: rotate(12deg) scale(1.08);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.45);
}

.service-card-box {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(11, 25, 44, 0.12), 0 0 0 1px rgba(10, 88, 202, 0.15);
}

.service-card-box:hover .service-card-img-wrap img {
  transform: scale(1.05);
}

.service-card-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-luxury-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.3s ease;
}

.process-luxury-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.process-luxury-card:hover .process-icon-circle {
  transform: scale(1.15) rotate(8deg);
  background: var(--gold-light);
  color: var(--navy-primary);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
}

.process-icon-circle {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card-box {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.package-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 25, 44, 0.12);
}

/* Button Shimmer Highlight */
.btn-hero-primary, .btn-hero-gold, .btn-package-cta.gold {
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after, .btn-hero-gold::after, .btn-package-cta.gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-hero-primary:hover::after, .btn-hero-gold:hover::after, .btn-package-cta.gold:hover::after {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

/* 5. Scroll Reveal Engine Classes */
.reveal-init {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Activated State */
.reveal-init.is-revealed,
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-zoom.is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* Interactive Numbers Counter */
.stat-counter-animate {
  display: inline-block;
  transition: all 0.3s ease;
}

/* ==========================================================================
   SERVICES MASTER HUB PAGE (services.html) DEDICATED STYLES
   ========================================================================== */

/* 1. Services Hub Hero Stats */
.services-hub-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.services-stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.services-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 88, 202, 0.3);
}

.services-stat-card .stat-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.services-stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 2. Filterable Category Navigation */
.services-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--navy-primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-filter-btn:hover {
  border-color: var(--sapphire-blue);
  color: var(--sapphire-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-filter-btn.active {
  background: var(--navy-gradient);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(11, 25, 44, 0.25);
}

/* 3. Deep-Dive Detailed Service Cards */
.services-master-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.service-master-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 380px 1fr;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-master-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(11, 25, 44, 0.12);
  border-color: rgba(10, 88, 202, 0.25);
}

.service-master-card.hidden {
  display: none !important;
}

.service-master-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--navy-dark);
}

.service-master-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-master-card:hover .service-master-media img {
  transform: scale(1.06);
}

.service-master-badge-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.service-master-sla-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(11, 25, 44, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: #FFFFFF;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.service-master-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-master-header {
  margin-bottom: 20px;
}

.service-master-pillar-num {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-accent);
  margin-bottom: 6px;
  display: inline-block;
}

.service-master-title {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.service-master-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-master-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 26px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.service-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-body);
  font-weight: 600;
}

.service-feature-row .feature-dot {
  color: var(--gold-accent);
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
}

.service-master-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.service-master-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag-pill {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: var(--sapphire-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.service-master-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-service-deepdive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-gradient);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(11, 25, 44, 0.2);
  transition: all 0.25s ease;
}

.btn-service-deepdive:hover {
  background: var(--navy-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 25, 44, 0.3);
}

.btn-service-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #E8F9EE;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #128C7E;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-service-wa:hover {
  background: var(--wa-green);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

/* 4. Comparison Matrix Table */
.matrix-container-box {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.matrix-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.services-matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
  text-align: left;
}

.services-matrix-table th,
.services-matrix-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  vertical-align: middle;
}

.services-matrix-table thead th {
  background: var(--navy-gradient);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: none;
}

.services-matrix-table thead th:first-child {
  border-top-left-radius: var(--radius-xl);
}

.services-matrix-table thead th:last-child {
  border-top-right-radius: var(--radius-xl);
}

.services-matrix-table tbody tr {
  transition: background-color 0.2s ease;
}

.services-matrix-table tbody tr:hover {
  background-color: #F8FAFD;
}

.services-matrix-table tbody tr:last-child td {
  border-bottom: none;
}

.matrix-service-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.matrix-service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.matrix-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F9EE;
  color: #128C7E;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.matrix-action-link {
  font-weight: 700;
  color: var(--sapphire-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.matrix-action-link:hover {
  gap: 7px;
  color: var(--navy-primary);
}

/* 5. 4-Step Multi-Discipline Methodology */
.process-grid-4steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step-item {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.process-step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 88, 202, 0.3);
}

.process-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-gradient);
  color: #F59E0B;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(11, 25, 44, 0.2);
}

.process-step-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 6. Multi-Discipline Case Studies */
.services-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.services-case-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.services-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.3);
}

.case-client-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sapphire-blue);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.case-card-title {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.case-card-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-metric-box {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border-left: 3px solid var(--gold-accent);
  display: flex;
  flex-direction: column;
}

.case-metric-val {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-primary);
}

.case-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR SERVICES HUB
   ========================================================================== */
@media (max-width: 1024px) {
  .services-hub-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-master-card {
    grid-template-columns: 300px 1fr;
  }
  .process-grid-4steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-master-card {
    grid-template-columns: 1fr;
  }
  .service-master-media {
    min-height: 240px;
  }
  .service-master-body {
    padding: 24px 20px;
  }
  .service-master-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .services-hub-hero-stats {
    grid-template-columns: 1fr;
  }
  .process-grid-4steps {
    grid-template-columns: 1fr;
  }
  .service-master-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-master-actions {
    width: 100%;
  }
  .btn-service-deepdive,
  .btn-service-wa {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   INTERACTIVE SCOPE & QUOTE ESTIMATOR STYLING (services.html & index.html)
   ========================================================================== */
.estimator-board-card,
.scope-estimator-layout {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
  margin-top: 36px;
}

.estimator-checks-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.estimator-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 18px;
}

.estimator-step-title svg {
  color: var(--sapphire-blue);
  flex-shrink: 0;
}

.checkbox-2col-layout,
.estimator-grid-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.chk-item-wrap,
.scope-check-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s ease;
  user-select: none;
  position: relative;
}

.chk-item-wrap:hover,
.scope-check-card:hover {
  border-color: var(--sapphire-light);
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.chk-item-wrap:has(.chk-service-elem:checked),
.scope-check-card:has(.chk-service-elem:checked) {
  background: #EFF6FF;
  border-color: var(--sapphire-blue);
  box-shadow: 0 4px 16px rgba(10, 88, 202, 0.1);
}

/* Custom Styled Checkbox */
.chk-service-elem {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #CBD5E1;
  border-radius: 6px;
  background: #FFFFFF;
  cursor: pointer;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chk-service-elem:hover {
  border-color: var(--sapphire-blue);
}

.chk-service-elem:checked {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
}

.chk-service-elem:checked::after {
  content: "✓";
  color: #F59E0B;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.scope-check-text,
.chk-item-label {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.scope-check-text strong,
.chk-item-label span:last-child {
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.3;
  margin-bottom: 2px;
}

.scope-check-text span,
.chk-item-label .chk-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Urgency Radios Row */
.timeline-radios-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.timeline-radios-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.timeline-radios-row label:hover {
  border-color: var(--sapphire-blue);
  background: #FFFFFF;
}

.timeline-radios-row label:has(input[type="radio"]:checked) {
  background: var(--navy-gradient);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(11, 25, 44, 0.25);
}

.timeline-radios-row input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #CBD5E1;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: all 0.2s ease;
}

.timeline-radios-row input[type="radio"]:checked {
  border-color: #F59E0B;
  background: var(--navy-primary);
}

.timeline-radios-row input[type="radio"]:checked::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F59E0B;
}

/* Right Summary Proposal Blueprint Panel */
.estimator-navy-summary,
.estimator-blueprint-panel {
  background: var(--navy-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 12px 36px rgba(11, 25, 44, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.estimator-navy-summary::before,
.estimator-blueprint-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.blueprint-top,
.blueprint-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 14px;
}

.blueprint-list,
.blueprint-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  min-height: 110px;
}

.blueprint-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.86rem;
  color: #FFFFFF;
  gap: 8px;
  transition: all 0.2s ease;
}

.blueprint-row-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.blueprint-tag-pill {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #F59E0B;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

#blueprint-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-gradient);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.94rem;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

#blueprint-whatsapp-btn:hover {
  background: var(--wa-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* Responsive Estimator */
@media (max-width: 992px) {
  .estimator-board-card,
  .scope-estimator-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .checkbox-2col-layout,
  .estimator-grid-checks {
    grid-template-columns: 1fr;
  }
  .timeline-radios-row {
    flex-direction: column;
    gap: 8px;
  }
  .timeline-radios-row label {
    width: 100%;
  }
}

/* ==========================================================================
   PACKAGES & RETAINERS PRICING DECK (packages.html)
   ========================================================================== */
.package-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.package-col-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-col-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sapphire-blue);
}

.package-col-card.featured-gold-card {
  border: 2px solid var(--gold-accent);
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.18);
  transform: scale(1.03);
}

.package-col-card.featured-gold-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 20px 56px rgba(245, 158, 11, 0.28);
}

.featured-ribbon-tag {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #0B192C;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px 0;
  text-transform: uppercase;
}

.package-head-area {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--border-light);
}

.package-tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.package-tier-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 8px;
}

.package-tier-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 48px;
}

.package-pricing-block {
  display: flex;
  flex-direction: column;
}

.price-currency-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-val {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy-primary);
  letter-spacing: -0.02em;
}

.price-freq {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-subtext {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

.package-body-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.package-features-head {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-primary);
  margin-bottom: 16px;
}

.package-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.package-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-dark);
  line-height: 1.45;
}

.pkg-check-icon {
  width: 20px;
  height: 20px;
  background: #EFF6FF;
  color: var(--sapphire-blue);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-cta-box {
  margin-top: auto;
}

.btn-package-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--navy-primary);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-package-primary:hover {
  background: var(--navy-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-package-featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #0B192C;
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 900;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease;
}

.btn-package-featured:hover {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

/* ==========================================================================
   CONTACT PAGE 2-COLUMN LAYOUT (contact.html)
   ========================================================================== */
.contact-2col-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.custom-contact-form input:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
  outline: none;
  border-color: var(--sapphire-blue);
  box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.15);
}

@media (max-width: 992px) {
  .package-deck-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 36px auto 0;
  }
  .package-col-card.featured-gold-card {
    transform: none;
  }
  .package-col-card.featured-gold-card:hover {
    transform: translateY(-8px);
  }
  .contact-2col-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CREATIVE SUBPAGE HERO LUXURY STAGE (Packages, About Us, Contact)
   ========================================================================== */
.subpage-hero-stage {
  position: relative;
  background: 
    radial-gradient(circle at 90% 15%, rgba(10, 88, 202, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(245, 158, 11, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 50%, #FFFFFF 100%);
  padding: clamp(36px, 5vw, 56px) 0 clamp(44px, 6vw, 64px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.subpage-hero-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 25%, var(--sapphire-blue) 75%, transparent 100%);
  opacity: 0.85;
}

/* Breadcrumbs with clean pills */
.subpage-breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.subpage-breadcrumb-bar a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.subpage-breadcrumb-bar a:hover {
  color: var(--sapphire-blue);
}

.subpage-breadcrumb-bar .crumb-sep {
  color: #CBD5E1;
}

.subpage-breadcrumb-bar .crumb-current {
  color: var(--sapphire-blue);
  background: rgba(10, 88, 202, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

/* 2-Column Creative Grid */
.subpage-hero-2col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: 36px;
}

.subpage-hero-left {
  display: flex;
  flex-direction: column;
}

.subpage-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 16px 0;
}

.subpage-hero-h1 span {
  background: linear-gradient(135deg, var(--sapphire-blue) 0%, #064196 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subpage-hero-p {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 650px;
  margin-bottom: 24px;
}

/* Trust Pills Row */
.subpage-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.subpage-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.subpage-trust-chip .chk {
  color: #10B981;
  font-weight: 800;
}

/* Actions Row */
.subpage-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right Column: Creative Glass Showcase Card */
.subpage-hero-right {
  position: relative;
}

.subpage-glass-widget {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 16px 40px -12px rgba(11, 25, 44, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subpage-glass-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(11, 25, 44, 0.16);
}

.subpage-glass-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--sapphire-blue));
}

.widget-head-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 16px;
}

.widget-title-txt {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.widget-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #065F46;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid #A7F3D0;
}

.widget-pulse-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulse 1.8s infinite;
}

/* Tier Quick Selector Tabs in Packages Hero */
.tier-quick-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #F8FAFC;
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.tier-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.tier-tab-btn.active {
  background: #FFFFFF;
  color: var(--navy-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.tier-preview-card {
  background: linear-gradient(135deg, #0B192C 0%, #1E3E62 100%);
  border-radius: var(--radius-lg);
  padding: 18px;
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.tier-preview-card::after {
  content: '★';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 5.5rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.tier-preview-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tier-preview-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.tier-preview-val {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF;
}

.tier-preview-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.tier-preview-highlight {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* Image Hologram Showcase in About Hero */
.about-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}

.about-hero-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-hero-img-wrap:hover img {
  transform: scale(1.04);
}

.about-hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 25, 44, 0.85) 100%);
  padding: 16px;
  color: #FFFFFF;
}

.about-hero-img-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 800;
}

.about-hero-img-loc {
  font-size: 0.78rem;
  color: var(--gold-light);
}

/* Concierge Status Card in Contact Hero */
.contact-concierge-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.contact-concierge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  padding: 6px 0;
  border-bottom: 1px dashed #E2E8F0;
}

.contact-concierge-row:last-child {
  border-bottom: none;
}

.contact-concierge-label {
  color: var(--text-muted);
  font-weight: 500;
}

.contact-concierge-val {
  color: var(--navy-primary);
  font-weight: 700;
  font-family: var(--font-head);
}

/* Bottom Stats Deck Band */
.subpage-hero-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: 10px;
}

.subpage-stat-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.subpage-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -6px rgba(10, 88, 202, 0.1);
  border-color: var(--sapphire-blue);
}

.subpage-stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sapphire-blue);
  opacity: 0.7;
}

.subpage-stat-card:nth-child(2)::before {
  background: var(--gold-light);
}

.subpage-stat-card:nth-child(3)::before {
  background: #10B981;
}

.subpage-stat-card:nth-child(4)::before {
  background: #8B5CF6;
}

.subpage-stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.subpage-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

@media (max-width: 992px) {
  .subpage-hero-2col {
    grid-template-columns: 1fr;
  }
  .subpage-hero-stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .subpage-hero-stats-band {
    grid-template-columns: 1fr;
  }
  .tier-quick-tabs {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SIDE-BY-SIDE MISSION & VISION SHOWCASES (about.html)
   ========================================================================== */
.mv-showcase-container {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
  margin-top: 40px;
}

.mv-showcase-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.mv-showcase-row.row-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.mv-content-box {
  display: flex;
  flex-direction: column;
}

.mv-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  align-self: flex-start;
}

.mv-kicker-mission {
  background: #EFF6FF;
  color: var(--sapphire-blue);
  border: 1px solid #BFDBFE;
}

.mv-kicker-vision {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.mv-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.mv-heading span {
  background: linear-gradient(135deg, var(--sapphire-blue) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv-description {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.mv-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.mv-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.mv-feature-item:hover {
  transform: translateX(4px);
  border-color: var(--sapphire-blue);
  box-shadow: 0 4px 14px rgba(10, 88, 202, 0.08);
}

.mv-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  display: grid;
  place-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.mv-feature-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-primary);
  line-height: 1.45;
}

/* Visual Image Framing with Floating Glass Badges */
.mv-visual-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.mv-visual-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mv-visual-frame:hover img {
  transform: scale(1.04);
}

.mv-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 25, 44, 0.75) 100%);
  pointer-events: none;
}

.mv-float-badge-top {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mv-float-badge-bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 25, 44, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mv-float-title {
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 800;
  color: #FFFFFF;
}

.mv-float-sub {
  font-size: 0.78rem;
  color: var(--gold-light);
}

/* ==========================================================================
   INTERACTIVE ANIMATED SCROLL ROADMAP (about.html)
   ========================================================================== */
.roadmap-interactive-wrap {
  position: relative;
  max-width: 960px;
  margin: 50px auto 0;
  padding: 20px 0;
}

/* Center Animated Progress Stem (Desktop) */
.roadmap-timeline-stem {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
}

.roadmap-timeline-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg, #10B981 0%, var(--gold-light) 40%, var(--sapphire-blue) 100%);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  transition: height 0.2s linear;
}

/* Step Nodes */
.roadmap-scroll-node {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  opacity: 0.35;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-scroll-node.is-active,
.roadmap-scroll-node.is-passed {
  opacity: 1;
  transform: translateY(0);
}

/* Center Pin */
.roadmap-center-pin-box {
  display: grid;
  place-content: center;
  position: relative;
  z-index: 5;
}

.roadmap-pulse-pin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #CBD5E1;
  display: grid;
  place-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-muted);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.roadmap-scroll-node.is-active .roadmap-pulse-pin {
  border-color: #10B981;
  color: #FFFFFF;
  background: #10B981;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.25), 0 6px 16px rgba(16, 185, 129, 0.4);
  transform: scale(1.15);
}

.roadmap-scroll-node:nth-child(2).is-active .roadmap-pulse-pin {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: #0B192C;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.25), 0 6px 16px rgba(245, 158, 11, 0.4);
}

.roadmap-scroll-node:nth-child(3).is-active .roadmap-pulse-pin {
  border-color: var(--sapphire-blue);
  background: var(--sapphire-blue);
  color: #FFFFFF;
  box-shadow: 0 0 0 6px rgba(10, 88, 202, 0.25), 0 6px 16px rgba(10, 88, 202, 0.4);
}

.roadmap-scroll-node:nth-child(4).is-active .roadmap-pulse-pin {
  border-color: #8B5CF6;
  background: #8B5CF6;
  color: #FFFFFF;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.25), 0 6px 16px rgba(139, 92, 246, 0.4);
}

/* Card Content Container */
.roadmap-side-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

.roadmap-scroll-node.is-active .roadmap-side-card {
  box-shadow: var(--shadow-xl);
  border-color: rgba(10, 88, 202, 0.4);
  transform: scale(1.02);
}

.node-left .roadmap-side-card {
  grid-column: 1 / 2;
  text-align: right;
}

.node-left .roadmap-card-tags {
  justify-content: flex-end;
}

.node-left .roadmap-header-row {
  flex-direction: row-reverse;
}

.node-right .roadmap-side-card {
  grid-column: 3 / 4;
  text-align: left;
}

.node-left .roadmap-side-empty {
  grid-column: 3 / 4;
}

.node-right .roadmap-side-empty {
  grid-column: 1 / 2;
}

.roadmap-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.roadmap-pill-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.tag-active {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.tag-upcoming {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.tag-planned {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

.tag-target {
  background: #F3E8FF;
  color: #6B21A8;
  border: 1px solid #E9D5FF;
}

.roadmap-date-txt {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy-primary);
}

.roadmap-node-h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.roadmap-node-p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.roadmap-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
}

.roadmap-mini-chip {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #F8FAFC;
  color: var(--navy-primary);
  border: 1px solid #E2E8F0;
}

/* Responsive */
@media (max-width: 992px) {
  .mv-showcase-row,
  .mv-showcase-row.row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mv-showcase-row.row-reverse .mv-content-box {
    order: 1;
  }
  .mv-showcase-row.row-reverse .mv-visual-frame {
    order: 2;
  }

  .roadmap-timeline-stem {
    left: 20px;
    transform: none;
  }
  .roadmap-scroll-node {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }
  .node-left .roadmap-side-card,
  .node-right .roadmap-side-card {
    grid-column: 2 / 3;
    text-align: left;
  }
  .node-left .roadmap-header-row {
    flex-direction: row;
  }
  .node-left .roadmap-card-tags {
    justify-content: flex-start;
  }
  .roadmap-center-pin-box {
    grid-column: 1 / 2;
  }
  .roadmap-side-empty {
    display: none;
  }
}

/* ==========================================================================
   HIGH-TECH ENTERPRISE IT CONSULTING STYLING (it.html)
   ========================================================================== */
.it-tech-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 36px;
}

.it-tech-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 2.5vw, 32px);
  box-shadow: 0 4px 20px -4px rgba(11, 25, 44, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.it-tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -8px rgba(10, 88, 202, 0.14), 0 0 0 1px rgba(10, 88, 202, 0.25);
}

.it-tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sapphire-blue), var(--gold-light));
  opacity: 0.85;
}

.it-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.it-tech-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: grid;
  place-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.icon-cloud {
  background: linear-gradient(135deg, rgba(10, 88, 202, 0.12), rgba(10, 88, 202, 0.04));
  color: var(--sapphire-blue);
  border: 1px solid rgba(10, 88, 202, 0.2);
}

.icon-cyber {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04));
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-erp {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.icon-ai {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
  color: #7C3AED;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-code {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0.04));
  color: #0891B2;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-support {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(236, 72, 153, 0.04));
  color: #DB2777;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.it-kicker-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: #F8FAFC;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid #E2E8F0;
}

.it-tech-h3 {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.it-tech-p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.it-tech-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.it-tech-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-primary);
}

.it-chk-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--sapphire-blue);
  display: inline-grid;
  place-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.it-tech-stack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}

/* ==========================================================================
   HIGH-TECH ENTERPRISE IT SPECIALIST & 5 SERVICES STYLING (it.html)
   ========================================================================== */

/* 5 Core Services Grid Layout */
.it-services-deck-5grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 36px;
}

.it-services-deck-5grid > .it-service-card:nth-child(4),
.it-services-deck-5grid > .it-service-card:nth-child(5) {
  grid-column: span 1.5;
}

.it-service-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 2.5vw, 32px);
  box-shadow: 0 4px 20px -4px rgba(11, 25, 44, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.it-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -8px rgba(10, 88, 202, 0.15), 0 0 0 2px var(--sapphire-blue);
}

.it-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sapphire-blue), var(--gold-light));
}

.it-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.it-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  display: grid;
  place-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.it-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.it-category-badge {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #F8FAFC;
  color: var(--navy-primary);
  border: 1px solid #E2E8F0;
}

.it-card-h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.it-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.it-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.it-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-primary);
  line-height: 1.45;
}

.it-deliverable-item .chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #10B981;
  display: grid;
  place-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.it-card-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}

.it-tech-pill {
  font-family: var(--font-head);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: #F1F5F9;
  color: var(--navy-primary);
  letter-spacing: 0.02em;
}

/* Technical Specialization Highlights & Skills */
.it-tech-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 36px;
}

.it-skill-spec-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.it-skill-spec-card:hover {
  transform: translateY(-3px);
  border-color: var(--sapphire-blue);
  box-shadow: var(--shadow-md);
}

.it-skill-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: #EFF6FF;
  color: var(--sapphire-blue);
  display: grid;
  place-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

/* Consultation & Booking Form Section */
.it-booking-section-wrap {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-2xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 10px 30px -5px rgba(11, 25, 44, 0.06);
  margin-top: 36px;
}

.it-form-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.it-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.it-form-field label {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.it-form-field input,
.it-form-field select,
.it-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  background: #FFFFFF;
  color: var(--navy-primary);
  font-family: inherit;
  transition: all 0.2s ease;
}

.it-form-field input:focus,
.it-form-field select:focus,
.it-form-field textarea:focus {
  outline: none;
  border-color: var(--sapphire-blue);
  box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.12);
}

@media (max-width: 992px) {
  .it-services-deck-5grid {
    grid-template-columns: 1fr;
  }
  .it-services-deck-5grid > .it-service-card:nth-child(4),
  .it-services-deck-5grid > .it-service-card:nth-child(5) {
    grid-column: span 1;
  }
  .it-tech-highlights-grid,
  .it-form-2col-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INTERACTIVE ANIMATED IT ARCHITECTURE DEEP-DIVE STAGE
   ========================================================================== */
.it-deepdive-explorer-wrap {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 40px -8px rgba(11, 25, 44, 0.08);
  overflow: hidden;
  margin-top: 36px;
}

/* Tab Navigation Strip */
.it-deepdive-nav-strip {
  display: flex;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  overflow-x: auto;
  scrollbar-width: none;
}

.it-deepdive-nav-strip::-webkit-scrollbar {
  display: none;
}

.it-nav-tab-btn {
  flex: 1;
  min-width: 200px;
  padding: 18px 16px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.it-nav-tab-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.it-nav-tab-btn.is-active {
  background: #FFFFFF;
  border-bottom-color: var(--sapphire-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.it-tab-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--sapphire-blue);
  background: #EFF6FF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}

.it-nav-tab-btn.is-active .it-tab-num {
  background: var(--sapphire-blue);
  color: #FFFFFF;
}

.it-tab-label {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.2;
}

.it-tab-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

/* Deep-Dive Panels Container */
.it-deepdive-panels-container {
  padding: clamp(24px, 4vw, 44px);
}

.it-deepdive-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.it-deepdive-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.it-deepdive-stage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
}

.it-panel-lead-box {
  margin-bottom: 24px;
}

.it-panel-kicker {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sapphire-blue);
  background: #EFF6FF;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 10px;
}

.it-panel-h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.2;
  margin-bottom: 10px;
}

.it-panel-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 4 In-Depth Sub-Pillar Cards */
.it-subpillars-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.it-subpillar-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: all 0.25s ease;
  position: relative;
}

.it-subpillar-card:hover {
  background: #FFFFFF;
  border-color: var(--sapphire-blue);
  box-shadow: 0 6px 20px -4px rgba(10, 88, 202, 0.12);
  transform: translateX(4px);
}

.it-subpillar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.it-subpillar-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  font-size: 0.72rem;
  font-weight: 900;
  display: grid;
  place-content: center;
  flex-shrink: 0;
}

.it-subpillar-title {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy-primary);
}

.it-subpillar-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 32px;
}

.it-subpillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 32px;
  margin-top: 10px;
}

.it-mini-chip {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #FFFFFF;
  color: var(--navy-primary);
  border: 1px solid #E2E8F0;
}

/* ==========================================================================
   ANIMATED TECH CONSOLES & SIMULATORS (RIGHT COLUMN)
   ========================================================================== */
.it-live-sim-console {
  background: #0B132B;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.it-live-sim-console::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00F0FF, #3A86FF, #F59E0B);
}

.it-sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  font-family: monospace;
  font-size: 0.78rem;
}

.it-status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #34D399;
}

.it-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
  animation: pulseLight 1.5s infinite;
}

@keyframes pulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* 1. Animated Network Topology Diagram */
.it-topo-diagram-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 18px;
  position: relative;
}

.it-topo-nodes-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.it-topo-node {
  text-align: center;
  flex: 1;
}

.it-node-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
  transition: all 0.3s ease;
}

.it-node-circle.active {
  border-color: #00F0FF;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
}

.it-node-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: #FFFFFF;
}

.it-node-sub {
  font-size: 0.65rem;
  color: #94A3B8;
}

/* Animated Connecting Wire */
.it-wire-line {
  height: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  margin: 0 4px 20px;
}

.it-wire-packet {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00F0FF;
  box-shadow: 0 0 10px #00F0FF;
  animation: packetFlow 2s linear infinite;
}

@keyframes packetFlow {
  0% { left: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Telemetry Mini Grid */
.it-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.it-telem-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}

.it-telem-num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: #00F0FF;
}

.it-telem-label {
  font-size: 0.68rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* 2. CCTV Multi-Channel Simulator */
.it-cctv-grid-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.it-cctv-channel {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 84px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-cctv-rec {
  position: absolute;
  top: 6px;
  left: 6px;
  font-family: monospace;
  font-size: 0.65rem;
  color: #EF4444;
  display: flex;
  align-items: center;
  gap: 4px;
}

.it-rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
  animation: blinkRec 1s infinite;
}

@keyframes blinkRec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.it-cctv-label {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: 0.65rem;
  color: #9CA3AF;
  font-family: monospace;
}

/* 3. Code Terminal Simulator */
.it-code-terminal-box {
  background: #080D1A;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  padding: 16px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #E2E8F0;
  margin-bottom: 18px;
  position: relative;
}

.it-code-keyword { color: #F472B6; }
.it-code-fn { color: #60A5FA; }
.it-code-str { color: #34D399; }
.it-code-comment { color: #64748B; font-style: italic; }

.it-terminal-log {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  color: #00F0FF;
  font-size: 0.75rem;
}

/* ==========================================================================
   ON-SCROLL DEDICATED IT CAPABILITIES JOURNEY & INDIVIDUAL ANIMATIONS
   ========================================================================== */
.it-scroll-journey-container {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
  margin-top: 36px;
}

/* Chapter Heading Block */
.it-chapter-header {
  border-bottom: 2px solid #E2E8F0;
  padding-bottom: 16px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.it-chapter-badge {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sapphire-blue);
  background: #EFF6FF;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
}

.it-chapter-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.2;
}

.it-chapter-nav-jump {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sapphire-blue);
  text-decoration: none;
}

/* Dedicated Capability Row */
.it-capability-row {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-2xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 10px 30px -6px rgba(11, 25, 44, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.it-capability-row:hover {
  border-color: var(--sapphire-blue);
  box-shadow: 0 16px 40px -8px rgba(10, 88, 202, 0.12);
  transform: translateY(-2px);
}

.it-capability-row.row-reverse {
  grid-template-columns: 1.08fr 1fr;
}

.it-capability-row.row-reverse > .it-cap-text {
  order: 2;
}

.it-capability-row.row-reverse > .it-cap-visual {
  order: 1;
}

/* Text Content */
.it-cap-badge-pill {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

.it-cap-h3 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 900;
  color: var(--navy-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.it-cap-lead {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
}

.it-cap-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.it-cap-feature-item {
  font-size: 0.88rem;
  color: var(--navy-primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.it-cap-feature-item .chk {
  color: #059669;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.it-cap-tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.it-cap-pill {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #F1F5F9;
  color: var(--navy-primary);
  border: 1px solid #E2E8F0;
}

/* ==========================================================================
   DEDICATED VISUAL SIMULATOR CONSOLES FOR EACH SERVICE
   ========================================================================== */
.it-sim-screen-card {
  background: #080E1E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.it-sim-screen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00F0FF, #3A86FF, #F59E0B);
}

.it-sim-screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  font-family: monospace;
  font-size: 0.74rem;
}

/* 1.1 VLAN Routing Simulator */
.it-vlan-subnets-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.it-vlan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 14px;
}

.it-vlan-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.it-vlan-badge {
  font-size: 0.65rem;
  font-family: monospace;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

.it-packet-stream {
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.it-packet-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background: #00F0FF;
  border-radius: 2px;
  animation: streamFlow 1.8s infinite linear;
}

@keyframes streamFlow {
  0% { left: -20px; opacity: 0; }
  30% { opacity: 1; }
  100% { left: 80px; opacity: 0; }
}

/* 1.2 Fortinet Firewall Simulator */
.it-firewall-shield-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  margin-bottom: 14px;
}

.it-fw-shield-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid #EF4444;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
  animation: shieldPulse 2s infinite ease-in-out;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); }
  50% { transform: scale(1.06); box-shadow: 0 0 25px rgba(239, 68, 68, 0.45); }
}

/* 1.3 Ubiquiti Wi-Fi Waves Simulator */
.it-wifi-radar-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 10px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px dashed rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  margin-bottom: 14px;
}

.it-wifi-ap-center {
  text-align: center;
  position: relative;
}

.it-wifi-wave-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid #00F0FF;
  animation: wifiRipple 2s infinite linear;
}

@keyframes wifiRipple {
  0% { width: 30px; height: 30px; opacity: 1; }
  100% { width: 90px; height: 90px; opacity: 0; }
}

/* 1.4 Server Rack & Patch Panel Simulator */
.it-rack-unit-display {
  background: #020617;
  border: 1px solid #1E293B;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  font-family: monospace;
}

.it-patch-ports-row {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.it-port-light {
  width: 14px;
  height: 10px;
  background: #334155;
  border-radius: 2px;
  position: relative;
}

.it-port-light.on {
  background: #22C55E;
  box-shadow: 0 0 6px #22C55E;
  animation: portBlink 1.4s infinite alternate;
}

@keyframes portBlink {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* 2.1 Laser Biometric Scanner Simulator */
.it-biometric-laser-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.it-laser-scan-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00F0FF;
  box-shadow: 0 0 12px #00F0FF;
  animation: laserSweep 2s infinite ease-in-out;
}

@keyframes laserSweep {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* 2.2 CCTV Surveillance Simulator */
.it-cctv-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.it-cctv-channel {
  background: #020617;
  border: 1px solid #1E293B;
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.it-cctv-rec {
  position: absolute;
  top: 6px;
  left: 8px;
  font-family: monospace;
  font-size: 0.65rem;
  color: #EF4444;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
}

.it-rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
  animation: portBlink 1s infinite alternate;
}

.it-cctv-label {
  font-family: monospace;
  font-size: 0.68rem;
  color: #94A3B8;
  margin-top: 4px;
}

/* 2.3 VoIP Telephony Waveform Simulator */
.it-voip-waveform-bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 36px;
  margin: 12px 0;
}

.it-wave-stick {
  width: 4px;
  background: #60A5FA;
  border-radius: 2px;
  animation: waveDance 1.2s infinite ease-in-out alternate;
}

@keyframes waveDance {
  0% { height: 6px; }
  100% { height: 32px; }
}

/* 3.1 Telemetry Grid */
.it-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.it-telem-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
}

.it-telem-num {
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.it-telem-label {
  font-size: 0.68rem;
  color: #94A3B8;
}

/* ==========================================================================
   TECHNICAL HIGHLIGHTS & BOOKING FORM SECTION STYLES
   ========================================================================== */
.it-tech-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: 40px;
}

.it-skill-spec-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(11, 25, 44, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.it-skill-spec-card:hover {
  transform: translateY(-3px);
  border-color: var(--sapphire-blue);
  box-shadow: 0 12px 30px -4px rgba(10, 88, 202, 0.12);
}

.it-skill-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: #EFF6FF;
  display: grid;
  place-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.it-booking-section-wrap {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-2xl);
  padding: clamp(24px, 5vw, 56px);
  box-shadow: 0 20px 45px -10px rgba(11, 25, 44, 0.07);
}

.it-form-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.custom-contact-form {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.it-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.it-form-field label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.it-form-field input,
.it-form-field select,
.it-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy-primary);
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.it-form-field input:focus,
.it-form-field select:focus,
.it-form-field textarea:focus {
  border-color: var(--sapphire-blue);
  box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.15);
}

/* ==========================================================================
   COMPREHENSIVE AUTO-RESPONSIVE SYSTEM (TABLETS, iPADS & PHONES)
   ========================================================================== */
@media (max-width: 1024px) {
  .subpage-2col-layout,
  .hero-2col-layout {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .hero-visual-card-wrap,
  .hero-visual-card {
    max-width: 540px;
    margin: 0 auto;
  }

  .it-capability-row,
  .it-capability-row.row-reverse {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: clamp(20px, 3.5vw, 32px);
  }

  .it-capability-row.row-reverse > .it-cap-text {
    order: 1;
  }

  .it-capability-row.row-reverse > .it-cap-visual {
    order: 2;
  }

  .it-tech-highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .it-form-2col-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  /* Topbar stacking */
  .topbar {
    padding: 8px 0;
  }

  .topbar-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topbar-left, .topbar-right {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  /* Subpage & Main Hero Sections */
  .subpage-hero-stage,
  .subpage-hero,
  .hero-stage {
    padding: 28px 0 32px;
  }

  .subpage-2col-layout,
  .hero-2col-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
    margin-bottom: 24px;
  }

  .hero-h1-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.2;
    word-break: break-word;
  }

  .hero-p-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-actions-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-gold {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    box-sizing: border-box;
  }

  .hero-visual-card-wrap,
  .hero-visual-card {
    max-width: 100%;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
  }

  .hero-img-box {
    height: clamp(200px, 50vw, 280px);
    width: 100%;
  }

  .hero-float-chip {
    position: static !important;
    width: 100% !important;
    margin-top: 10px !important;
    left: auto !important;
    right: auto !important;
    box-sizing: border-box !important;
  }

  .subpage-hero-stats-band,
  .hero-stats-band {
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding-top: 16px;
  }

  /* IT Capabilities Journey */
  .it-chapter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
  }

  .it-chapter-h2 {
    font-size: 1.35rem;
  }

  .it-capability-row,
  .it-capability-row.row-reverse {
    grid-template-columns: 1fr !important;
    padding: 18px 14px;
    gap: 20px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .it-cap-h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .it-cap-lead {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .it-cap-feature-item {
    font-size: 0.84rem;
    gap: 8px;
  }

  .it-sim-screen-card {
    padding: 14px 10px;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .it-sim-screen-top {
    font-size: 0.68rem;
    flex-wrap: wrap;
    gap: 6px;
  }

  .it-vlan-row {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .it-vlan-name {
    font-size: 0.75rem;
    gap: 6px;
  }

  .it-packet-stream {
    width: 36px;
  }

  .it-wifi-radar-box {
    padding: 14px 4px;
    gap: 4px;
  }

  .it-patch-ports-row {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-start;
  }

  .it-port-light {
    width: 10px;
    height: 8px;
  }

  .it-cctv-grid-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .it-cctv-channel {
    padding: 12px 6px;
  }

  .it-telemetry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .it-telem-box {
    padding: 10px 4px;
  }

  .it-telem-num {
    font-size: 1.15rem;
  }

  .it-code-terminal-box {
    padding: 10px;
    font-size: 0.7rem;
    overflow-x: auto;
  }

  .it-skill-spec-card {
    flex-direction: column;
    gap: 14px;
    padding: 18px 14px;
  }

  .it-booking-section-wrap {
    padding: 20px 14px;
  }

  .custom-contact-form {
    padding: 16px 12px;
  }

  .custom-contact-form > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .site-wrap {
    padding: 0 12px;
  }

  .hero-h1-title {
    font-size: 1.5rem;
  }

  .it-scroll-journey-container {
    gap: 32px;
    margin-top: 18px;
  }

  .it-capability-row,
  .it-capability-row.row-reverse {
    padding: 14px 10px;
    gap: 16px;
    border-radius: 12px;
  }

  .it-cap-h3 {
    font-size: 1.1rem;
  }

  .it-cap-tech-chips {
    gap: 4px;
  }

  .it-cap-pill {
    font-size: 0.65rem;
    padding: 2px 7px;
  }

  .it-vlan-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .it-packet-stream {
    display: none;
  }

  .it-telemetry-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-chip {
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   EXCLUSIVE LUXURY HR & TALENT MANAGEMENT VISUAL CARDS & ANIMATIONS
   ========================================================================== */

/* Base Luxury Executive Container */
.hr-executive-stage-card {
  background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-2xl);
  padding: 26px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hr-executive-stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B 0%, #10B981 50%, #3B82F6 100%);
}

.hr-stage-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hr-executive-crest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F59E0B;
  font-weight: 800;
}

/* ==========================================================================
   ANIMATION 1.1: LUXURY CANDIDATE PROFILE & MULTI-METRIC TALENT RADAR
   ========================================================================== */
.hr-talent-spotlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 18px;
  margin-bottom: 16px;
  position: relative;
}

.hr-talent-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hr-talent-portrait-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
  position: relative;
  animation: avatarFloat 3s infinite ease-in-out;
}

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hr-talent-online-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #0F172A;
}

.hr-talent-details {
  flex: 1;
}

.hr-talent-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.hr-talent-role-title {
  font-size: 0.78rem;
  color: #94A3B8;
}

.hr-talent-match-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #34D399;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
  animation: matchGlow 2s infinite ease-in-out;
}

@keyframes matchGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 18px rgba(16, 185, 129, 0.45); }
}

/* 4 Circular Skill Metrics */
.hr-skills-quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.hr-skill-quad-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  transition: transform 0.2s;
}

.hr-skill-quad-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.4);
}

.hr-skill-percent {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  color: #F59E0B;
  margin-bottom: 2px;
}

.hr-skill-title-lbl {
  font-size: 0.64rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   ANIMATION 1.2: INTERACTIVE CANDIDATE VETTING CAROUSEL DECK
   ========================================================================== */
.hr-candidate-deck-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hr-candidate-deck-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.25s ease;
}

.hr-candidate-deck-card.featured {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hr-cand-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hr-cand-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  color: #FFF;
}

/* ==========================================================================
   ANIMATION 2.1: HOLOGRAPHIC MOHRE CONTRACT SCANNER & STATUTORY STAMP
   ========================================================================== */
.hr-cert-scroll-card {
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.8) 70%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

/* Dynamic Animated Laser Scanner Bar */
.hr-laser-scan-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10B981, #34D399, transparent);
  box-shadow: 0 0 12px #10B981, 0 0 24px #34D399;
  animation: laserSweep 3s infinite ease-in-out;
  z-index: 5;
}

@keyframes laserSweep {
  0% { top: 0%; opacity: 0.2; }
  50% { top: 96%; opacity: 1; }
  100% { top: 0%; opacity: 0.2; }
}

.hr-cert-stamp-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hr-gold-seal-crest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.hr-clause-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

.hr-clause-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border-left: 3px solid #10B981;
}

/* ==========================================================================
   ANIMATION 2.2: WPS ELECTRONIC DISBURSEMENT VAULT & CURRENCY STREAM
   ========================================================================== */
.hr-wps-vault-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 18px;
  margin-bottom: 14px;
}

.hr-wps-stream-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 8px;
}

.hr-wps-stream-node .amount {
  font-family: var(--font-head);
  font-weight: 800;
  color: #34D399;
  font-size: 0.86rem;
}

/* ==========================================================================
   ANIMATION 3.1: INTERACTIVE EXECUTIVE ORG HIERARCHY TREE
   ========================================================================== */
.hr-org-tree-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hr-tree-leader-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
  border: 1.5px solid #F59E0B;
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
  animation: leaderPulse 3s infinite ease-in-out;
}

@keyframes leaderPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15); }
  50% { box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35); }
}

.hr-tree-sub-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.hr-tree-sub-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  font-size: 0.7rem;
}

.hr-tree-sub-card strong {
  display: block;
  color: #60A5FA;
  margin-bottom: 2px;
}

/* ==========================================================================
   ANIMATION 4.1: 360-DEGREE OKR VELOCITY WHEEL & METRIC GAUGES
   ========================================================================== */
.hr-okr-dial-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.hr-okr-row-gauge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
}

.hr-gauge-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-top: 6px;
}

.hr-gauge-fill {
  height: 100%;
  border-radius: 4px;
  position: relative;
  animation: gaugePulse 2.5s infinite alternate ease-in-out;
}

@keyframes gaugePulse {
  0% { filter: brightness(0.9); }
  100% { filter: brightness(1.2); }
}

/* ==========================================================================
   ANIMATION 5.1: VIP EXECUTIVE ONBOARDING & RESIDENCY BOARDING PASS
   ========================================================================== */
.hr-vip-boarding-pass {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border: 1.5px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-xl);
  padding: 18px;
  position: relative;
  margin-bottom: 14px;
}

.hr-boarding-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.hr-boarding-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: #F59E0B;
}

.hr-boarding-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  text-align: center;
}

.hr-milestone-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 4px;
  font-size: 0.66rem;
}

.hr-milestone-step.done {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10B981;
  color: #34D399;
}

.hr-milestone-step.active {
  background: rgba(245, 158, 11, 0.2);
  border-color: #F59E0B;
  color: #FDE68A;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   BUSINESS MODEL ENHANCEMENTS: BOOLEAN SOURCING, ATS, SECTORS & REVENUE
   ========================================================================== */

/* Boolean Search Simulator Console */
.hr-boolean-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: monospace;
  font-size: 0.74rem;
  color: #93C5FD;
  margin-bottom: 14px;
  line-height: 1.5;
}

.hr-bool-op {
  color: #F472B6;
  font-weight: bold;
}

.hr-bool-str {
  color: #34D399;
}

/* ATS Resume Scoring Animation */
.hr-ats-score-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.hr-ats-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hr-ats-score-badge {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFF;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

.hr-keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.hr-kw-tag {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

/* 4 Revenue Streams / Service Pricing Models Grid */
.hr-revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.hr-revenue-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-2xl);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -8px rgba(11, 25, 44, 0.06);
}

.hr-revenue-card:hover {
  transform: translateY(-5px);
  border-color: var(--sapphire-blue);
  box-shadow: 0 18px 45px -10px rgba(10, 88, 202, 0.15);
}

.hr-revenue-card.featured {
  border: 2px solid #F59E0B;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
  box-shadow: 0 14px 38px -6px rgba(245, 158, 11, 0.18);
}

.hr-revenue-price-tag {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--navy-primary);
  margin: 12px 0 6px;
}

.hr-revenue-price-tag span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Industry Customer Segments Deck */
.hr-industry-deck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hr-industry-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}

.hr-industry-card:hover {
  border-color: var(--sapphire-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -6px rgba(10, 88, 202, 0.1);
}

.hr-industry-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFF6FF;
  color: var(--sapphire-blue);
  display: grid;
  place-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Partner Trust Logos Band */
.hr-partner-strip-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 24px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-xl);
  margin-top: 28px;
}

.hr-partner-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-primary);
  opacity: 0.85;
}

/* Responsive Overrides */
@media (max-width: 480px) {
  .hr-skills-quad-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hr-boarding-milestones {
    grid-template-columns: 1fr 1fr;
  }
  .hr-tree-sub-branches {
    grid-template-columns: 1fr;
  }
  .hr-industry-deck-grid {
    grid-template-columns: 1fr;
  }
  .hr-revenue-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DYNAMIC REAL-TIME ANIMATED HR VISUAL MODULES
   ========================================================================== */

/* Main Stage Container */
.hr-dynamic-anim-card {
  background: linear-gradient(135deg, #0B192C 0%, #1A2942 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-2xl);
  padding: 24px;
  box-shadow: 0 20px 48px rgba(11, 25, 44, 0.35);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hr-dynamic-anim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, #10B981, #3B82F6);
}

.hr-anim-card-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   ANIMATION 1: LIVE ROTATING TALENT RADAR & CANDIDATE SHORTLIST
   -------------------------------------------------------------------------- */
.hr-radar-stage-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

@media (max-width: 540px) {
  .hr-radar-stage-grid {
    grid-template-columns: 1fr;
  }
}

.hr-radar-disc {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.4);
  background: radial-gradient(circle, rgba(10, 88, 202, 0.2) 0%, rgba(15, 23, 42, 0.9) 70%);
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.hr-radar-disc::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.35);
}

.hr-radar-sweep-hand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg, rgba(0, 240, 255, 0.45) 0deg, transparent 60deg);
  animation: radarSweepSpin 3s infinite linear;
}

@keyframes radarSweepSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Candidate Dots on Radar */
.hr-radar-blip {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 10px #F59E0B;
  animation: blipGlow 1.5s infinite ease-in-out;
}

@keyframes blipGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 16px #F59E0B; }
}

/* Live Candidate Card beside Radar */
.hr-radar-candidate-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
}

/* --------------------------------------------------------------------------
   ANIMATION 2: TECHNICAL VETTING ASSEMBLY PIPELINE & ROTATING GEAR
   -------------------------------------------------------------------------- */
.hr-pipeline-assembly-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.hr-conveyor-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  overflow: hidden;
}

.hr-conveyor-packet {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hr-rotating-gear-icon {
  font-size: 1.8rem;
  display: inline-block;
  animation: gearSpin 6s infinite linear;
}

@keyframes gearSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hr-conveyor-pulse-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B82F6, #10B981, transparent);
  animation: conveyorFlow 2s infinite linear;
}

@keyframes conveyorFlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* --------------------------------------------------------------------------
   ANIMATION 3: MOHRE LASER SCANNER & WPS CURRENCY STREAM
   -------------------------------------------------------------------------- */
.hr-laser-scanner-stage {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.hr-laser-beam-anim {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #10B981, #34D399, #00F0FF, transparent);
  box-shadow: 0 0 14px #10B981, 0 0 28px #34D399;
  animation: verticalLaserSweep 2.5s infinite ease-in-out;
}

@keyframes verticalLaserSweep {
  0% { top: 0%; opacity: 0.3; }
  50% { top: 95%; opacity: 1; }
  100% { top: 0%; opacity: 0.3; }
}

/* WPS Currency Dots Flow */
.hr-wps-currency-stream-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.hr-coin-dot-stream {
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: rgba(245, 158, 11, 0.2);
}

.hr-coin-moving-dot {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 8px #F59E0B;
  animation: coinTravel 1.8s infinite linear;
}

@keyframes coinTravel {
  0% { left: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* --------------------------------------------------------------------------
   ANIMATION 4: REAL-TIME AUDIO VOICE EQUALIZER & LIVE ATS SCANNER
   -------------------------------------------------------------------------- */
.hr-audio-wave-box {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

.hr-soundwave-bars-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  margin: 12px 0;
}

.hr-wave-bar {
  width: 6px;
  background: linear-gradient(180deg, #8B5CF6 0%, #C4B5FD 100%);
  border-radius: 3px;
  animation: danceWave 1.2s infinite ease-in-out;
}

.hr-wave-bar:nth-child(1) { height: 16px; animation-delay: 0.1s; }
.hr-wave-bar:nth-child(2) { height: 32px; animation-delay: 0.3s; }
.hr-wave-bar:nth-child(3) { height: 44px; animation-delay: 0.5s; }
.hr-wave-bar:nth-child(4) { height: 24px; animation-delay: 0.2s; }
.hr-wave-bar:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.hr-wave-bar:nth-child(6) { height: 30px; animation-delay: 0.15s; }
.hr-wave-bar:nth-child(7) { height: 46px; animation-delay: 0.45s; }
.hr-wave-bar:nth-child(8) { height: 28px; animation-delay: 0.25s; }
.hr-wave-bar:nth-child(9) { height: 38px; animation-delay: 0.35s; }
.hr-wave-bar:nth-child(10) { height: 20px; animation-delay: 0.1s; }

@keyframes danceWave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1.1); }
}

/* ==========================================================================
   STATUTORY UAE END-OF-SERVICE GRATUITY (EOSG) CALCULATOR DESIGN
   ========================================================================== */
.hr-calculator-wrapper {
  background: linear-gradient(135deg, #0B192C 0%, #15253F 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-2xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 24px 60px -12px rgba(11, 25, 44, 0.35);
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}

.hr-calculator-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B, #10B981, #3B82F6);
}

.hr-calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 768px) {
  .hr-calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.hr-calc-heading-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hr-calc-title-h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.hr-calc-input-group {
  margin-bottom: 18px;
}

.hr-calc-input-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 8px;
}

.hr-calc-input-group input,
.hr-calc-input-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.hr-calc-input-group select option {
  background: #0B192C;
  color: #FFFFFF;
}

.hr-calc-input-group input:focus,
.hr-calc-input-group select:focus {
  border-color: #F59E0B;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
}

/* Result Box on Right */
.hr-calc-result-box {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hr-calc-result-amount {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #34D399;
  margin: 12px 0 8px;
  text-shadow: 0 0 24px rgba(52, 211, 153, 0.4);
  letter-spacing: -0.02em;
}

.hr-calc-breakdown-tag {
  font-size: 0.82rem;
  color: #CBD5E1;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-family: monospace;
}






