/* ============================================
   AME — Main Design System CSS
   Inspired by mygomseo.com
   Color: Black/Dark + Purple (#6400FF) accent
   Typography: Bold uppercase + mono
============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --brand:       #002E6E; /* Corporate Navy Blue from Logo */
  --brand-light: #FF7A00; /* Safety Orange from Logo */
  --brand-glow:  rgba(255, 122, 0, 0.25);
  --brand-10:    rgba(255, 122, 0, 0.05);
  --brand-20:    rgba(255, 122, 0, 0.12);
  --brand-30:    rgba(255, 122, 0, 0.20);
  --brand-50:    rgba(255, 122, 0, 0.50);

  --accent:      #FF7A00; /* Safety Orange */
  --accent-light:#FFAE42;
  --accent-glow: rgba(255, 122, 0, 0.25);

  --black:       #071A3D; /* Deep Navy as Black fallback */
  --dark:        #051329;
  --dark-2:      #030C1C;
  --dark-3:      #0B1E3F;
  --dark-4:      #0C234B;
  --dark-5:      #0A1D3A;

  --white:       #FFFFFF;
  --white-10:    rgba(255,255,255,0.06);
  --white-20:    rgba(255,255,255,0.12);
  --white-40:    rgba(255,255,255,0.25);
  --white-50:    rgba(255,255,255,0.35);
  --white-60:    rgba(255,255,255,0.50);

  --neutral-50:  #F7F9FC; /* Premium light grey background */
  --neutral-100: #F1F5F9;
  --neutral-200: #E2E8F0;
  --neutral-300: #CBD5E1;
  --neutral-400: #94A3B8;
  --neutral-500: #64748B;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --green:       #10B981;
  --green-glow:  rgba(16, 185, 129, 0.8);
  --amber:       #F59E0B;
  --red:         #EF4444;

  --text-primary:   #071A3D; /* Deep Navy */
  --text-secondary: #3E4D68;
  --text-muted:     #6B7C97;

  --font-sans:   'Poppins', system-ui, sans-serif;
  --font-mono:   'Poppins', system-ui, sans-serif;

  --transition:  200ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-brand: 0 0 20px var(--brand-glow);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.5);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--black);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

::selection {
  background-color: var(--brand);
  color: var(--white);
}::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--neutral-100); }
::-webkit-scrollbar-thumb { background: var(--brand-50); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ============================================
   TOP INFO BAR
 ============================================ */
.top-info-bar {
  display: none !important;
}

.top-info-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.5rem;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .top-info-inner {
    padding: 0 3rem;
  }
}

.top-info-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-info-link {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color var(--transition);
}

.top-info-link:hover { color: var(--brand); }

.top-info-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--brand);
}

.top-info-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .top-info-text {
    display: flex;
  }
}

.top-info-text svg {
  width: 11px;
  height: 11px;
  color: var(--brand);
}

.top-info-badge {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--brand-30);
  border-radius: var(--radius-full);
  background-color: var(--brand-10);
  white-space: nowrap;
}


/* ============================================
   NAVBAR
 ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--white);
}

.navbar .nav-link-underline {
  background-color: var(--white);
}

/* Scrolled Navbar Style */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85); /* Premium Light Glassmorphism */
  border-bottom: 1px solid rgba(7, 26, 61, 0.08);
  box-shadow: 0 10px 30px rgba(7, 26, 61, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--brand-light);
}

.navbar.scrolled .nav-link-underline {
  background-color: var(--brand-light);
}

.navbar .btn-primary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.navbar .btn-primary:hover {
  background-color: var(--white);
  color: var(--black);
}

.navbar.scrolled .btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.navbar.scrolled .btn-primary:hover {
  background-color: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--white);
}

.navbar-top-bar {
  height: 2px;
  background-color: var(--brand);
}

.navbar-inner {
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .navbar-inner {
    padding: 0 3rem;
    height: 4.5rem;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  position: relative;
  z-index: 50;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 4px 15px rgba(7, 26, 61, 0.05);
  transition: all var(--transition);
}

@media (min-width: 1024px) {
  .navbar-brand {
    margin-left: 3rem;
  }
}

.navbar-logo-img {
  height: 54px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition-spring);
}

.navbar-brand:hover .navbar-logo-img {
  transform: scale(1.04);
}

/* Footer logo */
.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
  mix-blend-mode: multiply;
}


.navbar-brand-dot {
  width: 10px;
  height: 10px;
  background-color: var(--brand);
  transition: transform var(--transition-spring);
  flex-shrink: 0;
}

.navbar-brand:hover .navbar-brand-dot {
  transform: scale(1.8);
}

.navbar-brand-text {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.navbar-brand-text span {
  color: var(--white-40);
  margin-left: 2px;
}

.navbar-links {
  display: none;
  align-items: center;
  height: 100%;
}

@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.nav-chevron {
  font-size: 0.85em;
  margin-left: 2px;
}

@media (min-width: 1280px) {
  .nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 13px;
    letter-spacing: 0.13em;
  }
}

.nav-link:hover {
  color: var(--brand);
}

.nav-link-underline {
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.nav-link:hover .nav-link-underline,
.nav-link.active .nav-link-underline {
  transform: scaleX(1);
}

.nav-link.active { color: var(--brand); }

.nav-divider {
  width: 1px;
  height: 1.5rem;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 0 1.5rem;
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .navbar-cta {
    display: flex;
  }
}

.btn-ghost {
  padding: 0.625rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neutral-300);
  transition: color var(--transition);
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-primary {

  position: relative;
  overflow: hidden;
  padding: 0.625rem 1.5rem;
  background-color: var(--brand);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  box-shadow: var(--shadow-brand);
}

.btn-primary-shine {
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.btn-primary:hover .btn-primary-shine {
  transform: translateY(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.navbar-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .navbar-mobile {
    display: none;
  }
}

.btn-mobile-cta {
  padding: 0.5rem 0.875rem;
  background-color: var(--brand);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background-color var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-mobile-cta:hover {
  background-color: var(--brand-light);
}

.hamburger {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 50;
  background: none;
  border: none;
  padding: 0;
}.hamburger-line {
  display: block;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-slow);
}

.hamburger-line:nth-child(1) { width: 1.75rem; }
.hamburger-line:nth-child(2) { width: 1.25rem; background-color: var(--brand-light); }
.hamburger-line:nth-child(3) { width: 0.75rem; }

.navbar.scrolled .hamburger-line {
  background-color: var(--text-primary);
}

.navbar.scrolled .hamburger-line:nth-child(2) {
  background-color: var(--brand-light);
}

.hamburger:hover .hamburger-line:nth-child(3) { width: 1.75rem; }

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 1.75rem;
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 1.75rem;
  background-color: var(--text-primary);
}

/* ============================================
   MOBILE MENU
 ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--white);
  /* Premium blueprint grid background + glowing gradient */
  background-image:
    radial-gradient(circle at top right, rgba(14, 94, 255, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-top-bar {
  height: 2px;
  background-color: var(--brand);
  flex-shrink: 0;
}

.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6rem 1.75rem 2rem;
  overflow-y: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav-item {
  display: flex;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.mobile-menu.is-open .mobile-nav-item { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open .mobile-nav-item:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-nav-item:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-nav-item:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-nav-item:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-nav-item:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-nav-item:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.is-open .mobile-nav-item:nth-child(7) { transition-delay: 0.35s; }

.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  padding: 0.8rem 0;
  color: var(--text-primary);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-spring);
  width: 100%;
}

.mobile-nav-link:hover {
  border-bottom-color: var(--brand);
  padding-left: 0.5rem;
}

.mobile-nav-num {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--neutral-400);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--transition);
}

.mobile-nav-link:hover .mobile-nav-num {
  color: var(--brand);
}

.mobile-nav-text {
  font-size: clamp(1.35rem, 5.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  text-transform: uppercase;
  transition: color var(--transition);
}

.mobile-nav-link:hover .mobile-nav-text {
  color: var(--brand);
}

/* Regional Portals in Mobile Menu */
.mobile-menu-portals {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.portals-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neutral-500);
  margin-bottom: 0.875rem;
}

.portals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.portal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all var(--transition-spring);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.portal-item:hover {
  border-color: var(--brand);
  background-color: rgba(14, 94, 255, 0.06);
  transform: translateY(-2px);
}

.portal-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.portal-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.portal-item:hover .portal-name {
  color: var(--brand);
}

.mobile-menu-footer {
  padding: 0 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-shrink: 0;
}

.mobile-footer-info {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neutral-500);
  line-height: 1.6;
}

.mobile-footer-right {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neutral-500);
  line-height: 1.6;
}

.mobile-footer-brand { color: var(--brand-50); }

/* ============================================
   HERO SECTION (Clean Light Split Layout)
============================================ */
/* ============================================
   HERO SECTION (Dark Tech Blueprint Theme)
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  padding-top: calc(4rem + 3rem); /* increased padding top on mobile */
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(2.5rem + 4.5rem + 4.5rem); /* increased padding top on desktop */
  }
}

