:root {
  /* Brand Color Palette */
  --color-blue: #3b82f6;
  --color-blue-hover: #2563eb;
  --color-blue-dark: #1d4ed8;
  --color-blue-light: #60a5fa;
  --color-navy: #0f2b5c;
  --color-teal: #3b82f6;

  /* Neutral Color Palette */
  --color-black: #121212;
  --color-bg: #18181b;
  --color-panel: #202024;
  --color-cream: #f4f4f6;
  --color-ink: #18181b;
  --color-grey: #9ca3af;
  --color-light-grey: #e5e7eb;
  --color-white: #ffffff;

  --color-muted: rgba(255, 255, 255, 0.72);
  --color-soft: rgba(255, 255, 255, 0.12);
  --color-line: rgba(255, 255, 255, 0.18);
  --container: 1130px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-white);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.home-container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  color: var(--color-white);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(22, 24, 27, 0.78);
  border-bottom: 1px solid var(--color-soft);
  backdrop-filter: blur(18px);
}

.site-header__nav {
  width: min(var(--container), calc(100% - 64px));
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  text-transform: uppercase;
}

.site-logo {
  height: 40px;
  width: auto;
}

.site-brand__mark {
  width: 37px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-right: 0;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
}

.site-brand__name {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.site-brand__name strong {
  font-weight: 900;
}

.site-header__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.site-header__links a,
.site-header__phone,
.site-header__cta {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header__links a:hover,
.site-header__phone:hover {
  color: var(--color-white);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-header__cta {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  color: var(--color-white);
  text-transform: uppercase;
}

.site-header__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-white);
}

.site-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  cursor: pointer;
}

.site-nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.front-home {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px) 78px 0 / 1px 100% no-repeat,
    var(--color-bg);
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
}

.home-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 68px), calc(100% - 58px) 100%, 0 100%);
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 20, 28, 0.76) 0%, rgba(13, 20, 28, 0.49) 45%, rgba(13, 20, 28, 0.24) 100%),
    linear-gradient(180deg, rgba(11, 17, 24, 0.28) 0%, rgba(11, 17, 24, 0.16) 58%, rgba(29, 29, 29, 0.72) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 68px), calc(100% - 58px) 100%, 0 100%);
}

