:root {
  --bg: #ffffff;
  --bg-soft: #f3f6fb;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #516580;
  --accent: #e11d2e;
  --accent-2: #214fae;
  --topbar-height: 48px;
  --topbar-height-current: var(--topbar-height);
  --header-height: 84px;
  --chrome-offset: var(--topbar-height-current);
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(33, 79, 174, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(225, 29, 46, 0.08), transparent 16%),
    var(--bg);
  min-height: 100vh;
  padding-top: calc(var(--chrome-offset) + var(--header-height));
  transition: padding-top 0.28s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

body.body-page-animated main.page > section {
  animation: bodySectionReveal 0.55s ease both;
}

body.body-page-animated main.page > section:nth-child(2) {
  animation-delay: 0.08s;
}

body.body-page-animated main.page > section:nth-child(3) {
  animation-delay: 0.16s;
}

body.body-page-animated main.page > section:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes bodySectionReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.body-page-animated main.page > section {
    animation: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--topbar-height, 42px);
  background: linear-gradient(90deg, #010826 0%, #031145 50%, #010826 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(56, 189, 248, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, border-color 0.28s ease;
  will-change: transform, opacity;
}

.site-topbar.is-collapsed {
  transform: translateY(-100%);
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.site-topbar-inner {
  width: min(1360px, calc(100% - 2.5rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.site-topbar-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.topbar-icon-date {
  width: 15px;
  height: 15px;
  stroke: #38bdf8;
  flex-shrink: 0;
}

.site-topbar-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.site-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #38bdf8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.site-topbar-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.site-topbar-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-topbar-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.site-topbar-link svg {
  width: 13px;
  height: 13px;
  display: block;
}

.topbar-social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
}

.topbar-social-tg:hover {
  background: #229ed9;
  border-color: #229ed9;
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 10px rgba(34, 158, 217, 0.5);
}

.topbar-social-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.topbar-social-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.topbar-social-outlook:hover {
  background: #0078d4;
  border-color: #0078d4;
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 10px rgba(0, 120, 212, 0.6);
}

.site-topbar-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.topbar-login-icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
}

.site-topbar-login:hover {
  background: #38bdf8;
  color: #020F81;
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

@media (max-width: 900px) {
  .site-topbar-badge {
    display: none;
  }
}

.home-page {
  background: #ffffff;
}

.site-header {
  position: fixed;
  top: var(--chrome-offset);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease,
    color 0.25s ease;
}

.site-header.navbar-bg {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

body.chrome-collapsed {
  --topbar-height-current: 0px;
  --chrome-offset: 0px;
}

.navbar-bg {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.navbar-hero {
  background:
    linear-gradient(90deg, rgba(9, 11, 21, 0.82), rgba(41, 24, 16, 0.72)),
    radial-gradient(circle at 20% 45%, rgba(255, 140, 72, 0.18), transparent 24%),
    radial-gradient(circle at 86% 30%, rgba(255, 255, 255, 0.08), transparent 20%);
  border-bottom: 0;
  box-shadow: none;
}

.site-header.navbar-bg .header-inner {
  width: min(1360px, calc(100% - 2rem));
  min-height: 76px;
  padding: 0.25rem 0;
}

.site-header.navbar-hero .header-inner {
  width: min(1360px, calc(100% - 2rem));
  min-height: 84px;
  padding: 0.4rem 0;
}

.site-header.navbar-bg .brand {
  background: transparent;
  box-shadow: none;
  clip-path: none;
  padding: 0;
}

.site-header.navbar-bg .site-logo-full {
  max-width: 205px;
  max-height: 60px;
}

.site-header.navbar-bg .site-nav {
  color: #020F81;
  font-size: 0.95rem;
  gap: clamp(0.6rem, 1.8vw, 1.6rem);
}

.site-header.navbar-hero .site-nav {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  gap: clamp(0.6rem, 1.8vw, 1.55rem);
}

.site-header.navbar-bg .site-nav a + a::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(2, 15, 129, 0.15);
  pointer-events: none;
}

.site-header.navbar-hero .site-nav a + a::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.site-header.navbar-bg .site-nav a {
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
}

.site-header.navbar-hero .site-nav a {
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
}

.site-header.navbar-bg .header-social {
  gap: 0.55rem;
}

.site-header.navbar-bg .social-icon {
  width: 40px;
  height: 40px;
  background: #f4f7fb;
  border-color: rgba(33, 79, 174, 0.18);
  color: #214fae;
  box-shadow: 0 4px 10px rgba(33, 79, 174, 0.08);
}

.navbar-talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #020F81 0%, #1d4ed8 60%, #0284c7 100%);
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
  flex: 0 0 auto;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(2, 15, 129, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.navbar-talk-btn svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: #ffffff;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-talk-btn span {
  color: #ffffff !important;
}

.navbar-talk-btn:hover,
.navbar-talk-btn:focus-visible {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #38bdf8 100%);
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.navbar-talk-btn:hover svg {
  transform: rotate(-12deg) scale(1.15);
}

.site-header--scrolled,
.navbar-bg-white {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.site-header.navbar-hero.site-header--scrolled,
.site-header.navbar-hero.navbar-bg-white {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.site-header--scrolled .brand,
.navbar-bg-white .brand {
  background: transparent;
  box-shadow: none;
  clip-path: none;
  padding: 0;
}

.site-header--scrolled .site-nav,
.navbar-bg-white .site-nav {
  color: #214fae;
}

.site-header--scrolled .site-nav a + a::before,
.navbar-bg-white .site-nav a + a::before {
  color: rgba(33, 79, 174, 0.45);
}

.site-header--scrolled .social-icon,
.navbar-bg-white .social-icon {
  background: #f4f7fb;
  border-color: rgba(33, 79, 174, 0.18);
}

.site-header--scrolled .navbar-talk-btn,
.navbar-bg-white .navbar-talk-btn {
  color: #ffffff !important;
}

.site-logo {
  display: block;
  flex: 0 0 auto;
}

.site-logo-full {
  max-width: 210px;
  max-height: 66px;
  object-fit: contain;
}

.header-inner {
  width: min(1300px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.8vw, 1.6rem);
  flex: 1 1 auto;
  color: #020F81;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: color 0.32s cubic-bezier(0.16, 1, 0.3, 1), transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.32s ease;
  will-change: transform, color;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f41c22 0%, #ff4b51 50%, #f41c22 100%);
  box-shadow: 0 0 10px rgba(244, 28, 34, 0.55);
  transform: translateX(-50%);
  transition: width 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.32s ease;
  opacity: 0;
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f41c22;
  transform: translateY(-2px);
  background-color: rgba(244, 28, 34, 0.05);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  width: calc(100% - 0.75rem);
  opacity: 1;
}

.site-nav a.active {
  color: #f41c22;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #214fae;
  background: #f4f7fb;
  border: 1px solid rgba(33, 79, 174, 0.18);
  box-shadow: 0 4px 10px rgba(33, 79, 174, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
  background: #214fae;
  color: #ffffff;
}

.social-telegram svg {
  transform: translateX(-1px);
}

.social-whatsapp svg {
  transform: translateY(1px);
}

.social-chat svg {
  transform: translateY(0);
}

.home-main {
  width: 100%;
}

.home-hero-cep {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  background-color: #081125;
  background:
    linear-gradient(90deg, rgba(5, 10, 26, 0.88) 0%, rgba(5, 10, 26, 0.76) 34%, rgba(5, 10, 26, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 10, 26, 0.2) 0%, rgba(5, 10, 26, 0.42) 48%, rgba(5, 10, 26, 0.88) 100%),
    url('https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576408/ire-technology/assets/banners/background-welcome-to.jpg') center 30% / cover no-repeat;
}

.home-hero-cep::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 18%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.15), transparent 18%),
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(90deg, rgba(5, 10, 26, 0.18) 0%, transparent 36%, transparent 72%, rgba(5, 10, 26, 0.18) 100%);
  opacity: 1;
  pointer-events: none;
}

.home-hero-cep::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 26, 0.48) 24%, rgba(5, 10, 26, 0.9) 100%);
  pointer-events: none;
}

/* =========================================================
   Collapsible Corporate Showcase Section (Read More Trigger)
   ========================================================= */
.about-showcase-collapsible {
  width: 100%;
  margin: 1.5rem auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-readmore-trigger-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}

.btn-about-readmore {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  background: transparent;
  border: none;
  color: #2563eb;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  outline: none;
  padding: 6px 12px;
  transition: color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.btn-about-readmore:hover {
  color: #1d4ed8;
  text-decoration: underline;
  transform: translateX(2px);
}

.btn-about-readmore:active {
  transform: translateY(1px);
}

.btn-about-readmore.is-expanded {
  color: #4b5563;
  text-decoration: underline;
}

.btn-about-readmore.is-expanded:hover {
  color: #1f2937;
  transform: translateX(-2px);
}

@media (max-width: 640px) {
  .btn-about-readmore {
    font-size: 1.05rem;
    padding: 6px 8px;
  }
}

.about-showcase-drawer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  will-change: max-height, opacity;
}

.about-showcase-drawer.is-open {
  max-height: 12000px;
  opacity: 1;
}

.about-showcase-drawer-bottom {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 2rem;
}

/* =========================================================
   Our Teams Standalone Image (Directly Below Core Values)
   ========================================================= */
.about-teams-image-wrap {
  width: min(920px, calc(100% - 2rem));
  margin: 2.2rem auto 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-teams-standalone-img {
  width: 100%;
  max-width: 860px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(2, 15, 129, 0.08), 0 4px 14px rgba(15, 23, 42, 0.04);
  cursor: zoom-in;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.about-teams-standalone-img:hover {
  transform: translateY(-3px) scale(1.008);
  box-shadow: 0 24px 56px rgba(2, 15, 129, 0.14), 0 8px 20px rgba(15, 23, 42, 0.06);
}

@media (max-width: 768px) {
  .about-teams-image-wrap {
    margin: 2rem auto 2.2rem;
    width: calc(100% - 1.5rem);
  }
  .about-teams-standalone-img {
    border-radius: 16px;
    max-width: 100%;
  }
}

/* =========================================================
   About Page - Our Services Interactive Spec Component
   (Replaces static brochure image)
   ========================================================= */
.about-services-spec-wrap {
  width: min(920px, calc(100% - 2rem));
  margin: 2.2rem auto 2.5rem;
}

.about-services-spec-card {
  background: #ffffff;
  border: 1px solid rgba(2, 15, 129, 0.09);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(2, 15, 129, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
  padding: 2.5rem 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-services-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #020f81 0%, #0099ff 50%, #00c6ff 100%);
}

.about-spec-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 2.25rem;
}

.about-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(2, 15, 129, 0.05);
  border: 1px solid rgba(2, 15, 129, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #020f81;
  margin-bottom: 0.85rem;
}

.about-spec-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0099ff;
  box-shadow: 0 0 8px rgba(0, 153, 255, 0.6);
}

.about-spec-title {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 800;
  color: #0c1844;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.about-spec-subtitle {
  font-size: 0.93rem;
  line-height: 1.55;
  color: #55627a;
  margin: 0;
}

/* Systems 4-Card Grid */
.about-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-bottom: 1.8rem;
}

.about-spec-system-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  padding: 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-spec-system-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(2, 15, 129, 0.08);
  border-color: rgba(2, 15, 129, 0.2);
  background: #ffffff;
}

.about-spec-card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.about-spec-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-spec-icon-box svg {
  width: 22px;
  height: 22px;
}

.icon-hvac {
  background: rgba(0, 153, 255, 0.12);
  color: #007acc;
}

.icon-electrical {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.icon-plumbing {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

.icon-fire {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.about-spec-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0c1844;
  margin: 0;
  text-transform: uppercase;
}

.about-spec-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.about-spec-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #020f81;
  margin: 0.15rem 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.about-spec-group-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 12px;
  background: #0099ff;
  border-radius: 2px;
  flex-shrink: 0;
}

.about-spec-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-spec-item {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #334155;
}

.about-spec-item::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.48rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0099ff;
}

.about-spec-item.is-secondary {
  padding-left: 1.45rem;
  color: #64748b;
  font-size: 0.82rem;
}

.about-spec-item.is-secondary::before {
  width: 4px;
  height: 4px;
  background: #94a3b8;
}

/* Other Services Bottom Section */
.about-spec-other-section {
  background: linear-gradient(135deg, #0b192c 0%, #020f81 100%);
  border-radius: 16px;
  padding: 1.35rem 1.6rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-spec-other-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-spec-other-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-spec-other-title-dot {
  width: 8px;
  height: 8px;
  background: #00d2ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.7);
}

.about-spec-other-site {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

.about-spec-other-site a {
  color: #00d2ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.about-spec-other-site a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.about-spec-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.about-spec-other-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  transition: background 0.2s, transform 0.2s;
}

.about-spec-other-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.about-spec-other-item svg {
  width: 15px;
  height: 15px;
  color: #00d2ff;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .about-spec-grid {
    grid-template-columns: 1fr;
  }
  .about-spec-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-services-spec-card {
    padding: 1.6rem 1.15rem 1.4rem;
    border-radius: 18px;
  }
  .about-spec-other-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   About Page - Workforce Statistics Component
   (Replaces static number-of-employees image)
   ========================================================= */
.about-workforce-spec-wrap {
  width: min(920px, calc(100% - 2rem));
  margin: 2.2rem auto 2.5rem;
}

.about-workforce-spec-card {
  background: #ffffff;
  border: 1px solid rgba(2, 15, 129, 0.09);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(2, 15, 129, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
  padding: 2.5rem 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-workforce-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #020f81 0%, #0099ff 50%, #00c6ff 100%);
}

.about-workforce-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 1.8rem;
}

/* KPI Highlights Mini Cards */
.about-workforce-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.workforce-kpi-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.workforce-kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 15, 129, 0.07);
}

.workforce-kpi-card.highlight {
  background: linear-gradient(135deg, #020f81 0%, #007acc 100%);
  color: #ffffff;
  border-color: transparent;
}

.workforce-kpi-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #020f81;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.workforce-kpi-card.highlight .workforce-kpi-num {
  color: #ffffff;
}

.workforce-kpi-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.workforce-kpi-card.highlight .workforce-kpi-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Table Responsive Container */
.about-workforce-table-container {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  margin-bottom: 1.5rem;
}

.about-workforce-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  color: #1e293b;
  text-align: center;
  background: #ffffff;
}

.about-workforce-table th,
.about-workforce-table td {
  padding: 0.68rem 0.65rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-variant-numeric: tabular-nums;
}

.about-workforce-table th {
  background: #0b192c;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-workforce-table thead tr:first-child th {
  background: #020f81;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-workforce-table thead tr:nth-child(2) th {
  background: #0c1844;
  font-size: 0.74rem;
  padding: 0.45rem 0.5rem;
  color: #93c5fd;
}

.about-workforce-table tbody tr:nth-child(even) {
  background: rgba(2, 15, 129, 0.018);
}

.about-workforce-table tbody tr:hover {
  background: rgba(0, 153, 255, 0.05);
}

.about-workforce-table td.cell-num {
  font-weight: 700;
  color: #020f81;
  background: rgba(2, 15, 129, 0.03);
  width: 46px;
}

.about-workforce-table td.cell-personnel {
  text-align: left;
  font-weight: 600;
  color: #0f172a;
  padding-left: 1rem;
}

.about-workforce-table td.cell-grand {
  font-weight: 800;
  color: #020f81;
  background: rgba(0, 153, 255, 0.08);
}

.about-workforce-table tfoot tr {
  background: #0c1844;
  color: #ffffff;
  font-weight: 800;
}

.about-workforce-table tfoot td {
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.92rem;
  padding: 0.85rem 0.65rem;
}

.about-workforce-table tfoot td.cell-grand-final {
  background: #007acc;
  color: #ffffff;
  font-size: 1.1rem;
}

/* Footer Notes */
.about-workforce-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
  font-size: 0.82rem;
  color: #64748b;
}

.about-workforce-notes {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.workforce-note-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.workforce-note-badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  background: rgba(2, 15, 129, 0.08);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.74rem;
  color: #020f81;
}

@media (max-width: 768px) {
  .about-workforce-kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-workforce-spec-card {
    padding: 1.8rem 1.15rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-workforce-kpi-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   About Page - Our Teams Showcase Component
   (Replaces static our-teams & corporate-overview images)
   ========================================================= */
.about-teams-showcase-wrap {
  width: min(920px, calc(100% - 2rem));
  margin: 2.2rem auto 2.5rem;
}

.about-teams-showcase-card {
  background: #ffffff;
  border: 1px solid rgba(2, 15, 129, 0.09);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(2, 15, 129, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
  padding: 2.5rem 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-teams-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #020f81 0%, #0099ff 50%, #00c6ff 100%);
}

.about-teams-showcase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.2rem;
}

/* 4 Pillars Grid */
.about-teams-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
  margin-bottom: 1.8rem;
}

.about-teams-pillar-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  padding: 1.5rem 1.45rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-teams-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(2, 15, 129, 0.08);
  border-color: rgba(2, 15, 129, 0.2);
  background: #ffffff;
}

.about-teams-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-teams-pillar-icon svg {
  width: 22px;
  height: 22px;
}

.icon-design {
  background: rgba(0, 153, 255, 0.12);
  color: #007acc;
}

.icon-safety {
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
}

.icon-training {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.icon-culture {
  background: rgba(139, 92, 246, 0.14);
  color: #7c3aed;
}

.about-teams-pillar-content h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0c1844;
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}

.about-teams-pillar-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #55627a;
  margin: 0 0 0.65rem;
}

.about-teams-pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pillar-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  background: rgba(2, 15, 129, 0.05);
  border: 1px solid rgba(2, 15, 129, 0.08);
  border-radius: 6px;
  color: #020f81;
}

/* Operational Strengths Bar */
.about-teams-metrics-bar {
  background: linear-gradient(135deg, #0b192c 0%, #020f81 100%);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.teams-metric-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #00d2ff;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.teams-metric-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* Footer */
.about-teams-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.82rem;
  color: #64748b;
}

.about-teams-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #020f81;
}

@media (max-width: 840px) {
  .about-teams-pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-teams-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0.8rem;
  }
}

@media (max-width: 520px) {
  .about-teams-showcase-card {
    padding: 1.8rem 1.15rem 1.5rem;
  }
  .about-teams-metrics-bar {
    grid-template-columns: 1fr;
  }
}

/* Modal Lightbox for Our Teams HD View */
.teams-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.teams-lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.teams-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 33, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.teams-lightbox-container {
  position: relative;
  z-index: 2;
  max-width: min(960px, 94vw);
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teams-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  align-self: flex-end;
}

.teams-lightbox-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.teams-lightbox-open-btn:hover {
  background: var(--primary-color, #020f81);
  border-color: #3b82f6;
  color: #ffffff;
  transform: translateY(-1px);
}

.teams-lightbox-close {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.teams-lightbox-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: scale(1.1);
}

.teams-lightbox-img-wrap {
  width: 100%;
  max-height: 86vh;
  overflow: auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0b1329;
}

.teams-lightbox-img-wrap img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-teams-showcase {
    margin: 2.2rem auto 1.8rem;
  }
  .teams-floating-zoom-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.78rem;
  }
}

/* =========================================================
   Executive Leadership & Team Styles
   ========================================================= */
.about-team {
  position: relative;
  width: min(1320px, calc(100% - 2rem));
  margin: 2.2rem auto 2.2rem;
  padding: 0;
}

.about-team-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 1.8rem;
}

.team-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(33, 79, 174, 0.08);
  border: 1px solid rgba(33, 79, 174, 0.18);
  color: #1e40af;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-section-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 8px #2563eb;
}

.about-team-header h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.about-team-header p {
  color: #516580;
  font-size: 1rem;
  line-height: 1.62;
  margin: 0;
}