.hero-light-bg {
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-light {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(14, 94, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 0 3rem;
  }
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.hero-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-subtitle {
  font-size: clamp(0.7rem, 1vw, 0.8125rem);
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  padding: 0.375rem 1rem;
  background-color: var(--brand-10);
  border-radius: var(--radius-full);
  display: inline-block;
  border: 1px solid rgba(14, 94, 255, 0.25);
}

.hero-heading {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-heading .text-bold {
  color: var(--brand-light);
  font-weight: 900;
  display: inline-block;
}

.hero-description {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-stats-row {
    gap: 1.5rem;
  }
}

.hero-stat-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 !important; /* Zero border-radius */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hero-stat-col:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 12px 30px rgba(14, 94, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
}

.hero-stat-number {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  font-weight: 500;
  color: var(--neutral-400);
  line-height: 1.45;
}

/* Regional Sites Selector */
.hero-region-selector {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  margin-bottom: 2.5rem;
}

.region-selector-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neutral-500);
  margin-bottom: 1.25rem;
}

.region-buttons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .region-buttons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.region-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  transition: all var(--transition-spring);
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.region-btn:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  background-color: var(--brand);
  box-shadow: 0 10px 25px rgba(14, 94, 255, 0.25);
}

.region-btn-left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.flag-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.flag-svg {
  display: block;
  object-fit: cover;
}

.region-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.region-country {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.region-btn:hover .region-country {
  color: var(--white);
}

.region-status {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-500);
  line-height: 1;
}

.region-btn:hover .region-status {
  color: rgba(255, 255, 255, 0.75);
}

.region-arrow-icon {
  color: var(--neutral-600);
  transition: transform var(--transition-spring), color var(--transition);
}

.region-btn:hover .region-arrow-icon {
  color: var(--white);
  transform: translateX(4px);
}

.hero-buttons-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 576px) {
  .hero-buttons-wrap {
    flex-direction: row;
    align-items: center;
  }
}

.hero-btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0 !important; /* Zero border-radius */
  box-shadow: 0 4px 14px var(--brand-glow);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.hero-btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
  color: var(--white);
}

.hero-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform var(--transition);
}

.hero-btn-phone:hover {
  transform: translateX(4px);
}

.phone-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  transition: background-color var(--transition), color var(--transition);
}

.hero-btn-phone:hover .phone-icon-box {
  background-color: var(--brand-10);
  color: var(--brand);
}

.phone-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.phone-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--neutral-500);
  letter-spacing: 0.08em;
  line-height: 1;
}

.phone-num-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--transition);
}

.hero-btn-phone:hover .phone-num-text {
  color: var(--brand);
}

.hero-col-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-product-img-wrap {
  width: 100%;
  max-width: 520px;
  position: relative;
  animation: hero-product-float 6s ease-in-out infinite;
}

.hero-product-img-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(14, 94, 255, 0.2) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
}

.hero-product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 12px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 80%);
  z-index: -1;
  pointer-events: none;
  animation: hero-shadow-pulse 6s ease-in-out infinite;
}

.hero-product-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5)) drop-shadow(0 5px 12px rgba(14, 94, 255, 0.2));
}

/* ============================================
   ABOUT US SECTION (Dark Corporate Theme)
============================================ */
.about-section {
  position: relative;
  background: var(--white);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(7, 26, 61, 0.04);
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .about-inner {
    padding: 0 3rem;
    padding-bottom: 5rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-col-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 0 !important; /* Zero border-radius */
  overflow: visible;
}

.about-showcase-img {
  width: 100%;
  height: auto;
  border-radius: 0 !important; /* Zero border-radius */
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-slow);
}

.about-image-wrap:hover .about-showcase-img {
  transform: scale(1.02);
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: 0 !important; /* Zero border-radius badge */
  box-shadow: 0 15px 30px rgba(0, 82, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 5;
  animation: float-badge 6s ease-in-out infinite alternate;
}

.about-col-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-tag {
  font-size: clamp(0.7rem, 1vw, 0.8125rem);
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  padding: 0.375rem 1rem;
  background-color: var(--brand-10);
  border-radius: var(--radius-full);
  display: inline-block;
  border: 1px solid rgba(14, 94, 255, 0.25);
}

.about-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-heading .highlight {
  color: var(--accent);
  font-weight: 800;
}

.about-paragraph-lead {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-paragraph {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 576px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon-box {
  width: 2rem;
  height: 2rem;
  background-color: var(--brand-10);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition), color var(--transition);
}

.about-value-item:hover .value-icon-box {
  background-color: var(--brand);
  color: var(--white);
}

.value-text-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.value-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.value-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
}


/* ============================================
   SERVICES SECTION (Clean Light Asymmetrical Grid Theme)
============================================ */
.services-section {
  position: relative;
  background-color: #F9FAFB;
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .services-inner {
    padding: 0 3rem;
  }
}

.services-header {
  max-width: 44rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-tag {
  font-size: clamp(0.7rem, 1vw, 0.8125rem);
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  padding: 0.375rem 1rem;
  background-color: var(--brand-10);
  border-radius: var(--radius-full);
  display: inline-block;
  border: 1px solid rgba(14, 94, 255, 0.12);
}

.services-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.services-heading .highlight {
  color: var(--accent);
  font-weight: 800;
}

.services-subtext {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-600);
}

/* Asymmetrical Grid System (NO BORDER RADIUS) */
.services-masonry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .services-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .services-masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
  }
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-200);
  border-top: 4px solid transparent;
  border-radius: 0 !important; /* CRITICAL: Sharp corners / No border radius */
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, border-top-color 0.3s ease;
  position: relative;
  z-index: 5;
}

.service-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--brand);
  border-color: rgba(0, 82, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 82, 255, 0.06);
}

/* Card Sizing configurations */
@media (min-width: 1024px) {
  .service-card.size-large {
    grid-column: span 2;
  }
  .service-card.size-medium {
    grid-column: span 1;
  }
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

@media (min-width: 576px) {
  .service-card.size-large .service-card-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* Icon box - Sharp corners */
.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand-10);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0 !important; /* No border radius */
  border: 1px solid rgba(0, 82, 255, 0.15);
  transition: background-color var(--transition), color var(--transition);
}

.service-card:hover .service-icon-wrap {
  background-color: var(--brand);
  color: var(--white);
}

.service-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  height: 100%;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0;
  padding: 0;
}

.service-features li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-500);
  list-style: none;
}

.service-card-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
  margin-top: auto;
  display: inline-block;
  padding-top: 0.5rem;
}

.service-card-link:hover {
  color: var(--brand-light);
  transform: translateX(4px);
}


/* ============================================
   TICKER MARQUEE
============================================ */
.ticker-wrap {
  background-color: var(--brand);
  padding: 0.875rem 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  white-space: nowrap;
}

.ticker-sep {
  color: rgba(255,255,255,0.4);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION TRANSITION
============================================ */
.section-transition {
  position: relative;
  z-index: 20;
  background-color: var(--dark);
  margin-top: -1px;
  padding-top: 1.25rem;
}

.transition-peak {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -59px);
  width: 300px;
  height: 60px;
  pointer-events: none;
  overflow: hidden;
}

.transition-peak svg {
  width: 100%;
  height: 100%;
}

.transition-system-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.pulse-green {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  animation: pulse-anim 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--green-glow);
}

@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.9); }
}

.system-badge-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neutral-400);
}

.system-badge-text .brand-accent { color: var(--brand); }

/* ============================================
   GCC NETWORK / BRANCHES SECTION (Light Gradient)
============================================ */
.workflow-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 50%, #E2E8F0 100%);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.workflow-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.workflow-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .workflow-inner {
    padding: 0 3rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand);
  padding: 0.5rem 1rem;
  border: 1px solid var(--brand-30);
  border-radius: var(--radius-full);
  background-color: var(--brand-10);
}

.section-heading {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text-primary);
}

.section-heading .muted {
  color: var(--text-secondary);
}

.section-subtext {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* 3-Column Branches Grid */
.branches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .branches-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Premium Branch Card styling */
.branch-card {
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-slow);
}

.branch-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(14, 94, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.95);
}