.home-hero__inner {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.home-hero__copy {
  width: min(600px, 100%);
  margin-left: clamp(44px, 7vw, 106px);
  padding-top: 18px;
}

.section-index {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.home-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--color-white);
  font-size: 104px;
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero h1 strong {
  display: block;
  font-weight: 900;
}

.home-hero p {
  max-width: 330px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-action {
  width: 255px;
  min-height: 72px;
  margin-top: 34px;
  padding: 17px 18px 17px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--color-blue);
  border-radius: 4px;
  box-shadow: 0 22px 42px rgba(20, 87, 217, 0.34);
  color: var(--color-white);
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hero-action span:first-child {
  max-width: 128px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-action__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 300;
}

.hero-action:hover {
  transform: translateY(-2px);
  background: var(--color-blue-dark);
  box-shadow: 0 26px 48px rgba(20, 87, 217, 0.42);
}

.hero-film {
  position: absolute;
  right: 0;
  bottom: 110px;
  width: min(380px, 34vw);
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.hero-film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.hero-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.hero-film:hover img,
.hero-film.is-active img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.play-control {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 66px;
  height: 66px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--color-white);
  transform: translate(-50%, -50%);
}

.hero-film.is-active .play-control {
  animation: playPulse 720ms ease;
}

.hero-film.is-playing .play-control,
.hero-film.is-playing::after {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-film video.hero-film__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Modal Lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 23, 0.88);
  backdrop-filter: blur(8px);
}

.video-modal__container {
  position: relative;
  width: min(920px, 92vw);
  aspect-ratio: 16 / 9;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-modal__content {
  width: 100%;
  height: 100%;
}

.video-modal__content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.about-panel {
  position: relative;
  padding: 118px 0 150px;
  background: var(--color-bg);
}

.about-panel__rail {
  position: absolute;
  top: 112px;
  left: 78px;
  width: 1px;
  height: calc(100% - 112px);
  background: var(--color-line);
}

.about-panel__rail span {
  position: absolute;
  top: 2;
  left: -8px;
  padding-bottom: 22px;
  background: var(--color-bg);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.about-panel__rail::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  width: 1px;
  height: 238px;
  background: rgba(255, 255, 255, 0.94);
}

.about-panel__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.7fr;
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.about-panel__title {
  padding-left: clamp(44px, 7vw, 106px);
}

.about-panel__title p {
  margin: 0 0 44px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-panel h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-panel__title a {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #4d95ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-panel__lead p,
.about-panel__note p {
  margin: 0;
  color: var(--color-white);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.about-panel__note p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 600;
}

.about-panel__media {
  grid-column: 2 / 4;
  margin: 48px 0 0;
  border-radius: 6px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 48px 100%, 0 calc(100% - 48px));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.about-panel__media img {
  width: 100%;
  aspect-ratio: 16 / 6.2;
  object-fit: cover;
}

.business-section {
  position: relative;
  padding: 102px 0 122px;
  background: var(--color-cream);
  color: var(--color-ink);
}

.business-section__rail,
.directors-section__rail {
  position: absolute;
  top: 125px;
  left: 78px;
  width: 1px;
  height: 176px;
  background: rgba(40, 120, 255, 0.78);
}

.business-section__rail span,
.directors-section__rail span {
  position: absolute;
  top: -26px;
  left: -8px;
  padding-bottom: 22px;
  background: var(--color-cream);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.business-section__inner {
  padding-left: clamp(44px, 7vw, 106px);
}

.section-topline,
.directors-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.section-topline p,
.directors-section__head p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-topline a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.business-section h2,
.directors-section h2 {
  margin: 58px 0 0;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.business-grid {
  width: min(980px, 100%);
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 20px;
}

.business-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 42px 100%, 0 calc(100% - 42px));
  box-shadow: 0 22px 55px rgba(24, 34, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(24, 34, 42, 0.14);
}

.business-card__image {
  height: 204px;
  overflow: hidden;
  background-color: #d7dde0;
  position: relative;
}

.business-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.business-card:hover .business-card__image img {
  transform: scale(1.05);
}

.business-card__image--aerospace {
  background-position: 0% 0%;
}

.business-card__image--pipe {
  background-position: 50% 0%;
}

.business-card__image--line-pipe {
  background-position: 100% 0%;
}

.business-card__image--sales {
  background-position: 0% 100%;
}

.business-card__image--procurement {
  background-position: 50% 100%;
}

.business-card__image--logistic {
  background-position: 100% 100%;
}

.business-card h3 {
  min-height: 82px;
  margin: 0;
  padding: 28px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-ink);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
}

.directors-section {
  position: relative;
  padding: 102px 0 98px;
  overflow: hidden;
  background: var(--color-navy);
  color: var(--color-white);
}

.directors-section__rail {
  background: rgba(255, 255, 255, 0.28);
}

.directors-section__rail span {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.9);
}

.directors-section__inner {
  padding-left: clamp(44px, 7vw, 106px);
}

.directors-section__head {
  align-items: flex-end;
}

.directors-section h2 {
  margin-top: 42px;
  color: var(--color-white);
}

.directors-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
}

.directors-controls button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.directors-controls button:hover {
  transform: translateY(-2px);
  background: var(--color-white);
  color: var(--color-navy);
}

.directors-controls button span {
  font-size: 18px;
  line-height: 1;
}

.directors-carousel {
  margin-top: 52px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.directors-track {
  width: max-content;
  display: flex;
  gap: 28px;
  padding: 0 64px 10px 0;
}

.director-card {
  width: 224px;
  min-height: 352px;
  padding: 10px 10px 24px;
  flex: 0 0 auto;
  background: rgba(30, 86, 176, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.18);
}

.director-card__portrait {
  height: 178px;
  border-radius: 4px;
  background-image: url("../img/aqua-directors-strip.png");
  background-size: 400% 100%;
  background-repeat: no-repeat;
  background-color: #b7bec6;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.director-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 60px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.director-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.director-card:hover .director-card__portrait {
  transform: scale(1.05);
}

.director-card__portrait--one {
  background-position: 0% 50%;
}

.director-card__portrait--two {
  background-position: 33.333% 50%;
}

.director-card__portrait--three {
  background-position: 66.666% 50%;
}

.director-card__portrait--four {
  background-position: 100% 50%;
}

.director-card h3 {
  margin: 20px 0 4px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.director-card__role {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.55);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.director-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.65;
}

.news-section {
  position: relative;
  padding: 102px 0 118px;
  overflow: hidden;
  background: var(--color-cream);
  color: var(--color-ink);
}

.news-section__rail,
.infrastructure-cta__rail {
  position: absolute;
  top: 120px;
  left: 78px;
  width: 1px;
  height: 178px;
  background: rgba(40, 120, 255, 0.78);
}

.news-section__rail span,
.infrastructure-cta__rail span {
  position: absolute;
  top: -22px;
  left: -8px;
  padding-bottom: 22px;
  /* background: var(--color-cream); */
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.news-section__inner {
  padding-left: clamp(44px, 7vw, 106px);
}

.news-section h2 {
  margin: 58px 0 0;
  color: var(--color-ink);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-scroll {
  width: calc(100vw - max(32px, (100vw - var(--container)) / 2) - clamp(44px, 7vw, 106px));
  margin-top: 72px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.news-scroll::-webkit-scrollbar {
  display: none;
}

.news-track {
  width: max-content;
  display: flex;
  gap: 24px;
  padding: 0 68px 12px 0;
}

.news-card {
  width: 232px;
  min-height: 350px;
  padding: 12px 12px 18px;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  background: var(--color-white);
  border-radius: 7px;
  box-shadow: 0 24px 60px rgba(24, 34, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 76px rgba(24, 34, 42, 0.14);
}

.news-card__image {
  height: 126px;
  border-radius: 4px;
  background-size: 400% 100%;
  background-repeat: no-repeat;
  background-color: #cdd4d8;
  transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

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

.news-card__image--one {
  background-position: 0% 50%;
}

.news-card__image--two {
  background-position: 33.333% 50%;
}

.news-card__image--three {
  background-position: 66.666% 50%;
}

.news-card__image--four {
  background-position: 100% 50%;
}

.news-card h3 {
  margin: 28px 12px 0;
  color: var(--color-ink);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
}

.news-card p {
  margin: 16px 12px 0;
  color: rgba(21, 25, 29, 0.44);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}

.news-card__meta {
  margin: auto 12px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.news-card__meta span {
  color: rgba(21, 25, 29, 0.28);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.news-card__meta time {
  color: rgba(21, 25, 29, 0.84);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.infrastructure-cta {
  position: relative;
  padding: 46px 0 0;
  background: var(--color-cream);
  color: var(--color-white);
}

.infrastructure-cta__rail {
  top: 89px;
  z-index: 2;
  height: 132px;
}

.infrastructure-cta__frame {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #dce4e9;
}

.infrastructure-cta__frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.infrastructure-cta__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(560px, 58vw);
  min-height: 230px;
  padding: 62px 70px 58px;
  display: flex;
  gap: 38px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(16, 61, 139, 0.94), rgba(9, 45, 111, 0.98));
  box-shadow: -26px 22px 70px rgba(3, 22, 61, 0.28);
}

.infrastructure-cta__line {
  width: 1px;
  height: 118px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.35);
}

.infrastructure-cta h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 44px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.infrastructure-cta a {
  width: 154px;
  min-height: 52px;
  margin-top: 28px;
  padding: 12px 12px 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--color-white);
  border-radius: 3px;
  color: var(--color-ink);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.infrastructure-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.infrastructure-cta a span:first-child {
  max-width: 88px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  color: var(--color-white);
}

.site-footer__mark {
  position: absolute;
  right: clamp(34px, 8vw, 126px);
  bottom: -52px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 360px;
  font-weight: 900;
  line-height: 0.72;
  text-transform: uppercase;
  pointer-events: none;
}

.site-footer__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 78px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 110px 0 56px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 0.88fr 1fr;
  gap: clamp(48px, 9vw, 132px);
  align-items: start;
  padding-left: clamp(44px, 7vw, 106px);
  padding-bottom: 88px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.footer-brand__mark {
  width: 42px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-right: 0;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
}

.footer-brand__name {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}

.footer-brand__name strong {
  font-weight: 900;
}

.footer-nav {
  display: grid;
  gap: 24px;
}

.footer-nav a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-blue-light);
}

.footer-contact {
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.footer-contact a {
  color: inherit;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-contact a:hover {
  color: var(--color-blue-light);
}

.footer-contact__phone {
  margin-bottom: 24px;
  color: var(--color-white);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-contact__phone:hover {
  color: var(--color-blue-light);
  text-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.footer-contact span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.footer-social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--color-blue);
  color: var(--color-white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 0 0 clamp(44px, 7vw, 106px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.site-footer__bottom p a {
  color: inherit;
  transition: color 180ms ease;
}

.site-footer__bottom p a:hover {
  color: var(--color-blue-light);
}


@keyframes playPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.38);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 0 22px rgba(255, 255, 255, 0);
  }
}

@media (max-width: 1120px) {
  .site-header__nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav-toggle {
    display: block;
  }

  .site-header__links {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0;
    max-height: calc(100dvh - 98px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(18, 20, 24, 0.98);
    border: 1px solid var(--color-soft);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__actions {
    display: none;
  }

  .hero-film {
    right: 32px;
    width: min(330px, 38vw);
  }

  .home-hero h1 {
    font-size: 90px;
  }

  .about-panel__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-panel__note {
    grid-column: 2;
  }

  .about-panel__media {
    grid-column: 1 / 3;
    margin-left: clamp(44px, 7vw, 106px);
  }

  .business-section__inner,
  .directors-section__inner,
  .news-section__inner {
    padding-left: clamp(44px, 7vw, 106px);
  }

  .business-grid {
    width: 100%;
  }

  .news-scroll {
    width: calc(100vw - 32px - clamp(44px, 7vw, 106px));
  }

  .infrastructure-cta__panel {
    width: min(520px, 62vw);
    padding-inline: 54px;
  }

  .site-footer__top {
    grid-template-columns: 0.9fr 0.8fr 1fr;
    gap: 52px;
  }

  .footer-contact__phone {
    font-size: 30px;
  }
}

@media (max-width: 820px) {

  .home-container,
  .site-header__nav {
    width: min(100% - 40px, var(--container));
  }

  .front-home {
    background: var(--color-bg);
  }

  .home-hero,
  .home-hero__inner {
    min-height: 780px;
  }

  .home-hero__copy {
    margin-left: 0;
    padding-top: 0;
  }

  .home-hero h1 {
    font-size: 74px;
  }

  .about-panel h2 {
    font-size: 50px;
  }

  .hero-film {
    left: 20px;
    right: 20px;
    bottom: 50px;
    width: auto;
    max-width: 420px;
  }

  .about-panel {
    padding: 80px 0 100px;
  }

  .about-panel__rail {
    display: none;
  }

  .about-panel__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-panel__title {
    padding-left: 0;
  }

  .about-panel__title p {
    margin-bottom: 28px;
  }

  .about-panel__note,
  .about-panel__media {
    grid-column: auto;
  }

  .about-panel__media {
    margin: 18px 0 0;
  }

  .about-panel__media img {
    aspect-ratio: 4 / 3;
  }

  .business-section,
  .directors-section,
  .news-section {
    padding: 80px 0 92px;
  }

  .business-section__rail,
  .directors-section__rail,
  .news-section__rail,
  .infrastructure-cta__rail {
    display: none;
  }

  .business-section__inner,
  .directors-section__inner,
  .news-section__inner {
    padding-left: 0;
  }

  .section-topline,
  .directors-section__head {
    gap: 22px;
  }

  .business-section h2,
  .directors-section h2,
  .news-section h2 {
    margin-top: 36px;
    font-size: 48px;
  }

  .business-grid {
    margin-top: 44px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directors-carousel {
    margin-top: 38px;
  }

  .news-scroll {
    width: calc(100vw - 20px);
    margin-top: 48px;
  }

  .news-card {
    width: 220px;
  }

  .infrastructure-cta {
    padding-top: 0;
  }

  .infrastructure-cta__frame {
    min-height: 560px;
  }

  .infrastructure-cta__frame img {
    height: 560px;
    object-position: left center;
  }

  .infrastructure-cta__panel {
    left: 20px;
    right: 20px;
    width: auto;
    min-height: 210px;
    padding: 48px 42px 44px;
  }

  .infrastructure-cta h2 {
    font-size: 38px;
  }

  .site-footer__rail {
    display: none;
  }

  .site-footer__inner {
    padding: 82px 0 48px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding-left: 0;
    padding-bottom: 58px;
  }

  .footer-contact {
    grid-column: 1 / 3;
  }

  .site-footer__bottom {
    display: grid;
    padding-left: 0;
  }

  .site-footer__mark {
    font-size: 240px;
  }
}

@media (max-width: 520px) {
  .site-header__nav {
    height: 74px;
  }

  .site-header__links {
    top: 74px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 86px);
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand__name {
    font-size: 16px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 745px;
  }

  .home-hero__inner {
    align-items: flex-start;
    padding-top: 128px;
  }

  .home-hero h1 {
    font-size: 56px;
  }

  .home-hero p {
    font-size: 14px;
  }

  .hero-action {
    width: 225px;
    min-height: 66px;
  }

  .hero-film {
    bottom: 36px;
  }

  .about-panel h2 {
    font-size: 44px;
  }

  .section-topline,
  .directors-section__head {
    display: block;
  }

  .section-topline a {
    margin-top: 28px;
  }

  .business-section h2,
  .directors-section h2,
  .news-section h2 {
    font-size: 42px;
  }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .business-card {
    min-height: 272px;
  }

  .business-card__image {
    height: 198px;
  }

  .directors-controls {
    margin-top: 26px;
    padding-bottom: 0;
  }

  .director-card {
    width: 216px;
  }

  .news-card {
    width: 214px;
    min-height: 338px;
  }

  .news-card__meta time {
    font-size: 24px;
  }

  .infrastructure-cta__frame {
    min-height: 610px;
  }

  .infrastructure-cta__frame img {
    height: 610px;
    object-position: 24% center;
  }

  .infrastructure-cta__panel {
    left: 0;
    right: 0;
    padding: 42px 28px 38px;
    gap: 24px;
  }

  .infrastructure-cta__line {
    height: 108px;
  }

  .infrastructure-cta h2 {
    font-size: 32px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-contact__phone {
    font-size: 26px;
  }

  .footer-legal {
    display: grid;
    gap: 18px;
  }

  .site-footer__mark {
    right: -20px;
    font-size: 180px;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-page {
  min-height: 100vh;
  background: var(--color-bg);
}

/* ----- HERO ----- */
.about-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.about-hero:hover .about-hero__bg img {
  transform: scale(1.06);
}

.about-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(9, 25, 50, 0.88) 0%, rgba(9, 25, 50, 0.6) 50%, rgba(9, 25, 50, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 12, 28, 0.2) 0%, rgba(5, 12, 28, 0.7) 100%);
}

.about-hero__inner {
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-hero__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.abt-index {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.abt-label {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.abt-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
}

.about-hero__title {
  margin: 0;
  max-width: 800px;
  color: var(--color-white);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.about-hero__title strong {
  display: block;
  font-weight: 900;
  background: linear-gradient(90deg, #4a9eff 0%, #28d6cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__sub {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.about-hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

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

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

/* ----- RAIL ----- */
.abt-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
}

.abt-rail--left {
  left: 78px;
}

.abt-rail__line {
  position: absolute;
  top: 80px;
  left: 0;
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, rgba(40, 120, 255, 0.8), rgba(40, 120, 255, 0.2));
}

.abt-rail__num {
  position: absolute;
  top: 60px;
  left: -8px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* ----- SHARED TAGS ----- */
.abt-section-tag {
  margin: 0 0 18px;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.abt-section-tag--light {
  color: rgba(255, 255, 255, 0.55);
}

/* ----- WHO WE ARE ----- */
.abt-who {
  position: relative;
  padding: 120px 0;
  background: var(--color-bg);
  color: var(--color-white);
  overflow: hidden;
}

.abt-who::before {
  content: '';
  position: absolute;
  left: 78px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.abt-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-left: clamp(44px, 7vw, 106px);
}

.abt-who__text h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.abt-lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.abt-body {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.abt-who__stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.abt-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abt-stat strong {
  color: var(--color-white);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #a0c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt-stat>span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.abt-who__media {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.36);
}

.abt-who__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.abt-who__media:hover img {
  transform: scale(1.04);
}

.abt-who__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 12, 28, 0.76) 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----- MISSION / VISION ----- */
.abt-mv {
  position: relative;
  padding: 140px 0;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.abt-mv::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(40, 120, 255, 0.15) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}

.abt-mv .home-container {
  padding-left: clamp(44px, 7vw, 106px);
  position: relative;
  z-index: 2;
}

.abt-mv__heading {
  margin: 0 0 72px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 0.95;
  text-transform: uppercase;
}

.abt-mv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.abt-mv-card {
  position: relative;
  padding: 56px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.abt-mv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.abt-mv-card:hover {
  transform: translateY(-12px);
  border-color: rgba(40, 120, 255, 0.4);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(40, 120, 255, 0.1);
}

.abt-mv-card:hover::after {
  opacity: 1;
}

.abt-mv-card__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: rgba(40, 120, 255, 0.1);
  border: 1px solid rgba(40, 120, 255, 0.2);
  color: #4a9eff;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.abt-mv-card__icon svg {
  width: 32px;
  height: 32px;
}

.abt-mv-card:hover .abt-mv-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(40, 120, 255, 0.2);
  box-shadow: 0 12px 32px rgba(40, 120, 255, 0.25);
  color: #fff;
}

.abt-mv-card h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.abt-mv-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
}

/* ----- SERVICES / CAPABILITIES ----- */
.abt-services {
  position: relative;
  padding: 120px 0;
  background: var(--color-cream);
  color: var(--color-ink);
  overflow: hidden;
}

.abt-services .abt-rail__line {
  background: linear-gradient(180deg, rgba(40, 120, 255, 0.8), rgba(40, 120, 255, 0.2));
}

.abt-services .home-container {
  padding-left: clamp(44px, 7vw, 106px);
}

.abt-services .abt-section-tag {
  color: var(--color-blue);
}

.abt-services h2 {
  margin: 0 0 64px;
  color: var(--color-ink);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.abt-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.abt-svc-card {
  position: relative;
  padding: 42px 36px 48px;
  background: var(--color-white);
  border: 1px solid rgba(21, 25, 29, 0.08);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.abt-svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.abt-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 64px rgba(21, 25, 29, 0.12);
}

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

.abt-svc-card__num {
  margin-bottom: 20px;
  color: rgba(21, 25, 29, 0.14);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 240ms ease;
}

.abt-svc-card:hover .abt-svc-card__num {
  color: rgba(40, 120, 255, 0.2);
}

.abt-svc-card h3 {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.abt-svc-card p {
  margin: 0;
  color: rgba(21, 25, 29, 0.58);
  font-size: 13px;
  line-height: 1.75;
}

/* ----- WHY CHOOSE US ----- */
.abt-why {
  padding: 120px 0;
  background: var(--color-bg);
  color: var(--color-white);
}

.abt-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-left: clamp(44px, 7vw, 106px);
}

.abt-why__media {
  position: relative;
}

.abt-why__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: left;
  border-radius: 12px;
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.4);
  display: block;
}

.abt-why__badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(20, 87, 217, 0.45);
}

.abt-why__badge strong {
  display: block;
  color: var(--color-white);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.abt-why__badge span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 5px;
}

.abt-why__content h2 {
  margin: 0 0 44px;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.abt-why__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-why__list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.abt-why__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
}

.abt-why__check::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) translateY(-1px);
}

.abt-why__list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.abt-why__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}

/* ----- TEAM / LEADERSHIP ----- */
.abt-team {
  position: relative;
  padding: 120px 0;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.abt-team .abt-rail__line {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.06));
}

.abt-team .abt-rail__num {
  color: rgba(255, 255, 255, 0.8);
}

.abt-team .home-container {
  padding-left: clamp(44px, 7vw, 106px);
}

.abt-team h2 {
  margin: 0 0 64px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.abt-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abt-team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 12px 28px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.abt-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 64px rgba(0, 0, 0, 0.3);
  border-color: rgba(40, 120, 255, 0.35);
}

.abt-team-card__portrait {
  height: 200px;
  border-radius: 7px;
  background-image: url("../img/aqua-directors-strip.png");
  background-size: 400% 100%;
  background-repeat: no-repeat;
  background-color: #1e3a6e;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.abt-team-card:hover .abt-team-card__portrait {
  transform: scale(1.04);
}

.abt-team-card__portrait--one {
  background-position: 0% 50%;
}

.abt-team-card__portrait--two {
  background-position: 33.333% 50%;
}

.abt-team-card__portrait--three {
  background-position: 66.666% 50%;
}

.abt-team-card__portrait--four {
  background-position: 100% 50%;
}

.abt-team-card h3 {
  margin: 0 0 4px;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.abt-team-card__role {
  margin: 0 0 14px;
  padding: 0 4px;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.abt-team-card p:last-child {
  margin: 0;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.7;
}

/* ----- CTA ----- */
.abt-cta {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.abt-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.abt-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.abt-cta:hover .abt-cta__bg img {
  transform: scale(1.04);
}

.abt-cta__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(9, 25, 50, 0.92) 0%, rgba(9, 25, 50, 0.7) 60%, rgba(9, 25, 50, 0.45) 100%);
}

.abt-cta__inner {
  padding: 100px clamp(44px, 7vw, 106px);
}

.abt-cta h2 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.abt-cta h2 strong {
  font-weight: 900;
  background: linear-gradient(135deg, #4a9eff, #28d6cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt-cta p {
  margin: 0 0 44px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.abt-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.abt-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.abt-cta__btn:hover {
  transform: translateY(-2px);
}

.abt-cta__btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 14px 36px rgba(20, 87, 217, 0.35);
}

.abt-cta__btn--primary:hover {
  background: var(--color-blue-dark);
  box-shadow: 0 20px 48px rgba(20, 87, 217, 0.5);
}

.abt-cta__btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.abt-cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ----- ABOUT PAGE RESPONSIVE ----- */
@media (max-width: 1024px) {

  .abt-mv__grid,
  .abt-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-who__grid,
  .abt-why__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .abt-who__media,
  .abt-why__media {
    max-width: 480px;
  }

  .abt-why__badge {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 580px;
  }

  .about-hero__title {
    font-size: clamp(48px, 12vw, 68px);
  }

  .abt-who,
  .abt-mv,
  .abt-services,
  .abt-why,
  .abt-team {
    padding: 80px 0;
  }

  .abt-mv__grid,
  .abt-services__grid {
    grid-template-columns: 1fr;
  }

  .abt-team__grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-rail {
    display: none;
  }

  .abt-who__grid,
  .abt-why__inner {
    padding-left: 0;
  }

  .abt-mv .home-container,
  .abt-services .home-container,
  .abt-team .home-container {
    padding-left: 0;
  }

  .abt-who__stats {
    gap: 24px;
  }

  .abt-stat strong {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  .abt-team__grid {
    grid-template-columns: 1fr;
  }

  .abt-cta__actions {
    flex-direction: column;
  }

  .abt-cta__btn {
    justify-content: center;
  }
}



@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-page {
  min-height: 100vh;
  background: var(--color-bg);
}

/* ----- HERO ----- */
.contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 9s ease;
}

.contact-hero:hover .contact-hero__bg img {
  transform: scale(1.07);
}

.contact-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(9, 25, 50, 0.92) 0%, rgba(9, 25, 50, 0.65) 55%, rgba(9, 25, 50, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 12, 28, 0.15) 0%, rgba(5, 12, 28, 0.75) 100%);
}

.contact-hero__inner {
  padding-top: 100px;
  padding-bottom: 80px;
}

.cnt-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.cnt-index {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.cnt-label {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cnt-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
}

.contact-hero__title {
  margin: 0;
  max-width: 800px;
  color: var(--color-white);
  font-size: clamp(58px, 7.5vw, 104px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.contact-hero__title strong {
  display: block;
  font-weight: 900;
  background: linear-gradient(135deg, #4a9eff 0%, #2878ff 60%, #28d6cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero__sub {
  max-width: 420px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.55) 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ----- SECTION TAGS ----- */
.cnt-section-tag {
  margin: 0 0 14px;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cnt-section-tag--light {
  color: rgba(255, 255, 255, 0.5);
}

/* ----- MAIN (INFO + FORM) ----- */
.cnt-main {
  padding: 100px 0 120px;
  background: var(--color-bg);
  color: var(--color-white);
}

.cnt-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  padding-left: clamp(44px, 7vw, 106px);
}

/* ----- INFO SIDE ----- */
.cnt-info__heading {
  margin: 0 0 40px;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.cnt-info__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cnt-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cnt-info-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(40, 120, 255, 0.08);
  color: var(--color-blue);
  transition: background 220ms ease, border-color 220ms ease;
}

.cnt-info-item:hover .cnt-info-item__icon {
  background: rgba(40, 120, 255, 0.2);
  border-color: rgba(40, 120, 255, 0.4);
}

.cnt-info-item__icon svg {
  width: 18px;
  height: 18px;
}

.cnt-info-item__label {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cnt-info-item__value {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  transition: color 180ms ease;
}

.cnt-info-item__value:hover {
  color: var(--color-white);
}

.cnt-services-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cnt-services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.cnt-services-list li span {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* ----- FORM CARD ----- */
.cnt-form-wrap {
  position: sticky;
  top: 100px;
}

.cnt-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 48px 44px;
  backdrop-filter: blur(12px);
}

.cnt-form-card__tag {
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cnt-form-card__title {
  margin: 0 0 36px;
  color: var(--color-white);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Alert */
.cnt-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.cnt-alert--success {
  background: rgba(40, 214, 207, 0.12);
  border: 1px solid rgba(40, 214, 207, 0.35);
  color: var(--color-teal);
}

.cnt-alert svg {
  flex-shrink: 0;
}

/* Form layout */
.cnt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cnt-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cnt-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-form__field label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cnt-form__field label span {
  color: var(--color-blue);
}

.cnt-form__field input,
.cnt-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  resize: none;
}

.cnt-form__field input::placeholder,
.cnt-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.cnt-form__field input:focus,
.cnt-form__field textarea:focus {
  background: rgba(40, 120, 255, 0.06);
  border-color: rgba(40, 120, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(40, 120, 255, 0.12);
}

/* Select */
.cnt-form__select-wrap {
  position: relative;
}

.cnt-form__select-wrap select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.cnt-form__select-wrap select:focus {
  background: rgba(40, 120, 255, 0.06);
  border-color: rgba(40, 120, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(40, 120, 255, 0.12);
}

.cnt-form__select-wrap select option {
  background: #1a2540;
  color: var(--color-white);
}

.cnt-form__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* Error */
.cnt-form__error {
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 600;
}

/* Submit */
.cnt-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border: none;
  border-radius: 8px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(20, 87, 217, 0.32);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.cnt-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(20, 87, 217, 0.48);
  background: linear-gradient(135deg, #3d8eff, #1252c8);
}

.cnt-form__submit:active {
  transform: translateY(0);
}

/* ----- MAP ----- */
.cnt-map {
  background: var(--color-cream);
  color: var(--color-ink);
  padding-top: 100px;
}

.cnt-map .home-container {
  padding-left: clamp(44px, 7vw, 106px);
  margin-bottom: 52px;
}

.cnt-map__heading {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--color-ink);
}

.cnt-map .cnt-section-tag {
  color: var(--color-blue);
}

.cnt-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cnt-map__frame {
  position: relative;
  overflow: hidden;
}

.cnt-map__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  filter: grayscale(20%) contrast(1.04);
  transition: filter 300ms ease;
}

.cnt-map__frame:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.cnt-map__label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cnt-map__label svg {
  color: var(--color-blue);
}

/* ----- WHY CONTACT US ----- */
.cnt-why {
  padding: 100px 0 120px;
  background: var(--color-navy);
  color: var(--color-white);
}

.cnt-why .home-container {
  padding-left: clamp(44px, 7vw, 106px);
}

.cnt-why__heading {
  margin: 0 0 64px;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.cnt-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.cnt-why-card {
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.cnt-why-card:hover {
  background: rgba(40, 120, 255, 0.1);
  border-color: rgba(40, 120, 255, 0.3);
  transform: translateY(-4px);
}

.cnt-why-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-blue);
  margin-bottom: 28px;
  transition: transform 280ms ease;
}

.cnt-why-card:hover .cnt-why-card__icon {
  transform: scale(1.1) rotate(-4deg);
}

.cnt-why-card h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cnt-why-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.75;
}

.cnt-why-card__link {
  display: inline-block;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, letter-spacing 180ms ease;
}

.cnt-why-card__link:hover {
  color: var(--color-teal);
  letter-spacing: 0.1em;
}

/* ----- CONTACT RESPONSIVE ----- */
@media (max-width: 1024px) {
  .cnt-main__grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-left: 0;
  }

  .cnt-form-wrap {
    position: static;
  }

  .cnt-map__grid {
    grid-template-columns: 1fr;
  }

  .cnt-why__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 540px;
  }

  .contact-hero__title {
    font-size: clamp(46px, 12vw, 68px);
  }

  .cnt-main {
    padding: 72px 0 90px;
  }

  .cnt-form-card {
    padding: 32px 24px;
  }

  .cnt-form__row {
    grid-template-columns: 1fr;
  }

  .cnt-why__grid {
    grid-template-columns: 1fr;
  }

  .cnt-why .home-container,
  .cnt-map .home-container {
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .cnt-form-card {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   LUXURY BLOG & EDITORIAL MODULE STYLES
   ========================================================================== */

.blog-page {
  position: relative;
  background-color: var(--color-bg);
  color: var(--color-white);
  padding-top: 82px;
  overflow: hidden;
}

/* Hero Section */
.blog-hero {
  position: relative;
  padding: 80px 0 60px;
  background: radial-gradient(circle at 50% 0%, rgba(40, 120, 255, 0.15) 0%, rgba(29, 29, 29, 0) 70%),
    linear-gradient(180deg, rgba(20, 20, 25, 0.8) 0%, rgba(29, 29, 29, 1) 100%);
  border-bottom: 1px solid var(--color-soft);
}

.blog-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.blog-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(40, 214, 207, 0.1);
  border: 1px solid rgba(40, 214, 207, 0.3);
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.blog-hero__subtitle {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 680px;
  margin: 0;
  line-height: 1.6;
}

/* Featured Article Card */
.blog-featured-section {
  padding: 60px 0 40px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: rgba(32, 32, 35, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
}

.blog-featured-card.has-no-image {
  grid-template-columns: 1fr;
}


.blog-featured-card:hover {
  border-color: rgba(40, 120, 255, 0.4);
  box-shadow: 0 25px 60px rgba(40, 120, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.blog-featured-card__media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--color-panel);
}

.blog-featured-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured-card:hover .blog-featured-card__img {
  transform: scale(1.05);
}

.blog-featured-card__content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.blog-category-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(40, 120, 255, 0.15);
  border: 1px solid rgba(40, 120, 255, 0.35);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 6px;
}

.blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
}

.blog-featured-card__title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--color-white);
  transition: color 0.25s ease;
}

.blog-featured-card__title a:hover {
  color: var(--color-teal);
}

.blog-featured-card__excerpt {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0 0 28px;
}

.blog-author-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(40, 120, 255, 0.3);
}

.blog-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}

.blog-author-title {
  font-size: 12px;
  color: var(--color-muted);
}

.blog-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 120, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-btn-cta:hover {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-blue) 100%);
  box-shadow: 0 6px 20px rgba(40, 214, 207, 0.35);
  transform: translateY(-2px);
  color: #0b1320;
}

/* Category Filter Bar */
.blog-filter-section {
  padding: 20px 0 40px;
  position: sticky;
  top: 82px;
  z-index: 40;
  background: rgba(29, 29, 29, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-filter-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.blog-filter-pills::-webkit-scrollbar {
  display: none;
}

.blog-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.blog-filter-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-filter-pill.is-active {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  color: var(--color-white);
  border-color: rgba(40, 120, 255, 0.5);
  box-shadow: 0 4px 15px rgba(40, 120, 255, 0.3);
}

.blog-filter-pill .pill-count {
  padding: 2px 7px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 700;
}

/* Main Grid & Sidebar Layout */
.blog-content-section {
  padding: 40px 0 90px;
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: rgba(32, 32, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 214, 207, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(40, 214, 207, 0.1);
  background: rgba(35, 35, 40, 0.85);
}

.blog-card__thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #151619;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.06);
}

.blog-card__category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 12px;
  background: rgba(12, 55, 125, 0.85);
  border: 1px solid rgba(40, 120, 255, 0.4);
  backdrop-filter: blur(8px);
  color: #70b0ff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--color-white);
  transition: color 0.25s ease;
}

.blog-card__title a:hover {
  color: var(--color-teal);
}

.blog-card__desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.blog-card__author {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-teal);
  transition: gap 0.25s ease;
}

.blog-card:hover .blog-card__link {
  gap: 10px;
  color: #5ce6e0;
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-widget {
  background: rgba(32, 32, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-widget__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search Input Box */
.blog-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-search-input {
  width: 100%;
  padding: 14px 44px 14px 18px;
  background: rgba(20, 20, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 14px;
  transition: all 0.25s ease;
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 15px rgba(40, 120, 255, 0.3);
  background: rgba(25, 25, 30, 0.95);
}

.blog-search-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.blog-search-btn:hover {
  color: var(--color-teal);
}

/* Sidebar Categories List */
.blog-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-cat-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.blog-cat-item a:hover,
.blog-cat-item.is-active a {
  background: rgba(40, 120, 255, 0.12);
  border-color: rgba(40, 120, 255, 0.3);
  color: var(--color-white);
  padding-left: 18px;
}

.blog-cat-item .cat-badge {
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
}

/* Popular Recent Insights Widget */
.blog-recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-recent-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.blog-recent-thumb {
  width: 68px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #18181c;
}

.blog-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-recent-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-recent-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.blog-recent-title:hover {
  color: var(--color-teal);
}

.blog-recent-date {
  font-size: 11px;
  color: var(--color-muted);
}

/* Consultation Digest Widget */
.blog-cta-widget {
  background: linear-gradient(145deg, rgba(12, 55, 125, 0.6) 0%, rgba(20, 20, 25, 0.9) 100%);
  border: 1px solid rgba(40, 120, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.blog-cta-widget::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.blog-cta-widget__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 10px;
}

.blog-cta-widget__desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0 0 20px;
}

/* Pagination */
.blog-pagination-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.blog-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination .page-item {
  margin: 0;
}

.blog-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.blog-pagination .page-link:hover {
  background: rgba(40, 120, 255, 0.2);
  border-color: rgba(40, 120, 255, 0.4);
  color: var(--color-teal);
}

.blog-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  border-color: transparent;
  color: #0b1320;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(40, 214, 207, 0.35);
}

.blog-pagination .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Empty State */
.blog-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: rgba(32, 32, 35, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.blog-empty-icon {
  font-size: 48px;
  color: var(--color-blue);
  margin-bottom: 16px;
}

.blog-empty-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.blog-empty-desc {
  color: var(--color-muted);
  font-size: 15px;
  margin: 0 0 24px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .blog-grid-layout {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-card__media {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: 60px 0 40px;
  }

  .blog-featured-card__content {
    padding: 28px 20px;
  }

  .blog-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   BLOG DETAILS PAGE STYLES
   ========================================================================== */
.blog-detail-hero {
  padding: 70px 0 40px;
  background: radial-gradient(circle at 50% 0%, rgba(40, 120, 255, 0.12) 0%, rgba(29, 29, 29, 0) 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-detail-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.blog-detail-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  margin: 16px 0 24px;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--color-muted);
}

.blog-detail-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-detail-article {
  background: rgba(32, 32, 35, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(12px);
}

.blog-detail-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4 {
  color: var(--color-white);
  margin: 32px 0 16px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-detail-body p {
  margin-bottom: 20px;
}

.blog-detail-body ul,
.blog-detail-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-detail-body li {
  margin-bottom: 8px;
}

.blog-detail-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: rgba(40, 120, 255, 0.1);
  border-left: 4px solid var(--color-blue);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--color-white);
}

.blog-author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-top: 40px;
}

.blog-author-box__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.related-posts-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-posts-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 28px;
  color: var(--color-white);
}

/* Empty Image Placeholders */
.blog-empty-thumb-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: radial-gradient(circle at 50% 50%, rgba(40, 120, 255, 0.06) 0%, rgba(20, 20, 24, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}

.blog-empty-thumb-placeholder.small {
  min-height: 54px;
}

.blog-detail-cover-placeholder {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(40, 120, 255, 0.08) 0%, rgba(20, 20, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  margin-bottom: 36px;
}

/* ==========================================================================
   LUXURY PRODUCTS PAGE STYLES
   ========================================================================== */
.front-products-page {
  background-color: var(--color-bg);
  color: var(--color-white);
  padding-bottom: 90px;
}

/* Hero Section */
.products-hero {
  position: relative;
  padding: 140px 0 70px;
  background: radial-gradient(circle at 50% 0%, rgba(20, 45, 85, 0.45) 0%, rgba(20, 20, 24, 1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.products-hero__glow {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(40, 120, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  filter: blur(60px);
}

.products-hero__glow--alt {
  left: auto;
  right: 15%;
  top: -50px;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

.products-hero__inner {
  position: relative;
  z-index: 2;
}

.products-hero__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.products-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(40, 120, 255, 0.1);
  border: 1px solid rgba(40, 120, 255, 0.25);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 24px;
}

.products-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 10px var(--color-teal);
}

.products-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.products-hero__title strong {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 60%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-hero__subtitle {
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}

/* Stats Metric Cards */
.products-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.products-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.products-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 120, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.products-stat-card__value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1.2;
  margin-bottom: 6px;
}

.products-stat-card__label {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Search Box */
.products-search-box {
  max-width: 760px;
  margin: 0 auto;
}

.products-search-form {
  display: flex;
  gap: 12px;
}

.products-search-input-wrapper {
  position: relative;
  flex: 1;
}

.products-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
}

.products-search-input {
  width: 100%;
  height: 56px;
  padding: 0 45px 0 54px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--color-white);
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.products-search-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-blue);
  box-shadow: 0 0 20px rgba(40, 120, 255, 0.25);
}

.products-search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}

.products-search-clear:hover {
  color: var(--color-white);
}

.products-search-btn {
  height: 56px;
  padding: 0 32px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border: none;
  border-radius: 12px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.products-search-btn:hover {
  background: linear-gradient(135deg, #3a85ff, var(--color-blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 120, 255, 0.4);
}

/* Category Filter Section */
.products-filter-section {
  padding: 36px 0 20px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 80px;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.products-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.products-filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-filter-label h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products-filter-icon {
  color: var(--color-teal);
}

.products-results-count {
  font-size: 14px;
  color: var(--color-muted);
}

.products-results-count strong {
  color: var(--color-white);
}

.products-categories-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.products-categories-scroll::-webkit-scrollbar {
  height: 4px;
}

.products-categories-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.products-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.products-cat-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.products-cat-tab.is-active {
  background: linear-gradient(135deg, var(--color-blue), var(--color-navy));
  border-color: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(40, 120, 255, 0.35);
}

.products-cat-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
}

.products-cat-tab.is-active .products-cat-tab__count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Category Selected Banner */
.products-category-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(circle at 0% 50%, rgba(40, 120, 255, 0.12) 0%, rgba(32, 32, 32, 0.8) 100%);
  border: 1px solid rgba(40, 120, 255, 0.25);
  border-radius: 16px;
  padding: 24px 30px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.products-category-banner__tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-teal);
  letter-spacing: 1px;
}

.products-category-banner__title {
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0 6px;
  color: var(--color-white);
}

.products-category-banner__desc {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

.products-category-banner__reset {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal);
  white-space: nowrap;
  transition: color 0.2s ease;
  text-decoration: none;
}

.products-category-banner__reset:hover {
  color: #fff;
}

/* Products Grid Section */
.products-grid-section {
  padding: 40px 0 70px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Product Card */
.product-card {
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(40, 214, 207, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(40, 120, 255, 0.15);
}

.product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #141416;
  overflow: hidden;
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(12, 55, 125, 0.85);
  border: 1px solid rgba(40, 214, 207, 0.3);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.product-card__image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card__image--fallback {
  object-fit: cover;
  opacity: 0.85;
}

.product-card:hover .product-card__image {
  transform: scale(1.08);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 22, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__quick-btn {
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--color-ink);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.product-card__quick-btn:hover {
  background: var(--color-teal);
  color: #000;
  transform: scale(1.05);
}

.product-card__body {
  padding: 24px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--color-white);
  transition: color 0.2s ease;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--color-teal);
}

.product-card__description {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__footer {
  padding: 16px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0, 0, 0, 0.15);
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
  text-decoration: none;
}

.product-card__action--secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card__action--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.product-card__action--primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border: none;
}

.product-card__action--primary:hover {
  background: linear-gradient(135deg, #3a85ff, var(--color-blue));
  box-shadow: 0 4px 16px rgba(40, 120, 255, 0.35);
}

.product-card__action-icon {
  transition: transform 0.2s ease;
}

.product-card__action--secondary:hover .product-card__action-icon {
  transform: translateX(4px);
}

/* Empty State */
.products-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.products-empty-state__icon {
  font-size: 48px;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.products-empty-state__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--color-white);
}

.products-empty-state__desc {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 28px;
}

.products-empty-state__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease;
  text-decoration: none;
}

.products-empty-state__btn:hover {
  background: var(--color-blue-dark);
}

/* Pagination Styling Fix */
.products-pagination-wrap {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.products-pagination-wrap nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.products-pagination-wrap nav>div:first-child {
  display: none;
}

.products-pagination-wrap svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.products-pagination-wrap .pagination,
.products-pagination-wrap .inline-flex {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Reset parent li list item */
.products-pagination-wrap .page-item {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  display: inline-flex !important;
}

/* Style ONLY inner page-link element */
.products-pagination-wrap .page-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Active State */
.products-pagination-wrap .page-item.active .page-link {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark)) !important;
  border-color: var(--color-teal) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(40, 120, 255, 0.35) !important;
}

/* Hover State for clickable links */
.products-pagination-wrap .page-item:not(.disabled):not(.active) .page-link:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(40, 214, 207, 0.4) !important;
  color: var(--color-teal) !important;
  transform: translateY(-2px);
}

/* Disabled State */
.products-pagination-wrap .page-item.disabled .page-link {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Tech Showcase Section */
.products-tech-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 35, 65, 0.4) 0%, rgba(20, 20, 24, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.products-tech-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.products-tech-sub {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.products-tech-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  color: var(--color-white);
}

.products-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.products-tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.products-tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 214, 207, 0.35);
}

.products-tech-card__icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.products-tech-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--color-white);
}

.products-tech-card__desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* Call to Action Section */
.products-cta-section {
  padding: 80px 0 30px;
}

.products-cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 60, 135, 0.9), rgba(12, 35, 80, 0.95));
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 28px;
  padding: 60px 48px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.products-cta-box__glow {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.products-cta-box__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.products-cta-box__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-teal);
  margin-bottom: 20px;
}

.products-cta-box__title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--color-white);
}

.products-cta-box__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 32px;
}

.products-cta-box__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.products-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.products-cta-btn--primary {
  background: var(--color-white);
  color: var(--color-navy);
}

.products-cta-btn--primary:hover {
  background: var(--color-teal);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 214, 207, 0.4);
}

.products-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
}

.products-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Quick Specs Modal */
.products-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.products-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.products-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(10px);
}