/* 4-Card Executive Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.05), 0 4px 10px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 24px 48px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px #2563eb, 0 0 24px -4px rgba(37, 99, 235, 0.2);
}

/* Card Header & Avatar */
.team-card-header {
  position: relative;
  padding: 1.5rem 1.25rem 0.75rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.team-card-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.team-card-dept {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(33, 79, 174, 0.07);
  border: 1px solid rgba(33, 79, 174, 0.15);
  color: #1e40af;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-avatar-frame {
  position: relative;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(226, 232, 240, 0.6) 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease;
}

.team-card:hover .team-avatar-frame {
  transform: scale(1.06);
}

.team-avatar-monogram {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--avatar-bg, linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.25);
}

/* Card Body */
.team-card-body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  gap: 0.75rem;
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.team-name {
  margin: 0;
  color: #0f172a;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.team-role-pill {
  display: inline-block;
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
}

.team-description {
  margin: 0;
  color: #516580;
  font-size: 0.85rem;
  line-height: 1.55;
  text-align: left;
}

/* Skills Chips */
.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.team-skill-chip {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: #f1f5f9;
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Card Action Footer */
.team-card-footer {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  margin-top: 0.3rem;
}

.team-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
}

.team-connect-btn svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.25s ease;
}

.team-connect-btn:hover {
  gap: 0.65rem;
  color: #1e3a8a;
}

.team-connect-btn:hover svg {
  transform: translateX(3px);
}

/* Bottom Workforce Metrics Banner */
.team-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(33, 79, 174, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid rgba(33, 79, 174, 0.12);
  box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.04);
}

.team-metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-metric-icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 12px;
  background: #ffffff;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-metric-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.team-metric-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.team-metric-text strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
}

.team-metric-text span {
  color: #516580;
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-metrics-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}



.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 2rem));
  margin: 2rem auto;
  padding: clamp(2.2rem, 4vw, 3rem) 0 2.6rem;
  color: #ffffff;
  max-width: 1500px;
}

.home-kicker-cep,
.home-hero-content h1,
.home-subtitle-cep,
.home-cta-row,
.home-profile-btn,
.home-scroll-indicator,
.home-social-pill {
  margin-bottom: 2%;
  opacity: 0;
}

.home-hero-ready .home-kicker-cep {
  animation: heroReveal 0.7s ease forwards;
}

.home-hero-ready .home-hero-content h1 {
  animation: heroReveal 0.8s ease forwards;
  animation-delay: 0.12s;
}

.home-hero-ready .home-subtitle-cep {
  animation: heroReveal 0.8s ease forwards;
  animation-delay: 0.24s;
}

.home-hero-ready .home-cta-row {
  animation: heroReveal 0.75s ease forwards;
  animation-delay: 0.36s;
}

.home-hero-ready .home-profile-btn {
  animation: heroReveal 0.75s ease forwards;
  animation-delay: 0.48s;
}

.home-hero-ready .home-social-pill {
  animation: heroReveal 0.72s ease forwards;
  animation-delay: 0.58s;
}

.home-hero-ready .home-scroll-indicator {
  animation: heroScrollIn 0.7s ease forwards;
  animation-delay: 0.78s;
}

.home-kicker-cep {
  margin: 0 0 0.75rem;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.home-subtitle-cep {
  max-width: 980px;
  margin: 1.05rem 0 0;
  font-size: clamp(1.05rem, 1.65vw, 1.72rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.15rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  will-change: transform;
}

.button-hero {
  min-width: 260px;
  justify-content: center;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 30px rgba(33, 79, 174, 0.18);
}

.button.primary,
.button-hero.primary {
  background: linear-gradient(135deg, #2c66db 0%, #214fae 55%, #183f8f 100%);
  color: #ffffff;
  border-color: transparent;
}

.button.primary::after,
.button-hero.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.24) 34%, transparent 52%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.button.primary:hover,
.button.primary:focus-visible,
.button-hero.primary:hover,
.button-hero.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(33, 79, 174, 0.28);
}

.button.primary:hover::after,
.button.primary:focus-visible::after,
.button-hero.primary:hover::after,
.button-hero.primary:focus-visible::after {
  transform: translateX(120%);
}

.button.secondary,
.button-hero.secondary {
  background: #ffffff;
  color: #214fae;
  border-color: rgba(33, 79, 174, 0.12);
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 8px 20px rgba(33,79,174,0.06);
}

.button-hero.secondary:hover,
.button-hero.secondary:focus-visible {
  background: #fbfcfe;
  box-shadow: 0 14px 28px rgba(33,79,174,0.12);
  transform: translateY(-1px);
}

.button.primary:focus-visible,
.button.secondary:focus-visible,
.button-hero.primary:focus-visible,
.button-hero.secondary:focus-visible {
  outline: 3px solid rgba(44, 102, 219, 0.22);
  outline-offset: 3px;
}

.home-profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 315px;
  position: absolute;
  right: max(1rem, calc((100vw - 1900px) / 2 + 1rem));
  top: 120%;
  transform: translateY(0);
  z-index: 2;
  padding: 1rem 1.5rem;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: transparent;
}

.home-profile-btn::after {
  content: "\2193";
  display: inline-block;
  margin-left: 0.75rem;
  font-size: 1rem;
}

.home-profile-btn:hover,
.home-profile-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.home-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  gap: 0.3rem;
  cursor: pointer;
}

.home-scroll-indicator.is-pressed {
  animation: scrollIndicatorTap 0.42s ease;
}

.home-scroll-indicator span {
  width: 18px;
  height: 18px;
  border-right: 6px solid rgba(255, 255, 255, 0.88);
  border-bottom: 6px solid rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  margin: 0 auto;
}

.home-scroll-indicator span:first-child {
  opacity: 0.45;
}

.home-scroll-indicator.is-pressed span {
  animation: scrollChevronTap 0.42s ease;
}

.home-scroll-indicator.is-pressed span:first-child {
  opacity: 0.7;
}

.home-social-pill {
  position: fixed;
  left: 1.5rem;
  top: 72%;
  bottom: auto;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem 0.45rem 0.45rem;
  width: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(2, 15, 129, 0.15);
  box-shadow: 0 16px 36px rgba(2, 15, 129, 0.16), 0 4px 14px rgba(15, 23, 42, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  overflow: hidden;
  pointer-events: auto;
  isolation: isolate;
  transform: translateY(-50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s ease, padding 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-social-pill:hover {
  box-shadow: 0 20px 42px rgba(2, 15, 129, 0.22), 0 6px 18px rgba(15, 23, 42, 0.1);
}

.home-social-pill *,
.home-social-pill .home-social-toggle,
.home-social-pill .home-social-link {
  pointer-events: auto;
}

.home-social-pill.home-social-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 16px)) scale(0.92);
}

.home-social-pill.is-collapsed {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  gap: 0;
}

.home-social-pill.is-collapsed .home-social-links {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12px);
  width: 0;
  margin: 0;
}

.home-social-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(2, 15, 129, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.home-social-pill.is-collapsed .home-social-toggle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  box-shadow: 0 8px 20px rgba(2, 15, 129, 0.35);
}

.home-social-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-social-pill:not(.is-collapsed) .home-social-toggle svg {
  transform: rotate(180deg);
}

.home-social-toggle:hover,
.home-social-toggle:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(2, 15, 129, 0.45);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroScrollIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes scrollIndicatorTap {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  45% {
    transform: translateX(-50%) translateY(-2px) scale(0.94);
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes scrollChevronTap {
  0% {
    transform: rotate(45deg) translateY(0);
  }
  45% {
    transform: rotate(45deg) translateY(2px);
  }
  100% {
    transform: rotate(45deg) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-kicker-cep,
  .home-hero-content h1,
  .home-subtitle-cep,
  .home-cta-row,
  .home-profile-btn,
  .home-scroll-indicator,
  .home-social-pill {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

.home-social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, margin 0.3s ease;
}

.home-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.home-social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.25s ease;
}

.home-social-link:hover svg {
  transform: scale(1.12);
}

/* Telegram */
.link-telegram {
  background: #f0f9ff;
  color: #0284c7;
}

.link-telegram:hover {
  background: #229ed9;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(34, 158, 217, 0.45);
}

/* WhatsApp */
.link-whatsapp {
  background: #f0fdf4;
  color: #16a34a;
}

.link-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.45);
}

/* Facebook */
.link-facebook {
  background: #eff6ff;
  color: #1877f2;
}

.link-facebook:hover {
  background: #1877f2;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(24, 119, 242, 0.45);
}

/* Outlook */
.link-outlook {
  background: #f0f7ff;
  color: #0078d4;
}

.link-outlook:hover {
  background: #0078d4;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 120, 212, 0.45);
}

/* Phone Hotline */
.link-phone {
  background: #f5f3ff;
  color: #020F81;
}

.link-phone:hover {
  background: #020F81;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(2, 15, 129, 0.45);
}

.home-services {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.75rem 0 2.5rem;
  /* keep the section title below the sticky header */
  scroll-margin-top: calc(var(--header-height) + 8px);
  background: #ffffff;
}

.home-services-header,
.home-service-card,
.home-services-footer {
  opacity: 0;
  transform: translateY(22px);
}

.home-services-ready .home-services-header {
  animation: servicesReveal 0.75s ease forwards;
}

.home-services-ready .home-service-card:nth-child(1) {
  animation: servicesCardEnterLeftBounce 0.95s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.home-services-ready .home-service-card:nth-child(2) {
  animation: servicesCardEnterRightBounce 0.95s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.home-services-ready .home-service-card:nth-child(3) {
  animation: servicesCardEnterLeftBounce 0.95s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.home-services-ready .home-service-card:nth-child(4) {
  animation: servicesCardEnterRightBounce 0.95s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

.home-services-ready .home-services-footer {
  animation: servicesReveal 0.8s ease forwards;
  animation-delay: 0.55s;
}

/* Core Services Section */
.home-services {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 5vw, 4.8rem) 0 clamp(3.5rem, 5vw, 5rem);
}

.home-services-header {
  margin-bottom: 2.5rem;
}

.home-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.95rem;
  margin-bottom: 0.85rem;
  background: rgba(2, 15, 129, 0.08);
  border: 1px solid rgba(2, 15, 129, 0.16);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-services-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #020F81;
  box-shadow: 0 0 8px rgba(2, 15, 129, 0.5);
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.home-services-header h2,
.home-services-title {
  margin: 0 0 0.65rem;
  color: #020F81;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
  padding-bottom: 0.15em;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-services-subtitle {
  margin: 0;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 780px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 15, 129, 0.22);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.home-service-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0b1536;
}

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

.home-service-card:hover .home-service-img {
  transform: scale(1.08);
}

.home-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 28, 0.1) 0%, rgba(2, 9, 28, 0.2) 40%, rgba(2, 9, 28, 0.75) 100%);
}

.home-service-num-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(2, 15, 129, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-size: 0.95rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.home-service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.home-service-content {
  padding: 1.6rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.home-service-content h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.home-service-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  flex: 1;
}

.home-service-highlights {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.home-service-highlights li {
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
  position: relative;
  padding-left: 1rem;
}

.home-service-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #020F81;
  font-weight: 800;
}

.home-service-link {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #020F81;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
}

.home-service-link:hover {
  gap: 0.75rem;
  color: #2563eb;
}

.home-services-footer {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.home-services-btn {
  min-width: 320px;
  padding: 0.95rem 1.8rem;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(2, 15, 129, 0.25);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.home-services-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(2, 15, 129, 0.35);
}

@media (max-width: 990px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes servicesReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.99);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes servicesCardEnterLeftBounce {
  from {
    opacity: 0;
    transform: translateX(-120px) translateY(34px) scale(0.94);
    filter: blur(12px) saturate(0.88);
  }
  60% {
    opacity: 1;
    transform: translateX(14px) translateY(-6px) scale(1.01);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes servicesCardEnterRightBounce {
  from {
    opacity: 0;
    transform: translateX(120px) translateY(34px) scale(0.94);
    filter: blur(12px) saturate(0.88);
  }
  60% {
    opacity: 1;
    transform: translateX(-14px) translateY(-6px) scale(1.01);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes servicesImageReveal {
  from {
    opacity: 0;
    transform: scale(1.16);
    filter: blur(12px) saturate(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) saturate(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-services-header,
  .home-service-card,
  .home-services-footer,
  .home-service-image {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* Home Projects Showcase - Luxury Architectural Blue */
.home-projects {
  position: relative;
  background: linear-gradient(135deg, #020F81 0%, #071c6e 55%, #010a45 100%);
  color: #ffffff;
  padding: clamp(3.5rem, 5vw, 4.5rem) 0 clamp(4rem, 6vw, 5rem);
  overflow: hidden;
}

.home-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 85%);
  pointer-events: none;
}

.home-projects::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.home-projects-head {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-projects-copy {
  max-width: 760px;
}

.home-projects-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.95rem;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-projects-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.home-projects-title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.home-projects-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.home-projects-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.home-projects-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: #ffffff;
  color: #020F81;
  font-size: 0.96rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.home-projects-view-all:hover {
  transform: translateY(-3px) scale(1.02);
  background: #f0f9ff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 189, 248, 0.35);
  color: #020F81;
}

/* Swiper Slider & Project Cards */
.projectSwiper {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 3.5rem;
}

.home-project-card {
  display: block;
  text-decoration: none;
  color: #ffffff;
  height: 100%;
}

.home-project-media {
  position: relative;
  height: 400px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b1536;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.home-project-card:hover .home-project-media {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 25px rgba(56, 189, 248, 0.25);
}

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

.home-project-card:hover .home-project-img {
  transform: scale(1.08);
}

.home-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 28, 0.1) 0%, rgba(2, 9, 28, 0.35) 45%, rgba(2, 9, 28, 0.95) 100%);
  transition: opacity 0.3s ease;
}

.home-project-card:hover .home-project-overlay {
  opacity: 0.92;
}

.home-project-top-meta {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  right: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 2;
}

.home-project-pill {
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(2, 15, 129, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-project-loc {
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.home-project-bottom-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.35rem 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.home-project-bottom-meta h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.home-project-bottom-meta p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.home-project-link-text {
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: translateY(4px);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.home-project-card:hover .home-project-link-text {
  transform: translateY(0);
  opacity: 1;
  color: #7dd3fc;
  gap: 0.6rem;
}

/* Swiper Pagination */
.home-projects .swiper-pagination {
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.home-projects .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-projects .swiper-pagination-bullet-active {
  width: 28px;
  background: #38bdf8;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
}

.project-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-card-link:focus-visible .project-card-media {
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25), 0 18px 30px rgba(0, 0, 0, 0.28);
}

.project-card-office {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576278/ire-technology/assets/images/projects/the-peninsula-phnom-penh.png");
}

.project-card-hotel {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576273/ire-technology/assets/images/projects/park-hyatt-siem-reap.jpg");
}

.project-card-commercial {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576273/ire-technology/assets/images/projects/minibea-factory.jpg");
}

.project-card-villa {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576272/ire-technology/assets/images/projects/laurelton-diamonds-cambodia.jpg");
}

.project-card-condo {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576276/ire-technology/assets/images/projects/siem-reap-domestic-airport.jpg");
}

.project-card-residential {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576274/ire-technology/assets/images/projects/samdach-pan.png");
}

.project-card-institution {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576274/ire-technology/assets/images/projects/ppiu.jpg");
}

.project-card-substation {
  background-image: url("/assets/images/projects/Kompong-Cham%20Substation.jpg");
}

.project-card-mill {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576276/ire-technology/assets/images/projects/sok-keo-rice-mill.jpg");
}

.project-detail-media {
  margin: 1.5rem 0 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.project-detail-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes projectsReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes projectSlideIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes projectsWatermarkFloat {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes projectCardGlow {
  from {
    transform: scale(0.98);
    filter: saturate(0.96) blur(2px);
  }
  to {
    transform: scale(0.98);
    filter: saturate(1) blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-projects-head,
  .projectSwiper,
  .home-projects-watermark,
  .home-projects-action,
  .swiper-slide,
  .swiper-pagination,
  .project-card-media {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .swiper-slide:hover .project-card-media {
    transform: none;
  }
}

/* Home Core Values - Modern Glassmorphic Corporate Blue */
.home-values {
  position: relative;
  background: linear-gradient(180deg, #010a45 0%, #031252 50%, #06186b 100%);
  color: #ffffff;
  padding: clamp(4rem, 6vw, 5.5rem) 0 clamp(4.5rem, 6.5vw, 6rem);
  overflow: hidden;
}

.home-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), transparent);
}

.home-values::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 15, 129, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.home-values-header {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto 3rem;
}

.home-values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.95rem;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-values-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.home-values-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.home-values-header h2 span {
  color: #38bdf8;
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-values-lead {
  margin: 0;
  max-width: 750px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-values-grid {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) 1.12fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  align-items: start;
}

/* Left Visual Card */
.home-values-visual {
  position: relative;
  height: 590px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  background: #020921;
}

.home-values-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-values-visual:hover .home-values-visual-image {
  transform: scale(1.05);
}

.home-values-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 28, 0.15) 0%, rgba(2, 9, 28, 0.3) 45%, rgba(2, 9, 28, 0.95) 100%);
}

.home-values-visual-top-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(2, 15, 129, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.visual-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.home-values-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.caption-kicker {
  color: #38bdf8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-values-visual-caption strong {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

.home-values-visual-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* Right 7 Core Value Cards - Smooth Scrollable Container */
.home-values-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 590px;
  overflow-y: auto;
  padding-right: 0.65rem;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #38bdf8 rgba(255, 255, 255, 0.08);
}

.home-values-copy::-webkit-scrollbar {
  width: 6px;
}

.home-values-copy::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.home-values-copy::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #38bdf8 0%, #020F81 100%);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

.home-values-copy::-webkit-scrollbar-thumb:hover {
  background: #38bdf8;
}

.home-value-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.1rem 1.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.home-value-card:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 189, 248, 0.15);
}

.home-value-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2, 15, 129, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home-value-card:hover .home-value-num {
  transform: scale(1.08);
  color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
}

.home-value-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}

.home-value-card:hover .home-value-body h3 {
  color: #7dd3fc;
}

.home-value-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 990px) {
  .home-values-grid {
    grid-template-columns: 1fr;
  }

  .home-values-visual {
    position: static;
    height: 380px;
  }
}

.home-clients {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.home-clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2, 15, 129, 0.12), transparent);
}

.home-clients-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 820px;
  padding: 0 1rem;
}

.home-clients-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(2, 15, 129, 0.06);
  border: 1px solid rgba(2, 15, 129, 0.15);
  color: #020F81;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.home-clients-header h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #020F81;
  line-height: 1.15;
}

.home-clients-header p {
  margin: 0;
  font-size: 1.05rem;
  color: #516580;
  line-height: 1.65;
}

.home-clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 190px);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.25rem 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 110px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  scroll-snap-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.02);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  flex-shrink: 0;
}

.carousel-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #2563eb;
  box-shadow: 0 18px 40px rgba(2, 15, 129, 0.12), 0 0 0 1px #2563eb;
}

.carousel-item img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: contrast(105%);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.carousel-item:hover img {
  transform: scale(1.08);
  filter: contrast(115%);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: #020F81;
  border: 1px solid rgba(2, 15, 129, 0.15);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.carousel-nav:hover {
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(2, 15, 129, 0.3);
}

.carousel-nav:hover svg {
  transform: scale(1.15);
}

.carousel-prev {
  order: -1;
}

.carousel-next {
  order: 1;
}

.home-values {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #0b178f 0%, #09156f 100%);
  color: #ffffff;
  padding: clamp(3rem, 5vw, 5rem) 0 7rem;
}

.home-values-header,
.home-values-visual,
.home-values-intro,
.home-value-item {
  opacity: 0;
}

.home-values-ready .home-values-header {
  animation: valuesHeaderIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-values-ready .home-values-visual {
  animation: valuesPanelIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.12s;
}

.home-values-ready .home-values-intro {
  animation: valuesTextIn 0.7s ease forwards;
  animation-delay: 0.22s;
}

.home-values-ready .home-value-item:nth-of-type(1) {
  animation: valuesItemIn 0.7s ease forwards;
  animation-delay: 0.3s;
}

.home-values-ready .home-value-item:nth-of-type(2) {
  animation: valuesItemIn 0.7s ease forwards;
  animation-delay: 0.4s;
}

.home-values-ready .home-value-item:nth-of-type(3) {
  animation: valuesItemIn 0.7s ease forwards;
  animation-delay: 0.5s;
}

.home-values-ready .home-value-item:nth-of-type(4) {
  animation: valuesItemIn 0.7s ease forwards;
  animation-delay: 0.6s;
}

.home-values-ready .home-value-item:nth-of-type(5) {
  animation: valuesItemIn 0.7s ease forwards;
  animation-delay: 0.7s;
}

.home-values-ready .home-value-item:nth-of-type(6) {
  animation: valuesItemIn 0.7s ease forwards;
  animation-delay: 0.8s;
}

.home-values-ready .home-value-item:nth-of-type(7) {
  animation: valuesItemIn 0.7s ease forwards;
  animation-delay: 0.9s;
}

.home-values-header {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.home-values-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f41c22;
  box-shadow: 0 0 0 10px rgba(244, 28, 34, 0.12);
  transform: scale(0.85);
}

.home-values-ready .home-values-dot {
  animation: valuesDotPulse 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-values-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.home-values-header h2 span {
  color: #ffffff;
}

.home-values-header h2 {
  color: #2957a5;
}

.home-values-grid {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
  gap: 3rem;
  align-items: start;
}

.home-values-visual {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  min-height: 540px;
  height: calc(100vh - 3rem);
  max-height: 620px;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 23, 143, 0.1), rgba(11, 23, 143, 0.76)),
    linear-gradient(135deg, rgba(14, 34, 171, 0.84), rgba(11, 23, 143, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(-28px) rotate(-1.5deg) scale(0.96);
  filter: blur(4px) saturate(0.92);
}

.home-values-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: brightness(0.62) contrast(1.04) saturate(0.98);
}

.home-values-ready .home-values-visual {
  filter: blur(0) saturate(1);
}

.home-values-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, transparent 0 52%, rgba(0, 0, 0, 0.25) 52% 100%);
  opacity: 0.85;
  z-index: 1;
}

.home-values-visual::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 18%;
  top: 18%;
  bottom: 12%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: skewY(-7deg);
  z-index: 1;
}

.home-values-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 80%, rgba(14, 34, 171, 0.5), transparent 18%),
    radial-gradient(circle at 62% 22%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 78% 48%, rgba(255, 255, 255, 0.1), transparent 18%);
  filter: blur(8px);
  z-index: 1;
}