/* Card Header */
.branch-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.branch-flag-box {
  font-size: 2.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.branch-name {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
  text-transform: uppercase;
}

.branch-badge {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
  white-space: nowrap;
}

.hq-badge {
  background-color: rgba(14, 94, 255, 0.08);
  color: var(--brand);
  border: 1px solid rgba(14, 94, 255, 0.15);
}

.sales-badge {
  background-color: rgba(34, 197, 94, 0.08);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.ops-badge {
  background-color: rgba(245, 158, 11, 0.08);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.branch-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.branch-card-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

/* Offices List */
.branch-offices-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1; /* Pushes footer to bottom */
  margin-bottom: 2rem;
}

.branch-office-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.branch-office-icon {
  color: var(--brand);
  font-size: 0.95rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.branch-office-title {
  display: block;
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.branch-office-addr {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Card Footer & Contacts */
.branch-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
}

.branch-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all var(--transition);
}

.branch-contact-btn.btn-phone {
  background-color: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
}

.branch-contact-btn.btn-phone:hover {
  background-color: var(--brand-light);
  border-color: var(--brand-light);
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}

.branch-contact-btn.btn-email {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.branch-contact-btn.btn-email:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Coverage Badge details */
.always-on-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  position: relative;
  z-index: 20;
}

.always-on-badge {
  position: relative;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: border-color var(--transition-slow);
  cursor: default;
}

.always-on-badge:hover {
  border-color: var(--brand-50);
}

.always-on-badge:hover .always-on-text {
  color: var(--brand);
}

.always-on-badge-glow {
  position: absolute;
  inset: 0;
  background: var(--brand-20);
  filter: blur(2rem);
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: var(--radius-full);
}

.always-on-badge:hover .always-on-badge-glow {
  opacity: 1;
}

.always-on-badge-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.always-on-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.always-on-text {
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  transition: color var(--transition-slow);
  line-height: 1;
}

/* ============================================
   WHY US SECTION
============================================ */
.why-section {
  background: linear-gradient(135deg, rgba(0, 46, 110, 0.03) 0%, #ffffff 50%, rgba(255, 122, 0, 0.05) 100%);
  color: var(--text-primary);
  position: relative;
  z-index: 30;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  border-top: 1px solid rgba(14, 94, 255, 0.1);
}

@media (min-width: 1024px) {
  .why-section {
    border-radius: 0;
  }
}

.why-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 1.5rem;
  overflow: visible;
}

@media (min-width: 1024px) {
  .why-inner {
    padding: 3rem 3rem;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 6rem;
  align-items: start;
  overflow: visible;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.why-left {
  position: relative;
}

@media (min-width: 1024px) {
  .why-left {
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
    align-self: start;
    height: fit-content;
  }
}

.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.why-tag-dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand);
  flex-shrink: 0;
}

.why-tag-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
}

.why-heading {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

.why-heading .accent {
  color: var(--accent);
}

.why-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  max-width: 32rem;
  letter-spacing: -0.01em;
}

.status-card {
  border: 1px solid var(--black);
  background-color: var(--white);
  margin-top: 4rem;
  display: none;
  transition: box-shadow var(--transition-slow);
}

@media (min-width: 1024px) {
  .status-card {
    display: block;
  }
}

.status-card:hover {
  box-shadow: 8px 8px 0 0 var(--black);
}

.status-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--black);
  background-color: var(--neutral-100);
}

.status-card-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
}

.status-online {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green);
}

.status-online-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #15803D;
}

.status-card-body {
  padding: 0.5rem 1.5rem 1.5rem;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
}

.status-row:last-child { border-bottom: none; }

.status-row.is-active-step {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background-color: rgba(14, 94, 255, 0.04);
  border-radius: var(--radius-sm);
}

.status-row.is-active-step .status-name {
  color: var(--brand);
}

.status-row.is-active-step .status-icon-box {
  background-color: var(--brand);
  transform: scale(1.05);
  transition: all var(--transition);
}

.status-row.is-active-step .status-icon-box svg {
  color: var(--white);
}

.status-row-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-icon-box {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-100);
  border-radius: var(--radius-sm);
}

.status-icon-box svg {
  width: 1rem;
  height: 1rem;
  color: var(--neutral-600);
}

.status-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-500);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green);
  animation: pulse-anim 2s ease infinite;
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--black);
}

/* Why right column */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-card {
  background-color: var(--white);
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(40px);
  box-shadow: 0 10px 30px rgba(7, 26, 61, 0.02);
}

.compare-card.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.compare-card:nth-child(2).is-visible { transition-delay: 0.1s; }
.compare-card:nth-child(3).is-visible { transition-delay: 0.2s; }

.compare-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(14, 94, 255, 0.35);
  box-shadow: 0 20px 40px rgba(7, 26, 61, 0.08);
  background-color: var(--white);
}

.compare-card.is-brand-card {
  border-color: rgba(14, 94, 255, 0.2);
  background-color: var(--brand);
}

.compare-card.is-brand-card:hover {
  border-color: var(--brand-light);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.2);
  background-color: var(--brand);
}

.compare-card-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  border: 1px solid rgba(14, 94, 255, 0.2);
  background: rgba(14, 94, 255, 0.05);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.compare-card-tag.brand-tag {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.compare-card-title {
  font-size: 1.4rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.is-brand-card .compare-card-title {
  color: var(--white);
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color 0.4s ease;
}

.is-brand-card .compare-item {
  color: rgba(255, 255, 255, 0.9);
}

.compare-card:hover .compare-item {
  color: var(--text-primary);
}

.is-brand-card:hover .compare-item {
  color: var(--white);
}

.compare-icon {
  font-size: 0.75rem;
  flex-shrink: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.compare-icon.good {
  color: var(--brand);
  background: rgba(14, 94, 255, 0.08);
}

.is-brand-card .compare-icon.good {
  color: var(--brand);
  background: var(--white);
}
.compare-icon.bad      { color: var(--red); }
.compare-icon.brand-ic { color: var(--brand); }

.service-image-thumbnail {
  margin-top: 1.5rem;
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 130px;
  position: relative;
  transition: border-color var(--transition);
}

.service-image-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.compare-card:hover .service-image-thumbnail img {
  transform: scale(1.05);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .stats-inner {
    padding: 0 3rem;
  }
}

.stats-top {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.stats-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.stats-heading .accent { color: var(--brand); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  border-left: 2px solid var(--brand);
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(2).is-visible { transition-delay: 0.1s; }
.stat-item:nth-child(3).is-visible { transition-delay: 0.2s; }
.stat-item:nth-child(4).is-visible { transition-delay: 0.3s; }

.stat-num {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-num .stat-accent { color: var(--brand); }

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}




/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--neutral-50);
  color: var(--text-primary);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-glow-left {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--brand-20) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 5s ease infinite;
}

.cta-glow-right {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--brand-10) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 5s ease infinite 1.5s;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-heading {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-heading .accent { color: var(--brand); }

.cta-subtext {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-cta-primary {
  position: relative;
  overflow: hidden;
  padding: 1rem 2.5rem;
  background-color: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-cta-primary:hover {
  box-shadow: var(--shadow-brand), 0 8px 30px rgba(100,0,255,0.4);
  transform: translateY(-2px);
}

.btn-cta-primary-shine {
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.btn-cta-primary:hover .btn-cta-primary-shine {
  transform: translateY(0);
}

.btn-cta-primary-text { position: relative; z-index: 1; }

.btn-cta-secondary {
  padding: 1rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-block;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.btn-cta-secondary:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background-color: rgba(0, 0, 0, 0.04);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
  color: var(--text-primary);
  padding: 3rem 0 1rem;
  position: relative;
}

.footer-top-bar {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  margin-bottom: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 0 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand-dot {
  width: 10px;
  height: 10px;
  background-color: var(--brand);
}

.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-brand-name span { color: var(--text-muted); }

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--brand);
  color: var(--brand);
  background-color: var(--brand-10);
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
}

.footer-link-arrow {
  color: var(--brand);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
  font-size: 0.75rem;
  line-height: 1;
}

.footer-link:hover {
  color: var(--brand);
}

.footer-link:hover .footer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-version {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   SCROLL REVEAL UTILITY
============================================ */
/* ============================================
   SCROLL REVEAL UTILITY
============================================ */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible, .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  will-change: filter, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur.is-visible {
  opacity: 1;
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Delays */
.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }
.reveal-delay-5 { transition-delay: 0.5s !important; }
.reveal-delay-6 { transition-delay: 0.6s !important; }
.reveal-delay-7 { transition-delay: 0.7s !important; }
.reveal-delay-8 { transition-delay: 0.8s !important; }

/* Special transitions for cards with hover animations */
.testimonial-card.reveal-up, .testimonial-card.reveal-scale,
.compare-card.reveal-right, .compare-card.reveal-left {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

/* ============================================
   UTILITY
============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.text-brand { color: var(--brand); }

/* ============================================
   PROJECT GALLERY SECTION
============================================ */
.gallery-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid rgba(7, 26, 61, 0.04);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .gallery-inner {
    padding: 0 3rem;
  }
}

.gallery-header {
  padding: 3rem;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 1rem;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.375rem 0.875rem;
  background-color: var(--brand-10);
  border-radius: var(--radius-full);
  border: 1px solid rgba(14, 94, 255, 0.12);
  margin-bottom: 1.25rem;
}

.gallery-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand);
  position: relative;
  display: inline-block;
}

.gallery-tag-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--brand);
  animation: tag-pulse 2s infinite ease-in-out;
  opacity: 0.4;
}

@keyframes tag-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.gallery-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.gallery-title .highlight {
  color: var(--accent);
  font-weight: 800;
}

.gallery-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-secondary);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all var(--transition);
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  background: var(--white);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  border-color: var(--brand-30);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* 3:2 Aspect Ratio */
  overflow: hidden;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: var(--white);
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-item-category {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(14, 94, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.625rem 0.25rem 1.25rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  font-weight: 700;
  width: fit-content;
  white-space: nowrap;
}

.gallery-item-category::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brand);
}

.gallery-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.gallery-item-location {
  font-size: 0.8125rem;
  color: var(--neutral-350);
}

/* ── Gallery Slider ── */
.gallery-slider-wrapper {
  position: relative;
  width: 100%;
}

.gallery-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 0.5rem;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.gallery-slider-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.gallery-slider-track .gallery-item {
  flex: 0 0 calc(33.333% - 1rem); /* 3 items per screen on desktop */
  scroll-snap-align: start;
}

@media (max-width: 992px) {
  .gallery-slider-track .gallery-item {
    flex: 0 0 calc(50% - 0.75rem); /* 2 items per screen on tablet */
  }
}

@media (max-width: 600px) {
  .gallery-slider-track .gallery-item {
    flex: 0 0 100%; /* 1 item per screen on mobile */
  }
}

/* Slider Nav Buttons */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(7, 26, 61, 0.08);
  box-shadow: 0 4px 15px rgba(7, 26, 61, 0.08);
  color: var(--brand);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-nav-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(14, 94, 255, 0.3);
}