.products-modal__container {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-panel);
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.products-modal.is-open .products-modal__container {
  transform: scale(1);
}

.products-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.products-modal__close:hover {
  background: var(--color-teal);
  color: #000;
}

.products-modal__header {
  margin-bottom: 24px;
  padding-right: 40px;
}

.products-modal__category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-teal);
  letter-spacing: 1px;
}

.products-modal__title {
  font-size: 26px;
  font-weight: 800;
  margin: 6px 0 0;
  color: var(--color-white);
}

.products-modal__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.products-modal__image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #141416;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-modal__subheading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

.products-modal__text {
  font-size: 15px;
  color: var(--color-white);
  line-height: 1.6;
  margin: 0 0 20px;
}

.products-modal__features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.products-modal__feature-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.products-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.products-modal__btn-secondary {
  padding: 12px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.products-modal__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.products-modal__btn-primary {
  padding: 12px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}

.products-modal__btn-primary:hover {
  box-shadow: 0 4px 16px rgba(40, 120, 255, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-stats-grid,
  .products-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-modal__body {
    grid-template-columns: 1fr;
  }

  .products-modal__image-box {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-stats-grid,
  .products-tech-grid {
    grid-template-columns: 1fr;
  }

  .products-search-form {
    flex-direction: column;
  }

  .products-search-btn {
    width: 100%;
  }

  .products-cta-box {
    padding: 36px 24px;
  }

  .products-modal__container {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   PRODUCT DETAILS PAGE STYLES
   ========================================================================== */
.front-product-details-page {
  background-color: var(--color-bg);
  color: var(--color-white);
  padding-bottom: 90px;
}

/* Breadcrumbs Navigation */
.pdetail-breadcrumbs {
  padding: 100px 0 20px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pdetail-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
}

.pdetail-breadcrumbs__item a {
  color: var(--color-muted);
  transition: color 0.2s ease;
  text-decoration: none;
}

.pdetail-breadcrumbs__item a:hover {
  color: var(--color-teal);
}

.pdetail-breadcrumbs__item--active {
  color: var(--color-white);
  font-weight: 700;
}

.pdetail-breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Hero Spotlight Section */
.pdetail-hero-section {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pdetail-hero-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Gallery */
.pdetail-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdetail-gallery__main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #141416;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.pdetail-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(12, 55, 125, 0.85);
  border: 1px solid rgba(40, 214, 207, 0.3);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.pdetail-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pdetail-gallery__main-wrap:hover .pdetail-gallery__main-img {
  transform: scale(1.06);
}

.pdetail-gallery__zoom-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.pdetail-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.pdetail-thumb {
  width: 80px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #141416;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.pdetail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdetail-thumb:hover,
.pdetail-thumb.is-active {
  border-color: var(--color-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 214, 207, 0.3);
}

/* Documents Download Box */
.pdetail-docs-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(40, 120, 255, 0.06);
  border: 1px solid rgba(40, 120, 255, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
}

.pdetail-docs-box__icon {
  font-size: 28px;
}

.pdetail-docs-box__info {
  flex: 1;
}

.pdetail-docs-box__info strong {
  display: block;
  font-size: 14px;
  color: var(--color-white);
}

.pdetail-docs-box__info p {
  font-size: 12px;
  color: var(--color-muted);
  margin: 2px 0 0;
}

.pdetail-docs-box__btn {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--color-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.pdetail-docs-box__btn:hover {
  background: var(--color-blue-dark);
}

/* Right Summary */
.pdetail-summary {
  display: flex;
  flex-direction: column;
}

.pdetail-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(40, 214, 207, 0.1);
  border: 1px solid rgba(40, 214, 207, 0.25);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.pdetail-summary__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

.pdetail-summary__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--color-white);
}

.pdetail-summary__lead {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pdetail-summary__lead p {
  margin: 0 0 10px;
}

/* Highlights Grid */
.pdetail-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pdetail-highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
}

.pdetail-highlight-card__icon {
  font-size: 24px;
  color: var(--color-teal);
}

.pdetail-highlight-card__text strong {
  display: block;
  font-size: 13px;
  color: var(--color-white);
}

.pdetail-highlight-card__text span {
  font-size: 12px;
  color: var(--color-muted);
}

/* Actions Row */
.pdetail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pdetail-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pdetail-btn--primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(40, 120, 255, 0.35);
}

.pdetail-btn--primary:hover {
  background: linear-gradient(135deg, #3a85ff, var(--color-blue));
  transform: translateY(-2px);
}

.pdetail-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.pdetail-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Technical Details Tabs Section */
.pdetail-tabs-section {
  padding: 60px 0;
}

.pdetail-tabs-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
  overflow-x: auto;
}

.pdetail-tab-btn {
  padding: 16px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.pdetail-tab-btn:hover {
  color: var(--color-white);
}

.pdetail-tab-btn.is-active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.pdetail-tab-panel {
  display: none;
}

.pdetail-tab-panel.is-active {
  display: block;
}

.pdetail-content-box {
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
}

.pdetail-heading {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--color-white);
}

.pdetail-subheading {
  font-size: 18px;
  font-weight: 800;
  margin: 28px 0 16px;
  color: var(--color-teal);
}

.pdetail-prose {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

.pdetail-prose p {
  margin: 0 0 16px;
}

.pdetail-prose ul,
.pdetail-prose ol {
  padding-left: 24px;
  margin: 0 0 20px;
}

.pdetail-prose li {
  margin-bottom: 8px;
}

/* Specifications Table */
.pdetail-table-wrap {
  overflow-x: auto;
}

.pdetail-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pdetail-spec-table th,
.pdetail-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}

.pdetail-spec-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.pdetail-spec-table td {
  color: var(--color-white);
}

.pdetail-spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Applications Grid */
.pdetail-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pdetail-app-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pdetail-app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 214, 207, 0.35);
}

.pdetail-app-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.pdetail-app-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--color-white);
}

.pdetail-app-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

/* FAQs Accordion */
.pdetail-faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdetail-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease;
}