.home-values-visual-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  max-width: 60%;
}

.home-values-visual-caption strong {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-values-visual-caption span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.home-values-copy {
  display: grid;
  gap: 1.35rem;
  padding-top: 0.15rem;
}

.home-values-intro {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 58rem;
  transform: translateY(12px);
}

.home-value-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.35rem 0 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(24px);
}

.home-value-index {
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  line-height: 0.85;
  font-weight: 700;
  color: #214fae;
}

.home-values-ready .home-value-index {
  animation: valuesIndexPop 0.55s ease forwards;
}

.home-value-item h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.home-value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  max-width: 52rem;
}

@keyframes valuesHeaderIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes valuesPanelIn {
  0% {
    opacity: 0;
    transform: translateX(-42px) rotate(-3deg) scale(0.94);
    filter: blur(10px) saturate(0.9);
  }
  60% {
    opacity: 1;
    transform: translateX(4px) rotate(0.6deg) scale(1.01);
    filter: blur(0) saturate(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes valuesTextIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes valuesItemIn {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes valuesDotPulse {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes valuesIndexPop {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-values-header,
  .home-values-visual,
  .home-values-intro,
  .home-value-item,
  .home-values-dot,
  .home-values-ready .home-value-index {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

.page {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-copy,
.hero-panel,
.card,
.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-size: 0.8rem;
}

h1 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

h2 {
  margin-top: 0;
}

.hero-copy p,
.page-intro,
.prose p,
.card p,
.metric span,
.brand-line {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-actions .button.secondary {
  background: transparent;
  color: var(--text);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  grid-column: 2;
}

.metric {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

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

.card {
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  max-width: 720px;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

body.auth-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4f9 0%, #e2e8f0 100%);
  font-family: inherit;
  padding: 1.5rem 0;
}

body.auth-page .page {
  width: min(400px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0;
}

.auth-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 2.2rem 2.2rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: heroBannerCardEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.auth-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  margin: 0 0 1rem;
  background: rgba(2, 15, 129, 0.08);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-logo-wrap {
  display: block;
  margin-bottom: 1.2rem;
}

.auth-logo-wrap img,
.auth-card .footer-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  background: #ffffff;
  font-size: 0.94rem;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
}

.auth-form input[type="email"]::placeholder,
.auth-form input[type="password"]::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.auth-form-meta {
  display: flex;
  align-items: center;
  margin-top: -0.2rem;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  flex-direction: row !important;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
}

.auth-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: #020F81;
  cursor: pointer;
}

.auth-submit {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: #174092;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(23, 64, 146, 0.25);
  transition: all 0.25s ease;
  margin-top: 0.3rem;
}

.auth-submit:hover {
  background: #020F81;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 15, 129, 0.35);
}

.auth-links {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1.2rem 0 0;
}

.auth-links a {
  color: #e11d2e;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-links a:hover {
  color: #b81625;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .auth-card {
    border-radius: 22px;
    padding: 1.6rem 1.4rem;
  }
}

.prose {
  max-width: 760px;
}

.project-detail-page {
  width: min(1220px, calc(100% - 1.5rem));
  padding-top: 1.8rem;
  padding-bottom: 3rem;
  max-width: none;
}

.project-detail-article {
  display: grid;
  gap: 1.15rem;
}

.project-detail-header {
  display: grid;
  gap: 0.5rem;
}

.project-detail-category {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
}

.project-detail-page h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.project-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.project-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  white-space: nowrap;
}

.project-detail-meta-item svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.project-detail-meta-dot {
  color: rgba(81, 101, 128, 0.75);
}

.project-detail-media {
  margin: 0.4rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.12);
  border: 1px solid var(--border);
  background: #ffffff;
}

.project-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Legacy news-slider replaced by modern editorial slider below */

.news-detail-page .project-detail-media {
  background: #ffffff;
}

.news-detail-page .project-detail-media img {
  transform: scale(1);
}

.project-detail-summary {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1.35rem;
  border: 1px solid rgba(33, 79, 174, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(33, 79, 174, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.project-detail-summary h2 {
  margin: 0;
  color: #214fae;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.project-detail-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.project-detail-summary-item {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(33, 79, 174, 0.1);
}

.project-detail-summary-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #214fae;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-detail-summary-item p {
  margin: 0;
  color: #0f172a;
  line-height: 1.6;
}

.project-detail-photos {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1.35rem;
  border: 1px solid rgba(33, 79, 174, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(33, 79, 174, 0.04) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.project-detail-photos h2 {
  margin: 0;
  color: #214fae;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.project-detail-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}

.project-detail-photo-slot {
  position: relative;
  min-height: 220px;
  border-radius: 16px;
  border: 1.5px dashed rgba(33, 79, 174, 0.24);
  background:
    radial-gradient(circle at 20% 20%, rgba(33, 79, 174, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.2s ease;
}

.project-detail-photo-slot.has-image {
  border-style: solid;
  border-color: rgba(33, 79, 174, 0.15);
  cursor: pointer;
}

.project-detail-photo-slot.has-image:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  border-color: #020F81;
}

.project-detail-photo-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(33, 79, 174, 0.06), transparent 42%),
    linear-gradient(180deg, transparent 0 72%, rgba(15, 23, 42, 0.04) 100%);
  pointer-events: none;
  transition: background 0.25s ease;
}

.project-detail-photo-slot span {
  position: relative;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(33, 79, 174, 0.08);
  color: #214fae;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.project-detail-photo-slot.has-image span {
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.project-detail-photo-slot.has-image:hover span {
  background: #020F81;
  color: #ffffff;
}

.project-detail-photo-slot.has-image::before {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.04) 100%),
    linear-gradient(135deg, rgba(33, 79, 174, 0.04), transparent 42%);
}

.project-detail-photo-slot.has-image:hover::before {
  background:
    linear-gradient(180deg, rgba(2, 15, 129, 0.25) 0%, rgba(15, 23, 42, 0.1) 100%),
    linear-gradient(135deg, rgba(33, 79, 174, 0.15), transparent 50%);
}

.project-detail-body {
  display: grid;
  gap: 1.05rem;
  color: #0f172a;
  font-size: 1.02rem;
  line-height: 1.75;
}

.project-detail-body p {
  margin: 0;
}

.project-detail-body table,
.project-detail-body .spec-align-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.96rem;
  background: transparent !important;
  color: #0f172a;
}

.project-detail-body table tr {
  border-bottom: 1px solid #e2e8f0;
  background: transparent !important;
}

.project-detail-body table td {
  padding: 0.55rem 0.75rem;
  vertical-align: top;
  background: transparent !important;
  color: #0f172a;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Force first column (Labels) to fixed width so all colons line up 100% */
.project-detail-body table td:first-child,
.project-detail-body .spec-align-table td:first-child {
  width: 175px !important;
  min-width: 175px !important;
  max-width: 175px !important;
  font-weight: 600 !important;
  color: #1e293b;
  white-space: nowrap !important;
}

/* Force second column (Colon :) to narrow centered alignment */
.project-detail-body table td:nth-child(2),
.project-detail-body .spec-align-table td:nth-child(2) {
  width: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  text-align: center !important;
  font-weight: 700 !important;
  color: #0284c7 !important;
  padding: 0.55rem 0.25rem !important;
}

.project-detail-body table td:nth-child(3),
.project-detail-body .spec-align-table td:nth-child(3) {
  color: #334155;
}

/* Clean Ordered Lists in project details */
.project-detail-body ol {
  padding-left: 1.6rem !important;
  margin: 0.75rem 0 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
  color: #334155 !important;
  font-size: 0.95rem !important;
}

.project-detail-body ol li {
  color: #334155 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  padding-left: 0.25rem !important;
}

.project-detail-body ol li::marker {
  font-weight: 700 !important;
  color: #020F81 !important;
  font-size: 0.95rem !important;
}

.project-detail-lead {
  color: #214fae;
  font-size: 1.08rem;
}

.project-detail-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.4rem;
}

.career-detail-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
  color: #0f172a;
  line-height: 1.65;
}

.career-detail-list li::marker {
  color: #214fae;
}

.career-detail-apply p {
  margin: 0;
  color: #516580;
  line-height: 1.7;
}

/* ==========================================================================
   Projects Page - Modern Engineering Portfolio Styles
   ========================================================================== */

.projects-page {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 5rem;
  max-width: none;
}

/* Projects Hero Banner */
.projects-hero-banner {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.8rem) clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 246, 255, 0.92) 100%);
  border: 1px solid rgba(33, 79, 174, 0.14);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  animation: heroBannerCardEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroBannerCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Ambient Radial Glows with Subtle Floating Motion */
.projects-hero-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: heroAuraFloat 10s infinite ease-in-out alternate;
}

.projects-hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #2563eb, #38bdf8, transparent);
  box-shadow: 0 0 16px #38bdf8, 0 0 32px #2563eb;
  animation: heroLaserSweep 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  pointer-events: none;
}

@keyframes heroLaserSweep {
  0% { left: -100%; opacity: 0; }
  30% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes heroAuraFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 20px) scale(1.12); }
}

.projects-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.05rem;
  margin-bottom: 1rem;
  background: rgba(2, 15, 129, 0.08);
  border: 1px solid rgba(2, 15, 129, 0.18);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: heroBadgeEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroBadgeEntrance {
  0% {
    opacity: 0;
    transform: translateY(-16px) scale(0.92);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.projects-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px #2563eb;
  animation: pulseHeroDot 2s infinite ease-in-out;
}

@keyframes pulseHeroDot {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.35); opacity: 1; }
}

.projects-hero-title {
  margin: 0 0 0.85rem;
  color: #020F81;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 750;
  line-height: 1.24;
  letter-spacing: -0.025em;
  padding-bottom: 0.1em;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 55%, #0284c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTitleEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

@keyframes heroTitleEntrance {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.projects-hero-subtitle {
  margin: 0 0 1.8rem;
  max-width: 780px;
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
  animation: heroFadeSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

@keyframes heroFadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: 1.05rem 1.8rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(33, 79, 174, 0.14);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: heroStatsEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.projects-hero-stats:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(2, 15, 129, 0.28);
  box-shadow: 0 18px 40px rgba(2, 15, 129, 0.09);
}

@keyframes heroStatsEntrance {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.projects-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.projects-stat-item strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: #020F81;
  line-height: 1;
  background: linear-gradient(135deg, #020F81 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects-stat-item span {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.projects-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(15, 23, 42, 0.12);
}

/* Projects Toolbar & Filter Tabs - Guaranteed Single Row */
.projects-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 2.2rem;
  animation: heroFadeSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
  width: 100%;
}

.projects-filter-tabs {
  display: inline-flex;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.04);
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.projects-filter-tabs::-webkit-scrollbar {
  display: none;
}

.projects-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.95rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.projects-filter-btn:hover {
  color: #020F81;
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.projects-filter-btn.is-active {
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 15, 129, 0.32);
  transform: translateY(-1px);
}

.projects-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.42rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.projects-filter-btn:hover .projects-count-badge {
  transform: scale(1.08);
}

.projects-filter-btn.is-active .projects-count-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.projects-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.projects-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: clamp(260px, 28vw, 360px);
}

.projects-search-icon {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.25s ease;
}

.projects-search-box:focus-within .projects-search-icon {
  color: #020F81;
}

.projects-search-box input[type="search"] {
  width: 100%;
  padding: 0.78rem 2.6rem 0.78rem 2.6rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.92rem;
  outline: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.projects-search-box input[type="search"]::placeholder {
  color: #94a3b8;
}

.projects-search-box input[type="search"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 8px 24px rgba(15, 23, 42, 0.08);
}

.projects-search-clear {
  position: absolute;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.projects-search-clear svg {
  width: 14px;
  height: 14px;
}

.projects-search-clear:hover {
  background: #cbd5e1;
  color: #0f172a;
  transform: scale(1.1);
}

.projects-view-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
}

.projects-view-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-view-btn svg {
  width: 18px;
  height: 18px;
}

.projects-view-btn:hover {
  color: #020F81;
  transform: scale(1.05);
}

.projects-view-btn.is-active {
  background: #ffffff;
  color: #020F81;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.1);
}

/* Projects Grid Layout & Ultra-Luxury Modern Cards */
.projects-list-shell {
  width: 100%;
}

.projects-list.projects-grid-mode {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.projects-list.projects-list-mode {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  animation: projectCardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: var(--card-delay, 0s);
  will-change: transform, opacity;
}

@keyframes projectCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
    filter: blur(6px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.project-card:hover {
  transform: translateY(-10px) scale(1.018);
  box-shadow: 0 24px 60px rgba(2, 15, 129, 0.13), 0 4px 14px rgba(15, 23, 42, 0.04);
  border-color: rgba(2, 15, 129, 0.25);
}

.project-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dfe7f2;
}

.project-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.28) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Radiant Shimmer Sweep Across Card Image on Hover */
.project-card-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-24deg);
  transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  pointer-events: none;
}

.project-card:hover .project-card-media::before {
  left: 150%;
}

.project-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Category Badges with Glowing Halos */
.project-card-badges-left {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  max-width: calc(100% - 110px);
}

.project-card-badges-left .project-card-badge-pill {
  position: static;
  top: auto;
  left: auto;
}

.project-card-badge-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* Project Progress Status Badge (Ongoing / Completed) */
.project-progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.2;
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  white-space: nowrap;
}

.project-card:hover .project-progress-badge {
  transform: scale(1.05);
}

/* Completed Status - Emerald Green */
.project-progress-badge.status-completed {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.92) 0%, rgba(16, 185, 129, 0.95) 100%);
  border: 1px solid rgba(167, 243, 208, 0.45);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.project-progress-badge.status-completed svg {
  width: 13px;
  height: 13px;
  color: #ffffff;
  flex-shrink: 0;
}

/* Ongoing Status - Amber/Orange with live pulse */
.project-progress-badge.status-ongoing {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.92) 0%, rgba(245, 158, 11, 0.95) 100%);
  border: 1px solid rgba(253, 230, 138, 0.5);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
}

/* Maintenance Status - Cyan/Blue with tool icon */
.project-progress-badge.status-maintenance {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.92) 0%, rgba(14, 165, 233, 0.95) 100%);
  border: 1px solid rgba(186, 230, 253, 0.45);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.project-progress-badge.status-maintenance svg {
  width: 13px;
  height: 13px;
  color: #ffffff;
  flex-shrink: 0;
}

/* Glowing Pulse Dot for Live Ongoing State */
.status-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.status-pulse-dot::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  animation: pulseBeacon 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseBeacon {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Home Carousel Status Pill */
.home-project-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-project-status-pill.status-completed {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.92) 0%, rgba(16, 185, 129, 0.95) 100%);
  border: 1px solid rgba(167, 243, 208, 0.35);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.home-project-status-pill.status-ongoing {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.92) 0%, rgba(245, 158, 11, 0.95) 100%);
  border: 1px solid rgba(253, 230, 138, 0.4);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.home-project-status-pill.status-maintenance {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.92) 0%, rgba(14, 165, 233, 0.95) 100%);
  border: 1px solid rgba(186, 230, 253, 0.4);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.35);
}

.project-card:hover .project-card-badge-pill {
  transform: scale(1.06);
}

.project-card-badge-pill.badge--mep {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
}

.project-card-badge-pill.badge--mech {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.45);
}

.project-card-badge-pill.badge--elec {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.45);
}

.project-card-badge-pill.badge--plumb {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.45);
}

.project-card-badge-pill.badge--company {
  background: linear-gradient(135deg, #020F81 0%, #2563eb 100%);
  box-shadow: 0 4px 16px rgba(2, 15, 129, 0.45);
}

.project-card-badge-pill.badge--field {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.45);
}

.news-card-author {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
}

.news-card-author svg {
  width: 14px;
  height: 14px;
  color: #94a3b8;
}

.project-card-views-pill {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.project-card:hover .project-card-views-pill {
  background: rgba(2, 15, 129, 0.85);
  border-color: rgba(56, 189, 248, 0.4);
}

.project-card-views-pill svg {
  width: 14px;
  height: 14px;
}

/* Card Body */
.project-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.6rem 1.6rem;
  gap: 0.75rem;
  flex: 1;
}

.project-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-card-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
}

.project-card-location svg {
  width: 15px;
  height: 15px;
  color: #ef4444;
  flex-shrink: 0;
}

.project-card-scope {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
  background: rgba(2, 15, 129, 0.07);
  color: #020F81;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.project-card-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.project-card:hover .project-card-title {
  color: #020F81;
}

.project-card-excerpt {
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-footer {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-card-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #020F81;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.project-card:hover .project-card-btn-text {
  color: #2563eb;
}

.project-card-btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #020F81 0%, #2563eb 100%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.project-card:hover .project-card-btn-text::after {
  width: 100%;
}

.project-arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-arrow-icon {
  transform: translateX(8px);
}

/* List Mode View */
.projects-list-mode .project-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  background: #ffffff;
}

.projects-list-mode .project-card-link {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
  min-height: 240px;
  max-height: 270px;
}

.projects-list-mode .project-card-media {
  width: 320px;
  height: 100%;
  min-height: 240px;
  max-height: 270px;
  aspect-ratio: auto;
  position: relative;
  overflow: hidden;
  background: #0f172a;
  flex-shrink: 0;
}