.gallery-prev {
  left: -25px;
}

.gallery-next {
  right: -25px;
}

/* Adjust wrapper constraints for buttons overlay */
@media (max-width: 1440px) {
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
}

@media (max-width: 768px) {
  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
  background: var(--neutral-50);
  border-top: 1px solid rgba(7, 26, 61, 0.04);overflow: hidden;
}

.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .testimonials-inner {
    padding: 0 3rem;
  }
}

.testimonials-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 5rem;
}

.testimonials-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.375rem 1rem;
  background-color: var(--brand-10);
  border-radius: var(--radius-full);
  border: 1px solid rgba(14, 94, 255, 0.12);
  margin-bottom: 1.25rem;
}

.testimonials-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.testimonials-title .highlight {
  color: var(--accent);
  font-weight: 800;
}

.testimonials-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  background: var(--white);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(14, 94, 255, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #FBBF24; /* Star gold */
}

.testimonial-text {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
}

.testimonial-avatar-frame {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand-10);
  border: 1px solid var(--brand-30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.9375rem;
  border-radius: 50%;
}

.testimonial-avatar-frame--has-image {
  background-image: var(--avatar-url);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
  text-indent: -9999px;
}

.testimonial-client-info {
  display: flex;
  flex-direction: column;
}

.testimonial-client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-client-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.testimonial-verified-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  color: #15803D; /* Green */
  background-color: rgba(22, 163, 74, 0.1);
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-full);
}

/* ============================================
   CONTACT US SECTION
============================================ */
.contact-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
  color: var(--text-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .contact-inner {
    padding: 0 3rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
  }
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--brand-30);
  border-radius: var(--radius-full);
  background-color: var(--brand-10);
  margin-bottom: 2rem;
}

.contact-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.contact-heading .accent {
  color: var(--accent);
  font-weight: 900;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 32rem;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.office-card {
  border-left: 2px solid var(--brand);
  padding-left: 1.5rem;
}

.office-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.office-detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.office-detail a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.office-detail a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-right {
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem;
  position: relative;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-500);
}

.form-input, .form-select, .form-textarea {
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  transition: all var(--transition);
  border-radius: var(--radius-sm) !important;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(14, 94, 255, 0.15);
}

.form-select option {
  background-color: var(--white);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: #002e6e;
  color: var(--white);
  border: none;
  padding: 1.125rem 2rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 1rem;
  border-radius: var(--radius-sm) !important;
  text-align: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ============================================
   HERO INTERACTIVE SLIDER CARD
============================================ */
.hero-slider-card {
  width: 100%;
  max-width: 520px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.slider-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.02);
}

.slider-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-header-dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand); /* Orange */
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.slider-header-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--neutral-400);
  letter-spacing: 0.1em;
}

.slider-card-index {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--brand); /* Orange */
}

/* Slider Track Wrapper */
.hero-slider-track-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.15);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-image-box {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-slide-img {
  transform: scale(1.05);
}

.hero-slide-caption {
  padding: 1.5rem;
  background-color: rgba(11, 15, 25, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slide-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.hero-slide-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.spec-row span {
  font-family: var(--font-mono);
  color: var(--neutral-500);
}

.spec-row strong {
  color: var(--neutral-200);
  font-weight: 600;
}

/* Slider Controls */
.hero-slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.01);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 24px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.slider-dot.active {
  background-color: var(--brand); /* Orange */
  box-shadow: 0 0 8px rgba(14, 94, 255, 0.5);
}

.slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.slider-arrow-btn {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-arrow-btn:hover {
  background-color: var(--brand); /* Orange */
  border-color: var(--brand);
  color: var(--white);
  box-shadow: 0 0 10px rgba(14, 94, 255, 0.3);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
  background-color: var(--dark);
  color: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .stats-inner {
    padding: 0 3rem;
  }
}

.stats-top {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-heading {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-top: 1rem;
}

.stats-heading .accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem 2rem;
  text-align: center;
  border-radius: 0 !important; /* Zero border-radius */
  transition: all var(--transition);
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 30px rgba(14, 94, 255, 0.15);
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--brand); /* Orange */
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-400);
}

/* ============================================
   HERO INSTANT FORM CARD
============================================ */
.hero-form-card {
  width: 100%;
  max-width: 440px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-header-dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand); /* Orange */
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.form-header-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-instant-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Icons within inputs */
.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-500);
  pointer-events: none;
  transition: color var(--transition);
}

.input-with-icon .form-input,
.input-with-icon .form-select {
  padding-left: 2.75rem !important;
  width: 100%;
}

.input-with-icon .form-input:focus ~ .input-icon,
.input-with-icon .form-select:focus ~ .input-icon {
  color: var(--brand);
}

.form-header-status {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  color: #22C55E; /* Green */
  letter-spacing: 0.05em;
}

.form-note {
  font-size: 0.6875rem;
  text-align: center;
  color: var(--neutral-500);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Trust row & badges */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
  width: 100%;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.trust-badge svg.orange-check {
  color: var(--brand); /* Orange */
  flex-shrink: 0;
}

/* Glowing matrix fields */
.hero-glow-orange-left {
  position: absolute;
  top: 30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 94, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-glow-orange-right {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 94, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* ============================================
   SUCCESS TOAST NOTIFICATION
============================================ */
.success-alert-toast {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background-color: #0b0f19;
  border: 1px solid var(--brand); /* Glowing orange outline */
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(14, 94, 255, 0.25);
  animation: slide-down 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border-radius: 0 !important;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-icon {
  color: #22c55e; /* Green check */
  flex-shrink: 0;
}

.toast-message {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
}

.toast-close-btn {
  background: none;
  border: none;
  color: var(--neutral-400);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.toast-close-btn:hover {
  color: var(--white);
}

/* ============================================
   SERVICE CARD DETAIL BUTTONS
   ============================================ */
.service-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid rgba(0, 46, 110, 0.2);
  border-radius: 8px;
  color: var(--brand) !important;
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  text-decoration: none;
}

.compare-card:hover .service-details-btn {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
  box-shadow: 0 10px 20px rgba(0, 46, 110, 0.15);
}

.is-brand-card .service-details-btn {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white) !important;
}

.is-brand-card:hover .service-details-btn {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@keyframes selectPulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 94, 255, 0.4); border-color: var(--brand); }
  50% { box-shadow: 0 0 0 8px rgba(14, 94, 255, 0.15); border-color: var(--brand); }
  100% { box-shadow: 0 0 0 0 rgba(14, 94, 255, 0); }
}

.form-select.highlight-pulse {
  animation: selectPulse 0.8s ease-in-out 2;
  outline: none;
}

/* ============================================
   FOOTER CONTACT BOXED ICON STYLING
   ============================================ */
.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-contact-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-500);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
  flex-shrink: 0;
  margin-right: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Hover effects */
.footer-link:hover .footer-contact-icon-box,
.footer-contact-item span.footer-link:hover .footer-contact-icon-box {
  border-color: var(--brand);
  color: var(--brand);
  background-color: var(--brand-10);
}

/* ============================================================
   AWARDS STYLE REDESIGN CUSTOM STYLING
============================================================ */