.pdetail-faq-item.is-open {
  border-color: rgba(40, 214, 207, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.pdetail-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.pdetail-faq-icon {
  font-size: 20px;
  color: var(--color-teal);
  transition: transform 0.3s ease;
}

.pdetail-faq-item.is-open .pdetail-faq-icon {
  transform: rotate(180deg);
}

.pdetail-faq-answer {
  padding: 0 24px 20px;
  display: none;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
}

.pdetail-faq-item.is-open .pdetail-faq-answer {
  display: block;
}

/* Direct Inquiry Section */
.pdetail-inquiry-section {
  padding: 40px 0 80px;
}

.pdetail-inquiry-card {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 45, 95, 0.9), rgba(15, 25, 50, 0.95));
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 28px;
  padding: 50px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.pdetail-inquiry-card__glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.pdetail-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.pdetail-inquiry-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-teal);
  letter-spacing: 1px;
}

.pdetail-inquiry-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin: 10px 0 16px;
  color: var(--color-white);
}

.pdetail-inquiry-info p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 30px;
}

.pdetail-inquiry-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pdetail-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 20px;
}

.pdetail-contact-row__icon {
  font-size: 24px;
  color: var(--color-teal);
}

.pdetail-contact-row strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-muted);
  letter-spacing: 0.5px;
}

.pdetail-contact-row a {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}

/* Inquiry Form */
.pdetail-inquiry-form-wrap {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
}

.pdetail-form-group {
  margin-bottom: 18px;
}

.pdetail-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.pdetail-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pdetail-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pdetail-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-teal);
}

.pdetail-textarea {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
}

.pdetail-submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border: none;
  border-radius: 10px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.pdetail-submit-btn:hover {
  background: linear-gradient(135deg, #3a85ff, var(--color-blue));
  box-shadow: 0 6px 20px rgba(40, 120, 255, 0.4);
}

/* Related Products Section */
.pdetail-related-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pdetail-related-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.pdetail-related-sub {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal);
  margin-bottom: 6px;
}

.pdetail-related-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  color: var(--color-white);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .pdetail-hero-grid {
    grid-template-columns: 1fr;
  }

  .pdetail-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .pdetail-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .pdetail-highlights-grid,
  .pdetail-form-row,
  .pdetail-apps-grid {
    grid-template-columns: 1fr;
  }

  .pdetail-inquiry-card {
    padding: 30px 20px;
  }

  .pdetail-content-box {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   FRONT SERVICES PAGE (.front-services-page)
   ========================================================================== */

.front-services-page {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
}

/* Services Hero Section */
.services-hero {
  position: relative;
  padding: 100px 0 60px;
  background: radial-gradient(circle at 50% 0%, rgba(20, 50, 100, 0.4) 0%, rgba(10, 12, 16, 1) 80%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.services-hero__glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.services-hero__glow--alt {
  top: -50px;
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(40, 120, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

.services-hero__inner {
  position: relative;
  z-index: 2;
}

.services-hero__header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px;
}

.services-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(40, 214, 207, 0.1);
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 30px;
  margin-bottom: 20px;
}

.services-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-teal);
}

.services-hero__badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.services-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-white);
}

.services-hero__title strong {
  background: linear-gradient(135deg, var(--color-teal) 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero__subtitle {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* Service Metrics Stats Bar */
.services-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.services-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.services-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 214, 207, 0.4);
}

.services-stat-card__value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white);
  background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.services-stat-card__label {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 600;
}

/* Service Search Box */
.services-search-box {
  max-width: 680px;
  margin: 0 auto;
}

.services-search-form {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.services-search-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.services-search-icon {
  position: absolute;
  left: 20px;
  color: var(--color-teal);
  font-size: 16px;
  pointer-events: none;
}

.services-search-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 44px 14px 48px;
  color: var(--color-white);
  font-size: 15px;
  outline: none;
}