.projects-list-mode .project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-list-mode .project-card:hover .project-card-media img {
  transform: scale(1.045);
}

.projects-list-mode .project-card-badges-left {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  top: 0.85rem;
  left: 0.85rem;
  max-width: calc(100% - 110px);
}

.projects-list-mode .project-card-body {
  padding: 1.35rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: hidden;
}

.projects-list-mode .project-card-title {
  font-size: 1.28rem;
  line-height: 1.32;
}

.projects-list-mode .project-card-excerpt {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}

.projects-list-mode .project-card-footer {
  padding-top: 0.85rem;
  margin-top: 0;
}

/* Empty State */
.projects-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 2rem;
  background: #f8fafc;
  border: 2px dashed rgba(33, 79, 174, 0.2);
  border-radius: 24px;
  margin: 2rem 0;
}

.projects-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(2, 15, 129, 0.08);
  color: #020F81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.projects-empty-icon svg {
  width: 36px;
  height: 36px;
}

.projects-empty-state h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: #0f172a;
}

.projects-empty-state p {
  margin: 0 0 1.5rem;
  max-width: 480px;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.6;
}

.projects-reset-btn {
  padding: 0.75rem 1.6rem;
  border: none;
  border-radius: 999px;
  background: #020F81;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(2, 15, 129, 0.25);
  transition: all 0.2s ease;
}

.projects-reset-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Modern Pagination */
.projects-pagination {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  width: 100%;
}

.projects-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.projects-pagination-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #1e293b;
  font-size: 0.98rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: all 0.22s ease;
}

.projects-pagination-link:hover {
  background: #f1f5f9;
  color: #020F81;
  border-color: rgba(2, 15, 129, 0.2);
  transform: translateY(-2px);
}

.projects-pagination-link.is-active {
  background: linear-gradient(135deg, #020F81 0%, #2563eb 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(2, 15, 129, 0.32);
}

.projects-pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: all 0.22s ease;
}

.projects-pagination-btn svg {
  width: 18px;
  height: 18px;
}

.projects-pagination-btn:hover:not(:disabled) {
  background: #f8fafc;
  color: #020F81;
  border-color: rgba(2, 15, 129, 0.2);
  transform: translateY(-2px);
}

.projects-pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Career Specific Card Styles */
.career-status-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.career-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

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

.career-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.career-tag-pill {
  display: inline-block;
  padding: 0.22rem 0.6rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.74rem;
  font-weight: 600;
  border-radius: 6px;
}

.career-date-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
}

.career-date-text svg {
  width: 14px;
  height: 14px;
  color: #94a3b8;
}

/* Career Spontaneous Application Banner */
.career-spontaneous-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, #020F81 0%, #1e3a8a 100%);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(2, 15, 129, 0.22);
}

.career-spontaneous-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.career-spontaneous-content p {
  margin: 0;
  color: #e2e8f0;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .career-spontaneous-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.2rem 1.8rem;
  }
}

@media (max-width: 900px) {
  .projects-list.projects-grid-mode {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.4rem;
  }

  .projects-list-mode .project-card-link {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .projects-list-mode .project-card-media {
    width: 100%;
    min-height: 200px;
    max-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .projects-list-mode .project-card-badges-left {
    flex-direction: row;
    align-items: center;
  }

  .projects-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .projects-search-box {
    width: 100%;
  }

  .projects-actions-row {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .projects-page {
    width: calc(100% - 1.5rem);
    padding-top: 1.25rem;
  }

  .projects-hero-banner {
    padding: 1.8rem 1.25rem;
    border-radius: 20px;
  }

  .projects-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    width: 100%;
  }

  .projects-stat-divider {
    display: none;
  }

  .projects-list.projects-grid-mode {
    grid-template-columns: 1fr;
  }

  .projects-filter-tabs {
    border-radius: 999px;
    max-width: 100%;
    width: auto;
    overflow-x: auto;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .projects-filter-btn {
    flex: 0 0 auto;
    justify-content: center;
    padding: 0.44rem 0.85rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }
}

/* ==========================================================================
   PROJECT DETAIL PAGE (MODERN LUXURY CASE STUDY DESIGN)
   ========================================================================== */
body.project-detail-body-bg {
  background: 
    radial-gradient(circle at 50% -5%, rgba(2, 15, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 18%, rgba(56, 189, 248, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 10% 35%, rgba(2, 15, 129, 0.04) 0%, transparent 40%),
    #f8fafc !important;
}

.project-detail-page {
  position: relative;
  width: min(1340px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding-top: 0.85rem;
  padding-bottom: 3.5rem;
  font-family: 'Plus Jakarta Sans', "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

.project-detail-article {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Breadcrumb & Navigation Bar */
.project-detail-nav {
  margin-bottom: 0.25rem;
}

.project-detail-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.45rem 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(2, 15, 129, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}

.project-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #020F81;
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-link-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(2, 15, 129, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020F81;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.back-link-icon-wrap svg {
  width: 15px;
  height: 15px;
  transition: transform 0.22s ease;
}

.project-detail-back-link:hover {
  color: #2563eb;
}

.project-detail-back-link:hover .back-link-icon-wrap {
  background: #020F81;
  color: #ffffff;
}

.project-detail-back-link:hover .back-link-icon-wrap svg {
  transform: translateX(-3px);
}

.project-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  color: #64748b;
  font-weight: 500;
}

.project-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-breadcrumbs a:hover {
  color: #020F81;
}

.breadcrumb-separator {
  color: #cbd5e1;
  font-weight: 400;
  user-select: none;
}

.project-breadcrumbs .is-current {
  color: #0f172a;
  font-weight: 700;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.2rem 0.65rem;
  background: rgba(2, 15, 129, 0.05);
  border-radius: 999px;
}

/* Hero Header Section */
.project-detail-header-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.project-detail-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Category & Status Badges - Unified Luxury Suite */
.project-detail-badge-row .project-card-badge-pill {
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 0.85rem;
  box-sizing: border-box;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 10px rgba(2, 15, 129, 0.2);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
}

.project-detail-badge-row .project-card-badge-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(2, 15, 129, 0.32);
}

.project-card-badge-pill.badge--mep {
  background: linear-gradient(135deg, #020F81 0%, #1d4ed8 100%);
  box-shadow: 0 4px 14px rgba(2, 15, 129, 0.22);
}

.project-card-badge-pill.badge--mech {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.22);
}

.project-card-badge-pill.badge--elec {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.22);
}

.project-card-badge-pill.badge--plumb {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.22);
}

.project-detail-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 30px;
  padding: 0 0.85rem;
  box-sizing: border-box;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #065f46;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}

.project-detail-status-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 185, 129, 0.4);
}

.project-detail-status-pill.status-completed {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #047857;
}

.project-detail-status-pill.status-ongoing {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #b45309;
}

.project-detail-status-pill.status-ongoing .status-live-beacon {
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
  animation: statusPulseAmber 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes statusPulseAmber {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.project-detail-status-pill.status-maintenance {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.35);
  color: #0284c7;
}

.project-detail-status-pill.status-maintenance .status-live-beacon {
  background: #0ea5e9;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
  animation: statusPulseCyan 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes statusPulseCyan {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(14, 165, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

.status-live-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  position: relative;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: statusPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
  flex-shrink: 0;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.project-detail-code-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 30px;
  padding: 0 0.85rem;
  box-sizing: border-box;
  background: rgba(2, 15, 129, 0.05);
  border: 1px solid rgba(2, 15, 129, 0.14);
  color: #020F81;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(2, 15, 129, 0.04);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}

.project-detail-code-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 15, 129, 0.28);
}

.project-detail-code-pill svg {
  width: 13px;
  height: 13px;
  color: #020F81;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.project-detail-main-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 850;
  color: #070e28;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* Executive Meta Chips - Luxury Specification Tiles */
.project-detail-meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.project-meta-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02), 0 8px 20px -4px rgba(2, 15, 129, 0.04);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease;
}

.project-meta-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 15, 129, 0.22);
  box-shadow: 0 10px 24px -4px rgba(2, 15, 129, 0.09), 0 2px 6px rgba(2, 15, 129, 0.03);
}

.meta-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.project-meta-pill:hover .meta-pill-icon {
  transform: scale(1.05);
}

.meta-pill-icon svg {
  width: 17px;
  height: 17px;
}

.chip--location .meta-pill-icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(244, 63, 94, 0.05) 100%);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.chip--date .meta-pill-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.chip--author .meta-pill-icon {
  background: linear-gradient(135deg, rgba(2, 15, 129, 0.08) 0%, rgba(37, 99, 235, 0.05) 100%);
  color: #020F81;
  border: 1px solid rgba(2, 15, 129, 0.15);
}

.chip--views .meta-pill-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.meta-pill-content {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.meta-pill-sub {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-weight: 750;
  color: #64748b;
  line-height: 1.15;
}

.meta-pill-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0a1128;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Featured Media Showcase (Cinematic Architectural Frame) */
.project-detail-showcase-media {
  margin: 0.5rem 0 1.75rem;
  position: relative;
  border-radius: 24px;
  box-shadow: 0 20px 50px -10px rgba(2, 15, 129, 0.18), 0 0 0 1px rgba(2, 15, 129, 0.08);
  background: #070d1e;
}

.showcase-glow-backdrop {
  position: absolute;
  inset: -12px;
  border-radius: 40px;
  background: radial-gradient(circle at 50% 45%, rgba(2, 15, 129, 0.18) 0%, rgba(56, 189, 248, 0.1) 40%, transparent 70%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}

.showcase-media-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

.showcase-media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-media-container:hover img {
  transform: scale(1.035);
}

.showcase-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 13, 30, 0.35) 0%,
    transparent 25%,
    transparent 60%,
    rgba(7, 13, 30, 0.85) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.showcase-top-tag {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: rgba(7, 13, 30, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f8fafc;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}

.showcase-pulse-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: statusPulse 1.8s infinite;
}

.showcase-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  z-index: 2;
  pointer-events: auto;
}

.showcase-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showcase-bottom-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.showcase-bottom-sub {
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.showcase-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.showcase-expand-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.showcase-expand-btn:hover {
  background: #020F81;
  color: #ffffff;
  border-color: #020F81;
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(2, 15, 129, 0.4);
}

.showcase-expand-btn:hover svg {
  transform: scale(1.15);
}

/* Structured Specifications Grid (3D Engineering Cards) */
.project-specs-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 3.25rem;
}

.project-specs-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.specs-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.95rem;
  background: rgba(2, 15, 129, 0.06);
  border: 1px solid rgba(2, 15, 129, 0.15);
  color: #020F81;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0.25rem;
}

.specs-badge-pill svg {
  width: 14px;
  height: 14px;
  color: #020F81;
}

.project-specs-header h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight: 850;
  color: #09122c;
  letter-spacing: -0.025em;
}

.project-specs-header p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
}

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

.project-spec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.6rem 1.4rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.project-spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 15, 129, 0.22);
  box-shadow: 0 20px 45px rgba(2, 15, 129, 0.1);
}

.spec-card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.project-spec-card.spec--scope .spec-card-accent-bar {
  background: linear-gradient(90deg, #020F81 0%, #38bdf8 100%);
}

.project-spec-card.spec--location .spec-card-accent-bar {
  background: linear-gradient(90deg, #ef4444 0%, #f43f5e 100%);
}

.project-spec-card.spec--period .spec-card-accent-bar {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.project-spec-card.spec--client .spec-card-accent-bar {
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.project-spec-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.project-spec-card:hover .project-spec-icon {
  transform: scale(1.08) rotate(3deg);
}

.project-spec-icon svg {
  width: 24px;
  height: 24px;
}

.project-spec-icon.icon--scope {
  background: linear-gradient(135deg, rgba(2, 15, 129, 0.12) 0%, rgba(56, 189, 248, 0.16) 100%);
  color: #020F81;
  border: 1px solid rgba(2, 15, 129, 0.12);
}

.project-spec-icon.icon--location {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(244, 63, 94, 0.16) 100%);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.14);
}

.project-spec-icon.icon--period {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(251, 191, 36, 0.18) 100%);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.project-spec-icon.icon--client {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(52, 211, 153, 0.18) 100%);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.project-spec-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}

.project-spec-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 750;
  color: #94a3b8;
}

.project-spec-val {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: #09122c;
  line-height: 1.35;
}

.project-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.76rem;
  font-weight: 650;
  color: #64748b;
}

.spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot--blue { background: #020F81; }
.dot--red { background: #ef4444; }
.dot--amber { background: #f59e0b; }
.dot--emerald { background: #10b981; }

@media (max-width: 1024px) {
  .project-detail-meta-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .project-detail-meta-strip {
    grid-template-columns: 1fr;
  }
  .project-specs-grid {
    grid-template-columns: 1fr;
  }
  .showcase-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    gap: 0.85rem;
  }
  .showcase-expand-btn {
    width: 100%;
    justify-content: center;
  }
  .project-detail-main-title {
    font-size: 2rem;
  }
}

/* Engineering Execution & Narrative Card */
/* ==========================================================================
   ENGINEERING EXECUTION & TECHNICAL SCOPE SECTION (V3 LUXURY HIGH-TECH)
   ========================================================================== */
.project-narrative-section {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 3.25rem;
}

.project-narrative-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2.4vw, 2.25rem);
  background: linear-gradient(175deg, #ffffff 0%, #fbfdff 60%, #f8fafc 100%);
  border: 1px solid rgba(2, 15, 129, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(2, 15, 129, 0.02);
  transition: box-shadow 0.3s ease;
}

.project-narrative-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #020F81 0%, #0284c7 45%, #10b981 100%);
}

/* Header Bar & Badges */
.narrative-header-bar {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #edf2f7;
}

.narrative-badge-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.narrative-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(2, 15, 129, 0.06);
  border: 1px solid rgba(2, 15, 129, 0.16);
  color: #020F81;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.narrative-badge-icon {
  width: 15px;
  height: 15px;
  color: #020F81;
}

.narrative-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #020F81;
  box-shadow: 0 0 0 3px rgba(2, 15, 129, 0.2);
  animation: narrativePulse 2s infinite ease-in-out;
}

@keyframes narrativePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 15, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(2, 15, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 15, 129, 0); }
}

.narrative-pill-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #065f46;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.narrative-pill-verified svg {
  width: 14px;
  height: 14px;
  color: #10b981;
}

.project-narrative-title {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.project-narrative-subtitle {
  margin: 0;
  font-size: 1.02rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 820px;
}

/* Full-Width Narrative Container */
.narrative-content-full {
  width: 100%;
  display: block;
}

.narrative-layout-grid {
  display: block;
  width: 100%;
}

/* Narrative Body Typography & Rich Content Layout (Matches Admin Content Studio 1:1) */
.project-narrative-card .project-detail-body {
  display: block;
  min-height: 260px;
  padding: 0.25rem 0;
  outline: none;
  font-size: 0.94rem;
  line-height: 1.75;
  color: #1e293b;
  overflow: visible;
  border-left: none;
}

.project-narrative-card .project-detail-body p,
.project-detail-body p {
  margin: 0 0 0.85rem 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: #334155;
}

/* Rich Headings (Matches Admin Content Studio 1:1) */
.project-narrative-card .project-detail-body h2,
.project-detail-body h2 {
  font-size: 1.35rem;
  font-weight: 850;
  color: #0f172a;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.project-narrative-card .project-detail-body h3,
.project-detail-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #020F81;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.project-narrative-card .project-detail-body h4,
.project-detail-body h4 {
  font-size: 1.02rem;
  font-weight: 750;
  color: #334155;
  margin: 1rem 0 0.5rem 0;
}

/* Rich Lists (Exact Match: Green Checkmarks ✓ without clear:both) */
.project-narrative-card .project-detail-body ul,
.project-detail-body ul {
  list-style: none;
  padding-left: 0;
  margin: 0.65rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-narrative-card .project-detail-body ul li,
.project-detail-body ul li {
  position: relative;
  padding-left: 1.6rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.7;
}

.project-narrative-card .project-detail-body ul li::before,
.project-detail-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #059669;
  font-weight: 800;
  font-size: 0.95rem;
}

.project-narrative-card .project-detail-body ul li strong,
.project-detail-body ul li strong {
  color: #0f172a;
  font-weight: 700;
}

.project-detail-body ol {
  margin: 0 0 1.25rem 1.4rem;
  padding: 0;
  color: #334155;
}

.project-detail-body ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Rich Blockquote */
.project-detail-body blockquote {
  margin: 1.25rem 0;
  padding: 1.1rem 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #1e293b;
}

/* Rich Code / Pre */
.project-detail-body pre {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #0f172a;
  color: #38bdf8;
  border-radius: 12px;
  font-family: monospace;
  font-size: 0.92rem;
  overflow-x: auto;
}

/* MS Word Image Wrappers in Project Detail */
.project-detail-body .editor-image-wrapper {
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0.85rem 0;
  line-height: 0;
}

/* Flexbox Row Container for Side-by-Side Images (ទម្រៀបរូបភាពជាជួរ) */
.project-detail-body .editor-image-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  margin: 1.5rem 0 !important;
  clear: both !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.project-detail-body .editor-image-row .editor-image-wrapper {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
  height: auto !important;
}

.project-detail-body .editor-image-row .editor-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  flex: 1 1 auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

/* Side-by-Side Row Alignments without Row Container */
.project-detail-body .editor-image-wrapper[data-align="row-2"] {
  display: inline-block !important;
  vertical-align: top !important;
  width: calc(50% - 10px) !important;
  margin: 0.5rem 5px !important;
  float: none !important;
  clear: none !important;
  box-sizing: border-box !important;
}

.project-detail-body .editor-image-wrapper[data-align="row-2"] img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

.project-detail-body .editor-image-wrapper[data-align="row-3"] {
  display: inline-block !important;
  vertical-align: top !important;
  width: calc(33.333% - 10px) !important;
  margin: 0.5rem 5px !important;
  float: none !important;
  clear: none !important;
  box-sizing: border-box !important;
}

.project-detail-body .editor-image-wrapper[data-align="row-3"] img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

.project-detail-body .editor-image-wrapper[data-align="row-4"] {
  display: inline-block !important;
  vertical-align: top !important;
  width: calc(25% - 10px) !important;
  margin: 0.5rem 5px !important;
  float: none !important;
  clear: none !important;
  box-sizing: border-box !important;
}

.project-detail-body .editor-image-wrapper[data-align="row-4"] img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

.project-detail-body .editor-image-wrapper[data-align="left"] {
  float: left;
  margin: 0.5rem 1.75rem 1rem 0;
  clear: none;
}

.project-detail-body .editor-image-wrapper[data-align="right"] {
  float: right;
  margin: 0.5rem 0 1rem 1.75rem;
  clear: none;
}

.project-detail-body .editor-image-wrapper[data-align="center"] {
  display: block;
  margin: 1.5rem auto;
  text-align: center;
  clear: both;
  float: none;
}

.project-detail-body .editor-image-wrapper[data-align="inline"] {
  display: inline-block;
  margin: 0 0.5rem;
  vertical-align: middle;
  float: none;
  clear: none;
}

.project-detail-body .editor-image-wrapper img,
.project-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-detail-body .editor-image-wrapper img:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

/* Clearfix for narrative body */
.project-detail-body::after {
  content: "";
  display: table;
  clear: both;
}

/* Dynamic Engineering Scope Pillars (4 Cards) */
.project-scope-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 0.25rem;
}

.scope-pillar-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.scope-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 15, 129, 0.3);
  box-shadow: 0 14px 28px rgba(2, 15, 129, 0.08);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pillar-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pillar-icon-wrap.icon-blue {
  background: rgba(2, 15, 129, 0.08);
  color: #020F81;
}