/* Navbar Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 340px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(7, 26, 61, 0.15);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-bottom: 0.25rem;
}

.dropdown-menu-item:last-child {
  margin-bottom: 0;
}

.dropdown-menu-item:hover {
  background-color: rgba(14, 94, 255, 0.06);
}

.dropdown-item-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.dropdown-item-details {
  display: flex;
  flex-direction: column;
}

.dropdown-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.navbar:not(.scrolled) .nav-chevron {
  color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .nav-chevron {
  color: var(--text-secondary);
}

/* 1. Cinematic Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 26, 61, 0.9) 0%, rgba(5, 19, 41, 0.75) 100%);
  z-index: 2;
}

.hero-inner-cinematic {
  position: relative;
  z-index: 3;
  max-width: 960px;
  padding: 0 2rem;
  margin-top: 4rem;
}

.hero-tag-badge {
  background-color: var(--brand-10);
  border: 1px solid rgba(14, 94, 255, 0.3);
  color: var(--brand-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-title-cinematic {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.accent-gradient {
  color: var(--accent);
}

.hero-desc-cinematic {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.hero-actions-cinematic {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 640px) {
  .hero-actions-cinematic {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.btn-group-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--brand);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(14, 94, 255, 0.35);
}

.btn-group-primary:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
}

.btn-group-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-group-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-cue-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.scroll-cue-link:hover {
  color: var(--white);
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ---- Global Highlight Color ---- */
.highlight {
  color: var(--accent);
  font-weight: 800;
}

/* ---- Restored Showcase Headers ---- */
.showcase-tag {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.showcase-heading {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.showcase-subtext {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
  line-height: 1.6;
}

/* Light section header override for Industries */
.industries-section .showcase-tag {
  color: var(--brand);
  border: 1px solid rgba(0, 46, 110, 0.15);
  background: rgba(0, 46, 110, 0.04);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

/* ============================================================
   FEATURED COMPANIES — Editorial Split Panel
============================================================ */
.cos-section {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 122, 0, 0.05) 50%, rgba(0, 46, 110, 0.03) 100%);
  position: relative;
  overflow: hidden;
  /* border-top: 4px solid; */
  border-image: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%) 1;
}

.cos-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(14, 94, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cos-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ── Header ── */
.cos-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cos-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(14, 94, 255, 0.2);
  background: rgba(14, 94, 255, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.cos-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cos-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 1.25rem;
}

/* ── Grid Layout ── */
.cos-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .cos-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Stack (right column) ── */
.cos-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── Base Card ── */
.cos-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(0, 46, 110, 0.12);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s ease;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 46, 110, 0.05);
}

.cos-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 46, 110, 0.12);
}

/* ── Photo Background ── */
.cos-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}

.cos-card--uae .cos-card-photo {
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1600');
}
.cos-card--ksa .cos-card-photo {
  background-image: url('https://images.unsplash.com/photo-1597466765990-64ad1c35dafc?q=80&w=1200');
}
.cos-card--oman .cos-card-photo {
  background-image: url('https://images.unsplash.com/photo-1618335829737-2228915674e0?q=80&w=1200');
}

.cos-card:hover .cos-card-photo {
  transform: scale(1.06);
}

/* ── Gradient Scrim ── */
.cos-card-scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 19, 41, 0.25); /* Very soft dark vignette by default */
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}

.cos-card:hover .cos-card-scrim {
  background: rgba(5, 19, 41, 0.05); /* Overlay disappears to reveal image on hover */
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

/* ── Card Body (content layer) ── */
.cos-card-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  background: rgba(5, 19, 41, 0.55); /* Premium Glassmorphic Card */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cos-card:hover .cos-card-body {
  background: rgba(5, 19, 41, 0.7); /* Enhance contrast on hover */
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transform: scale(1.01);
}

/* Feature card (UAE) is taller */
.cos-card--feature {
  min-height: 600px;
}

.cos-card--ksa,
.cos-card--oman {
  min-height: 290px;
}

/* ── Card Top: Flag + Badge ── */
.cos-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cos-flag {
  font-size: 1.6rem;
  line-height: 1;
}

.cos-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: none;
}

.cos-badge--uae {
  color: #030C1C;
  background: #00C4FF;
}

.cos-badge--ksa {
  color: #ffffff;
  background: #10B981;
}

.cos-badge--oman {
  color: #ffffff;
  background: #FF8A00;
}

/* ── Card Mid: Name + City ── */
.cos-card-mid {
  margin-bottom: 1.25rem;
}

.cos-card-country {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.cos-card-name {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.cos-card-city {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.cos-card-city i {
  margin-right: 0.35rem;
  color: var(--accent-light);
}

/* ── Card Bottom: Desc + Chips + CTA ── */
.cos-card-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}

.cos-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* ── Chips ── */
.cos-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.cos-chip {
  font-size: 0.68rem;
  font-weight: 700;
  color: #030C1C;
  background: var(--white);
  border: none;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
}

.cos-chip i {
  margin-right: 0.35rem;
  color: var(--accent);
}

/* ── CTA Link ── */
.cos-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  color: var(--white) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  width: fit-content;
}

.cos-arrow {
  transition: transform 0.3s ease;
}

.cos-cta:hover .cos-arrow {
  transform: translateX(4px);
}

.cos-card--uae .cos-cta {
  background-color: #00c4ff;
  border: 1px solid #0E5EFF;
}
.cos-card--uae .cos-cta:hover {
  background-color: #004DDF;
  border-color: #004DDF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 94, 255, 0.35);
}

.cos-card--ksa .cos-cta {
  background-color: #10B981;
  border: 1px solid #10B981;
}
.cos-card--ksa .cos-cta:hover {
  background-color: #0D9668;
  border-color: #0D9668;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.cos-card--oman .cos-cta {
  background-color: #FF8A00;
  border: 1px solid #FF8A00;
}
.cos-card--oman .cos-cta:hover {
  background-color: #DF7600;
  border-color: #DF7600;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 138, 0, 0.35);
}

/* ── Regional hover border accent ── */
.cos-card--uae:hover  { border-color: rgba(14, 94, 255, 0.25); }
.cos-card--ksa:hover  { border-color: rgba(16, 185, 129, 0.25); }
.cos-card--oman:hover { border-color: rgba(255, 138, 0, 0.25); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .cos-card--feature { min-height: 480px; }
  .cos-card--ksa,
  .cos-card--oman    { min-height: 340px; }
}

/* ============================================================
   GLOBAL PRESENCE — Hub Bento Layout
============================================================ */
.presence-section {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 122, 0, 0.05) 50%, rgba(0, 46, 110, 0.03) 100%);
  position: relative;
  overflow: hidden;
  /* border-top: 4px solid; */
  border-image: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%) 1;
}

/* Subtle radial glow in background */
.presence-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(14, 94, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.presence-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

/* ── Header ── */
.presence-header {
  text-align: center;
  max-width: 760px;
}

.presence-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(14, 94, 255, 0.2);
  background: rgba(14, 94, 255, 0.05);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.presence-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.presence-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 1.25rem;
}

/* ── Stats Row ── */
.presence-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(7, 26, 61, 0.02);
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-radius: 16px;
  padding: 1.5rem 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.presence-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}

.stat-pill-num {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-pill-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.presence-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(7, 26, 61, 0.1);
  flex-shrink: 0;
}

/* ── Hub Bento Grid ── */
.presence-hub-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .presence-hub-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hub-uae {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .presence-hub-grid {
    grid-template-columns: 1fr;
  }
  .hub-uae {
    grid-column: auto;
  }
  .presence-stats-row {
    flex-wrap: wrap;
    padding: 1.5rem;
    gap: 1rem;
  }
  .presence-stat-divider {
    display: none;
  }
  .presence-stat-pill {
    padding: 0 1rem;
  }
}

/* ── Hub Card Base ── */
.hub-card {
  position: relative;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(7, 26, 61, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(7, 26, 61, 0.02);
}

.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 26, 61, 0.08);
}

/* Ambient glow blobs */
.hub-card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(80px);
  top: -60px;
  right: -60px;
  pointer-events: none;
  opacity: 0.15;
  transition: opacity 0.4s ease;
}

.hub-card:hover .hub-card-glow {
  opacity: 0.3;
}

.hub-glow-uae  { background: var(--brand); }
.hub-glow-ksa  { background: #10B981; }
.hub-glow-oman { background: #FF8A00; }

.hub-card-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* UAE is taller as the primary hub */
.hub-uae .hub-card-inner {
  min-height: 340px;
}

.hub-ksa .hub-card-inner,
.hub-oman .hub-card-inner {
  min-height: 300px;
}

/* ── Hub Card Interior ── */
.hub-top-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hub-flag {
  font-size: 1.6rem;
  line-height: 1;
}

.hub-country-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid;
}

.hub-badge-uae {
  color: var(--brand);
  border-color: rgba(14, 94, 255, 0.25);
  background: rgba(14, 94, 255, 0.05);
}

.hub-badge-ksa {
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.05);
}

.hub-badge-oman {
  color: #FF8A00;
  border-color: rgba(255, 138, 0, 0.25);
  background: rgba(255, 138, 0, 0.05);
}

.hub-city {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin: 0 0 0.3rem;
}

.hub-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hub-address {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.45;
}