.services-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.services-search-clear {
  position: absolute;
  right: 16px;
  color: var(--color-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.services-search-clear:hover {
  color: var(--color-white);
}

.services-search-btn {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(40, 120, 255, 0.4);
}

/* Services Filter Pill Navigation */
.services-filter-section {
  padding: 40px 0 20px;
}

.services-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services-filter-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-filter-icon {
  width: 36px;
  height: 36px;
  background: rgba(40, 214, 207, 0.1);
  border: 1px solid rgba(40, 214, 207, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.services-filter-label h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: var(--color-white);
}

.services-results-count {
  font-size: 14px;
  color: var(--color-muted);
}

.services-results-count strong {
  color: var(--color-teal);
}

.services-categories-nav {
  position: relative;
  overflow: hidden;
}

.services-categories-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.services-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: var(--color-muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.services-cat-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(40, 214, 207, 0.4);
  color: var(--color-white);
}

.services-cat-tab.is-active {
  background: linear-gradient(135deg, rgba(40, 120, 255, 0.2), rgba(40, 214, 207, 0.2));
  border-color: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(40, 214, 207, 0.2);
}

.services-cat-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-white);
}

.services-cat-tab.is-active .services-cat-tab__count {
  background: var(--color-teal);
  color: #0a0c10;
}

/* Services Grid Section */
.services-grid-section {
  padding: 30px 0 80px;
}

.services-category-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(40, 214, 207, 0.25);
  border-radius: 20px;
  padding: 24px 30px;
  margin-bottom: 30px;
}

.services-category-banner__tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-teal);
  letter-spacing: 1px;
}

.services-category-banner__title {
  font-size: 22px;
  font-weight: 800;
  margin: 4px 0 0;
  color: var(--color-white);
}

.services-category-banner__desc {
  font-size: 14px;
  color: var(--color-muted);
  margin: 6px 0 0;
}

.services-category-banner__reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-teal);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.services-category-banner__reset:hover {
  text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card Design */
.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(40, 214, 207, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(40, 214, 207, 0.15);
}

.service-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 5px 12px;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(40, 214, 207, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
}

.service-card__image-wrap {
  width: 100%;
  height: 100%;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card__image--fallback {
  opacity: 0.85;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__quick-btn {
  padding: 10px 22px;
  background: var(--color-blue);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card__quick-btn:hover {
  background: var(--color-blue-dark);
  transform: scale(1.05);
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
}

.service-card__title a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-card__title a:hover {
  color: var(--color-teal);
}

.service-card__description {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.service-card__highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card__highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.service-card__highlight-item i {
  color: var(--color-teal);
  font-size: 14px;
}

.service-card__footer {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card__action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-card__action--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
}

.service-card__action--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-teal);
}

.service-card__action--primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  color: #fff;
}

.service-card__action--primary:hover {
  background: linear-gradient(135deg, #3a85ff, var(--color-blue));
}

/* Service Process & Methodology Section */
.services-process-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 35, 65, 0.4) 0%, rgba(20, 20, 24, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.services-process-sub {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.services-process-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin: 0;
  color: var(--color-white);
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.services-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 214, 207, 0.4);
}

.services-process-card__step {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}

.services-process-card__icon {
  font-size: 28px;
  color: var(--color-teal);
  margin-bottom: 20px;
}

.services-process-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--color-white);
}

.services-process-card__desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* Service Level Commitments (SLA) Section */
.services-sla-section {
  padding: 80px 0 40px;
}

.services-sla-box {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 45, 95, 0.9), rgba(15, 25, 50, 0.95));
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 28px;
  padding: 50px;
  overflow: hidden;
}

.services-sla-box__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.services-sla-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.services-sla-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.services-sla-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.services-sla-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.services-sla-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
}

.services-sla-item__icon {
  font-size: 28px;
  color: var(--color-teal);
  margin-bottom: 14px;
}

.services-sla-item h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 8px;
}

.services-sla-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* Service CTA Section */
.services-cta-section {
  padding: 60px 0 80px;
}

.services-cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 35, 75, 0.95) 0%, rgba(12, 18, 32, 0.98) 100%);
  border: 1px solid rgba(40, 120, 255, 0.3);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
}

.services-cta-box__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(40, 214, 207, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.services-cta-box__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.services-cta-box__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(40, 214, 207, 0.1);
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-cta-box__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.services-cta-box__desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.services-cta-box__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.services-cta-btn--primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(40, 120, 255, 0.35);
}

.services-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 120, 255, 0.5);
}

.services-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.services-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Service Quick Overview Modal */
.services-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.services-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.services-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(10px);
}

.services-modal__container {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-panel);
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  padding: 36px;
}

.services-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.services-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.services-modal__header {
  margin-bottom: 24px;
}

.services-modal__category {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-teal);
  letter-spacing: 1px;
}

.services-modal__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  margin: 4px 0 0;
}

.services-modal__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.services-modal__image-box {
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.services-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-modal__subheading {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 8px;
}

.services-modal__text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.services-modal__features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-modal__feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.services-modal__feature-item i {
  color: var(--color-teal);
}

.services-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-modal__btn-secondary {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.services-modal__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

/* Services Pagination Fix */
.services-pagination-wrap {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.services-pagination-wrap nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.services-pagination-wrap nav>div:first-child {
  display: none;
}

.services-pagination-wrap svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.services-pagination-wrap .pagination {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.services-pagination-wrap .page-item {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  display: inline-flex !important;
}

.services-pagination-wrap .page-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
  outline: none !important;
}

.services-pagination-wrap .page-item.active .page-link {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark)) !important;
  border-color: var(--color-teal) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(40, 120, 255, 0.35) !important;
}

.services-pagination-wrap .page-item:not(.disabled):not(.active) .page-link:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(40, 214, 207, 0.4) !important;
  color: var(--color-teal) !important;
  transform: translateY(-2px);
}

.services-pagination-wrap .page-item.disabled .page-link {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Services Page Media Queries */
@media (max-width: 1024px) {

  .services-stats-grid,
  .services-grid,
  .services-process-grid,
  .services-sla-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .services-stats-grid,
  .services-grid,
  .services-process-grid,
  .services-sla-grid {
    grid-template-columns: 1fr;
  }

  .services-modal__body {
    grid-template-columns: 1fr;
  }

  .services-category-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================================
   FRONT SERVICE DETAILS PAGE (LUXURY THEME)
   ========================================================================== */
.front-service-details-page {
  background-color: #06090e;
  color: var(--color-white);
  padding-top: 105px;
  padding-bottom: 80px;
}

/* Breadcrumb Navigation (Clean Unboxed Link Style) */
.pdetail-breadcrumbs,
.sdetail-breadcrumbs {
  background: transparent;
  border: none;
  padding: 10px 0 0 0;
  margin-bottom: 28px;
}

.pdetail-breadcrumbs__list,
.sdetail-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.pdetail-breadcrumbs__item a,
.sdetail-breadcrumbs__item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pdetail-breadcrumbs__item a:hover,
.sdetail-breadcrumbs__item a:hover {
  color: var(--color-teal);
}

.pdetail-breadcrumbs__separator,
.sdetail-breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.pdetail-breadcrumbs__item--active,
.sdetail-breadcrumbs__item--active {
  color: #ffffff;
  font-weight: 700;
}

/* Hero Spotlight Grid */
.sdetail-hero-section {
  margin-bottom: 50px;
}

.sdetail-hero-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 36px;
  align-items: start;
}

/* Gallery Styling */
.sdetail-gallery {
  position: sticky;
  top: 100px;
}

.sdetail-gallery__main-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0d121d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sdetail-gallery__main-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sdetail-gallery__main-wrap:hover .sdetail-gallery__main-img {
  transform: scale(1.04);
}

.sdetail-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(40, 120, 255, 0.3);
}

.sdetail-gallery__zoom-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 15, 26, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sdetail-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.sdetail-thumb {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #0d121d;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.sdetail-thumb.is-active,
.sdetail-thumb:hover {
  border-color: var(--color-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 214, 207, 0.25);
}

.sdetail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sdetail-sla-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
  background: rgba(40, 120, 255, 0.06);
  border: 1px solid rgba(40, 120, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
}

.sdetail-sla-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.sdetail-sla-card__content h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sdetail-sla-card__content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* Service Meta Section */
.sdetail-meta__category-tag {
  display: inline-block;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.sdetail-meta__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #fff;
}

.sdetail-meta__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sdetail-meta__stars {
  color: #ffb800;
  font-size: 14px;
}

.sdetail-meta__rating-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.sdetail-meta__short-desc p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px;
}

.sdetail-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.sdetail-metric-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.sdetail-metric-pill i {
  font-size: 18px;
  color: var(--color-blue);
  margin-bottom: 6px;
  display: block;
}

.sdetail-metric-val {
  display: block;
  color: var(--color-teal);
}

/* Quick Hero Action Box */
.sdetail-hero-actions-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(40, 214, 207, 0.25);
  border-radius: 18px;
  padding: 20px;
}

.sdetail-hero-actions-box__info h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sdetail-hero-actions-box__info h3 i {
  color: var(--color-teal);
}

.sdetail-hero-actions-box__info p {
  margin: 0 0 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.sdetail-hero-actions {
  display: flex;
  gap: 12px;
}

.sdetail-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sdetail-hero-btn--primary {
  flex: 1;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(40, 120, 255, 0.3);
}

.sdetail-hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 214, 207, 0.4);
}

.sdetail-hero-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.sdetail-hero-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-teal);
  color: var(--color-teal);
}

/* Service Inquiry Form Box */
.sdetail-inquiry-box {
  background: linear-gradient(145deg, rgba(16, 23, 38, 0.9), rgba(10, 15, 26, 0.95));
  border: 1px solid rgba(40, 120, 255, 0.25);
  border-radius: 20px;
  padding: 28px;
  margin-top: 40px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.sdetail-inquiry-box__header h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sdetail-inquiry-box__header h3 i {
  color: var(--color-teal);
}

.sdetail-inquiry-box__header p {
  margin: 0 0 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.sdetail-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sdetail-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sdetail-input-wrap {
  position: relative;
}

.sdetail-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  pointer-events: none;
}

.sdetail-input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: all 0.25s ease;
}

.sdetail-input:focus {
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 12px rgba(40, 214, 207, 0.2);
}

.sdetail-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  outline: none;
  resize: vertical;
  transition: all 0.25s ease;
}

.sdetail-textarea:focus {
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 12px rgba(40, 214, 207, 0.2);
}

.sdetail-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.sdetail-submit-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(40, 120, 255, 0.3);
}

.sdetail-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 214, 207, 0.4);
}

.sdetail-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sdetail-call-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-teal);
  color: var(--color-teal);
}

/* Tabs & Sidebar Main Content Grid */
.sdetail-content-section {
  margin-bottom: 60px;
}

.sdetail-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Tab Controls */
.sdetail-tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.sdetail-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  margin-bottom: -2px;
}

.sdetail-tab-btn:hover {
  color: #fff;
}

.sdetail-tab-btn.is-active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.sdetail-tab-panel {
  display: none;
  animation: fadeInTab 0.3s ease forwards;
}

.sdetail-tab-panel.is-active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.sdetail-rich-content h2,
.sdetail-rich-content h3 {
  color: #fff;
  margin-top: 0;
}

.sdetail-rich-content p,
.sdetail-rich-content li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.sdetail-rich-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Specs Table */
.sdetail-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sdetail-specs-table th,
.sdetail-specs-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.sdetail-specs-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.sdetail-specs-table td {
  color: rgba(255, 255, 255, 0.85);
}

/* Workflow Steps */
.sdetail-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.sdetail-step-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
}

.sdetail-step-item__num {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-teal);
  background: rgba(40, 214, 207, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sdetail-step-item__content h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #fff;
}

.sdetail-step-item__content p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* FAQ Accordion */
.sdetail-faqs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.sdetail-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.sdetail-faq-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.sdetail-faq-question i {
  transition: transform 0.3s ease;
  color: var(--color-teal);
}

.sdetail-faq-item.is-open .sdetail-faq-question i {
  transform: rotate(180deg);
}

.sdetail-faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.sdetail-faq-item.is-open .sdetail-faq-answer {
  display: block;
}

.sdetail-faq-answer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Sidebar Widgets */
.sdetail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sdetail-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
}

.sdetail-widget--call {
  position: relative;
  background: linear-gradient(135deg, rgba(40, 120, 255, 0.15), rgba(40, 214, 207, 0.08));
  border-color: rgba(40, 214, 207, 0.3);
  overflow: hidden;
}

.sdetail-widget__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.sdetail-widget--call h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #fff;
}

.sdetail-widget--call p {
  margin: 0 0 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.sdetail-widget__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: #ffffff;
  color: #06090e;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sdetail-widget__btn:hover {
  background: var(--color-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 214, 207, 0.35);
}

.sdetail-widget__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sdetail-widget__title i {
  color: var(--color-teal);
}

.sdetail-widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sdetail-widget-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s ease;
}

.sdetail-widget-list a:hover,
.sdetail-widget-list a.is-active {
  background: rgba(40, 120, 255, 0.15);
  color: var(--color-teal);
  border-left: 3px solid var(--color-teal);
}

.sdetail-widget-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.sdetail-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--color-teal);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.25s ease;
}

.sdetail-download-btn:hover {
  background: rgba(40, 214, 207, 0.1);
  border-color: var(--color-teal);
}

/* Related Services Section */
.sdetail-related-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sdetail-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.sdetail-section-badge {
  display: inline-block;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.sdetail-section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.sdetail-section-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.sdetail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Details Responsive Queries */
@media (max-width: 1024px) {

  .sdetail-hero-grid,
  .sdetail-content-grid {
    grid-template-columns: 1fr;
  }

  .sdetail-gallery {
    position: static;
  }

  .sdetail-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .sdetail-hero-actions {
    flex-direction: column;
  }

  .sdetail-form-row {
    grid-template-columns: 1fr;
  }

  .sdetail-form-actions {
    flex-direction: column;
  }

  .sdetail-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TABBED CATEGORY-WISE MEGA DROPDOWN (LUXURY INDUSTRIAL THEME)
   ========================================================================== */
.site-nav-item--dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 28px 0;
  transition: color 0.2s ease;
}

.nav-dropdown-arrow {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, color 0.25s ease;
}

.site-nav-item--dropdown:hover .nav-dropdown-arrow,
.site-nav-item--dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--color-teal);
}

.site-nav-item--dropdown:hover .site-nav-link,
.site-nav-link.is-active {
  color: var(--color-teal) !important;
}