.pillar-icon-wrap.icon-sky {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.pillar-icon-wrap.icon-emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.pillar-icon-wrap.icon-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.pillar-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.pillar-desc {
  margin: 0;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.55;
}

/* Sidebar Engineering Execution Matrix */
.narrative-sidebar-matrix {
  display: flex;
  flex-direction: column;
}

.matrix-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #09132e 0%, #040a1c 100%);
  border-radius: 22px;
  padding: 2.2rem 2rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(2, 15, 129, 0.22);
}

.matrix-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.matrix-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.matrix-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.matrix-header-icon svg {
  width: 22px;
  height: 22px;
}

.matrix-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.matrix-subtitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  font-weight: 700;
}

.matrix-specs-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.matrix-spec-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.matrix-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.matrix-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-weight: 700;
}

.matrix-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
}

.matrix-val--accent {
  color: #38bdf8;
}

.matrix-val--emerald {
  color: #34d399;
}

.matrix-card-footer {
  position: relative;
  z-index: 1;
  padding-top: 0.75rem;
}

.matrix-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 12px;
  color: #bae6fd;
  font-size: 0.82rem;
  font-weight: 700;
  width: 100%;
  justify-content: center;
}

.matrix-cert-badge svg {
  width: 16px;
  height: 16px;
  color: #38bdf8;
}

/* Engineering Milestone Delivery Strip (4 Steps) */
.narrative-milestones-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid #edf2f7;
}

.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.milestone-item:hover {
  transform: translateY(-3px);
  border-color: #020F81;
  box-shadow: 0 10px 22px rgba(2, 15, 129, 0.08);
}

.milestone-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: #020F81;
  background: rgba(2, 15, 129, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.milestone-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.milestone-info strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.milestone-info span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

/* Field Activity & Milestone Photos */
.project-photos-title-wrap {
  margin-bottom: 1.5rem;
}

.project-photos-title-wrap h2 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
}

.project-photos-title-wrap p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
}

.project-detail-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.project-detail-photo-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #e2e8f0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  cursor: zoom-in;
}

.project-detail-photo-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-detail-photo-slot:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.15);
}

.project-detail-photo-slot span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Media Showcase Framing */
.project-detail-showcase-media {
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.project-detail-showcase-media:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}

/* Lightbox Modal */
.project-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 33, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-close-btn {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn svg {
  width: 20px;
  height: 20px;
}

.lightbox-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: scale(1.1);
}

.lightbox-image-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

/* Project Consultation CTA Banner */
.project-inquiry-cta {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(2, 15, 129, 0.22);
}

.project-inquiry-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
}

.project-inquiry-content p {
  margin: 0;
  color: #e2e8f0;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.6;
}

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