.hub-address i {
  color: var(--brand);
  margin-top: 2px;
  flex-shrink: 0;
}

.hub-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

/* ── Chips ── */
.hub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hub-chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(7, 26, 61, 0.03);
  border: 1px solid rgba(7, 26, 61, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
}

/* ── Accent bottom line ── */
.hub-accent-line {
  height: 3px;
  border-radius: 2px;
  margin-top: 1.75rem;
  width: 50px;
  transition: width 0.4s ease;
}

.hub-card:hover .hub-accent-line {
  width: 100%;
}

.hub-line-uae  { background: linear-gradient(90deg, var(--brand), transparent); }
.hub-line-ksa  { background: linear-gradient(90deg, #10B981, transparent); }
.hub-line-oman { background: linear-gradient(90deg, #FF8A00, transparent); }

/* ── Hover border glow ── */
.hub-uae:hover  { border-color: rgba(14, 94, 255, 0.25); }
.hub-ksa:hover  { border-color: rgba(16, 185, 129, 0.25); }
.hub-oman:hover { border-color: rgba(255, 138, 0, 0.25); }
/* ============================================================
   GCC INTERACTIVE LEAFLET MAP + GLASSMORPHIC LOCATION CARDS
============================================================ */

.gcc-map-wrapper {
  width: 100%;
}

/* Vertical layout: cards top, map bottom */
.gcc-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}



/* Cards top bar panel */
.gcc-cards-panel {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  width: 100%;
}

/* ── Glassmorphic Location Cards ── */
.location-glass-card {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 4px 24px rgba(7, 26, 61, 0.09), 0 1px 6px rgba(7, 26, 61, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.location-glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(7, 26, 61, 0.14), 0 3px 10px rgba(7, 26, 61, 0.07);
}

/* Card accent top borders */
.lgc-uae  { border-top: 3px solid #0E5EFF; }
.lgc-ksa  { border-top: 3px solid #10B981; }
.lgc-oman { border-top: 3px solid #FF8A00; }

/* ── Card Header ── */
.lgc-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.lgc-flag {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.lgc-country {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.lgc-city {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lgc-badge {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 100px;
}
.lgc-badge-uae {
  background: rgba(14, 94, 255, 0.1);
  color: #0E5EFF;
  border: 1px solid rgba(14, 94, 255, 0.25);
}

.lgc-divider {
  height: 1px;
  background: rgba(7, 26, 61, 0.07);
  margin-bottom: 0.7rem;
}

/* ── Card Detail Rows ── */
.lgc-details {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lgc-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.lgc-row a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.lgc-row a:hover { color: var(--brand); }

/* ── Interactive Office Tabs ── */
.lgc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(7, 26, 61, 0.05);
  padding-bottom: 0.65rem;
}

.lgc-tab-btn {
  background: rgba(7, 26, 61, 0.03);
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lgc-tab-btn:hover {
  background: rgba(7, 26, 61, 0.06);
  border-color: rgba(7, 26, 61, 0.15);
  color: var(--text-primary);
}

.lgc-tab-btn.active {
  color: #fff !important;
}

.lgc-uae .lgc-tab-btn.active {
  background: #0E5EFF;
  border-color: #0E5EFF;
  box-shadow: 0 2px 6px rgba(14, 94, 255, 0.2);
}

.lgc-ksa .lgc-tab-btn.active {
  background: #10B981;
  border-color: #10B981;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.lgc-oman .lgc-tab-btn.active {
  background: #FF8A00;
  border-color: #FF8A00;
  box-shadow: 0 2px 6px rgba(255, 138, 0, 0.2);
}

.lgc-office-details {
  display: none;
  animation: lgcFadeIn 0.3s ease-out forwards;
}

.lgc-office-details.active {
  display: block;
}

@keyframes lgcFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.lgc-icon {
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.lgc-icon-uae  { color: #0E5EFF; }
.lgc-icon-ksa  { color: #10B981; }
.lgc-icon-oman { color: #FF8A00; }



/* ============================================================
   REGIONAL PRESENCE — RESPONSIVE BREAKPOINTS
============================================================ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {

  /* Cards flow side-by-side in a row */
  .gcc-cards-panel {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.85rem;
  }

  .location-glass-card {
    flex: 1 1 0;
    min-width: 0;
  }

  /* Tighten card padding slightly */
  .location-glass-card {
    padding: 1rem 1.1rem;
  }
}

/* ── Small tablet (≤ 768px) ── */
@media (max-width: 768px) {
  /* Section */
  .presence-section {
    padding: 2.5rem 1.25rem;
  }

  .presence-inner {
    gap: 1  rem;
  }

  /* Header */
  .presence-heading {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .presence-subtext {
    font-size: 0.9rem;
  }

  /* Stats row: wrap into a 2×2 grid */
  .presence-stats-row {
    flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    justify-content: center;
  }

  .presence-stat-pill {
    padding: 0 1.25rem;
    flex: 1 1 calc(50% - 1rem);
    align-items: center;
  }

  .presence-stat-divider {
    display: none;
  }

  .stat-pill-num {
    font-size: 1.8rem;
  }



  /* Cards: 3 in a row, compress */
  .gcc-cards-panel {
    gap: 0.75rem;
  }

  .lgc-city {
    font-size: 0.85rem;
  }

  .lgc-row {
    font-size: 0.7rem;
  }

  .lgc-flag {
    font-size: 1.3rem;
  }
}

/* ── Mobile (≤ 600px): single column everything ── */
@media (max-width: 600px) {
  .presence-section {
    padding: 2rem 1rem;
  }

  .presence-inner {
    gap: 1rem;
  }

  .presence-header {
    max-width: 100%;
  }

  /* Stats: 2×2 grid */
  .presence-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .presence-stat-pill {
    padding: 0.75rem 0.5rem;
    align-items: center;
    border: 1px solid rgba(7, 26, 61, 0.08);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    margin: 0.25rem;
  }

  .presence-stat-divider {
    display: none;
  }

  .stat-pill-num {
    font-size: 1.6rem;
  }

  .stat-pill-label {
    font-size: 0.58rem;
    text-align: center;
  }



  /* Cards stack vertically */
  .gcc-cards-panel {
    flex-direction: column;
    gap: 0.75rem;
  }

  .location-glass-card {
    flex: 1 1 100%;
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
  }

  .lgc-flag     { font-size: 1.5rem; }
  .lgc-city     { font-size: 0.9rem; }
  .lgc-row      { font-size: 0.72rem; }
}

/* ── Extra small (≤ 400px) ── */
@media (max-width: 400px) {
  .stat-pill-num { font-size: 1.35rem; }
  .stat-pill-label { font-size: 0.55rem; }


}

/* ============================================================
   PARTNERS & TRUSTED BY SECTION
============================================================ */

.partners-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(14, 94, 255, 0.02) 50%, #ffffff 100%);
  overflow: hidden;
}

.partners-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* ── Section Header ── */
.partners-header {
  text-align: center;
  max-width: 680px;
}

.partners-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(14, 94, 255, 0.2);
  background: rgba(14, 94, 255, 0.05);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.partners-heading {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.partners-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Marquee Wrapper (fade edges) ── */
.partners-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

/* ── Scrolling Track ── */
.partners-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: partners-scroll 32s linear infinite;
  will-change: transform;
}

.partners-marquee-wrapper:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual Logo Pills ── */
.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-radius: 100px;
  white-space: nowrap;
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 10px rgba(7, 26, 61, 0.04);
  user-select: none;
}

.partner-logo-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(14, 94, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(14, 94, 255, 0.1);
}

.partner-logo-icon {
  font-size: 1rem;
  color: var(--brand);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.partner-logo-item:hover .partner-logo-icon {
  opacity: 1;
}

.partner-logo-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

/* ── Partner Logo Image ── */
.partner-logo-img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .partners-section {
    padding: 3rem 1rem;
  }

  .partners-inner {
    gap: 2rem;
  }

  .partners-heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .partners-subtext {
    font-size: 0.9rem;
  }

  .partner-logo-item {
    padding: 0.6rem 1.1rem;
  }

  .partner-logo-item span {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 2.5rem 0.75rem;
  }

  .partners-track {
    gap: 1rem;
    animation-duration: 22s;
  }

  .partner-logo-item {
    padding: 0.5rem 0.85rem;
  }
}

.industries-section {

  padding: 3rem 2rem;
  background: linear-gradient(135deg, #EEF2F6 0%, #FFFFFF 50%, #FFF3E0 100%);
  position: relative;
  /* border-top: 4px solid; */
  border-image: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%) 1;
  overflow: hidden;
}

/* Subtle glowing background accents matching theme (Light Theme) */
.industries-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 46, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.industries-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.industries-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4.5rem;
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  background: #030C1C;
  border: 1px solid rgba(0, 46, 110, 0.15);
  box-shadow: 0 12px 30px rgba(0, 46, 110, 0.05);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(0, 46, 110, 0.15);
}

.industry-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) opacity(0.4);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease, opacity 0.8s ease;
}

.industry-card--3pl .industry-bg {
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=600');
}
.industry-card--manufacturing .industry-bg {
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=600');
}
.industry-card--oil .industry-bg {
  background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?q=80&w=600');
}
.industry-card--construction .industry-bg {
  background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=600');
}
.industry-card--retail .industry-bg {
  background-image: url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?q=80&w=600');
}
.industry-card--healthcare .industry-bg {
  background-image: url('https://images.unsplash.com/photo-1530026405186-ed1ea0ac7a63?q=80&w=600');
}

.industry-card:hover .industry-bg {
  transform: scale(1.08);
  filter: grayscale(10%) opacity(0.7);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 19, 41, 0.95) 0%, rgba(5, 19, 41, 0.6) 50%, rgba(5, 19, 41, 0.1) 80%, transparent 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  transition: background 0.5s ease;
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(5, 19, 41, 0.85) 0%, rgba(5, 19, 41, 0.45) 50%, rgba(5, 19, 41, 0) 80%, transparent 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.industry-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industry-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 196, 255, 0.1);
  border: 1px solid rgba(0, 196, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #00C4FF;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon-box {
  background-color: #00C4FF;
  border-color: #00C4FF;
  color: #030C1C;
  box-shadow: 0 0 20px rgba(0, 196, 255, 0.4);
}

.industry-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
  color: #00C4FF;
}

.industry-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* 5. Process Horizontal Timeline */
.process-timeline-section {
  padding: 3rem 2rem;
  background-color: var(--neutral-50);
  overflow: hidden;
}

.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.timeline-wrapper {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 0;
}

.timeline-progress-bar {
  position: absolute;
  top: calc(2rem + 16px);
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: var(--neutral-200);
  z-index: 1;
  border-radius: 2px;
}

.timeline-progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--brand);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .timeline-steps-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-left: 2rem;
  }
  .timeline-progress-bar {
    top: 2rem;
    bottom: 2rem;
    left: 2rem;
    width: 4px;
    height: auto;
  }
  .timeline-progress-fill {
    width: 100%;
    height: 0%;
    transition: height 0.3s ease;
  }
}

.timeline-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .timeline-step-node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 1.5rem;
  }
}

.step-circle-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--neutral-300);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.4s var(--transition);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .step-circle-badge {
    margin-bottom: 0;
  }
}

.timeline-step-node.active .step-circle-badge {
  border-color: var(--brand);
  background-color: var(--brand);
  color: var(--white);
  box-shadow: 0 0 0 8px var(--brand-20);
}

.step-node-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-node-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 200px;
}