/* Mega Dropdown Box */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(10, 14, 23, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(40, 214, 207, 0.25);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(40, 214, 207, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
  z-index: 100;
}

.site-nav-item--dropdown:hover .mega-dropdown,
.site-nav-item--dropdown.is-open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown--tabbed {
  width: clamp(860px, 70vw, 1080px);
  padding: 0;
}

.mega-dropdown--tabbed .mega-dropdown__inner {
  padding: 0;
}

.mega-tabbed-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

/* Left Sidebar Navigation */
.mega-tabbed-sidebar {
  background: rgba(8, 12, 20, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
}

.mega-tabbed-sidebar__header {
  padding: 0 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.mega-tabbed-sidebar__badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
}

.mega-tabbed-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mega-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: all 0.22s ease;
}

.mega-tab-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.mega-tab-btn.is-active {
  background: rgba(40, 120, 255, 0.15);
  border-left-color: var(--color-teal);
  color: var(--color-teal);
  font-weight: 700;
  box-shadow: inset 0 0 12px rgba(40, 214, 207, 0.1);
}

.mega-tab-btn__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-tab-btn.is-active .mega-tab-btn__icon {
  background: var(--color-teal);
  color: #06090e;
}

.mega-tab-btn__icon--teal {
  color: var(--color-teal);
}

.mega-tab-btn__title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-tab-btn__arrow {
  font-size: 10px;
  opacity: 0.3;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mega-tab-btn.is-active .mega-tab-btn__arrow,
.mega-tab-btn:hover .mega-tab-btn__arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--color-teal);
}

.mega-tabbed-sidebar__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-sidebar-all-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-sidebar-all-btn:hover {
  background: rgba(40, 214, 207, 0.15);
  color: var(--color-teal);
}

/* Right Content Area */
.mega-tabbed-content {
  padding: 24px 28px;
  background: rgba(10, 14, 23, 0.98);
  overflow-y: auto;
  max-height: 480px;
}

.mega-tab-panel {
  display: none;
  animation: fadeInMegaPanel 0.25s ease forwards;
}

.mega-tab-panel.is-active {
  display: block;
}

@keyframes fadeInMegaPanel {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

.mega-tab-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.mega-tab-panel__title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mega-tab-panel__title-wrap h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.mega-tab-panel__count {
  background: rgba(40, 214, 207, 0.15);
  color: var(--color-teal);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.mega-tab-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-tab-panel__link:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

/* Category Products Grid (3 Columns) */
.mega-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mega-product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mega-product-card:hover {
  background: rgba(40, 120, 255, 0.1);
  border-color: rgba(40, 214, 207, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.mega-product-card__body {
  flex: 1;
  margin-bottom: 12px;
}

.mega-product-card__title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  transition: color 0.2s ease;
}

.mega-product-card:hover .mega-product-card__title {
  color: var(--color-teal);
}

.mega-product-card__badge {
  display: inline-block;
  background: rgba(40, 120, 255, 0.15);
  color: var(--color-blue);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.mega-product-card__badge--teal {
  background: rgba(40, 214, 207, 0.15);
  color: var(--color-teal);
}

.mega-product-card__footer {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-product-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.mega-product-card:hover .mega-product-card__action {
  color: var(--color-teal);
}

.mega-products-empty {
  grid-column: span 3;
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.mega-products-empty i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.mega-products-empty p {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.mega-products-empty__btn {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(40, 214, 207, 0.15);
  color: var(--color-teal);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

/* Mobile nav + mega accordion (must come AFTER desktop mega rules) */
@media (max-width: 1120px) {
  .site-header__links > a,
  .site-header__links > .site-nav-item--dropdown > .site-nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 18px !important;
    margin: 0;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
  }

  .site-header__links > a:last-child {
    border-bottom: 0;
  }

  .site-nav-item--dropdown {
    display: block !important;
    width: 100% !important;
    max-width: 100%;
    position: relative;
    flex-direction: column;
    align-items: stretch !important;
  }

  .site-nav-item--dropdown > .site-nav-link {
    width: 100%;
  }

  .site-nav-item--dropdown.is-open > .site-nav-link {
    color: var(--color-teal) !important;
    background: rgba(40, 214, 207, 0.08);
  }

  .site-nav-item--dropdown:hover .mega-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .mega-dropdown,
  .mega-dropdown--tabbed {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important;
    padding: 0 !important;
    margin: 0;
    z-index: 1;
  }

  .site-nav-item--dropdown.is-open > .mega-dropdown,
  .site-nav-item--dropdown.is-open:hover > .mega-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .mega-dropdown--tabbed .mega-dropdown__inner {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .mega-tabbed-layout {
    display: block !important;
    grid-template-columns: none !important;
    width: 100%;
    max-width: 100%;
    min-height: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .mega-tabbed-sidebar {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px 10px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent !important;
  }

  .mega-tabbed-sidebar__header {
    padding: 0 2px 10px;
    margin-bottom: 8px;
  }

  .mega-tabbed-sidebar__badge {
    color: var(--color-teal);
  }

  .mega-tabbed-nav {
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap;
    gap: 6px;
    overflow: visible !important;
    width: 100%;
  }

  .mega-tab-btn {
    display: flex !important;
    align-items: center;
    flex: none !important;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    padding: 11px 12px !important;
    border-radius: 8px;
    border-left: 3px solid transparent;
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    white-space: normal;
    text-align: left;
  }

  .mega-tab-btn.is-active {
    border-left-color: var(--color-teal) !important;
    background: rgba(40, 120, 255, 0.22) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  .mega-tab-btn__title {
    flex: 1;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.3;
    color: inherit !important;
  }

  .mega-tab-btn__arrow {
    display: none !important;
  }

  .mega-tabbed-sidebar__footer {
    margin-top: 10px;
    padding-top: 10px;
  }

  .mega-sidebar-all-btn {
    display: flex !important;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 0 !important;
  }

  .mega-tabbed-content {
    width: 100%;
    max-width: 100%;
    padding: 10px 14px 14px;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .mega-tab-panel__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .mega-tab-panel__title-wrap {
    flex-wrap: wrap;
    gap: 8px;
  }

  .mega-tab-panel__title-wrap h3 {
    font-size: 14px !important;
    color: #ffffff !important;
  }

  .mega-tab-panel__link {
    font-size: 12px;
    color: var(--color-teal) !important;
    border-bottom: 0 !important;
    padding: 0 !important;
  }

  .mega-products-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 8px;
    width: 100%;
  }

  .site-header__links .mega-product-card,
  .site-header__links .mega-product-card--service {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 12px !important;
    margin: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff !important;
  }

  .site-header__links .mega-product-card__body {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
  }

  .site-header__links .mega-product-card__title {
    margin: 0 0 4px;
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #ffffff !important;
    white-space: normal;
  }

  .site-header__links .mega-product-card__badge {
    color: var(--color-blue-light);
  }

  .site-header__links .mega-product-card__footer {
    padding-top: 0;
    border-top: 0;
    flex-shrink: 0;
  }

  .site-header__links .mega-product-card__action {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .site-header__links .mega-product-card__action span:first-child {
    display: none;
  }

  .mega-products-empty {
    grid-column: span 1;
    padding: 18px 12px;
  }

  .site-header__links .mega-products-empty__btn {
    border-bottom: 0 !important;
    color: var(--color-teal) !important;
  }
}

/* ==========================================================================
   PREMIUM LUXURY CAREERS MODULE STYLING
   ========================================================================== */

/* Hero Section */
.career-hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0d1217 0%, #15191d 50%, #0a1726 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--color-soft);
}

.career-hero__bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.15) 0%, rgba(40, 120, 255, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  filter: blur(60px);
}

.career-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.career-breadcrumbs a {
  transition: color 0.2s ease;
}

.career-breadcrumbs a:hover {
  color: var(--color-teal);
}

.career-breadcrumbs i {
  font-size: 10px;
  opacity: 0.6;
}

.career-hero__content {
  max-width: 800px;
  margin-bottom: 70px;
}

.career-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(40, 214, 207, 0.1);
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 100px;
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.career-hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.career-hero__title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 60%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 720px;
}

.career-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Buttons */
.career-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-decoration: none;
}

.career-btn--primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(40, 120, 255, 0.3);
}

.career-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(40, 120, 255, 0.45);
  background: linear-gradient(135deg, #3d86ff 0%, #175fe8 100%);
}

.career-btn--glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.career-btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.career-btn--light {
  background: #ffffff;
  color: var(--color-ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.career-btn--light:hover {
  background: var(--color-teal);
  color: #0b151e;
  transform: translateY(-2px);
}

.career-btn--card-apply {
  width: 100%;
  padding: 12px 20px;
  background: rgba(40, 214, 207, 0.08);
  color: var(--color-teal);
  border: 1px solid rgba(40, 214, 207, 0.25);
  border-radius: 8px;
}

.career-btn--card-apply:hover {
  background: var(--color-teal);
  color: #0c1a26;
  border-color: var(--color-teal);
  transform: translateY(-1px);
}

.career-btn--block {
  width: 100%;
}

/* Stat Cards */
.career-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.career-stat-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.career-stat-card:hover {
  border-color: rgba(40, 214, 207, 0.3);
  transform: translateY(-3px);
}

.career-stat-card__number {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 8px;
  font-family: inherit;
}

.career-stat-card__label {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Culture Section */
.career-culture-section {
  padding: 100px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-soft);
}

.section-header {
  margin-bottom: 60px;
}

.section-header.text-center {
  text-align: center;
}

.section-header__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: 10px;
}

.section-header__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 14px;
}

.section-header__desc {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.culture-card {
  padding: 32px 24px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.culture-card:hover {
  transform: translateY(-6px);
  border-color: rgba(40, 214, 207, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.culture-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.culture-card__icon--blue {
  background: rgba(40, 120, 255, 0.12);
  color: var(--color-blue);
}

.culture-card__icon--teal {
  background: rgba(40, 214, 207, 0.12);
  color: var(--color-teal);
}

.culture-card__icon--navy {
  background: rgba(12, 55, 125, 0.3);
  color: #60a5fa;
}

.culture-card__icon--purple {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
}

.culture-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.culture-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
}

/* Open Positions Section */
.career-jobs-section {
  padding: 100px 0;
  background: #181b1f;
}

.career-jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.career-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.career-search-wrapper {
  position: relative;
  min-width: 280px;
}

.career-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 14px;
}

.career-search-input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.career-search-input:focus {
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.08);
}

.career-type-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.career-tab-btn {
  padding: 8px 18px;
  background: transparent;
  border: none;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.career-tab-btn.is-active {
  background: var(--color-teal);
  color: #0b1722;
  box-shadow: 0 4px 12px rgba(40, 214, 207, 0.25);
}

/* Job Cards Grid */
.career-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: rgba(40, 214, 207, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.job-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.job-badge--full-time {
  background: rgba(40, 214, 207, 0.12);
  color: var(--color-teal);
  border: 1px solid rgba(40, 214, 207, 0.25);
}

.job-badge--part-time {
  background: rgba(40, 120, 255, 0.12);
  color: var(--color-blue);
  border: 1px solid rgba(40, 120, 255, 0.25);
}

.job-card__posted {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.job-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--color-muted);
}

.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.job-card__excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.job-card__footer {
  margin-top: auto;
}

/* No Jobs Fallback */
.career-no-jobs {
  grid-column: span 3;
  text-align: center;
  padding: 60px 30px;
  background: var(--color-panel);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.career-no-jobs__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(40, 214, 207, 0.1);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.career-no-jobs h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.career-no-jobs p {
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 15px;
}

/* CTA Banner Section */
.career-cta-banner {
  padding: 80px 0;
  background: var(--color-bg);
}

.career-cta-card {
  position: relative;
  padding: 60px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-dark) 100%);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.career-cta-card__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(40, 214, 207, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.career-cta-card__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.career-cta-card__content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 14px;
}

.career-cta-card__content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

/* Modal Styling */
.career-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 14, 19, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.career-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.career-modal {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: #181d23;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-modal-backdrop.is-open .career-modal {
  transform: translateY(0) scale(1);
}

.career-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.career-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.career-modal__header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.career-modal__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  margin: 12px 0 10px;
}

.career-modal__meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--color-muted);
}

.career-modal__meta i {
  color: var(--color-teal);
  margin-right: 4px;
}

.career-modal__body {
  padding: 32px;
}

.career-modal__spec-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.career-modal__spec-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#modalJobSpecContent {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  white-space: pre-line;
}

/* Modal Form */
.career-apply-form-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-subtext {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  resize: vertical;
}

.career-feedback-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

.career-feedback-msg.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.career-feedback-msg.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .career-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .career-stats {
    grid-template-columns: 1fr;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .career-jobs-grid {
    grid-template-columns: 1fr;
  }

  .career-no-jobs {
    grid-column: span 1;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .career-cta-card {
    padding: 36px 20px;
  }

  .career-modal__body {
    padding: 20px;
  }

  .career-modal__header {
    padding: 24px 20px 16px;
  }
}

/* ==========================================================================
   PRODUCT DETAILS PAGE STYLING
   ========================================================================== */

.front-product-details-page {
  padding-top: 110px;
  /* Essential: clears fixed site header (82px) with comfortable breathing room */
  background: var(--color-bg);
  min-height: 100vh;
}

/* Breadcrumb Styling */
.pdetail-breadcrumbs {
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pdetail-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--color-muted);
}

.pdetail-breadcrumbs__item a {
  color: var(--color-muted);
  transition: color 0.2s ease;
  text-decoration: none;
}

.pdetail-breadcrumbs__item a:hover {
  color: var(--color-teal);
}

.pdetail-breadcrumbs__item--active {
  color: var(--color-white);
  font-weight: 600;
}

.pdetail-breadcrumbs__separator {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
}

/* Hero Section */
.pdetail-hero-section {
  padding-bottom: 70px;
  border-bottom: 1px solid var(--color-soft);
}

.pdetail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* Left Gallery Column */
.pdetail-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdetail-gallery__main-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #181d23;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdetail-gallery__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  padding: 6px 16px;
  background: rgba(12, 55, 125, 0.85);
  border: 1px solid rgba(40, 120, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pdetail-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdetail-gallery__main-wrap:hover .pdetail-gallery__main-img {
  transform: scale(1.04);
}

.pdetail-gallery__zoom-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 12px;
  color: var(--color-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdetail-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pdetail-thumb {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #181d23;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pdetail-thumb.is-active,
.pdetail-thumb:hover {
  border-color: var(--color-teal);
  box-shadow: 0 0 12px rgba(40, 214, 207, 0.3);
}

.pdetail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Documentation Box */
.pdetail-docs-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  margin-top: 8px;
}

.pdetail-docs-box__icon {
  font-size: 28px;
  color: #ef4444;
  flex-shrink: 0;
}

.pdetail-docs-box__info {
  flex-grow: 1;
}

.pdetail-docs-box__info strong {
  display: block;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 2px;
}

.pdetail-docs-box__info p {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0;
}

.pdetail-docs-box__btn {
  padding: 8px 16px;
  background: rgba(40, 214, 207, 0.12);
  border: 1px solid rgba(40, 214, 207, 0.3);
  border-radius: 8px;
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pdetail-docs-box__btn:hover {
  background: var(--color-teal);
  color: #0b1722;
}

/* Right Summary Column */
.pdetail-summary {
  display: flex;
  flex-direction: column;
}

.pdetail-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(40, 214, 207, 0.1);
  border: 1px solid rgba(40, 214, 207, 0.25);
  border-radius: 100px;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 18px;
}

.pdetail-summary__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 8px var(--color-teal);
}

.pdetail-summary__title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.pdetail-summary__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* Highlights Grid */
.pdetail-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.pdetail-highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.pdetail-highlight-card:hover {
  border-color: rgba(40, 214, 207, 0.35);
  transform: translateY(-2px);
}

.pdetail-highlight-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(40, 214, 207, 0.12);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pdetail-highlight-card__text strong {
  display: block;
  font-size: 13px;
  color: var(--color-white);
  margin-bottom: 2px;
}

.pdetail-highlight-card__text span {
  font-size: 12px;
  color: var(--color-muted);
}

/* CTA Actions */
.pdetail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pdetail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdetail-btn--primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(40, 120, 255, 0.3);
}

.pdetail-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(40, 120, 255, 0.45);
}

.pdetail-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.pdetail-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Technical Info Tabs Section */
.pdetail-tabs-section {
  padding: 70px 0;
}

.pdetail-tabs-nav {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
  overflow-x: auto;
}

.pdetail-tab-btn {
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pdetail-tab-btn.is-active,
.pdetail-tab-btn:hover {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.pdetail-tab-panel {
  display: none;
}

.pdetail-tab-panel.is-active {
  display: block;
}

.pdetail-content-box {
  padding: 40px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.pdetail-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
}

.pdetail-subheading {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-teal);
  margin: 30px 0 14px;
}

.pdetail-prose {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
}

/* Specs Table */
.pdetail-table-wrap {
  overflow-x: auto;
}

.pdetail-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pdetail-spec-table th,
.pdetail-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.pdetail-spec-table th {
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.pdetail-spec-table td {
  color: var(--color-muted);
}

.pdetail-spec-table td strong {
  color: var(--color-white);
}

/* Apps Grid */
.pdetail-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pdetail-app-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.25 ease;
}

.pdetail-app-card:hover {
  border-color: rgba(40, 214, 207, 0.35);
  transform: translateY(-4px);
}

.pdetail-app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(40, 120, 255, 0.12);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.pdetail-app-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.pdetail-app-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
  margin: 0;
}

/* FAQ Items */
.pdetail-faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdetail-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.pdetail-faq-question {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.pdetail-faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.pdetail-faq-item.is-open .pdetail-faq-answer {
  display: block;
}

.pdetail-faq-item.is-open .pdetail-faq-icon {
  transform: rotate(180deg);
}

/* Inquiry Section */
.pdetail-inquiry-section {
  padding: 70px 0;
}

.pdetail-inquiry-card {
  position: relative;
  padding: 50px;
  background: linear-gradient(135deg, #121820 0%, #1a222c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
}

.pdetail-inquiry-card__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40, 214, 207, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pdetail-inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.pdetail-inquiry-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-teal);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.pdetail-inquiry-info h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.pdetail-inquiry-info p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.pdetail-inquiry-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdetail-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdetail-contact-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(40, 214, 207, 0.12);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.pdetail-contact-row strong {
  display: block;
  font-size: 13px;
  color: var(--color-white);
}

.pdetail-contact-row a {
  font-size: 15px;
  color: var(--color-teal);
  font-weight: 600;
  text-decoration: none;
}

.pdetail-inquiry-form-wrap {
  background: rgba(0, 0, 0, 0.3);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pdetail-form-group {
  margin-bottom: 18px;
}

.pdetail-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.pdetail-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pdetail-input {
  width: 100%;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.pdetail-input:focus {
  border-color: var(--color-teal);
}

.pdetail-textarea {
  resize: vertical;
}

.pdetail-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: var(--color-white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.pdetail-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(40, 120, 255, 0.4);
}

/* Related Section */
.pdetail-related-section {
  padding: 70px 0 100px;
}

.pdetail-related-header {
  margin-bottom: 40px;
}

.pdetail-related-sub {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-teal);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.pdetail-related-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pdetail-hero-grid {
    grid-template-columns: 1fr;
  }

  .pdetail-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .pdetail-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .front-product-details-page {
    padding-top: 95px;
  }

  .pdetail-highlights-grid {
    grid-template-columns: 1fr;
  }

  .pdetail-apps-grid {
    grid-template-columns: 1fr;
  }

  .pdetail-form-row {
    grid-template-columns: 1fr;
  }

  .pdetail-inquiry-card {
    padding: 24px;
  }

  .pdetail-content-box {
    padding: 24px;
  }
}

/* ==========================================================================
   UNIFIED BRAND COLOR PALETTE & HOVER INTERACTION ENHANCEMENTS
   ========================================================================== */

/* Buttons & CTA Hover Effects */
.hero-action,
.site-header__cta,
.career-btn--primary,
.pdetail-btn--primary,
.pdetail-submit-btn,
.mega-sidebar-all-btn,
.product-card__action--primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%) !important;
  color: #ffffff !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-action:hover,
.site-header__cta:hover,
.career-btn--primary:hover,
.pdetail-btn--primary:hover,
.pdetail-submit-btn:hover,
.mega-sidebar-all-btn:hover,
.product-card__action--primary:hover {
  background: linear-gradient(135deg, var(--color-blue-hover) 0%, var(--color-blue-dark) 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.45) !important;
}

/* Glass & Secondary Buttons Hover */
.career-btn--glass,
.pdetail-btn--secondary,
.product-card__action--secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--color-white) !important;
  transition: all 0.25s ease !important;
}

.career-btn--glass:hover,
.pdetail-btn--secondary:hover,
.product-card__action--secondary:hover {
  background: rgba(59, 130, 246, 0.15) !important;
  border-color: var(--color-blue) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px) !important;
}

/* Card Hover States & Glowing Accent Borders */
.business-card,
.product-card,
.job-card,
.culture-card,
.director-card,
.pdetail-highlight-card,
.pdetail-app-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.business-card:hover,
.product-card:hover,
.job-card:hover,
.culture-card:hover,
.director-card:hover,
.pdetail-highlight-card:hover,
.pdetail-app-card:hover {
  border-color: rgba(59, 130, 246, 0.45) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 18px 38px rgba(59, 130, 246, 0.16) !important;
}

/* Links & Navigation Hover Colors */
.site-header__links a:hover,
.site-nav-link:hover,
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-blue-light) !important;
}