@media (max-width: 1024px) {
  .narrative-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .narrative-milestones-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-detail-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-inquiry-cta {
    flex-direction: column;
    text-align: center;
    padding: 2.2rem 1.8rem;
  }

  .project-inquiry-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .project-detail-page {
    width: calc(100% - 1.5rem);
  }

  .project-specs-grid {
    grid-template-columns: 1fr;
  }

  .project-scope-pillars {
    grid-template-columns: 1fr;
  }

  .narrative-milestones-row {
    grid-template-columns: 1fr;
  }

  .project-detail-photos-grid {
    grid-template-columns: 1fr;
  }

  .project-narrative-card {
    padding: 1.8rem 1.35rem;
  }

  .project-detail-main-title {
    font-size: 1.85rem;
  }

  .project-detail-body .editor-image-row {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .project-detail-body .editor-image-wrapper[data-align="row-2"],
  .project-detail-body .editor-image-wrapper[data-align="row-3"],
  .project-detail-body .editor-image-wrapper[data-align="row-4"] {
    display: block !important;
    width: 100% !important;
    margin: 0.75rem 0 !important;
  }
}

/* ==========================================================================
   NEWS DETAIL PAGE (LUXURY EDITORIAL & MEDIA CASE STUDY)
   ========================================================================== */
.news-detail-page {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

.news-detail-container {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* Breadcrumb & Navigation */
.news-detail-nav-bar {
  margin-bottom: 0.25rem;
}

.news-detail-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.news-detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #020F81;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.news-detail-back-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.news-detail-back-link:hover {
  color: #2563eb;
  transform: translateX(-3px);
}

.news-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  color: #64748b;
}

.news-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-breadcrumbs a:hover {
  color: #020F81;
}

.news-breadcrumbs .is-current {
  color: #0f172a;
  font-weight: 600;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hero Header */
.news-detail-hero-header {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.news-detail-badge-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.news-detail-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 1rem;
  background: linear-gradient(135deg, #020F81 0%, #1d4ed8 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(2, 15, 129, 0.25);
}

.news-detail-official-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.9rem;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #0284c7;
  font-size: 0.76rem;
  font-weight: 750;
  border-radius: 999px;
}

.news-pulse-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0284c7;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.news-pulse-beacon::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid #0284c7;
  animation: pulseBeacon 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.news-detail-reading-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.news-detail-reading-badge svg {
  width: 13px;
  height: 13px;
  stroke: #0284c7;
}

.news-detail-main-title {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  font-weight: 850;
  color: #0a1128;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

/* 2-Tier Structured Meta Chips */
.news-detail-meta-strip {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.news-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-meta-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 15, 129, 0.25);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.meta-chip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chip--date .meta-chip-icon { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.chip--author .meta-chip-icon { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.chip--location .meta-chip-icon { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.chip--views .meta-chip-icon { background: rgba(16, 185, 129, 0.1); color: #059669; }

.meta-chip-icon svg {
  width: 17px;
  height: 17px;
}

.meta-chip-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.meta-chip-sub {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta-chip-val {
  font-size: 0.88rem;
  font-weight: 750;
  color: #0f172a;
}

.news-detail-subtitle {
  margin: 0.4rem 0 0;
  font-size: 1.15rem;
  line-height: 1.72;
  color: #475569;
  max-width: 980px;
  font-weight: 450;
}

/* Cinematic Slider with Ambient Glow */
.news-slider-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.news-slider-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.news-slider {
  position: relative;
  display: block !important;
  width: 100% !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: transparent !important;
}

.news-slider-stage {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  width: 100% !important;
  overflow: hidden;
  background: #090e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.news-slider-backdrop {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.35);
  opacity: 0.65;
  transform: scale(1.1);
  pointer-events: none;
  transition: background-image 0.4s ease;
  z-index: 1;
}

.news-slider-stage img {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.news-slider-stage:hover img {
  transform: scale(1.01);
}

.news-expand-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.95rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.news-expand-btn svg {
  width: 14px;
  height: 14px;
}

.news-expand-btn:hover {
  background: #020F81;
  border-color: #3b82f6;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 15, 129, 0.45);
}

.news-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #020F81;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.news-slider-prev { left: 1.25rem; }
.news-slider-next { right: 1.25rem; }

.news-slider-nav:hover {
  background: #020F81;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(2, 15, 129, 0.35);
}

.news-slider-nav svg {
  width: 20px;
  height: 20px;
}



/* Thumbnails Strip */
.news-slider-thumbs {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.35rem 0.2rem;
}

.news-slider-thumb {
  position: relative;
  flex: 0 0 110px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #0b1536;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-slider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.65;
  transition: opacity 0.25s ease;
}

.news-slider-thumb:hover img,
.news-slider-thumb.is-active img {
  opacity: 1;
}

.news-slider-thumb.is-active {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3), 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

/* Story Highlights Card */
.news-highlights-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 1.6rem 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.news-highlights-header {
  margin-bottom: 1.25rem;
}

.news-highlights-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.news-highlights-badge h2 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.015em;
}

.highlights-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #020F81;
  box-shadow: 0 0 10px rgba(2, 15, 129, 0.6);
}

.news-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.news-highlight-tile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-highlight-tile:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(2, 15, 129, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.highlight-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-tile-icon svg {
  width: 20px;
  height: 20px;
}

.highlight-tile-icon.icon-emerald { background: rgba(16, 185, 129, 0.12); color: #059669; }
.highlight-tile-icon.icon-blue { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
.highlight-tile-icon.icon-sky { background: rgba(14, 165, 233, 0.12); color: #0284c7; }
.highlight-tile-icon.icon-gold { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.highlight-tile-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.highlight-tile-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.highlight-tile-body strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

/* ==========================================================================
   MAGAZINE EDITORIAL LAYOUT (NARRATIVE + SIDEBAR)
   ========================================================================== */
.news-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.25rem;
  align-items: start;
}

.news-editorial-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Article Narrative Card */
.news-narrative-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 2.6rem 2.8rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.news-narrative-inner {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
}

.news-lead-paragraph {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #0f172a;
  font-weight: 600;
  padding: 1.25rem 1.6rem;
  background: linear-gradient(135deg, rgba(2, 15, 129, 0.03) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-left: 4px solid #020F81;
  border-radius: 0 14px 14px 0;
}

.news-narrative-inner p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

/* Author Sign-Off Card */
.news-author-signoff {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.6rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
}

.author-signoff-avatar {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 3px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.author-signoff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.author-signoff-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.author-signoff-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-signoff-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
}

.author-signoff-desc {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.45;
}

/* Redesigned Share Bar */
.news-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.news-share-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #020F81;
}

.news-share-title {
  font-size: 0.92rem;
  font-weight: 750;
  color: #0f172a;
}

.news-share-links {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.news-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  font-family: inherit;
}

.news-share-btn svg {
  width: 14px;
  height: 14px;
}

.share-tg { background: #f0f9ff; color: #0284c7; border-color: rgba(2, 132, 199, 0.2); }
.share-tg:hover { background: #229ed9; color: #ffffff; border-color: #229ed9; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(34, 158, 217, 0.35); }

.share-fb { background: #eff6ff; color: #1877f2; border-color: rgba(24, 119, 242, 0.2); }
.share-fb:hover { background: #1877f2; color: #ffffff; border-color: #1877f2; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35); }

.share-wa { background: #f0fdf4; color: #16a34a; border-color: rgba(22, 163, 74, 0.2); }
.share-wa:hover { background: #25d366; color: #ffffff; border-color: #25d366; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35); }

.share-copy {
  background: #f8fafc;
  color: #475569;
  border-color: rgba(15, 23, 42, 0.12);
}
.share-copy:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}
.share-copy.copied {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
}

/* ==========================================================================
   EDITORIAL SIDEBAR
   ========================================================================== */
.news-editorial-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 1.6rem 1.6rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.sidebar-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.15rem;
}

.sidebar-badge-pill {
  font-size: 0.68rem;
  font-weight: 800;
  color: #020F81;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-card-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

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

.sidebar-facts-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.sidebar-facts-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.fact-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.fact-value {
  font-size: 0.86rem;
  font-weight: 750;
  color: #0f172a;
  text-align: right;
}

/* Accent Card */
.news-sidebar-card.card--accent {
  background: linear-gradient(135deg, #020F81 0%, #1e3a8a 60%, #0284c7 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 32px rgba(2, 15, 129, 0.3);
}

.sidebar-accent-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sidebar-accent-icon svg {
  width: 22px;
  height: 22px;
}

.news-sidebar-card.card--accent h4 {
  margin: 0 0 0.5rem;
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
}

.news-sidebar-card.card--accent p {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.sidebar-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  color: #020F81 !important;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sidebar-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Stats Card */
.news-sidebar-card.card--stats {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.sidebar-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

.sidebar-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sidebar-stat-item strong {
  font-size: 1.7rem;
  font-weight: 850;
  color: #020F81;
  letter-spacing: -0.03em;
}

.sidebar-stat-item span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   RELATED STORIES SECTION
   ========================================================================== */
.news-related-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.news-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-related-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #020F81;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-related-header h2 {
  margin: 0.2rem 0 0;
  font-size: 1.65rem;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.news-related-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #020F81;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.news-related-view-all:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.news-related-view-all svg {
  width: 16px;
  height: 16px;
}

.news-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.related-news-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.related-news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 15, 129, 0.25);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.related-news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.related-news-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

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

.related-news-card:hover .related-news-media img {
  transform: scale(1.06);
}

.related-news-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.related-news-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.related-news-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

.related-news-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.related-news-card:hover .related-news-title {
  color: #020F81;
}

.related-news-excerpt {
  margin: 0;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-news-read-more {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #020F81;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.related-news-card:hover .related-news-read-more {
  gap: 0.55rem;
  color: #2563eb;
}

/* Bottom CTA Banner */
.news-bottom-cta {
  border-radius: 26px;
  background: linear-gradient(135deg, #020F81 0%, #08216b 50%, #024397 100%);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  box-shadow: 0 20px 50px rgba(2, 15, 129, 0.25);
  color: #ffffff;
  margin-top: 1rem;
}

.news-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.news-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 650px;
}

.news-cta-badge {
  color: #38bdf8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-cta-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.news-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.news-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE QUERIES FOR NEWS DETAIL
   ========================================================================== */
@media (max-width: 1040px) {
  .news-editorial-layout {
    grid-template-columns: 1fr;
  }

  .news-editorial-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-sidebar-card.card--stats {
    grid-column: 1 / -1;
  }

  .news-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .news-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .news-editorial-sidebar {
    grid-template-columns: 1fr;
  }

  .news-sidebar-card.card--stats {
    grid-column: auto;
  }

  .news-related-grid {
    grid-template-columns: 1fr;
  }

  .news-narrative-card {
    padding: 1.75rem 1.4rem;
  }

  .news-share-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-share-links {
    width: 100%;
    justify-content: space-between;
  }

  .news-highlights-grid {
    grid-template-columns: 1fr;
  }

  .news-detail-meta-strip {
    flex-direction: column;
  }

  .news-meta-chip {
    width: 100%;
  }
}

.contact-page {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0 3.5rem;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  align-items: start;
  margin-bottom: 2.25rem;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.95rem;
  margin-bottom: 0.6rem;
  background: rgba(2, 15, 129, 0.08);
  border: 1px solid rgba(2, 15, 129, 0.18);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroBadgeEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #020F81;
  box-shadow: 0 0 8px rgba(2, 15, 129, 0.5);
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.contact-hero-title {
  margin: 0 0 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  animation: heroTitleEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.contact-hero-kicker {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #64748b;
  letter-spacing: -0.01em;
}

.contact-hero-heading {
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: #020F81;
  letter-spacing: -0.035em;
  line-height: 1.25;
  padding-bottom: 0.18em;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 55%, #0284c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-intro {
  font-size: 0.94rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 1.15rem;
  max-width: 580px;
  animation: heroFadeSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: heroFadeSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.contact-response-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
  transition: transform 0.25s ease;
}

.contact-response-status:hover {
  transform: translateY(-1px);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.contact-tiles-grid {
  display: grid;
  gap: 0.65rem;
}

.contact-tile {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.8rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  animation: contactTileEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.contact-tile:nth-child(1) { animation-delay: 0.26s; }
.contact-tile:nth-child(2) { animation-delay: 0.32s; }
.contact-tile:nth-child(3) { animation-delay: 0.38s; }
.contact-tile:nth-child(4) { animation-delay: 0.44s; }

@keyframes contactTileEntrance {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.contact-tile:hover {
  transform: translateY(-3px) translateX(4px);
  border-color: rgba(2, 15, 129, 0.25);
  box-shadow: 0 10px 24px rgba(2, 15, 129, 0.08);
}

.contact-tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-tile:hover .contact-tile-icon {
  transform: scale(1.08) rotate(3deg);
}

.contact-tile-icon svg {
  width: 20px;
  height: 20px;
}

.icon-blue { background: rgba(2, 15, 129, 0.08); color: #020F81; }
.icon-gold { background: rgba(217, 119, 6, 0.1); color: #d97706; }
.icon-emerald { background: rgba(16, 185, 129, 0.1); color: #059669; }
.icon-sky { background: rgba(14, 165, 233, 0.1); color: #0284c7; }

.contact-tile-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-tile-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-tile-content strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.contact-tile-subtext {
  font-size: 0.76rem;
  color: #0284c7;
  font-weight: 600;
  margin-top: 0.1rem;
}

.contact-social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 1.15rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 15px;
  flex-wrap: wrap;
  animation: heroFadeSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.contact-social-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

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

.contact-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #020F81;
  box-shadow: 0 3px 8px rgba(2, 15, 129, 0.16);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-social-link svg {
  width: 15px;
  height: 15px;
}

.contact-social-link:hover {
  transform: translateY(-2px) scale(1.12);
}

.social-tg:hover { background: #229ed9; box-shadow: 0 6px 14px rgba(34, 158, 217, 0.45); }
.social-wa:hover { background: #25d366; box-shadow: 0 6px 14px rgba(37, 211, 102, 0.45); }
.social-outlook:hover { background: #0078d4; box-shadow: 0 6px 14px rgba(0, 120, 212, 0.55); }
.social-li:hover { background: #0a66c2; box-shadow: 0 6px 14px rgba(10, 102, 194, 0.45); }
.social-fb:hover { background: #1877f2; box-shadow: 0 6px 14px rgba(24, 119, 242, 0.45); }

/* Right Form Card - Ultra-Luxury Animated Shell */
.contact-form-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  animation: contactFormEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

@keyframes contactFormEntrance {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Form Top Laser Sweep Beam */
.contact-form-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #2563eb, #38bdf8, transparent);
  box-shadow: 0 0 16px #38bdf8, 0 0 32px #2563eb;
  animation: heroLaserSweep 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  pointer-events: none;
}

.contact-form-badge {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  margin-bottom: 0.25rem;
  background: rgba(2, 15, 129, 0.08);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-header h2 {
  margin: 0 0 0.2rem;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
}

.contact-form-header p {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Inquiry Purpose Chips */
.contact-type-selector {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0;
}

.contact-type-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}

.contact-type-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.contact-type-chip {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-type-chip:hover {
  background: #ffffff;
  border-color: #020F81;
  color: #020F81;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 15, 129, 0.12);
}

.contact-type-chip.active {
  background: #020F81;
  border-color: #020F81;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 15, 129, 0.28);
  transform: translateY(-1px);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-field-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}

.contact-field-label .required {
  color: #ef4444;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 11px;
  color: #0f172a;
  font-size: 0.88rem;
  font-family: inherit;
  transition: all 0.25s ease;
}

.contact-form-card textarea {
  min-height: 70px;
  height: 75px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 6px 16px rgba(15, 23, 42, 0.05);
}

.contact-captcha {
  margin-top: 0;
  height: auto;
}

.contact-captcha .g-recaptcha {
  transform: scale(0.85);
  transform-origin: left top;
}

.contact-submit-btn {
  width: 100%;
  padding: 0.82rem 1.25rem;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 22px rgba(2, 15, 129, 0.25);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  margin-top: 0;
}

.contact-submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 32px rgba(2, 15, 129, 0.35);
}

.contact-form-disclaimer {
  margin: 0;
  font-size: 0.74rem;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
}

/* Bottom Location Section - Animated Card */
.contact-location {
  width: 100%;
  margin-top: 1rem;
}

.contact-location-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  animation: contactLocationEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

@keyframes contactLocationEntrance {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Location Card Laser Sweep Beam */
.contact-location-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #2563eb, #38bdf8, transparent);
  box-shadow: 0 0 16px #38bdf8, 0 0 32px #2563eb;
  animation: heroLaserSweep 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  pointer-events: none;
}

.contact-location-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-location-badge {
  display: inline-block;
  padding: 0.32rem 0.85rem;
  margin-bottom: 0.65rem;
  background: rgba(2, 15, 129, 0.08);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-location-intro h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
}

.contact-location-intro p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  max-width: 650px;
  line-height: 1.6;
}

.contact-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.contact-directions-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(2, 15, 129, 0.2);
}

.contact-location-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-location-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-location-item:hover {
  background: #ffffff;
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(2, 15, 129, 0.22);
  box-shadow: 0 12px 28px rgba(2, 15, 129, 0.08);
}

.location-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 15, 129, 0.08);
  color: #020F81;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-location-item:hover .location-item-icon {
  transform: scale(1.1);
}

.location-item-icon.icon-alert {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.location-item-icon svg {
  width: 22px;
  height: 22px;
}

.location-item-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.location-item-copy .contact-location-label {
  font-size: 0.76rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-item-copy a {
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-item-copy a:hover {
  color: #020F81;
}

.contact-map-wrapper {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  background: #e2e8f0;
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

@media (max-width: 990px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-location-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-column: auto;
  }

  .site-header {
    position: fixed;
  }

  :root {
    --topbar-height: 44px;
    --topbar-height-current: var(--topbar-height);
    --chrome-offset: var(--topbar-height-current);
  }

  .site-header.navbar-bg .brand {
    clip-path: none;
    padding: 0.45rem 0.6rem;
  }

  .site-header.navbar-bg .site-nav a + a::before {
    display: none;
  }

  .header-inner {
    width: min(1100px, calc(100% - 1.25rem));
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .site-topbar-inner {
    width: min(1100px, calc(100% - 1.25rem));
    gap: 0.75rem;
  }

  .site-topbar-date {
    font-size: 0.9rem;
  }

  .site-topbar-links {
    gap: 0.7rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 1.25rem;
  }

  .header-social {
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .site-logo-full {
    max-width: 205px;
    max-height: 60px;
  }

  /* removed empty rule for .home-hero-cep to avoid empty-rules lint warning */

  .home-hero-content {
    width: min(1100px, calc(100% - 1.25rem));
    padding: 1.5rem 0 2rem;
  }

  .home-kicker-cep {
    letter-spacing: 0.28em;
    font-size: 0.88rem;
  }

  .home-hero-content h1 {
    white-space: normal;
    font-size: clamp(2.2rem, 8vw, 3.45rem);
  }

  .home-subtitle-cep {
    font-size: 1rem;
  }

  .button-hero {
    min-width: 0;
    width: 100%;
  }

  .home-profile-btn {
    position: static;
    margin-top: 2rem;
    min-width: 0;
    width: 100%;
  }

  .home-scroll-indicator {
    display: none;
  }

  .home-social-pill {
    left: 0;
    top: 50%;
    bottom: auto;
    transform: translateX(-35%) translateY(-50%);
    width: auto;
    padding: 0.5rem 0.65rem 0.5rem 0.45rem;
    gap: 0.25rem;
  }

  .home-social-pill.home-social-hidden {
    transform: translateX(-35%) translateY(calc(-50% + 16px)) scale(0.92);
  }

  .home-social-link {
    width: 38px;
    height: 38px;
  }

  .home-social-toggle {
    width: 34px;
    height: 34px;
  }

  .contact-page {
    width: min(1100px, calc(100% - 1.25rem));
    padding-top: 2rem;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 1.75rem;
  }

  .contact-hero-copy {
    padding-top: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    padding-right: 0;
  }

  .contact-form-card {
    margin-left: 0;
    justify-self: stretch;
    max-width: none;
    border-radius: 24px;
  }

  .contact-location-details {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-location-cta {
    width: 100%;
    justify-content: center;
  }

  .home-services {
    width: min(1100px, calc(100% - 1.25rem));
  }

  .home-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-service-panel {
    min-height: 0;
    padding: 1.25rem 1.1rem 1.35rem;
  }

  .home-service-image {
    min-height: 0;
  }

  .home-values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-values-visual {
    position: relative;
    top: auto;
    min-height: 340px;
    height: auto;
    max-height: none;
  }

  .home-value-item {
    grid-template-columns: 56px 1fr;
  }

  .home-services-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 1rem;
  }

  .home-projects-head {
    min-height: 120px;
    grid-template-columns: 1fr;
  }

  .home-projects-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .home-projects-action {
    width: 100%;
  }

  .home-project-media {
    height: 340px;
  }

  .home-clients-carousel {
    gap: 1rem;
  }

  .carousel-track {
    gap: 1.5rem;
  }

  .carousel-item {
    min-width: 120px;
    height: 80px;
  }

  .carousel-item img {
    max-height: 60px;
  }

  .carousel-nav {
    width: 46px;
    height: 72px;
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .contact-page {
    width: calc(100% - 1rem);
    padding-top: 2.4rem;
    padding-bottom: 3rem;
  }

  .contact-hero {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 1rem;
    border-radius: 20px;
  }

  .contact-location-card {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .contact-map iframe {
    height: 240px;
  }

  .contact-form-card .contact-form-header h2 {
    max-width: 100%;
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .contact-hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.5vw, 3.6rem);
  }

  .contact-hero h1 span {
    white-space: normal;
  }

  .contact-hero-intro {
    max-width: 100%;
    font-size: 1rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-captcha {
    width: 100%;
  }

  .contact-submit-btn {
    width: 100%;
    min-width: 0;
  }

  .project-detail-page {
    width: calc(100% - 1rem);
    padding-top: 1.4rem;
    padding-bottom: 2.5rem;
  }

  .projects-page {
    width: calc(100% - 1rem);
    padding-top: 1.4rem;
    padding-bottom: 2.5rem;
  }

  .project-detail-page h1 {
    font-size: clamp(2rem, 8.8vw, 2.9rem);
  }

  .projects-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.9rem);
  }

  .projects-hero-intro {
    font-size: 1rem;
  }

  .project-list-link {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem 0;
  }

  .project-list-media {
    max-width: 100%;
  }

  .project-list-title {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .project-list-excerpt {
    font-size: 1rem;
  }

  .projects-search {
    width: 100%;
    gap: 0.55rem;
  }

  .projects-hero {
    grid-template-columns: 1fr;
  }

  .projects-search-button {
    width: 4.3rem;
    min-width: 4.3rem;
    min-height: 3.2rem;
  }

  .projects-pagination {
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
  }

  .projects-pagination-link,
  .projects-pagination-next {
    font-size: 1rem;
  }

  .project-detail-meta {
    gap: 0.45rem;
    font-size: 0.88rem;
  }

  .project-detail-body {
    gap: 0.9rem;
    font-size: 0.98rem;
  }

  .project-detail-summary-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-photos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-detail-lead {
    font-size: 1.02rem;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-service-panel {
    min-height: 0;
    padding: 1.15rem 1rem 1.25rem;
  }

  .home-service-panel h3 {
    max-width: none;
  }

  .home-service-image {
    min-height: 0;
  }

  .home-projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card-media {
    height: 240px;
  }

  .home-clients-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .home-clients-carousel {
    gap: 0.75rem;
  }

  .carousel-track {
    gap: 1rem;
  }

  .carousel-item {
    min-width: 100px;
    height: 70px;
  }

  .carousel-item img {
    max-height: 50px;
  }

  .carousel-nav {
    width: 40px;
    height: 62px;
    font-size: 2rem;
  }

}

/* Services Page Styles */
.service-page {
  width: 100%;
  margin: 0;
  padding: 0 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(2, 15, 129, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(33, 79, 174, 0.08), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.service-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 68vh, 740px);
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(3.5rem, 6vw, 6.5rem);
  background-color: #050d24;
}

.service-hero-surface {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* 1. Base photographic backdrop with clearer, vivid MEP engineering visual */
.service-hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url('https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576280/ire-technology/assets/images/services/chatgpt-image-sep-4-2026-10_09_59-am.png');
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
  transform: scale(1.03);
  transition: transform 12s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-hero:hover .service-hero-backdrop {
  transform: scale(1.06);
}

/* 2. Tuned corporate navy & sapphire cinematic overlay for crystal clear visibility */
.service-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 28, 0.82) 0%, rgba(2, 9, 28, 0.62) 45%, rgba(2, 9, 28, 0.20) 100%),
    linear-gradient(180deg, rgba(2, 9, 28, 0.25) 0%, rgba(2, 9, 28, 0.10) 40%, rgba(2, 9, 28, 0.72) 100%),
    radial-gradient(ellipse at 15% 30%, rgba(30, 90, 210, 0.26) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 75%, rgba(14, 165, 233, 0.22) 0%, transparent 55%);
}

/* 3. Subtle architectural precision grid */
.service-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 40% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 40% 50%, black 30%, transparent 80%);
}

/* 4. Ambient light flare */
.service-hero-ambient-glow {
  position: absolute;
  top: -10%;
  left: 30%;
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
  filter: blur(40px);
}

/* Coordinated Left & Right Entrance Keyframes */
@keyframes heroSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
    filter: blur(8px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes heroSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(70px);
    filter: blur(8px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.anim-slide-left {
  opacity: 0;
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--anim-delay, 0s);
}

.anim-slide-right {
  opacity: 0;
  animation: heroSlideInRight 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--anim-delay, 0.2s);
}

/* Hero 2-Column Responsive Layout */
.service-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(1320px, calc(100% - 2.5rem));
  margin: 0 auto;
  color: #ffffff;
}

.service-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Glowing Kicker Badge */
.service-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.15rem;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(96, 165, 250, 0.45);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.3);
}

.service-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8, 0 0 18px #38bdf8;
  animation: serviceDotPulse 2s ease-in-out infinite;
}

@keyframes serviceDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.7;
  }
}

.service-hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.service-hero-intro {
  margin: 0;
  max-width: 650px;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.72;
  color: rgba(241, 245, 249, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.service-hero-actions .button-hero.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #ffffff;
  padding: 0.95rem 1.85rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-hero-actions .button-hero.primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.65);
  transform: translateY(-2px);
}

.service-hero-actions .button-hero.secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  padding: 0.95rem 1.85rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-hero-actions .button-hero.secondary:hover {
  background: #ffffff;
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.35);
}

/* Glassmorphism Category Pills */
.service-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pill-icon {
  width: 16px;
  height: 16px;
  color: #38bdf8;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-pill:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(125, 211, 252, 0.7);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.service-pill:hover .service-pill-icon {
  transform: scale(1.15);
  color: #67e8f9;
}

/* Right-Side Glassmorphic Telemetry Card */
.service-hero-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.service-hero-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: rgba(6, 15, 36, 0.78);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 24px;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: heroCardFloat 5s ease-in-out infinite alternate;
  animation-delay: 1.1s;
}

@keyframes heroCardFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

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

.hero-card-beacon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.beacon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981, 0 0 18px #10b981;
  animation: beaconPulse 1.8s ease-in-out infinite;
}

@keyframes beaconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.beacon-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a7f3d0;
}

.hero-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-stat-chip {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.hero-stat-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(37, 99, 235, 0.18);
}

.hero-stat-chip .stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.1;
  margin-bottom: 2px;
}

.hero-stat-chip .stat-text {
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-card-scope-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.scope-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 0.84rem;
  color: #e2e8f0;
  transition: all 0.25s ease;
}

.scope-row:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateX(4px);
}

.scope-icon {
  font-size: 1rem;
}

.scope-name {
  flex: 1;
  font-weight: 500;
}

.scope-status {
  font-size: 0.68rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  text-transform: uppercase;
}

.hero-card-footer {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-hotline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-card-hotline .hotline-title {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-card-hotline .hotline-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-hotline .hotline-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.hero-card-hotline .hotline-num:hover {
  color: #7dd3fc;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

/* Responsive Service Hero Breakpoints */
@media (max-width: 1080px) {
  .service-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-hero-right {
    justify-content: flex-start;
  }

  .service-hero-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .service-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-hero-actions .button-hero {
    justify-content: center;
    width: 100%;
  }

  .hero-card-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-strip,
.service-process,
.service-cta {
  width: 100%;
  margin: 0 0 1.5rem;
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.service-offerings {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(33, 79, 174, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #edf2f7 50%, #f8fafc 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.service-process,
.service-cta {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.service-offerings > .service-section-header,
.service-offerings > .service-offerings-grid,
.service-process > .service-section-header,
.service-process > .service-process-grid,
.service-cta > .service-cta-copy {
  width: min(1320px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.service-cta {
  display: block;
}

.service-strip,
.service-offerings,
.service-process,
.service-cta,
.service-strip-card,
.service-offering-card,
.service-process-step {
  opacity: 0;
  transform: translateY(22px);
}

.service-strip.is-visible,
.service-offerings.is-visible,
.service-process.is-visible,
.service-cta.is-visible {
  animation: serviceReveal 0.75s ease forwards;
}

.service-strip.is-visible .service-strip-card,
.service-offerings.is-visible .service-offering-card,
.service-process.is-visible .service-process-step {
  animation: serviceReveal 0.75s ease forwards;
}

.service-strip-heading {
  margin-bottom: 1rem;
}

.service-strip-heading h2,
.service-section-header h2,
.service-cta h2 {
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.service-strip-heading h2 {
  max-width: 980px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-strip-card {
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(33, 79, 174, 0.12);
  background: linear-gradient(180deg, rgba(33, 79, 174, 0.06) 0%, rgba(239, 29, 35, 0.03) 100%);
}

.service-strip.is-visible .service-strip-card:nth-child(1) {
  animation-delay: 0.12s;
}

.service-strip.is-visible .service-strip-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-strip.is-visible .service-strip-card:nth-child(3) {
  animation-delay: 0.28s;
}

.service-strip.is-visible .service-strip-card:nth-child(4) {
  animation-delay: 0.36s;
}

.service-strip-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #214fae;
  font-size: 1.15rem;
}

.service-strip-card span {
  color: #516580;
  line-height: 1.6;
}

.service-section-header {
  max-width: none;
  width: 100%;
  margin-bottom: 2rem;
  text-align: left;
}

.service-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(33, 79, 174, 0.08);
  border: 1px solid rgba(33, 79, 174, 0.2);
  color: #1e40af;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.service-section-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 8px #2563eb;
}

.service-section-header h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 900px;
}

.service-section-header p {
  margin: 0.85rem 0 0;
  color: #516580;
  font-size: 1.05rem;
  line-height: 1.68;
  max-width: 820px;
}

/* =========================================================
   Service Offerings Grid & Modern Cards
   ========================================================= */
.service-offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Discipline Theme Accents */
.service-card--mechanical {
  --card-theme: #0284c7;
  --card-theme-glow: rgba(2, 132, 199, 0.22);
  --card-badge-bg: rgba(2, 132, 199, 0.08);
  --card-badge-border: rgba(2, 132, 199, 0.2);
}

.service-card--electrical {
  --card-theme: #d97706;
  --card-theme-glow: rgba(217, 119, 6, 0.22);
  --card-badge-bg: rgba(217, 119, 6, 0.08);
  --card-badge-border: rgba(217, 119, 6, 0.2);
}

.service-card--plumbing {
  --card-theme: #0d9488;
  --card-theme-glow: rgba(13, 148, 136, 0.22);
  --card-badge-bg: rgba(13, 148, 136, 0.08);
  --card-badge-border: rgba(13, 148, 136, 0.2);
}

.service-card--fire {
  --card-theme: #dc2626;
  --card-theme-glow: rgba(220, 38, 38, 0.22);
  --card-badge-bg: rgba(220, 38, 38, 0.08);
  --card-badge-border: rgba(220, 38, 38, 0.2);
}

.service-offering-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.05), 0 4px 12px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.service-offering-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-theme);
  box-shadow: 0 20px 42px -8px rgba(15, 23, 42, 0.12), 0 0 0 1px var(--card-theme), 0 0 24px -4px var(--card-theme-glow);
}

.service-offerings.is-visible .service-offering-card:nth-child(1) {
  animation-delay: 0.08s;
}

.service-offerings.is-visible .service-offering-card:nth-child(2) {
  animation-delay: 0.16s;
}

.service-offerings.is-visible .service-offering-card:nth-child(3) {
  animation-delay: 0.24s;
}

.service-offerings.is-visible .service-offering-card:nth-child(4) {
  animation-delay: 0.32s;
}

/* Card Visual Media Header */
.service-offering-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #0f172a;
}

.service-offering-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-offering-card:hover .service-offering-image {
  transform: scale(1.06);
}

.service-offering-image-1 {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576283/ire-technology/assets/images/services/mechanical.png");
}

.service-offering-image-2 {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576281/ire-technology/assets/images/services/electrical.png");
}

.service-offering-image-3 {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576283/ire-technology/assets/images/services/plumbing.jpg");
}

.service-offering-image-4 {
  background-image: url("https://res.cloudinary.com/ss8m5ohk/image/upload/v1788576281/ire-technology/assets/images/services/fp.png");
}

.service-offering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.1) 45%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
}

.service-card-topbar {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.service-card-num {
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-card-tag {
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: var(--card-theme);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 2px 8px var(--card-theme-glow);
}

.service-offering-media .service-offering-icon {
  position: absolute;
  bottom: -1.4rem;
  right: 1.4rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: #ffffff;
  color: var(--card-theme);
  border: 2px solid var(--card-badge-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-offering-card:hover .service-offering-media .service-offering-icon {
  transform: scale(1.08) rotate(3deg);
}

.service-offering-media .service-offering-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

/* Card Body Content */
.service-offering-copy {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.75rem 1.45rem 1.45rem;
  gap: 1.1rem;
}

.service-title-wrap h3 {
  margin: 0 0 0.45rem;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-card-lead {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Capability Discipline Sub-Groups */
.service-discipline-groups {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.service-group {
  display: grid;
  gap: 0.35rem;
}

.service-group-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e293b;
}

.service-group-title svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--card-theme);
  flex-shrink: 0;
}

.service-sublist {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.4rem;
  display: grid;
  gap: 0.3rem;
}

.service-sublist li {
  position: relative;
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.48;
}

.service-sublist li::before {
  content: "•";
  position: absolute;
  left: -0.75rem;
  color: var(--card-theme);
  font-size: 1.1rem;
  line-height: 1;
}

/* Tech & System Pills */
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.2rem;
}

.service-tech-tag {
  display: inline-block;
  padding: 0.24rem 0.6rem;
  border-radius: 6px;
  background: var(--card-badge-bg);
  border: 1px solid var(--card-badge-border);
  color: var(--card-theme);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.service-offering-card:hover .service-tech-tag {
  background: #ffffff;
  border-color: var(--card-theme);
}

/* Card Action Footer */
.service-card-footer {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  margin-top: 0.2rem;
}

.service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--card-theme);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
}

.service-card-action svg {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.25s ease;
}

.service-card-action:hover {
  gap: 0.7rem;
  color: #0f172a;
}

.service-card-action:hover svg {
  transform: translateX(4px);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-references {
  width: 100%;
  margin: 0 0 1.5rem;
  padding: clamp(2rem, 4vw, 4rem) 0;
  background: linear-gradient(135deg, rgba(33, 79, 174, 0.12) 0%, rgba(255, 255, 255, 0.28) 100%);
}

.service-references > .service-section-header,
.service-references > .service-project-grid {
  width: min(1320px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.service-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-project-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(33, 79, 174, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.service-project-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #214fae 0%, #2f6de0 100%);
}

.service-reference-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(33, 79, 174, 0.08);
  color: #214fae;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-project-card h3 {
  margin: 0 0 0.5rem;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.service-project-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.service-project-details li {
  color: #516580;
  line-height: 1.55;
}

.service-project-details strong {
  color: #0f172a;
}

/* Engineering Delivery Process */
.service-process {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(4rem, 6vw, 6rem) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(2, 15, 129, 0.035) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.service-process > .service-section-header,
.service-process > .service-process-grid {
  width: min(1360px, calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
}

.service-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 1rem;
  margin-bottom: 0.85rem;
  background: rgba(2, 15, 129, 0.08);
  border: 1px solid rgba(2, 15, 129, 0.16);
  border-radius: 999px;
  color: #020F81;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #020F81;
  box-shadow: 0 0 8px rgba(2, 15, 129, 0.5);
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.service-process-lead {
  margin: 0 auto;
  max-width: 750px;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-process-step {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, #020F81, #38bdf8);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 15, 129, 0.25);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.service-process-step:hover::before {
  opacity: 1;
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-step-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: #020F81;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #020F81 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-process-step:hover .process-step-icon {
  transform: scale(1.12) rotate(4deg);
}

.process-step-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.process-step-body p {
  margin: 0 0 1rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}

.process-step-highlights {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.process-step-highlights li {
  font-size: 0.8rem;
  color: #334155;
  font-weight: 600;
  position: relative;
  padding-left: 1rem;
}

.process-step-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #020F81;
  font-weight: 800;
}

/* Luxury Consultation CTA Banner */
.service-cta {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(3.5rem, 5.5vw, 5rem) 0 clamp(4.5rem, 6.5vw, 6rem);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(2, 15, 129, 0.03) 0%, transparent 70%),
    linear-gradient(180deg, #f8fafc 0%, #edf2f7 60%, #e2e8f0 100%);
}

.service-cta-card {
  width: min(1360px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2.8rem, 4.5vw, 3.8rem) clamp(1.8rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, #020F81 0%, #071f68 50%, #033a88 100%);
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(2, 15, 129, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  position: relative;
  overflow: hidden;
}

.service-cta-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.service-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.service-cta-copy {
  max-width: 680px;
}

.service-cta-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-cta-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.service-cta-copy p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.65;
}

.service-cta-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-cta-feature-item {
  font-size: 0.82rem;
  color: #bae6fd;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta-actions {
    width: 100%;
  }
}

@keyframes serviceReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-copy,
  .service-strip,
  .service-offerings,
  .service-process,
  .service-cta,
  .service-strip-card,
  .service-offering-card,
  .service-process-step {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .service-hero {
    min-height: 560px;
    padding: clamp(4.5rem, 8vw, 6rem) 0 3.5rem;
  }

  .service-hero-copy {
    width: min(100%, calc(100% - 2rem));
  }

  .service-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  }

  .service-hero-intro {
    font-size: 1.05rem;
  }

  .service-strip,
  .service-offerings,
  .service-process,
  .service-cta {
    width: 100%;
    border-radius: 0;
  }

  .service-strip-grid,
  .service-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-project-grid {
    grid-template-columns: 1fr;
  }

  .service-offerings-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .service-offering-media {
    height: 210px;
  }

  .service-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-topbar-inner {
    width: calc(100% - 0.8rem);
    gap: 0.5rem;
  }

  .site-topbar-date {
    font-size: 0.8rem;
  }

  .site-topbar-links {
    gap: 0.55rem;
  }

  .site-topbar-login {
    display: none;
  }

  .site-topbar-link svg {
    width: 17px;
    height: 17px;
  }

  .service-page {
    padding-bottom: 2.5rem;
  }

  .service-hero {
    min-height: auto;
    padding: 4.5rem 0 3rem;
  }

  .service-hero-copy {
    width: min(100%, calc(100% - 1.25rem));
    margin-top: 2rem;
    padding: 0;
  }

  .service-kicker-badge {
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }

  .service-hero h1 {
    font-size: clamp(2rem, 7.8vw, 2.75rem);
    line-height: 1.1;
  }

  .service-hero-intro {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .service-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.6rem;
  }

  .service-hero-actions .button-hero {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .service-hero-pills {
    gap: 0.5rem;
    margin-top: 1.6rem;
  }

  .service-pill {
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
  }

  .service-strip,
  .service-offerings,
  .service-process,
  .service-cta {
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-radius: 0;
  }

  .service-strip-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-offering-card {
    grid-template-rows: 190px 1fr;
  }

  .service-offering-copy,
  .service-process-step {
    padding: 1.1rem 1rem 1.2rem;
  }

  .service-cta .button {
    width: 100%;
  }
}

/* About Page Styles */
.about-page {
  width: 100%;
  margin: 0;
  padding: 0 0 4rem;
  background: #ffffff;
}

.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4.5rem, 6vw, 6rem) 0 clamp(4rem, 5.5vw, 5.5rem);
  margin: 0 0 3rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 18%, #054a9f 0%, #020F81 55%, #010838 100%);
  color: #ffffff;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  z-index: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 90vw);
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35) 0%, rgba(2, 15, 129, 0.1) 60%, transparent 80%);
  pointer-events: none;
  z-index: 1;
  animation: ambientAuraPulse 9s ease-in-out infinite alternate;
}

@keyframes ambientAuraPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
}

/* Background Clean IRE Logo Watermark */
.about-hero-bg-logo {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(380px, 68vw);
  max-width: 410px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  filter: brightness(0) invert(1) drop-shadow(0 0 45px rgba(56, 189, 248, 0.55));
  animation: heroLogoFloat 10s ease-in-out infinite alternate;
}

.about-hero-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@keyframes heroLogoFloat {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.14;
    filter: brightness(0) invert(1) drop-shadow(0 0 35px rgba(56, 189, 248, 0.45));
  }
  50% {
    transform: translate(-50%, -53%) scale(1.05) rotate(0.8deg);
    opacity: 0.22;
    filter: brightness(0) invert(1) drop-shadow(0 0 55px rgba(56, 189, 248, 0.7));
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.14;
    filter: brightness(0) invert(1) drop-shadow(0 0 35px rgba(56, 189, 248, 0.45));
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.about-hero-content.is-visible .about-hero-badge {
  animation: heroBadgeEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.about-hero-content.is-visible .about-hero-kicker-text {
  animation: kickerEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.about-hero-content.is-visible .about-hero-heading-text {
  animation: headingEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.about-hero-content.is-visible .about-hero-lead {
  animation: leadEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.about-hero-content.is-visible .about-hero-actions {
  animation: actionsEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes heroBadgeEntrance {
  0% { opacity: 0; transform: translateY(-16px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes kickerEntrance {
  0% { opacity: 0; transform: translateY(-12px); letter-spacing: 0.16em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.08em; }
}

@keyframes headingEntrance {
  0% { opacity: 0; transform: translateY(24px) scale(0.96); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes leadEntrance {
  0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes actionsEntrance {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(56, 189, 248, 0.5);
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.about-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 12px #38bdf8;
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.about-hero-title {
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.about-hero-kicker-text {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #38bdf8 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.about-hero-heading-text {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.6);
  max-width: 24ch;
  display: block;
}

.hero-desktop-br {
  display: block;
}

@media (max-width: 640px) {
  .hero-desktop-br {
    display: inline;
  }
}

.about-hero-lead {
  margin: 0 auto 1.8rem;
  max-width: 760px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.8;
  color: #e2e8f0;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

/* Floating KPI Strip with Shimmer Sweep */
.about-kpi-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  width: min(1140px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.6rem 2.2rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-kpi-strip:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28), 0 0 30px rgba(56, 189, 248, 0.2);
}

.about-kpi-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  animation: kpiShimmer 6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes kpiShimmer {
  0%, 70% { left: -150%; }
  100% { left: 150%; }
}

.about-kpi-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0 0.5rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.about-kpi-item:hover {
  transform: translateY(-4px) scale(1.03);
}

.about-kpi-item strong {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 40%, #bae6fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;
}

.about-kpi-item:hover strong {
  filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.75));
}

.about-kpi-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about-kpi-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
}

@media (max-width: 960px) {
  .about-kpi-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
    padding: 1.5rem;
    width: calc(100% - 2.5rem);
  }

  .about-kpi-divider {
    display: none;
  }
}

@media (max-width: 520px) {
  .about-kpi-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: calc(100% - 1.5rem);
    padding: 1.25rem 1rem;
  }
}

/* Executive Address & Heritage Section */
.about-address-section {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3rem);
  align-items: stretch;
  padding: clamp(2rem, 3.5vw, 3.2rem);
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.about-address-quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.2rem;
  background: linear-gradient(135deg, #020F81 0%, #1e3a8a 100%);
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(2, 15, 129, 0.22);
}

.about-address-crest {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-address-crest svg {
  width: 20px;
  height: 20px;
}

.about-address-quote-card blockquote {
  margin: 1.8rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.55;
  color: #ffffff;
  font-style: italic;
}

.about-address-signature {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-address-author strong {
  display: block;
  font-size: 1.08rem;
  color: #ffffff;
}

.about-address-author span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-address-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.about-address-contact-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.about-address-contact-link:hover {
  color: #7dd3fc;
}

.about-address-contact-link:hover svg {
  transform: translateX(4px);
}

.about-address-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-address-header {
  margin-bottom: 1.6rem;
}

.about-address-tag {
  display: inline-block;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.about-address-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.about-address-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-address-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  transition: all 0.25s ease;
}

.about-address-card:hover {
  background: #ffffff;
  border-color: rgba(2, 15, 129, 0.2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: translateX(4px);
}

.about-address-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-address-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.about-address-icon-wrap.icon-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.about-address-icon-wrap.icon-gold {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.about-address-icon-wrap.icon-emerald {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.about-address-card-content h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
}

.about-address-card-content p {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Core Disciplines Bar */
.about-disciplines-bar {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, rgba(2, 15, 129, 0.04) 0%, rgba(37, 99, 235, 0.08) 100%);
  border: 1px solid rgba(33, 79, 174, 0.12);
  border-radius: 20px;
  margin-bottom: 2rem;
}

.about-disciplines-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-disciplines-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: #020F81;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-disciplines-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.about-discipline-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

@media (max-width: 900px) {
  .about-address-section {
    grid-template-columns: 1fr;
  }

  .about-kpi-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .about-kpi-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-kpi-strip {
    grid-template-columns: 1fr;
  }

  .about-address-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.about-section {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: min(1320px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.25rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s ease;
  will-change: opacity, transform, filter;
}

.about-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Director Letter Styling */
.about-director-letter {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.25rem 0 0;
}

.letter-para {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.82;
  color: #1e293b;
  text-align: justify;
}

.letter-valediction {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.15);
  font-size: 1.05rem;
  color: #020F81;
  font-style: italic;
}

/* About IRE Technology Section */
.about-intro {
  display: block;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  padding: clamp(1.75rem, 3vw, 3rem);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.about-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.95rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 0.85rem;
}

.about-company-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 8px #2563eb;
}

.about-intro h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #020F81;
  letter-spacing: -0.02em;
}

.about-text-lead {
  font-size: 1.05rem;
  line-height: 1.82;
  color: #0f172a;
  font-weight: 500;
  margin-bottom: 1.15rem;
  text-align: justify;
}

.about-text-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.15rem;
  text-align: justify;
}

.about-highlights-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.about-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.about-highlight-badge:hover {
  border-color: #3b82f6;
  background: #eff6ff;
  color: #1d4ed8;
  transform: translateY(-2px);
}

.about-cta-action {
  margin-top: 0.5rem;
}

.about-who-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.65rem;
  background: linear-gradient(135deg, #020F81 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(2, 15, 129, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-who-link:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.about-who-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-visual-card {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-visual-header {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #e2e8f0;
}

.visual-header-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #020F81;
}

.about-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.6rem;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.28s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #214fae 0%, #2f6de0 100%);
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: #020F81;
  letter-spacing: -0.02em;
}

.about-card p,
.about-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.about-card-highlight {
  width: min(1320px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.18);
  color: #0f172a;
  border: 1px solid rgba(33, 79, 174, 0.14);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  padding: 1.6rem;
  align-self: stretch;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.about-card-highlight::before {
  background: linear-gradient(180deg, #214fae 0%, #2f6de0 100%);
}

.about-card-highlight h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  margin-bottom: 1rem;
}

.about-card-highlight h3,
.about-card-highlight p,
.about-card-highlight li {
  color: #0f172a;
}

.about-card-highlight ul {
  list-style: none;
  padding: 0;
  gap: 1rem;
}

.about-card-highlight li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding-left: 0;
  line-height: 1.6;
}

.about-card-highlight li::before {
  content: "";
  flex: 0 0 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(33, 82, 182, 0.92);
  margin-top: 0.65em;
}

/* ==========================================================================
   Our Vision & Mission Timeline (Flowchart / Tree Design)
   ========================================================================== */
.about-vision-mission {
  padding: 1.5rem 0 0.5rem;
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.vm-timeline-wrapper {
  width: 100%;
  position: relative;
}

.vm-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 1060px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Top decorative branch graphic */
.vm-top-decor {
  position: relative;
  height: 44px;
  margin-left: 92px;
  margin-bottom: -18px;
}

.vm-top-decor-svg {
  width: 120px;
  height: 48px;
  overflow: visible;
}

/* Bottom decorative dot */
.vm-bottom-decor {
  position: relative;
  height: 16px;
  margin-left: 154px;
  margin-top: -12px;
}

.vm-end-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a4c9dd;
}

/* Timeline Item Layout */
.vm-item {
  display: grid;
  grid-template-columns: 80px 210px 1fr;
  align-items: center;
  column-gap: 1.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vm-item:nth-child(2) { transition-delay: 0.1s; }
.vm-item:nth-child(3) { transition-delay: 0.25s; }
.vm-item:nth-child(4) { transition-delay: 0.4s; }

/* 1. Left Icon Bubble */
.vm-icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-icon-bubble {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d4e5f0;
  display: grid;
  place-items: center;
  color: #2b3947;
  box-shadow: 0 4px 16px rgba(18, 52, 90, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-icon-bubble svg {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.35s ease, color 0.35s ease;
}

.vm-item:hover .vm-icon-bubble {
  border-color: #3c8cb7;
  color: #2452ad;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(36, 82, 173, 0.16);
}

/* 2. Spine & Title Column */
.vm-spine-col {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 90px;
}

/* Continuous vertical timeline line */
.vm-spine-line {
  position: absolute;
  left: 0;
  top: -2.25rem;
  bottom: -2.25rem;
  width: 2px;
  background: #4ba0cc;
  z-index: 1;
}

.vm-item:first-of-type .vm-spine-line {
  top: 0;
}

.vm-spine-line.is-last {
  bottom: 0;
}

/* Solid node dot on the line */
.vm-spine-dot {
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3c8cb7;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1.5px #3c8cb7;
  z-index: 2;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.vm-item:hover .vm-spine-dot {
  transform: translateY(-50%) scale(1.25);
  background: #2452ad;
}

/* Label & Horizontal Connector */
.vm-label-block {
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.vm-title {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.vm-connector-arm {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 24px;
}

.vm-arm-line {
  flex: 1;
  height: 1.5px;
  background: #cadde8;
}

.vm-arm-point {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a2c8de;
}

/* 3. Right Card Column */
.vm-content-col {
  width: 100%;
}

.vm-card {
  background: #eef5f8;
  border-radius: 4px;
  padding: 1.5rem 1.85rem;
  border: 1px solid rgba(195, 218, 232, 0.6);
  box-shadow: 0 2px 8px rgba(20, 50, 80, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-card p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.65;
  color: #4a5568;
}

.vm-item:hover .vm-card {
  background: #e6f0f6;
  border-color: rgba(160, 200, 222, 0.9);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(25, 65, 105, 0.07);
}

.vm-card-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vm-values-lead {
  font-weight: 600;
  color: #2d3748;
}

.vm-value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vm-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  background: #ffffff;
  border: 1px solid #c9dfea;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2452ad;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.vm-chip:hover {
  background: #2452ad;
  color: #ffffff;
  border-color: #2452ad;
}

/* Animations on Scroll */
.about-page-ready .vm-item {
  opacity: 0;
  transform: translateY(24px);
}

.about-page-ready .about-section.is-visible .vm-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-page-ready .about-section.is-visible .vm-item:nth-child(2) {
  transition-delay: 0.08s;
}

.about-page-ready .about-section.is-visible .vm-item:nth-child(3) {
  transition-delay: 0.18s;
}

.about-page-ready .about-section.is-visible .vm-item:nth-child(4) {
  transition-delay: 0.28s;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .vm-top-decor {
    margin-left: 16px;
  }

  .vm-bottom-decor {
    margin-left: 80px;
  }

  .vm-item {
    grid-template-columns: 64px 175px 1fr;
    column-gap: 1rem;
  }

  .vm-icon-bubble {
    width: 58px;
    height: 58px;
  }

  .vm-icon-bubble svg {
    width: 26px;
    height: 26px;
  }

  .vm-title {
    font-size: 1.18rem;
  }

  .vm-card {
    padding: 1.25rem 1.4rem;
  }
}

@media (max-width: 720px) {
  .vm-top-decor {
    display: none;
  }

  .vm-bottom-decor {
    display: none;
  }

  .vm-timeline {
    gap: 1.8rem;
  }

  .vm-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.85rem;
    column-gap: 0.85rem;
  }

  .vm-icon-col {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
  }

  .vm-icon-bubble {
    width: 48px;
    height: 48px;
  }

  .vm-icon-bubble svg {
    width: 22px;
    height: 22px;
  }

  .vm-spine-col {
    grid-column: 2;
    grid-row: 1;
    min-height: auto;
  }

  .vm-spine-line {
    display: none;
  }

  .vm-spine-dot {
    position: static;
    transform: none;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .vm-item:hover .vm-spine-dot {
    transform: scale(1.15);
  }

  .vm-label-block {
    margin-left: 0;
    gap: 8px;
  }

  .vm-connector-arm {
    display: none;
  }

  .vm-content-col {
    grid-column: 1 / span 2;
    grid-row: 2;
  }

  .vm-card {
    padding: 1.15rem 1.25rem;
  }

  .vm-card p {
    font-size: 0.98rem;
  }
}

.about-values {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(245,249,255,0.92) 100%);
}

.about-values .about-section-copy {
  display: grid;
  gap: 1rem;
}

.about-values-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 19, 36, 0.94) 0%, rgba(13, 19, 36, 0.82) 100%);
  border: 1px solid rgba(33, 79, 174, 0.14);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.about-values-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(180deg, rgba(2, 15, 129, 0) 52%, rgba(2, 15, 129, 0.72) 100%);
  z-index: 1;
}

.about-values-visual img {
  display: block;
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.03);
}

.about-values-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.4rem 1.35rem;
  color: #ffffff;
}

.about-values-visual figcaption strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-values-visual figcaption span {
  display: block;
  max-width: 30ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.about-values-list {
  display: grid;
  gap: 1rem;
}

.about-value-item {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(33, 79, 174, 0.1);
  border-radius: 18px;
  padding: 1rem 1.15rem 1rem 1.3rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.about-value-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #214fae 0%, #3b82f6 100%);
}

.about-values {
  position: relative;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(180deg, #0b178f 0%, #09156f 100%);
  color: #ffffff;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: clamp(2rem, 3vw, 3rem);
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, transparent 0 60%, rgba(0, 0, 0, 0.12) 100%);
  opacity: 1;
}

.about-core-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.2vw, 2.6rem) clamp(0.5rem, 1.2vw, 1rem) clamp(1rem, 1.8vw, 1.6rem) 0;
}

.about-core-copy h2 {
  color: #ffffff;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  margin: 0 0 0.5rem;
  letter-spacing: -0.05em;
}

.about-core-copy p {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.7;
  margin: 0;
}

.about-core-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: center;
}

.about-core-item {
  position: relative;
  min-height: 330px;
  padding: 2.45rem 1.8rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  clip-path: polygon(50% 0%, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-core-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.about-core-item h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.08;
  color: #ffffff;
  max-width: 17.5ch;
}

.about-core-item p {
  margin: 0;
  max-width: 30ch;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.about-core-icon {
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.about-core-icon svg {
  width: 56%;
  height: 56%;
  display: block;
}

.about-core-item:nth-child(1),
.about-core-item:nth-child(2) {
  transform: translateY(-0.55rem);
}

.about-core-item:nth-child(3),
.about-core-item:nth-child(4) {
  transform: translateY(0.55rem);
}

.about-core-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.11), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.05), transparent 28%);
  pointer-events: none;
}

.about-values-visual,
.about-values-list,
.about-value-item {
  display: none;
}

.about-leadership {
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.about-leadership.about-section {
  width: min(1320px, calc(100% - 2rem));
  padding: 0;
  margin-bottom: 2rem;
}

.about-leadership-intro {
  margin-bottom: 1.4rem;
}

.about-leadership-intro h2 {
  color: #214fae;
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
  margin-bottom: 0.55rem;
  letter-spacing: -0.04em;
}

.about-leadership-intro p {
  max-width: 980px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #4a5568;
}

.leadership-grid {
  display: grid;
  gap: 1rem;
}

.leadership-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(33, 79, 174, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.leadership-card-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
}

.leadership-media {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 28%),
    linear-gradient(135deg, #dce7ff 0%, #eef4ff 48%, #d5e2ff 100%);
}

.leadership-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
}

.leadership-media-fallback {
  position: relative;
  min-height: 220px;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.35rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(33, 82, 182, 0.18), transparent 22%),
    linear-gradient(160deg, #d8e5ff 0%, #edf3ff 45%, #d7e2ff 100%);
  color: #214fae;
  overflow: hidden;
}

.leadership-media-fallback::before {
  content: "";
  position: absolute;
  inset: auto -10% -14% auto;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 28%, transparent 29% 100%);
  opacity: 0.9;
}

.leadership-media-fallback::after {
  content: "";
  position: absolute;
  inset: auto auto 0 -10%;
  width: 70%;
  height: 56%;
  background:
    radial-gradient(circle at 20% 28%, rgba(33, 82, 182, 0.14), transparent 30%),
    radial-gradient(circle at 62% 38%, rgba(33, 82, 182, 0.1), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
  clip-path: polygon(0 100%, 8% 44%, 20% 48%, 32% 32%, 45% 34%, 58% 18%, 72% 24%, 88% 10%, 100% 18%, 100% 100%);
  opacity: 0.8;
}

.leadership-media-fallback-initials {
  position: relative;
  z-index: 1;
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(33, 82, 182, 0.12);
  border: 1px solid rgba(33, 82, 182, 0.18);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.leadership-media-fallback-name {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: #1e3e86;
}

.leadership-media-fallback-role {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  color: #4b5f89;
}

.leadership-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.leadership-copy h3 {
  margin: 0 0 0.25rem;
  color: #214fae;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.leadership-role {
  margin: 0 0 0.65rem;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
}

.leadership-copy p:last-child {
  margin: 0;
  color: #4b5563;
  line-height: 1.72;
  font-size: 1rem;
  max-width: 62ch;
}

.about-team {
  display: grid;
  gap: 1.5rem;
}

.about-team.about-section {
  width: min(1320px, calc(100% - 2rem));
  padding: 0;
  margin-bottom: 2rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-team-header {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.about-team-header .about-kicker {
  color: #214fae;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
}

.about-team-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #101828;
}

.about-team-header p:last-child {
  margin: 0;
  max-width: 66ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #566174;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.team-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card:nth-child(1) { transition-delay: 0.05s; }
.team-card:nth-child(2) { transition-delay: 0.15s; }
.team-card:nth-child(3) { transition-delay: 0.25s; }
.team-card:nth-child(4) { transition-delay: 0.35s; }

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.12);
  border-color: rgba(2, 15, 129, 0.25);
}

.team-card-media {
  position: relative;
  margin: 0;
  min-height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.65), transparent 23%),
    linear-gradient(180deg, #eceff5 0%, #dde4ef 100%);
}

.team-card-media::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% -12%;
  height: 52%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 23, 42, 0.08));
  clip-path: polygon(0 100%, 8% 56%, 18% 48%, 28% 56%, 36% 40%, 48% 36%, 56% 46%, 66% 36%, 76% 44%, 86% 34%, 100% 42%, 100% 100%);
  opacity: 0.55;
}

.team-card-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.team-card--1 .team-card-media {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(180deg, #ebeff7 0%, #dfe6f2 100%);
}

.team-card--2 .team-card-media {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(180deg, #edf2f8 0%, #e0e7f0 100%);
}

.team-card--3 .team-card-media {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(180deg, #eef3fa 0%, #dee5ef 100%);
}

.team-card--4 .team-card-media {
  background:
    radial-gradient(circle at 40% 16%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(180deg, #eceff6 0%, #e1e7f1 100%);
}

.team-avatar {
  position: relative;
  z-index: 1;
  width: 7.5rem;
  height: 7.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.team-avatar span {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #214fae;
}

.team-avatar--1 span {
  color: #1f3f8f;
}

.team-avatar--2 span {
  color: #2452ad;
}

.team-avatar--3 span {
  color: #1d4a8b;
}

.team-avatar--4 span {
  color: #285cc8;
}

.team-card-copy {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: 1.15rem 1rem 1.25rem;
  text-align: center;
}

.team-card-copy h3 {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.25;
  color: #1f2937;
}

.team-card-copy p {
  margin: 0;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.4;
}

.team-social-link {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  margin-top: 0.25rem;
  border-radius: 4px;
  color: #214fae;
  background: #eef3ff;
  border: 1px solid rgba(33, 79, 174, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.team-social-link:hover {
  transform: translateY(-1px);
  background: #214fae;
  color: #ffffff;
}

.team-social-link svg {
  width: 0.95rem;
  height: 0.95rem;
}

/* Capability & Workforce Highlight Metrics */
.team-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: min(1320px, calc(100% - 2rem));
  margin: 2.2rem auto 0;
  padding: 1.4rem 2rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.team-metric-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.team-metric-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(2, 15, 129, 0.08);
  color: #020F81;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-metric-icon svg {
  width: 22px;
  height: 22px;
}

.team-metric-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.team-metric-text span {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
}

/* About CTA Banner */
.about-cta-banner {
  width: min(1320px, calc(100% - 2rem));
  margin: 2.5rem auto 1rem;
  padding: clamp(2.4rem, 4vw, 3.4rem) clamp(1.8rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, #020F81 0%, #0a2569 55%, #034096 100%);
  border-radius: 26px;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(2, 15, 129, 0.22);
  position: relative;
  overflow: hidden;
}

.about-cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-cta-copy {
  max-width: 650px;
}

.about-cta-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-cta-copy h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.22;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.about-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.94rem;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .team-metrics-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .about-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-video {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  margin: 0 0 1.5rem;
  padding: clamp(1.8rem, 3.4vw, 3.2rem) 0;
  background:
    linear-gradient(135deg, rgba(33, 79, 174, 0.16) 0%, rgba(33, 79, 174, 0.08) 45%, rgba(255, 255, 255, 0.16) 100%);
  border: 1px solid rgba(33, 79, 174, 0.14);
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.about-video.about-section {
  background:
    linear-gradient(135deg, rgba(33, 79, 174, 0.16) 0%, rgba(33, 79, 174, 0.08) 45%, rgba(255, 255, 255, 0.16) 100%);
  border: 1px solid rgba(33, 79, 174, 0.14);
  box-shadow: none;
  border-radius: 0;
  padding: clamp(1.8rem, 3.4vw, 3.2rem) 0;
  margin-bottom: 1.5rem;
  width: 100%;
}

.about-video-copy {
  margin-bottom: 0.25rem;
  width: min(1320px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.about-video-copy h2 {
  color: #214fae;
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
  letter-spacing: -0.04em;
}

.about-video-copy p {
  max-width: 840px;
  color: #4a5568;
}

.about-video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 15, 129, 0.92), rgba(33, 79, 174, 0.8)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 30%);
  border: 1px solid rgba(33, 79, 174, 0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  width: min(1320px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.about-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.46) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.1), transparent 18%);
  pointer-events: none;
}

.about-video-placeholder {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
}

.about-video-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-video-placeholder strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-video-placeholder p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.about-video-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0 18%, rgba(255, 255, 255, 0.08) 19% 32%, transparent 33% 100%);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.05),
    0 0 30px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0.88;
  pointer-events: none;
}

.about-page-ready .about-section.is-visible .about-video-shell::after {
  animation: aboutPlayPulse 1.85s ease-in-out infinite;
}

.about-video {
  display: grid;
  gap: 1.25rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.about-video-copy {
  margin-bottom: 0.25rem;
}

.about-video-copy h2 {
  color: #214fae;
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
  letter-spacing: -0.04em;
}

.about-video-copy p {
  max-width: 840px;
  color: #4a5568;
}

.about-video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 15, 129, 0.92), rgba(33, 79, 174, 0.8)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 30%);
  border: 1px solid rgba(33, 79, 174, 0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.about-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.46) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.1), transparent 18%);
  pointer-events: none;
}

.about-video-placeholder {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.7rem;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
}

.about-video-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-video-placeholder strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-video-placeholder p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

@keyframes aboutCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes aboutVideoIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(10px) saturate(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes aboutVideoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.005);
  }
}

@keyframes aboutVideoShimmer {
  0% {
    opacity: 0.72;
    transform: translateX(-2%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(1%) translateY(-1px);
  }
  100% {
    opacity: 0.72;
    transform: translateX(-2%) translateY(0);
  }
}

@keyframes aboutBadgePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.06);
  }
}

@keyframes aboutTextRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutPlayPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.78;
    box-shadow:
      0 0 0 14px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(255, 255, 255, 0.12);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
    box-shadow:
      0 0 0 24px rgba(255, 255, 255, 0.08),
      0 0 42px rgba(255, 255, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-content,
  .about-section,
  .about-page-ready .vm-item,
  .about-page-ready .leadership-card,
  .about-page-ready .about-video-shell,
  .about-page-ready .about-video-shell::before,
  .about-page-ready .about-video-badge,
  .about-page-ready .about-video-placeholder strong,
  .about-page-ready .about-video-placeholder p {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .about-section {
    padding: 1rem;
    border-radius: 24px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card-media {
    min-height: 210px;
  }

  .about-who-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .about-who-visual img {
    width: 70%;
    height: auto;
  }

  .about-intro .about-section-copy h2 {
    grid-row: 2;
  }

  .about-intro .about-section-copy p:first-of-type {
    grid-row: 3;
  }

  .about-who-link {
    grid-row: 4;
  }
}

@media (max-width: 640px) {
  .about-page {
    padding-bottom: 2.5rem;
  }

  .about-hero {
    padding: 4rem 0 3.5rem;
  }

  .about-hero h1 {
    max-width: 100%;
  }

  .about-section {
    width: min(100%, calc(100% - 1rem));
    gap: 1.1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card-media {
    min-height: 200px;
  }
}

.about-value-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #020F81;
}

.about-value-item span {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-intro,
  .about-values {
    grid-template-columns: 1fr;
  }

  .leadership-card,
  .leadership-card-reverse {
    grid-template-columns: 1fr;
  }

  .leadership-card-reverse .leadership-media {
    order: -1;
  }

  .leadership-copy {
    padding: 1.4rem 1.35rem;
  }

  .about-video-shell {
    border-radius: 20px;
  }

  .about-video-placeholder {
    padding: 1.1rem;
  }

  .about-section-copy {
    margin-bottom: 0.25rem;
  }

  .leadership-card {
    border-radius: 18px;
  }

  .leadership-media img {
    min-height: 200px;
  }

  .about-leadership-intro h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .leadership-copy h3 {
    font-size: 1.1rem;
  }

  .about-video-placeholder strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    margin: 0 0 1.5rem;
    border-radius: 0;
  }

  .about-values-list {
    gap: 0.8rem;
  }

  .about-values-visual {
    border-radius: 18px;
  }

  .about-values-visual img {
    height: 220px;
  }
}

/* ==========================================================================
   Ultra-Luxury Enterprise Footer Styles
   ========================================================================== */

.site-footer {
  position: relative;
  background: 
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(2, 132, 199, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, #071229 0%, #030a17 100%);
  color: #ffffff;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Top Laser Line on Footer */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #38bdf8 30%, #020F81 50%, #38bdf8 70%, transparent 100%);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.5fr;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  width: min(1320px, calc(100% - 2.5rem));
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
  padding: 0;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Column 1: Brand & Logo */
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 240px;
  transition: transform 0.25s ease;
}

.footer-brand:hover {
  transform: translateY(-2px);
}

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

.footer-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.68;
  color: #94a3b8;
  max-width: 320px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-social .social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-social .social-icon:hover {
  transform: translateY(-3px) scale(1.08);
}

.footer-social .social-telegram:hover {
  background: #229ed9;
  border-color: #229ed9;
  box-shadow: 0 0 16px rgba(34, 158, 217, 0.5);
}

.footer-social .social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.5);
}

.footer-social .social-outlook:hover {
  background: #0078d4;
  border-color: #0078d4;
  box-shadow: 0 0 16px rgba(0, 120, 212, 0.5);
}

.footer-social .social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.5);
}

.footer-social .social-chat:hover {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
}

/* Titles */
.footer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-title-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

/* Link Lists */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #94a3b8;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a::before {
  content: "›";
  color: #38bdf8;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  transform: translateX(2px);
  color: #f41c22;
}

/* Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #94a3b8;
}

.footer-contact-icon {
  width: 17px;
  height: 17px;
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.footer-hotline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 10px;
  color: #ffffff;
}

.footer-hotline-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseHeroDot 2s infinite ease-in-out;
}

.footer-hotline-copy {
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-hotline-copy a {
  color: #38bdf8;
  text-decoration: none;
}

/* Bottom Sub-Footer */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  width: min(1320px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  font-size: 0.86rem;
  color: #94a3b8;
}

.footer-excellence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.04em;
}

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

.footer-legal a {
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #38bdf8;
}

/* Footer Responsive Breakpoints */
@media (max-width: 1080px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ==========================================================================
   Luxury Mobile Navigation Drawer & Universal Phone Responsiveness
   ========================================================================== */

/* Mobile Navigation Toggle Button (Icon Mode) */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(2, 15, 129, 0.14);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle:hover {
  background: #f8fafc;
  border-color: #020F81;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2.2px;
  background: #020F81;
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.25s ease;
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
  background: #f41c22;
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
  background: #f41c22;
}

/* Mobile Slide-Out Drawer Overlay (From Right or Left) */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.35s ease;
}

.mobile-nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.is-open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: min(340px, 86vw);
  height: 100%;
  background: #ffffff;
  box-shadow: 12px 0 45px rgba(0, 0, 0, 0.22);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}

body.menu-drawer-open {
  overflow: hidden;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.mobile-drawer-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: rgba(244, 28, 34, 0.1);
  color: #f41c22;
  transform: rotate(90deg);
}

.mobile-drawer-close svg {
  width: 20px;
  height: 20px;
}

/* Mobile Nav Links */
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.1rem;
  gap: 0.35rem;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  color: #020F81;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-link:hover {
  background: rgba(2, 15, 129, 0.06);
  color: #f41c22;
  transform: translateX(4px);
}

.mobile-nav-link.is-active {
  background: linear-gradient(135deg, rgba(2, 15, 129, 0.08) 0%, rgba(37, 99, 235, 0.12) 100%);
  color: #f41c22;
  font-weight: 800;
  border-left: 3px solid #f41c22;
}

/* Drawer Footer */
.mobile-drawer-footer {
  padding: 1.4rem 1.4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #020F81 0%, #1e40af 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 15, 129, 0.25);
  transition: transform 0.25s ease;
}

.mobile-drawer-cta:hover {
  transform: translateY(-2px);
}

.mobile-drawer-cta svg {
  width: 18px;
  height: 18px;
}

.mobile-drawer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #64748b;
}

.mobile-contact-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.mobile-contact-label {
  font-weight: 700;
  color: #0f172a;
}

.mobile-contact-line a {
  color: #020F81;
  font-weight: 600;
  text-decoration: none;
}

.mobile-drawer-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.drawer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #020F81;
  transition: transform 0.2s ease;
}

.drawer-social:hover {
  transform: scale(1.1);
}

.drawer-social svg {
  width: 16px;
  height: 16px;
}

.drawer-tg { background: #229ed9; }
.drawer-wa { background: #25d366; }
.drawer-outlook { background: #0078d4; }
.drawer-fb { background: #1877f2; }

/* ==========================================================================
   Responsive Breakpoints for Header, Topbar & Pages (< 992px & < 768px)
   ========================================================================== */

@media (max-width: 991px) {
  .site-nav {
    display: none !important;
  }

  .header-social {
    display: none !important;
  }

  .header-inner {
    min-height: 64px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.45rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Logo on Left */
  .brand {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  .site-logo-full {
    max-width: 190px !important;
    max-height: 52px !important;
    object-fit: contain !important;
  }

  /* MENU ▾ on Right */
  .mobile-nav-toggle {
    order: 2 !important;
    display: inline-flex !important;
    margin-left: auto !important;
  }

  .site-topbar-badge,
  .site-topbar-divider {
    display: none !important;
  }

  .site-topbar-inner {
    justify-content: space-between;
    padding: 0.35rem 1rem;
  }

  .site-topbar-date-text {
    font-size: 0.76rem;
  }
}

@media (max-width: 768px) {
  /* Contact Page Mobile Polish */
  .contact-hero {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .contact-hero-heading {
    font-size: clamp(1.8rem, 6.5vw, 2.2rem) !important;
  }

  .contact-form-row {
    grid-template-columns: 1fr !important;
  }

  .contact-form-card {
    padding: 1.35rem 1.25rem !important;
  }

  .contact-location-details {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .contact-location-card {
    padding: 1.5rem 1.25rem !important;
  }

  .contact-location-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem !important;
  }

  /* Projects Page Mobile Polish */
  .projects-hero-banner {
    padding: 1.8rem 1.25rem !important;
  }

  .projects-hero-stats {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.85rem !important;
    width: 100%;
  }

  .projects-stat-divider {
    display: none !important;
  }

  .projects-toolbar {
    flex-direction: column;
    align-items: stretch !important;
    gap: 1rem !important;
  }

  .projects-search-box {
    width: 100% !important;
  }

  .projects-actions-row {
    width: 100%;
    justify-content: space-between;
  }

  .projects-filter-tabs {
    overflow-x: auto;
    width: 100%;
    padding: 0.35rem;
    white-space: nowrap;
    flex-wrap: nowrap !important;
  }

  .projects-list.projects-grid-mode {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* News Page Mobile Polish */
  .news-grid-cards {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   Project Detail Database Loading State
   ========================================================================== */
.project-detail-loader-screen {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  background: radial-gradient(circle at 50% 35%, rgba(2, 15, 129, 0.04) 0%, transparent 65%);
  z-index: 10;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-detail-loader-screen.is-hidden {
  display: none !important;
}

.project-detail-loader-spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgba(2, 15, 129, 0.12);
  border-top-color: #020F81;
  border-right-color: #38bdf8;
  animation: projectLoaderSpin 0.85s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 22px rgba(2, 15, 129, 0.12);
}

@keyframes projectLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.project-detail-loader-title {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.project-detail-loader-sub {
  margin: 0;
  font-size: 0.96rem;
  color: #64748b;
  max-width: 480px;
  line-height: 1.6;
}

.project-detail-article.is-loading {
  display: none !important;
}

.project-detail-article.is-loaded {
  display: block !important;
  animation: detailFadeIn 0.45s ease forwards;
}

@keyframes detailFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   IRE TECHNOLOGY - LUXURY BRANDED PRELOADER
   ========================================================================== */
#ire-site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#ire-site-preloader.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.ire-preloader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2rem;
  max-width: 360px;
}

.ire-preloader-ring-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ire-preloader-spin-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(56, 189, 248, 0.12);
  border-top-color: #38bdf8;
  border-right-color: #2563eb;
  animation: irePreloaderSpin 1s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.ire-preloader-glow-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.2);
  animation: irePreloaderSpin 8s linear infinite reverse;
}

.ire-preloader-logo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
  animation: irePreloaderPulse 2.2s ease-in-out infinite;
}

.ire-preloader-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.ire-preloader-title {
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Kantumruy Pro", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 40%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ire-preloader-subtitle {
  color: #94a3b8;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin: 0;
}

.ire-preloader-progress-track {
  width: 150px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
}

.ire-preloader-progress-bar {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8, #60a5fa);
  border-radius: 999px;
  animation: irePreloaderBar 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes irePreloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes irePreloaderPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.55);
  }
}

@keyframes irePreloaderBar {
  0% {
    left: -40%;
    width: 30%;
  }
  50% {
    left: 30%;
    width: 50%;
  }
  100% {
    left: 100%;
    width: 30%;
  }
}