@media (max-width: 1024px) {
  .step-node-desc {
    max-width: 100%;
  }
}

/* 6. Minimal Call To Action Section */
.minimal-cta-section {
  padding: 4.5rem 2rem;
  background: linear-gradient(135deg, rgba(0, 46, 110, 0.04) 0%, #FFFFFF 50%, rgba(255, 122, 0, 0.05) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 46, 110, 0.08);
  border-bottom: 1px solid rgba(0, 46, 110, 0.08);
}

.minimal-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.minimal-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

@media (max-width: 768px) {
  .minimal-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
  }
}

.minimal-cta-content {
  max-width: 750px;
}

.minimal-cta-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.minimal-cta-sub {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.minimal-cta-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .minimal-cta-action {
    width: 100%;
  }
}

.btn-minimal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background-color: var(--brand);
  color: var(--white) !important;
  border-radius: var(--radius);
  border: 1px solid var(--brand);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all var(--transition-spring);
  box-shadow: 0 4px 15px rgba(0, 46, 110, 0.15);
}

.btn-minimal-cta:hover {
  transform: translateY(-3px);
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

.btn-minimal-cta i {
  transition: transform var(--transition);
}

.btn-minimal-cta:hover i {
  transform: translateX(4px);
}

/* 7. Massive Watermark Footer Custom CSS */
.footer-massive {
  background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem 1.5rem 2rem;
  z-index: 10;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%) 1;
}

.footer-watermark {
  position: absolute;
  bottom: -1.5rem;
  left: 5%;
  font-size: 9vw;
  font-weight: 900;
  color: rgba(7, 26, 61, 0.02);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col-brand {
  max-width: 320px;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer-social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(7, 26, 61, 0.03);
  border: 1px solid rgba(7, 26, 61, 0.08);
  color: var(--text-secondary);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(14, 94, 255, 0.2);
}

.footer-newsletter-form {
  display: flex;
  position: relative;
  margin-top: 1.5rem;
  border-bottom: 1.5px solid rgba(7, 26, 61, 0.15);
  transition: border-bottom-color var(--transition);
}

.newsletter-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.newsletter-input {
  width: 100%;
  background: none;
  border: none;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.75rem;
  transition: color var(--transition);
}

.footer-massive .footer-col-title {
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-massive .footer-newsletter-form {
  border-bottom: 1.5px solid rgba(7, 26, 61, 0.15);
  transition: border-bottom-color var(--transition);
}

.footer-massive .footer-newsletter-form:focus-within {
  border-bottom-color: var(--brand);
}

.footer-massive .newsletter-btn:hover {
  color: var(--brand);
}

.footer-massive .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-massive .footer-links li {
  margin-bottom: 0.45rem;
}

.footer-massive .footer-link {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition);
}

.footer-massive .footer-link:hover {
  color: var(--brand);
}

.footer-massive .footer-link-arrow {
  margin-right: 0.5rem;
  font-size: 0.6875rem;
  transition: transform var(--transition);
  color: var(--brand);
}

.footer-massive .footer-link:hover .footer-link-arrow {
  transform: translateX(4px);
}

.footer-massive .footer-bottom {
  border-top: 1px solid rgba(7, 26, 61, 0.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-massive .footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.footer-massive .footer-version {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ============================================================
   SPLIT VIEWPORT HERO STYLES
============================================================ */
.hero-split-viewport {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  background-color: var(--black);
  transform-origin: center bottom;
  will-change: transform, opacity;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-split-col {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  z-index: 2;
}

.hero-split-col:last-child {
  border-right: none;
}

.hero-split-col:hover {
  flex: 1.4;
  z-index: 5;
  box-shadow: inset 0 0 50px rgba(14, 94, 255, 0.25), 0 0 40px rgba(14, 94, 255, 0.15);
}

/* Inner border glow outline on hover */
.hero-split-col::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(14, 94, 255, 0);
  transition: border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
  pointer-events: none;
}
.hero-split-col:hover::after {
  border-color: rgba(14, 94, 255, 0.35);
}

.hero-wrap {
  background-color: var(--black);
  overflow: hidden;
}

.split-col-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  filter: grayscale(15%) brightness(0.55);
}

.hero-split-col[data-division="uae"] .split-col-bg {
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1600');
}
.hero-split-col[data-division="ksa"] .split-col-bg {
  background-image: url('https://images.unsplash.com/photo-1597466765990-64ad1c35dafc');
}
.hero-split-col[data-division="oman"] .split-col-bg {
  background-image: url('https://images.unsplash.com/photo-1618335829737-2228915674e0');
}

.hero-split-col:hover .split-col-bg {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.75);
}

.split-col-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 61, 0.7) 0%, rgba(7, 26, 61, 0.2) 60%, transparent 100%);
  z-index: 2;
}