/* Active Nav Indicators */
.site-header__links a.is-active,
.site-nav-link.is-active {
  color: var(--color-blue-light) !important;
}

/* Active Tabs & Filter Buttons */
.career-tab-btn.is-active,
.mega-tab-btn.is-active,
.pdetail-tab-btn.is-active,
.cnt-loc-tab.is-active {
  background: var(--color-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35) !important;
}

/* ==========================================================================
   PREMIUM MAP HUB & LOCATION SELECTOR STYLING
   ========================================================================== */

.cnt-map-hub {
  padding: 100px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-soft);
  border-bottom: 1px solid var(--color-soft);
}

.cnt-map-hub__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.cnt-map-hub__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-white);
  margin: 8px 0 0;
}

/* Location Selector Tabs */
.cnt-location-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 6px;
}

.cnt-loc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cnt-loc-tab i {
  font-size: 14px;
  color: var(--color-blue);
  transition: color 0.25s ease;
}

.cnt-loc-tab.is-active i {
  color: #ffffff !important;
}

/* Split Hub Grid */
.cnt-map-hub__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: stretch;
}

/* Left Office Details Card */
.cnt-loc-card-wrap {
  position: relative;
}

.cnt-loc-card {
  display: none;
  flex-direction: column;
  padding: 36px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  height: 100%;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.cnt-loc-card.is-active {
  display: flex;
  animation: fadeInLocCard 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInLocCard {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.cnt-loc-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: var(--color-blue-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: 20px;
}

.cnt-loc-card__badge--secondary {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.cnt-loc-card__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 8px var(--color-blue);
}

.cnt-loc-card__name {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.cnt-loc-card__tagline {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.cnt-loc-card__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.cnt-loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cnt-loc-detail__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cnt-loc-detail strong {
  display: block;
  font-size: 13px;
  color: var(--color-white);
  margin-bottom: 2px;
}

.cnt-loc-detail p,
.cnt-loc-detail a {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  text-decoration: none;
  line-height: 1.5;
}

.cnt-loc-detail a:hover {
  color: var(--color-blue-light);
}

.cnt-loc-card__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}

.cnt-loc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cnt-loc-btn--primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.cnt-loc-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.5);
}

.cnt-loc-btn--glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cnt-loc-btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-blue);
  transform: translateY(-2px);
}

/* Right Framed Map Container */
.cnt-map-view-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  min-height: 440px;
}

.cnt-map-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cnt-map-view.is-active {
  opacity: 1;
  visibility: visible;
}

.cnt-map-overlay-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(18, 24, 34, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cnt-map-overlay-badge i {
  color: var(--color-blue);
}

/* Map Media Queries */
@media (max-width: 1024px) {
  .cnt-map-hub__grid {
    grid-template-columns: 1fr;
  }

  .cnt-map-view-wrap {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .cnt-loc-card {
    padding: 24px;
  }

  .cnt-location-tabs {
    width: 100%;
  }

  .cnt-loc-tab {
    flex: 1;
    justify-content: center;
  }

  .cnt-loc-card__actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   CONTACT PAGE COMPLETE STYLING & ANIMATIONS
   ========================================================================== */

/* Ensure animated elements on contact page are visible */
.contact-page .animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
}

.contact-hero {
  position: relative;
  min-height: 520px;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7);
}

.contact-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgba(18, 24, 36, 0.95) 100%);
}

.contact-hero__inner {
  position: relative;
  z-index: 3;
}

.cnt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cnt-index {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-blue-light);
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 6px;
}

.cnt-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.contact-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-hero__title strong {
  color: var(--color-blue);
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 600px;
}

/* Contact Main Grid (Info + Form) */
.cnt-main {
  padding: 90px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-soft);
}

.cnt-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.cnt-section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.cnt-section-tag--light {
  color: var(--color-blue-light);
}

.cnt-info__heading {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 36px;
}

.cnt-info__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cnt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.25s ease;
}

.cnt-info-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.cnt-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cnt-info-item__icon svg {
  width: 20px;
  height: 20px;
}

.cnt-info-item__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.cnt-info-item__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1.4;
}

.cnt-info-item__value:hover {
  color: var(--color-blue-light);
}

.cnt-services-list ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cnt-services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
}

.cnt-services-list li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* Contact Form Card */
.cnt-form-wrap {
  width: 100%;
}

.cnt-form-card {
  padding: 40px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.cnt-form-card__tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.cnt-form-card__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 28px;
}

.cnt-alert {
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}

.cnt-alert--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.cnt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cnt-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cnt-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cnt-form__field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
}

.cnt-form__field label span {
  color: #ef4444;
}

.cnt-form__field input,
.cnt-form__field select,
.cnt-form__field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cnt-form__field input:focus,
.cnt-form__field select:focus,
.cnt-form__field textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.cnt-form__select-wrap {
  position: relative;
}

.cnt-form__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  pointer-events: none;
}

.cnt-form__error {
  font-size: 12px;
  color: #ef4444;
}

.cnt-form__submit {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  transition: all 0.25s ease;
}

.cnt-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.55);
}

/* Why Contact Us Section */
.cnt-why {
  padding: 90px 0;
  background: var(--color-bg);
}

.cnt-why__heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 48px;
}

.cnt-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cnt-why-card {
  padding: 32px 28px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.25s ease;
}

.cnt-why-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cnt-why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cnt-why-card__icon svg {
  width: 26px;
  height: 26px;
}

.cnt-why-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.cnt-why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.cnt-why-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cnt-why-card__link:hover {
  color: var(--color-blue-light);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .cnt-main__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cnt-why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .cnt-form__row {
    grid-template-columns: 1fr;
  }

  .cnt-form-card {
    padding: 24px;
  }
}

/* ==========================================================================
   PREMIUM LUXURY LEGAL PAGES (PRIVACY POLICY & TERMS OF USE)
   ========================================================================== */

.legal-page {
  background-color: var(--color-bg);
  color: var(--color-white);
  padding-top: 110px;
}

/* Hero Section */
.legal-hero {
  position: relative;
  padding: 60px 0 70px;
  background: linear-gradient(180deg, rgba(15, 43, 92, 0.4) 0%, rgba(24, 24, 27, 1) 100%);
  border-bottom: 1px solid var(--color-soft);
  overflow: hidden;
}

.legal-hero__glow {
  position: absolute;
  top: -50%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.legal-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.legal-breadcrumbs a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-breadcrumbs a:hover {
  color: var(--color-blue-light);
}

.legal-breadcrumbs__sep {
  opacity: 0.4;
}

.legal-breadcrumbs__current {
  color: var(--color-white);
  font-weight: 700;
}

.legal-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  color: var(--color-blue-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.legal-hero__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.legal-hero__title strong {
  color: var(--color-blue);
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 720px;
  margin-bottom: 32px;
}

.legal-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.legal-meta-item i {
  color: var(--color-blue);
}

.legal-print-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.legal-print-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-blue);
}

/* Legal Body Grid */
.legal-body {
  padding: 70px 0 100px;
}

.legal-body__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sticky Sidebar Table of Contents */
.legal-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-toc-card {
  padding: 24px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.legal-toc__title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-toc__title i {
  color: var(--color-blue);
}

.legal-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-toc__link i {
  font-size: 10px;
  color: var(--color-blue);
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.legal-toc__link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

.legal-toc__link.is-active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-blue-light);
  font-weight: 700;
}

.legal-toc__link.is-active i {
  opacity: 1;
  transform: translateX(2px);
}

.legal-support-box {
  padding: 24px;
  background: linear-gradient(135deg, rgba(15, 43, 92, 0.5) 0%, rgba(20, 20, 24, 0.8) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  text-align: center;
}

.legal-support-box i {
  font-size: 32px;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.legal-support-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.legal-support-box p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.legal-support-btn {
  display: block;
  padding: 10px 16px;
  background: var(--color-blue);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.legal-support-btn:hover {
  background: var(--color-blue-hover);
}

/* Legal Content Cards */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section {
  scroll-margin-top: 130px;
}

.legal-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.legal-section__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-blue);
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 6px;
}

.legal-section__header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
}

.legal-card {
  padding: 32px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.legal-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-card li {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.legal-highlight-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  margin-top: 20px;
}

.legal-highlight-box i {
  font-size: 22px;
  color: var(--color-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.legal-highlight-box strong {
  display: block;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.legal-highlight-box p {
  font-size: 13px;
  margin: 0;
  color: var(--color-muted);
}

.legal-sub-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-top: 18px;
}

.legal-sub-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue-light);
  margin-bottom: 12px;
}

.legal-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.legal-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.legal-grid-item i {
  font-size: 20px;
  color: var(--color-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.legal-grid-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.legal-grid-item p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Legal Table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-weight: 700;
}

.legal-table td {
  color: var(--color-muted);
}

.legal-note {
  font-size: 13px;
  font-style: italic;
  color: var(--color-muted);
  margin-top: 12px;
}

.legal-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.legal-sec-item {
  padding: 20px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 14px;
}

.legal-sec-item i {
  font-size: 24px;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.legal-sec-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 6px;
}

.legal-sec-item p {
  font-size: 13px;
  margin: 0;
}

.legal-rights-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.legal-right-box {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.legal-right-box strong {
  display: block;
  font-size: 14px;
  color: var(--color-blue-light);
  margin-bottom: 6px;
}

.legal-right-box p {
  font-size: 13px;
  margin: 0;
}

.legal-card--contact {
  background: linear-gradient(135deg, rgba(15, 43, 92, 0.3) 0%, var(--color-panel) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

.legal-card--contact h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
}

.legal-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
}

.legal-contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
}

.legal-contact-details i {
  color: var(--color-blue);
}

.legal-contact-details a {
  color: var(--color-white);
  text-decoration: none;
}

.legal-contact-details a:hover {
  color: var(--color-blue-light);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .legal-body__grid {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-grid-list,
  .legal-security-grid,
  .legal-rights-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legal-card {
    padding: 22px;
  }

  .legal-print-btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}

/* ==========================================================================
   PREMIUM LUXURY THANK YOU PAGE STYLING
   ========================================================================== */

.thankyou-page {
  background-color: var(--color-bg);
  color: var(--color-white);
  padding-top: 110px;
}

.thk-hero {
  position: relative;
  padding: 80px 0 90px;
  background: linear-gradient(180deg, rgba(15, 43, 92, 0.45) 0%, rgba(24, 24, 27, 1) 100%);
  border-bottom: 1px solid var(--color-soft);
  text-align: center;
  overflow: hidden;
}

.thk-hero__glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.thk-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Checkmark Pulse Circle */
.thk-status-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.thk-status-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  animation: pulseThkRing 2.5s infinite ease-in-out;
}

@keyframes pulseThkRing {

  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.thk-status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
  position: relative;
  z-index: 2;
}

.thk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.thk-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.thk-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.thk-title strong {
  color: var(--color-blue);
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thk-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

/* Response SLA Banner */
.thk-sla-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 20px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.thk-sla-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.thk-sla-item i {
  font-size: 22px;
  color: var(--color-blue);
}

.thk-sla-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-white);
}

.thk-sla-item span,
.thk-sla-item a {
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: none;
}

.thk-sla-item a:hover {
  color: var(--color-blue-light);
}

/* Action Buttons */
.thk-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.thk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.thk-btn--primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.thk-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.55);
}

.thk-btn--glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.thk-btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-blue);
  transform: translateY(-2px);
}

/* Steps Timeline */
.thk-steps {
  padding: 90px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-soft);
}

.thk-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.thk-section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--color-white);
  margin-top: 8px;
}

.thk-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.thk-step-card {
  position: relative;
  padding: 36px 28px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.thk-step-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.thk-step-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.thk-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

.thk-step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
}

.thk-step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.thk-step-status {
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.thk-step-status--active {
  color: var(--color-blue-light);
}

.thk-step-status--pending {
  color: var(--color-muted);
}

/* Explore Grid */
.thk-explore {
  padding: 90px 0 100px;
  background: var(--color-bg);
}

.thk-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.thk-explore-card {
  padding: 32px 28px;
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.thk-explore-card:hover {
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.15);
}

.thk-explore-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.thk-explore-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
}

.thk-explore-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.thk-explore-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.thk-explore-card:hover .thk-explore-card__link {
  transform: translateX(4px);
}

/* Thank You Responsive */
@media (max-width: 1024px) {

  .thk-steps-grid,
  .thk-explore-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .thk-sla-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }

  .thk-actions {
    flex-direction: column;
    width: 100%;
  }

  .thk-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   EXTERNAL FORM VALIDATION & ICON UTILITY CLASSES
   ========================================================================== */

.pdetail-form-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  font-weight: 600;
}

.legal-icon--success {
  color: #4ade80;
}

.legal-icon--danger {
  color: #ef4444;
}

.legal-icon--info {
  color: #60a5fa;
}

/* jQuery Validation Styles */
.jquery-validation-error,
span.jquery-validation-error {
  color: #ef4444 !important;
  font-size: 0.825rem !important;
  font-weight: 500 !important;
  margin-top: 5px !important;
  display: block !important;
  line-height: 1.3 !important;
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
}

input.is-valid,
textarea.is-valid,
select.is-valid {
  border-color: #10b981 !important;
}

* jQuery Validation Styles */ .jquery-validation-error,
span.jquery-validation-error {
  color: #ef4444 !important;
  font-size: 0.825rem !important;
  font-weight: 500 !important;
  margin-top: 5px !important;
  display: block !important;
  line-height: 1.3 !important;
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
}

input.is-valid,
textarea.is-valid,
select.is-valid {
  border-color: #10b981 !important;
}

/* ==========================================================================
   PRODUCTS CATALOG PAGE STYLES
   ========================================================================== */

.front-products-page {
  padding-top: 82px;
  min-height: 100vh;
  background: var(--color-bg);
}

/* Products Hero Section */
.products-hero {
  position: relative;
  isolation: isolate;
  padding: 60px 0 50px;
  background: linear-gradient(180deg, rgba(15, 43, 92, 0.45) 0%, rgba(24, 24, 27, 0.95) 100%), var(--color-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--color-soft);
}

.products-hero__glow {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.products-hero__glow--alt {
  right: 10%;
  left: auto;
  top: -50px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.14) 0%, transparent 70%);
}

.products-hero__inner {
  position: relative;
  z-index: 2;
}

.products-hero__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.products-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  margin-bottom: 20px;
}

.products-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue-light);
  box-shadow: 0 0 10px var(--color-blue);
}

.products-hero__badge-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-blue-light);
}

.products-hero__title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-white);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.products-hero__title strong {
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-hero__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Stat Metrics Bar */
.products-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.products-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-soft);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.products-stat-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.products-stat-card__value {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--color-blue-light);
  margin-bottom: 4px;
}

.products-stat-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
}

/* Search Box */
.products-search-box {
  max-width: 680px;
  margin: 0 auto;
}

.products-search-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.products-search-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.products-search-icon {
  position: absolute;
  left: 18px;
  color: var(--color-grey);
  font-size: 16px;
  pointer-events: none;
}

.products-search-input {
  width: 100%;
  height: 52px;
  padding: 0 45px 0 48px;
  background: rgba(32, 32, 36, 0.9);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  color: var(--color-white);
  font-size: 15px;
  transition: all 0.25s ease;
}

.products-search-input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: #202024;
}

.products-search-clear {
  position: absolute;
  right: 14px;
  color: var(--color-grey);
  padding: 6px;
  font-size: 14px;
  transition: color 0.2s;
}

.products-search-clear:hover {
  color: var(--color-white);
}

.products-search-btn {
  height: 52px;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  border: none;
  border-radius: 12px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.products-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
  background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue) 100%);
}

/* Category Filter Navigation */
.products-filter-section {
  padding: 35px 0 25px;
  border-bottom: 1px solid var(--color-soft);
  background: rgba(20, 20, 23, 0.6);
}

.products-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.products-filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-filter-label h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.products-filter-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-blue-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.products-results-count {
  font-size: 14px;
  color: var(--color-grey);
}

.products-results-count strong {
  color: var(--color-white);
}

.products-categories-nav {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.products-categories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-soft) transparent;
}

.products-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-panel);
  border: 1px solid var(--color-soft);
  border-radius: 30px;
  color: var(--color-grey);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.products-cat-tab:hover {
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--color-white);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-1px);
}

.products-cat-tab.is-active {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  border-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.products-cat-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}

/* Category Selected Banner */
.products-category-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(32, 32, 36, 0.9) 0%, rgba(15, 43, 92, 0.3) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  padding: 24px 30px;
  margin-bottom: 35px;
  gap: 20px;
  flex-wrap: wrap;
}

.products-category-banner__tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-blue-light);
  display: block;
  margin-bottom: 6px;
}

.products-category-banner__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 6px;
}

.products-category-banner__desc {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  max-width: 700px;
  line-height: 1.5;
}

.products-category-banner__reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-soft);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.products-category-banner__reset:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--color-blue);
  transform: translateX(3px);
}

/* Products Grid Section */
.products-grid-section {
  padding: 50px 0 70px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--color-panel);
  border: 1px solid var(--color-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(59, 130, 246, 0.15);
}

.product-card__media {
  position: relative;
  width: 100%;
  height: 230px;
  background: #121215;
  overflow: hidden;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  padding: 5px 12px;
  background: rgba(15, 43, 92, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-blue-light);
}

.product-card__image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 21, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__quick-btn {
  padding: 10px 22px;
  background: var(--color-blue);
  border: none;
  border-radius: 10px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  transform: translateY(10px);
}

.product-card:hover .product-card__quick-btn {
  transform: translateY(0);
}

.product-card__quick-btn:hover {
  background: var(--color-blue-hover);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
}

.product-card__body {
  padding: 22px 22px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--color-white);
}

.product-card__title a {
  color: inherit;
  transition: color 0.2s ease;
}

.product-card__title a:hover {
  color: var(--color-blue-light);
}

.product-card__description {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0 0 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.product-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-grey);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 9px;
  border-radius: 6px;
}

.product-card__tag i {
  color: #10b981;
  font-size: 10px;
}

.product-card__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--color-soft);
  background: rgba(18, 18, 21, 0.3);
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}

.product-card__action--secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-soft);
  color: var(--color-white);
}

.product-card__action--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.product-card__action--primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.product-card__action--primary:hover {
  background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue) 100%);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.product-card__action-icon {
  transition: transform 0.2s ease;
}

.product-card__action--secondary:hover .product-card__action-icon {
  transform: translateX(3px);
}

/* Empty State */
.products-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 30px;
  background: var(--color-panel);
  border: 1px dashed var(--color-line);
  border-radius: 20px;
  max-width: 600px;
  margin: 20px auto;
}

.products-empty-state__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.products-empty-state__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 10px;
}

.products-empty-state__desc {
  font-size: 15px;
  color: var(--color-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.products-empty-state__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.products-empty-state__btn:hover {
  background: var(--color-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.35);
}

/* Pagination */
.products-pagination-wrap {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  background: var(--color-panel);
  border: 1px solid var(--color-soft);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-item:not(.disabled):not(.active) .page-link:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-blue);
  color: var(--color-blue-light);
  transform: translateY(-1px);
}

.page-item.active .page-link {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Tech Showcase Section */
.products-tech-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(15, 43, 92, 0.2) 50%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-soft);
  border-bottom: 1px solid var(--color-soft);
}

.products-tech-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.products-tech-sub {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-blue-light);
  margin: 0 0 10px;
}

.products-tech-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
  line-height: 1.25;
}

.products-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.products-tech-card {
  background: var(--color-panel);
  border: 1px solid var(--color-soft);
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.products-tech-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  background: rgba(32, 32, 36, 0.95);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.products-tech-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--color-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.products-tech-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 10px;
}

.products-tech-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
}

/* CTA Banner Section */
.products-cta-section {
  padding: 70px 0;
}

.products-cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 43, 92, 0.8) 0%, rgba(32, 32, 36, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.products-cta-box__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.products-cta-box__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.products-cta-box__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-blue-light);
  background: rgba(59, 130, 246, 0.15);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.products-cta-box__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--color-white);
  margin: 0 0 14px;
  line-height: 1.25;
}

.products-cta-box__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 30px;
}

.products-cta-box__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.products-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.products-cta-btn--primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.products-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-blue) 100%);
}

.products-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-line);
  color: var(--color-white);
}

.products-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Quick Specs Modal */
.products-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.products-modal.is-open,
.products-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.modal-open {
  overflow: hidden !important;
}


.products-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(8px);
}

.products-modal__container {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-panel);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.products-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-soft);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.products-modal__close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
  transform: rotate(90deg);
}

.products-modal__header {
  margin-bottom: 20px;
  padding-right: 40px;
}

.products-modal__category {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-blue-light);
  display: block;
  margin-bottom: 4px;
}

.products-modal__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
}

.products-modal__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.products-modal__image-box {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #121215;
  border: 1px solid var(--color-soft);
}

.products-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-modal__subheading {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin: 0 0 8px;
}

.products-modal__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 16px;
}

.products-modal__features-box {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-line);
}

.products-modal__features-list {
  font-size: 13px;
  color: var(--color-grey);
  line-height: 1.6;
}

.products-modal__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-soft);
}

.products-modal__btn-secondary {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-soft);
  border-radius: 10px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.products-modal__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.products-modal__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--color-blue);
  border: none;
  border-radius: 10px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.products-modal__btn-primary:hover {
  background: var(--color-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

/* Products Responsive Breakpoints */
@media (max-width: 1024px) {
  .products-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 40px 0 35px;
  }
  .products-hero__title {
    font-size: 32px;
  }
  .products-search-form {
    flex-direction: column;
  }
  .products-search-btn {
    width: 100%;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-modal__body {
    grid-template-columns: 1fr;
  }
  .products-modal__image-box {
    height: 180px;
  }
  .products-category-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-category-banner__reset {
    width: 100%;
    justify-content: center;
  }
  .products-cta-box {
    padding: 35px 20px;
  }
  .products-cta-box__actions {
    flex-direction: column;
    width: 100%;
  }
  .products-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .products-stats-grid {
    grid-template-columns: 1fr;
  }
  .product-card__footer {
    grid-template-columns: 1fr;
  }
}