.split-col-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  width: 100%;
  background: rgba(7, 26, 61, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-split-col:hover .split-col-content {
  background: rgba(7, 26, 61, 0.4);
  border-color: rgba(14, 94, 255, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.split-col-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}

.split-col-flag {
  font-size: 1.35rem;
  line-height: 1;
}

.split-col-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brand-light);
  border: 1px solid rgba(14, 94, 255, 0.25);
  background: rgba(14, 94, 255, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.split-col-title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.split-col-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  max-width: 320px;

  /* Text animates upward on hover */
  opacity: 0.7;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-split-col:hover .split-col-desc {
  opacity: 1;
  transform: translateY(0);
}

.split-col-action {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  display: inline-flex;
  align-items: center;

  /* CTA fades in and shifts on hover */
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-split-col:hover .split-col-action {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.split-arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero-split-col:hover .split-arrow {
  transform: translateX(6px);
}

.hero-center-brand {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  width: 100%;
  max-width: 900px;
}

.hero-center-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;

  /* Fade-in with page load delay */
  opacity: 0;
  animation: fade-in-up-cue 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

.hero-center-title {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;

  /* Fade-in with page load delay */
  opacity: 0;
  animation: fade-in-up-cue 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 1s;
}

.hero-center-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0.75rem auto 0 auto;
  line-height: 1.5;

  /* Fade-in with page load delay */
  opacity: 0;
  animation: fade-in-up-cue 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.2s;
}

@keyframes fade-in-up-cue {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-split-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .hero-split-viewport {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .hero-split-col {
    flex: none;
    height: auto;
    min-height: 42vh;
    padding: 3rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
  }
  .hero-split-col:first-of-type {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
    height: auto;
    min-height: 48vh;
    align-items: flex-start;
  }
  .hero-center-brand {
    display: none;
  }
  .split-col-desc {
    display: block;
    opacity: 0.95;
    transform: none !important;
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }
  .split-col-action {
    opacity: 1;
    transform: none;
  }
  .hero-split-scroll {
    display: none;
  }
}

/* ============================================================
   REGIONAL ACCENTS SYSTEM (UAE: Blue, KSA: Green, Oman: Orange)
============================================================ */

/* UAE - Blue Accent */
.hero-split-col[data-division="uae"] .split-col-badge,
.company-showcase-card[data-division="uae"] .company-badge-showcase {
  color: #00C4FF !important;
  border-color: rgba(0, 196, 255, 0.3) !important;
  background: rgba(0, 196, 255, 0.08) !important;
}
.hero-split-col[data-division="uae"]:hover .split-col-action {
  color: #00C4FF !important;
}
.company-showcase-card[data-division="uae"]:hover .company-explore-link {
  color: #00C4FF !important;
}

/* Saudi (KSA) - Green Accent */
.hero-split-col[data-division="ksa"] .split-col-badge,
.company-showcase-card[data-division="ksa"] .company-badge-showcase {
  color: #10B981 !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  background: rgba(16, 185, 129, 0.08) !important;
}
.hero-split-col[data-division="ksa"]:hover .split-col-action {
  color: #10B981 !important;
}
.company-showcase-card[data-division="ksa"]:hover .company-explore-link {
  color: #10B981 !important;
}

/* Oman - Orange Accent */
.hero-split-col[data-division="oman"] .split-col-badge,
.company-showcase-card[data-division="oman"] .company-badge-showcase {
  color: #FF8A00 !important;
  border-color: rgba(255, 138, 0, 0.3) !important;
  background: rgba(255, 138, 0, 0.08) !important;
}
.hero-split-col[data-division="oman"]:hover .split-col-action {
  color: #FF8A00 !important;
}
.company-showcase-card[data-division="oman"]:hover .company-explore-link {
  color: #FF8A00 !important;
}

/* ============================================================
   BENTO GRID ABOUT SECTION STYLES
============================================================ */
.about-section {
  padding: 3rem 0;
  background-color: var(--neutral-50);
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-header {
  margin-bottom: 4rem;
  max-width: 800px;
}

.about-heading {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-header p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  max-width: 700px;
}

.about-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.bento-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(7, 26, 61, 0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(7, 26, 61, 0.02);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(7, 26, 61, 0.08);
}

/* Card 1: UAE Group story (Spans 2 columns) */
.bento-card-group-story {
  grid-column: span 2;
  background-color: #EBF3FC;
  border-color: rgba(14, 94, 255, 0.18);
}
.bento-card-group-story:hover {
  border-color: rgba(14, 94, 255, 0.4);
  box-shadow: 0 20px 40px rgba(14, 94, 255, 0.12);
}

/* Card 2: Oman orange accent (Spans 1 column) */
.bento-card-oman-accent {
  grid-column: span 1;
  background-color: #FFF3E6;
  border-color: rgba(255, 138, 0, 0.18);
}
.bento-card-oman-accent:hover {
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.12);
}

/* Card 3: Saudi green accent (Spans 1 column) */
.bento-card-saudi-accent {
  grid-column: span 1;
  background-color: #EAF9F2;
  border-color: rgba(16, 185, 129, 0.18);
}
.bento-card-saudi-accent:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

/* Card 4: Ajman Factory steel (Spans 2 columns) */
.bento-card-factory {
  grid-column: span 2;
  background-color: #F1F5F9;
  border-color: rgba(7, 26, 61, 0.12);
}
.bento-card-factory:hover {
  border-color: rgba(100, 0, 255, 0.3);
  box-shadow: 0 20px 40px rgba(100, 0, 255, 0.06);
}

/* Card 5: Stats strip (Spans 3 columns) */
.bento-card-stats {
  grid-column: span 3;
  min-height: 180px;
  background: var(--black);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.05);
}
.bento-card-stats:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(14, 94, 255, 0.25);
}

/* Card content details */
.bento-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}
.bento-tag-story { color: var(--brand); }
.bento-tag-oman { color: #FF8A00; }
.bento-tag-saudi { color: #10B981; }
.bento-tag-factory { color: var(--text-secondary); }

.bento-card-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--black);
}
.bento-card-stats .bento-card-title {
  color: var(--white);
}

.bento-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.bento-card-stats .bento-card-desc {
  color: rgba(255, 255, 255, 0.6);
}

.bento-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.bento-icon-blue { background: rgba(14, 94, 255, 0.12); color: var(--brand); border: 1px solid rgba(14, 94, 255, 0.25); }
.bento-icon-orange { background: rgba(255, 138, 0, 0.12); color: #FF8A00; border: 1px solid rgba(255, 138, 0, 0.25); }
.bento-icon-green { background: rgba(16, 185, 129, 0.12); color: #10B981; border: 1px solid rgba(16, 185, 129, 0.25); }
.bento-icon-factory { background: rgba(7, 26, 61, 0.05); color: var(--text-secondary); }

.bento-glow-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  bottom: -50px;
  right: -50px;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-glow-blob {
  transform: scale(1.5);
  opacity: 0.35;
}
.bento-glow-blue { background: var(--brand); }
.bento-glow-orange { background: #FF8A00; }
.bento-glow-green { background: #10B981; }
.bento-glow-dark { background: var(--brand); opacity: 0.08; }

.bento-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  align-items: center;
}

.bento-stat-item {
  text-align: center;
}

.bento-stat-number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.bento-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .about-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card-group-story { grid-column: span 2; }
  .bento-card-factory { grid-column: span 2; }
  .bento-card-stats { grid-column: span 2; }
}

@media (max-width: 768px) {
  .about-bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card {
    grid-column: span 1 !important;
    min-height: auto;
    padding: 2rem;
  }
  .bento-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Lenis smooth scroll standard styles */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}


/* ============================================================
   FLOATING ACTION BUTTONS — WhatsApp & Call
============================================================ */

.fab-group {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
  z-index: 9999;
}

/* Base FAB */
.fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  animation: fab-enter 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  flex-shrink: 0;
}

.fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* Entrance animations (staggered) */
.fab-whatsapp { animation-delay: 0.1s; }
.fab-call     { animation-delay: 0.2s; }

@keyframes fab-enter {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* WhatsApp — green */
.fab-whatsapp {
  background: #25D366;
}
.fab-whatsapp:hover {
  background: #20ba57;
}

/* Call Now — brand blue */
.fab-call {
  background: var(--brand, #0E5EFF);
}
.fab-call:hover {
  background: #0a4cd4;
}

/* Scroll to Top — dark primary */
.fab-scroll {
  background: var(--text-primary, #071a3d);
  border: none;
  cursor: pointer;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.8) translateY(10px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  animation: none !important; /* Override default page-load animation */
}
.fab-scroll:hover {
  background: var(--brand, #0E5EFF);
}
.fab-scroll.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: scale(1) translateY(0) !important;
}

/* Icon */
.fab-icon {
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1;
  position: relative;
  z-index: 2;
}

/* Pulsing ring */
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: fab-pulse 2.2s ease-out infinite;
  z-index: 1;
}

.fab-whatsapp .fab-pulse {
  background: rgba(37, 211, 102, 0.4);
}

.fab-call .fab-pulse {
  background: rgba(14, 94, 255, 0.35);
}

@keyframes fab-pulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Tooltip label */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(7, 26, 61, 0.88);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(7, 26, 61, 0.88);
}

.fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .fab-group {
    bottom: 1.25rem;
    right: 1rem;
    gap: 0.7rem;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  .fab-icon {
    font-size: 1.3rem;
  }

  /* Hide tooltip on mobile (no hover) */
  .fab-tooltip {
    display: none;
  }
}

/* ============================================================
   TONE DOWN TECH / AI GLOW EFFECTS
============================================================ */

/* Disable all glowing blur backgrounds & particles */
.bento-glow-blob,
.hub-card-glow,
.hero-glow-light,
.cta-glow-left,
.cta-glow-right,
.hero-glow-orange-left,
.hero-glow-orange-right,
.fab-pulse,
.always-on-badge-glow,
.always-on-badge::before,
.hero-product-img-wrap::before {
  display: none !important;
}

/* Remove gradient grids and blueprint textures */
.mobile-menu {
  background-image: none !important;
  background-color: var(--white) !important;
}

/* De-glassmorph location cards: make them solid corporate panels */
.location-glass-card {
  background: var(--white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--neutral-200) !important;
  box-shadow: 0 4px 16px rgba(7, 26, 61, 0.05) !important;
}

.location-glass-card:hover {
  border-color: var(--neutral-300) !important;
  box-shadow: 0 8px 24px rgba(7, 26, 61, 0.08) !important;
}

