:root {
  --bg: #07111f;
  --bg-2: #0b1830;
  --bg-3: #102446;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #edf3fd;
  --muted: #9eb0ca;
  --gold: #d8ad5f;
  --gold-2: #f0d18e;
  --blue: #5f90ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

/* =========================================
   BASE
   ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top right,
      rgba(216, 173, 95, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at left center,
      rgba(95, 144, 255, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #050c16 0%, #081321 45%, #09162b 100%);
}

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

p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.container {
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 100px 0;
}

.section-title {
  max-width: 1200px;
  /* font-size: clamp(2rem, 4vw, 3.35rem); */
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
  margin: 2rem 0 1rem 0;
}

.section-text {
  max-width: 760px;
  font-size: 1.02rem;
  text-align: justify;
}
.section-text .saudi {
  color: rgba(255, 255, 0, 0.801);
  font-weight: bold;
  font-size: 1rem;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 10px 1px;
  border: 1px solid var(--line);
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.05);
  color: #dce6f5; */
  /* background-color: rgba(255, 255, 0, 0.801); */
  /* color: #000; */
  /* color: #080808; */
  /* background: #cecf05; */
      background: linear-gradient(90deg, rgba(216, 173, 95, 0), rgba(216, 173, 95, 0.95), rgba(240, 209, 142, 0));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  /* letter-spacing: 0.08em; */
  text-transform: uppercase;
}

.eyebrow::before,
.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 6px rgba(216, 173, 95, 0.1);
}

/* =========================================
   TOPBAR
   ========================================= */

/* =========================================
   HEADER / NAVBAR
   ========================================= */

.nav-link.active,
.nav-link:hover {
  color: #fff !important;
}
.nav-actions .btn .myowncolor {
  background: #30D14E !important ;
  color: #ffffff;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 800;
}

.btn-gold {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111a28;
  box-shadow: 0 16px 40px rgba(216, 173, 95, 0.2);
}

.btn-gold:hover {
  transform: translateY(-1px);
  color: #111a28;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

/* =========================================
   MEGA MENU
   ========================================= */

.navbar,
.navbar .container,
.navbar-collapse,
.mega-dropdown {
  overflow: visible !important;
}

.mega-highlight .btn {
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.mega-dropdown.show .mega-menu,
.mega-menu.show {
  display: block;
}

@keyframes megaFadeDesktop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* =========================================
   HERO
   ========================================= */
.hero-section .container.position-relative {
  z-index: 2;
}

.hero-top-row {
  align-items: flex-start !important;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% - 1px),
      rgba(255, 255, 255, 0.03) calc(100% - 1px)
    ),
    linear-gradient(
      0deg,
      transparent 0,
      transparent calc(100% - 1px),
      rgba(255, 255, 255, 0.03) calc(100% - 1px)
    );
  background-size: 96px 96px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35));
  animation: drift 18s linear infinite;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(48px);
  }
}

.india span {
  color: #cfd007;
  font-weight: bold;
  font-size: 1rem;
  text-align: justify;
}

.hero-bottom-wrap {
  width: 100%;
  margin-top: 34px;
}

.hero-actions-full {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 26px;
}

.hero-actions-full .btn {
  min-width: 240px;
  min-height: 62px;
}
/* =========================================
FULL SCREEN HERO CAROUSEL
========================================= */

/* dark overlay */

/* HERO CONTENT BELOW CAROUSEL */
/* =========================================
   HERO STATS
   ========================================= */

.hero-stats-full {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.hero-stats-full .stat-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.08), rgba(216, 173, 95, 0.05));
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: 0.35s ease;
}

.hero-stats-full .stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.35);
}

.hero-stats-full .stat-top {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}

.hero-stats-full .stat-top strong {
  color: #fff;
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.hero-stats-full .stat-top span {
  color: #f0d18e;
  font-size: 1.8rem;
  font-weight: 800;
}

.hero-stats-full .stat-text-only strong {
  font-size: clamp(2.6rem, 3vw, 3.2rem);
  letter-spacing: 0.04em;
}

.hero-stats-full .stat-card p {
  max-width: 220px;
  color: #c4d3e6;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================================
   HERO PRODUCT CAROUSEL
   ========================================= */

.hero-product-carousel {
  width: 100%;
  max-width: 100%;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-product-card {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.hero-product-carousel:hover .hero-product-image {
  transform: scale(1.08);
}

.hero-product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 31, 0.05) 0%,
    rgba(7, 17, 31, 0.35) 40%,
    rgba(7, 17, 31, 0.95) 100%
  );
}

.hero-product-overlay .tag {
  margin-bottom: 12px;
  border: 1px solid rgba(216, 173, 95, 0.4);
  background: rgba(216, 173, 95, 0.15);
}

.hero-product-overlay h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-product-overlay p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero-product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbe7f7;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-product-meta i {
  color: #d5ad60;
}

.hero-product-indicators {
  bottom: 16px;
  z-index: 5;
  margin-bottom: 0;
}

.hero-product-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  margin: 0 5px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-product-indicators .active {
  background: #d5ad60;
}

.hero-product-control {
  width: 10%;
  opacity: 0;
  transition: 0.3s;
}

.hero-product-carousel:hover .hero-product-control {
  opacity: 1;
}

.hero-product-control .carousel-control-prev-icon,
.hero-product-control .carousel-control-next-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.55);
  background-size: 55%;
  backdrop-filter: blur(6px);
}

/* =========================================
   SHARED CARDS
   ========================================= */

.stat-card,
.hero-panel,
.info-card,
.solution-card,
.service-feature-card,
.mini-service,
.industry-card,
.partner-card,
.process-card,
.cta-shell,
.footer-cta,
.mini-feature-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head h3 {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.3;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hero-tile {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-tile i {
  color: #f4dbab;
  font-size: 1.5rem;
}

.hero-tile span {
  font-weight: 700;
}

.hero-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.hero-strip > div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-strip b {
  display: block;
  font-size: 0.95rem;
}

.hero-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========================================
   TRUST BAND
   ========================================= */

/* =========================================
   PREMIUM LUXURY INDUSTRIAL CAPABILITY AREAS
   ========================================= */

.premium-trust-band {
  position: relative;
  padding: 92px 0 74px;
}

.premium-trust-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(216, 173, 95, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.trust-header {
  position: relative;
  margin-bottom: 38px;
}

.trust-title {
  margin-top: 16px;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.trust-slider {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.trust-slider::before,
.trust-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.trust-slider::before {
  left: 0;
  background: linear-gradient(90deg, #09162b 0%, rgba(9, 22, 43, 0) 100%);
}

.trust-slider::after {
  right: 0;
  background: linear-gradient(270deg, #09162b 0%, rgba(9, 22, 43, 0) 100%);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: trustSlide 28s linear infinite;
}

.trust-slider:hover .trust-track {
  animation-play-state: paused;
}

.trust-item {
  position: relative;
  min-width: 220px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(216, 173, 95, 0.05), rgba(255, 255, 255, 0.02));
  color: #eef4fd;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.trust-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(216, 173, 95, 0.38);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(216, 173, 95, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(216, 173, 95, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

@keyframes trustSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .premium-trust-band {
    padding: 78px 0 62px;
  }

  .trust-slider {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .trust-slider::before,
  .trust-slider::after {
    width: 70px;
  }

  .trust-item {
    min-width: 190px;
    padding: 16px 18px;
    font-size: 0.93rem;
  }
}

@media (max-width: 767.98px) {
  .premium-trust-band {
    padding: 64px 0 54px;
  }

  .trust-title {
    font-size: 1.65rem;
  }

  .trust-slider {
    padding: 18px 12px;
    border-radius: 20px;
  }

  .trust-slider::before,
  .trust-slider::after {
    width: 34px;
  }

  .trust-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .trust-item {
    min-width: 160px;
    padding: 14px 16px;
    border-radius: 15px;
    font-size: 0.88rem;
  }
}
.trust-item span {
  position: relative;
  z-index: 1;
}

/* =========================================
   CONTENT SECTIONS
   ========================================= */
/* .info-card p {
  text-align: justify;
} */

.section-dark {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015),
      rgba(255, 255, 255, 0.03)
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 88px,
      rgba(255, 255, 255, 0.02) 88px,
      rgba(255, 255, 255, 0.02) 89px
    );
}

.section-intro {
  max-width: 860px;
  margin: 0 auto 18px;
}

.section-intro .section-title,
.section-intro .section-text {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.solution-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  transition: 0.35s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d8ad5f, #f0d18e);
}

.solution-card:hover,
.mini-service:hover,
.partner-card:hover,
.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.26);
}

.solution-card h4 {
  margin-bottom: 12px;
}

.solution-card p {
  flex-grow: 1;
}

.solution-card ul {
  margin: 18px 0 0;
  margin-top: auto;
  padding-left: 18px;
  color: #d2dff0;
}

.solution-card li {
  margin-bottom: 8px;
}

.solution-image {
  display: flex;
  width: 100%;
  height: 180px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #f7f8fb;
  transition: all 0.35s ease;
}

.solution-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.solution-card:hover .solution-image {
  background: #eef1f6;
}

.solution-card:hover .solution-image img {
  transform: scale(1.08);
}

.icon-badge {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.2),
    rgba(216, 173, 95, 0.08)
  );
  color: #f4dbab;
  font-size: 1.6rem;
}

.service-feature-card {
  margin-top: 22px;
  padding: 28px;
}

.service-feature-card h4 {
  margin-bottom: 18px;
}

.dual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dual-list ul {
  margin: 0;
  padding-left: 18px;
  color: #d4e2f4;
}

.dual-list li {
  margin-bottom: 10px;
}

.mini-service i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.industry-card,
.partner-card,
.process-card {
  height: 100%;
  padding: 26px;
}

.industry-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.industry-card h5,
.partner-card h5,
.process-card h5 {
  margin-bottom: 12px;
}

.cta-shell {
  padding: 36px;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-stack a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe7f6;
}

.rfq-form .form-control,
.rfq-form .form-select {
  min-height: 56px;
  padding-inline: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.rfq-form textarea.form-control {
  min-height: 140px;
  padding-top: 14px;
}

.rfq-form .form-control::placeholder {
  color: #b3c6de;
}

.rfq-form .form-select {
  color: #c8d8ea;
}

.rfq-form option {
  color: #111;
}

/* =========================================
   CLIENTS SECTION
   ========================================= */

/* =========================================
   PREMIUM LUXURY CLIENTS SECTION
   ========================================= */

.clients-section {
  position: relative;
  padding-top: 84px;
  padding-bottom: 96px;
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(216, 173, 95, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.clients-carousel-wrap {
  position: relative;
  margin-top: 38px;
  overflow: hidden;
  border-radius: 30px;
  padding: 14px 0;
}

.clients-carousel-wrap::before,
.clients-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.clients-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #09162b 0%, rgba(9, 22, 43, 0) 100%);
}

.clients-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #09162b 0%, rgba(9, 22, 43, 0) 100%);
}

.clients-carousel-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: clientsLogoScroll 34s linear infinite;
}

.clients-carousel-wrap:hover .clients-carousel-track {
  animation-play-state: paused;
}

.client-logo-card {
  position: relative;
  width: 190px;
  height: 122px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 24px;
  /* background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.06)); */
  background:
    linear-gradient(
      180deg,
      hwb(192 93% 5%),
      #e4e6e5
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.client-logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.client-logo-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(216, 173, 95, 0.38);
  background:
    linear-gradient(
      180deg,
      rgba(238, 227, 227, 0.829),
      rgba(216, 207, 207, 0.842)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.06), rgba(216, 173, 95, 0.09));
  /* background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.06), rgba(216, 173, 95, 0.09)); */
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(216, 173, 95, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.client-logo-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

@keyframes clientsLogoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@media (max-width: 991.98px) {
  .clients-section {
    padding-top: 70px;
    padding-bottom: 82px;
  }

  .clients-carousel-wrap {
    margin-top: 30px;
    border-radius: 24px;
  }

  .clients-carousel-wrap::before,
  .clients-carousel-wrap::after {
    width: 64px;
  }

  .client-logo-card {
    width: 168px;
    height: 108px;
    padding: 15px;
    border-radius: 18px;
  }

  .client-logo-card img {
    max-height: 60px;
  }
}

@media (max-width: 767.98px) {
  .clients-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .clients-carousel-wrap {
    margin-top: 24px;
    padding: 8px 0;
    border-radius: 18px;
  }

  .clients-carousel-wrap::before,
  .clients-carousel-wrap::after {
    width: 28px;
  }

  .clients-carousel-track {
    gap: 12px;
    animation-duration: 24s;
  }

  .client-logo-card {
    width: 138px;
    height: 92px;
    padding: 12px;
    border-radius: 16px;
  }

  .client-logo-card img {
    max-height: 48px;
  }
}
/* =========================================
   TECHNOLOGY PARTNERS
   ========================================= */
/* =========================================
   PREMIUM TECHNOLOGY PARTNERS SECTION
   ========================================= */

.tech-partners-section {
  position: relative;
  padding-top: 88px;
  padding-bottom: 92px;
}

.tech-partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(216, 173, 95, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* main container */

.tech-partners-band {
  margin-top: 36px;
  overflow: hidden;
  border-radius: 30px;

  padding: 22px 18px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* animated track */

.tech-partners-track {
  display: flex;
  align-items: center;
  gap: 20px;

  width: max-content;

  animation: techPartnersSlide 30s linear infinite;
}

.tech-partners-band:hover .tech-partners-track {
  animation-play-state: paused;
}

/* partner card */

.tech-partner-chip {
  position: relative;

  min-width: 220px;

  padding: 18px 22px;

  border-radius: 20px;

  text-align: center;

  font-weight: 700;

  letter-spacing: 0.02em;

  color: #e7f0fc;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(216, 173, 95, 0.05), rgba(255, 255, 255, 0.02));

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* premium gold accent */

.tech-partner-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;

  height: 3px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

/* hover effect */

.tech-partner-chip:hover {
  transform: translateY(-6px) scale(1.02);

  border-color: rgba(216, 173, 95, 0.38);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(216, 173, 95, 0.1), rgba(255, 255, 255, 0.03));

  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 173, 95, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  color: #ffffff;
}

/* animation */

@keyframes techPartnersSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
  .tech-partners-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .tech-partners-band {
    padding: 18px 14px;
    border-radius: 24px;
  }

  .tech-partner-chip {
    min-width: 190px;
    padding: 16px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .tech-partners-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .tech-partners-track {
    gap: 14px;
    animation-duration: 24s;
  }

  .tech-partner-chip {
    min-width: 160px;
    padding: 14px 16px;
    font-size: 0.88rem;
    border-radius: 16px;
  }
}
/* =========================================
   PARTNER LOGO SECTION
   ========================================= */
/* 
.partner-logos-section {
  padding-top: 80px;
  padding-bottom: 90px;
  align-items: center;
}

.partner-logo-carousel {
  margin-top: 35px;
  overflow: hidden;
}

.partner-logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 40px;
  animation: partnerLogos 28s linear infinite;
}

.partner-logo-carousel:hover .partner-logo-track {
  animation-play-state: paused;
}

.partner-logo-item {
  display: flex;
  width: 240px;
  height: 120px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  transition: all 0.35s ease;
}

.partner-logo-item:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 173, 95, 0.4);
}

.partner-logo-item img {
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
}

.partner-logo {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.partner-logo img {
  max-width: 160px;
  max-height: 65px;
  object-fit: contain;
  transition: all 0.35s ease;
}

.partner-card:hover .partner-logo img {
  transform: scale(1.05);
}

@keyframes partnerLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
} */
 /* =========================================
   PREMIUM LUXURY PARTNER LOGO SECTION
   ========================================= */

.partner-logos-section {
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
}

.partner-logos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(216, 173, 95, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.partner-logo-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  padding: 14px 0;
  border-radius: 30px;
}

.partner-logo-carousel::before,
.partner-logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partner-logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #09162b 0%, rgba(9, 22, 43, 0) 100%);
}

.partner-logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #09162b 0%, rgba(9, 22, 43, 0) 100%);
}

.partner-logo-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: partnerLogosLuxury 30s linear infinite;
}

.partner-logo-carousel:hover .partner-logo-track {
  animation-play-state: paused;
}

.partner-logo-item {
  position: relative;
  width: 250px;
  height: 132px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.08));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.partner-logo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.partner-logo-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.05),
    transparent 45%,
    transparent 55%,
    rgba(255,255,255,0.03)
  );
  pointer-events: none;
}

.partner-logo-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(216, 173, 95, 0.36);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.12));
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(216,173,95,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.partner-logo-item img {
  max-width: 185px;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.03);
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.partner-logo-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.05);
}

@keyframes partnerLogosLuxury {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .partner-logos-section {
    padding-top: 74px;
    padding-bottom: 84px;
  }

  .partner-logo-carousel {
    margin-top: 30px;
    border-radius: 24px;
  }

  .partner-logo-carousel::before,
  .partner-logo-carousel::after {
    width: 60px;
  }

  .partner-logo-item {
    width: 210px;
    height: 118px;
    padding: 16px;
    border-radius: 20px;
  }

  .partner-logo-item img {
    max-width: 160px;
    max-height: 64px;
  }
}

@media (max-width: 767.98px) {
  .partner-logos-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .partner-logo-carousel {
    margin-top: 24px;
    padding: 8px 0;
    border-radius: 18px;
  }

  .partner-logo-carousel::before,
  .partner-logo-carousel::after {
    width: 28px;
  }

  .partner-logo-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .partner-logo-item {
    width: 165px;
    height: 96px;
    padding: 12px;
    border-radius: 16px;
  }

  .partner-logo-item img {
    max-width: 128px;
    max-height: 48px;
  }
}

/* =========================================
   FOOTER
   ========================================= */

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.footer-cta h3 {
  margin-top: 14px;
  font-size: 1.4rem;
}

.footer-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-cta-links a {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #e7f0fc;
}

.site-footer {
  padding: 78px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
 
}

.footer-brand {
  margin-bottom: 16px;
}

.brand footer-brand .brand-copy{
  font-size: 1.6rem;
}

.footer-text {
  max-width: 420px;
  text-align: justify;
  font-size: 0.8rem;
}

.site-footer h6 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bfd1e7;
}

.footer-links a:hover,
.topbar a:hover,
.contact-stack a:hover,
.footer-cta-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8fa5c2;
}

/* =========================================
   INNER PAGES
   ========================================= */

.inner-hero {
  background:
    radial-gradient(
      circle at right top,
      rgba(216, 173, 95, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at left center,
      rgba(69, 124, 255, 0.1),
      transparent 32%
    );
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
  color: #c8d7eb;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  color: #d5e2f3;
}

.service-list li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 6px;
  color: #f0d289;
  font-weight: 800;
}

.inline-link {
  color: #f0d289;
  font-weight: 700;
}

.inline-link:hover {
  color: #fff;
}

.mini-feature-card {
  padding: 26px;
}

.mini-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(212, 166, 74, 0.18),
    rgba(212, 166, 74, 0.08)
  );
  color: #f0d289;
  font-size: 1.35rem;
}

.page-main {
  padding-top: 0;
}

.hero-small {
  padding: 84px 0 60px;
}

.form-card {
  padding: 28px;
}
.form-card p{
  text-align: justify;
}

.breadcrumb {
  --bs-breadcrumb-divider: "›";
}

.download-card {
  padding: 36px;
  text-align: center;
}

.download-card .btn {
  margin-top: 12px;
}

/* =========================================
   FLOATING CONTACT
   ========================================= */

.floating-contact {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.float-btn:hover {
  transform: translateY(-3px);
}

.whatsapp {
  background: #25d366;
}

.phone {
  background: #0d6efd;
}

.email {
  background: #6c757d;
}

.top {
  background: #212529;
}

.floating-whatsapp,
.back-top {
  position: fixed;
  right: 20px;
  z-index: 999;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.floating-whatsapp {
  bottom: 90px;
  background: #25d366;
}

.back-top {
  bottom: 20px;
  border: none;
  background: #173356;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.28s ease;
}

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

/* =========================================
   REVEAL ANIMATION
   ========================================= */

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   VIDEO HERO SUPPORT
   ========================================= */

.hero-video-slider {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  padding-top: 140px;
  padding-bottom: 90px;
}

.hero-video-slider .hero-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-indicators {
  bottom: 26px;
  z-index: 4;
  margin-bottom: 0;
}

.hero-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
}

.hero-indicators .active {
  background-color: #d5ad60;
}

.hero-control {
  z-index: 4;
  width: 6%;
  opacity: 0.85;
}

.hero-control:hover {
  opacity: 1;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (min-width: 1200px) {
  .navbar .container.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 18px;
  }

  .navbar-collapse {
    display: contents !important;
  }

  .nav-center {
    justify-content: center;
  }

  .mega-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 18px;
    pointer-events: auto;
  }

  .mega-menu {
    top: calc(100% + 4px) !important;
    width: min(1100px, calc(100vw - 40px)) !important;
    max-width: 1100px;
    z-index: 1400;
  }

  .mega-dropdown:hover .mega-menu,
  .mega-dropdown:focus-within .mega-menu,
  .mega-menu:hover {
    display: block !important;
    animation: megaFadeDesktop 0.22s ease;
  }

  .site-header,
  .navbar,
  .navbar .container,
  .navbar-collapse,
  .nav-center,
  .mega-dropdown {
    overflow: visible !important;
  }

  .mega-dropdown {
    position: static !important;
  }
}

@media (max-width: 1399.98px) {
  .nav-link {
    padding-right: 11px !important;
    padding-left: 11px !important;
    font-size: 0.93rem;
  }

  .nav-actions .btn {
    padding: 11px 16px;
  }
}

@media (max-width: 1199.98px) {
  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    min-width: auto;
    max-width: calc(100% - 70px);
  }

  .brand-logo {
    width: 110px;
    height: 110px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
    color: #BCBF0D;
  }

  .brand-copy small {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .navbar-collapse {
    margin-top: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: linear-gradient(
      180deg,
      rgba(10, 23, 46, 0.96),
      rgba(14, 32, 63, 0.96)
    );
  }

  .nav-center {
    gap: 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0 !important;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 14px;
    margin-left: 0;
  }

  .mega-menu {
    position: static !important;
    display: none;
    width: 100%;
    margin-top: 8px;
    border-radius: 18px;
    transform: none !important;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-highlight {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
  }

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

  .hero-section {
    padding: 100px 0 82px;
  }

  .hero-product-carousel {
    margin-top: 52px;
  }

  .hero-product-card {
    height: 470px;
  }

  .mega-dropdown.show .mega-menu,
  .mega-menu.show {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 80px 0;
  }

  .hero-section {
    padding: 90px 0 70px;
  }

  .hero-product-carousel {
    margin-top: 22px;
  }

  .hero-product-card {
    height: 400px;
  }

  .hero-product-control {
    opacity: 1;
  }

  .hero-actions-full .btn {
    min-width: 220px;
  }

  .hero-stats-full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .hero-stats-full .stat-card {
    min-height: 190px;
    padding: 26px 22px;
  }

  .clients-section {
    padding-top: 60px;
    padding-bottom: 82px;
  }

  .clients-carousel-wrap::before,
  .clients-carousel-wrap::after {
    width: 60px;
  }

  .client-logo-card {
    width: 160px;
    height: 106px;
    padding: 14px;
    border-radius: 18px;
  }

  .client-logo-card img {
    max-height: 64px;
  }

  .tech-partners-section {
    padding-top: 60px;
    padding-bottom: 78px;
  }

  .tech-partners-band {
    padding: 14px;
  }

  .tech-partner-chip {
    min-width: 180px;
    padding: 14px 16px;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-video-slider {
    min-height: auto;
  }

  .hero-content-wrap {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-control {
    display: none;
  }
}

@media (max-width: 768px) {
  .trust-item {
    min-width: 160px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .topbar-inner {
    justify-content: flex-start;
    gap: 10px;
  }

  .brand-logo {
    width: 110px;
    height: 110px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .hero-grid,
  .hero-strip,
  .dual-list,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 68px 0;
  }

  .floating-whatsapp,
  .back-top {
    right: 14px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp {
    bottom: 80px;
  }

  .hero-product-carousel {
    margin-top: 18px;
  }

  .hero-product-card {
    height: 320px;
  }

  .hero-product-overlay {
    padding: 22px;
  }

  .hero-product-overlay h3 {
    font-size: 1.25rem;
  }

  .hero-product-overlay p {
    margin-bottom: 12px;
    font-size: 0.92rem;
  }

  .hero-product-meta span {
    font-size: 0.8rem;
  }

  .hero-actions-full {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-full .btn {
    width: 100%;
    min-width: 100%;
  }

  .hero-stats-full {
    grid-template-columns: 1fr;
  }

  .hero-stats-full .stat-card {
    min-height: auto;
  }

  .hero-stats-full .stat-card p {
    max-width: 100%;
  }

  .solution-image {
    height: 200px;
  }

  .clients-section {
    padding-top: 52px;
    padding-bottom: 70px;
  }

  .clients-carousel-wrap::before,
  .clients-carousel-wrap::after {
    width: 28px;
  }

  .clients-carousel-track {
    gap: 12px;
    animation-duration: 24s;
  }

  .client-logo-card {
    width: 138px;
    height: 96px;
    padding: 12px;
    border-radius: 16px;
  }

  .client-logo-card img {
    max-height: 54px;
  }

  .tech-partners-section {
    padding-top: 52px;
    padding-bottom: 68px;
  }

  .tech-partners-track {
    gap: 12px;
    animation-duration: 22s;
  }

  .tech-partner-chip {
    min-width: 150px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .hero-content-wrap {
    padding-top: 105px;
    padding-bottom: 60px;
  }

  .hero-indicators {
    bottom: 16px;
  }

  .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 12, 21, 0.72) 0%,
      rgba(5, 12, 21, 0.78) 55%,
      rgba(5, 12, 21, 0.88) 100%
    );
  }
}
.hero-text span {
  color: rgba(255, 255, 0, 0.801);
}

/* =========================================
   FULL SCREEN HERO CAROUSEL
   ========================================= */

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* =========================================
   FULL SCREEN HERO CAROUSEL
   ========================================= */

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 15, 30, 0.9) 0%,
    rgba(8, 15, 30, 0.65) 40%,
    rgba(8, 15, 30, 0.35) 70%,
    rgba(8, 15, 30, 0.1) 100%
  );
  z-index: 2;
}

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

/* HERO FULLSCREEN CAROUSEL */

.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO CONTENT SECTION */

.hero-title {
  margin: 22px 0 18px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: white;
  opacity: 0.9;
  margin-top: 20px;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* =========================
PREMIUM HERO CAROUSEL
========================= */

.hero-carousel-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

/* slide wrapper */

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite;
}

/* slow zoom effect */

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* dark overlay */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2),
    rgba(12, 23, 48, 0.7)
  );
}

/* premium carousel arrows */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 50%;
}

/* scroll indicator */

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: white;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* =========================================
   HERO CAROUSEL QUOTE UPGRADE
   ========================================= */

.hero-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .hero-quote-box {
    left: 6%;
    right: 6%;
    bottom: 12%;
    max-width: none;
    padding: 22px 22px;
    border-radius: 20px;
  }

  .hero-quote-box h2 {
    font-size: 1.55rem;
  }

  .hero-quote-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .hero-quote-box {
    left: 14px;
    right: 14px;
    bottom: 72px;
    padding: 18px 18px;
    border-radius: 18px;
  }

  .hero-quote-tag {
    margin-bottom: 10px;
    padding: 7px 12px;
    font-size: 0.7rem;
  }

  .hero-quote-box h2 {
    font-size: 1.18rem;
    line-height: 1.35;
  }

  .hero-quote-box p {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* HERO CAROUSEL QUOTE */

@media (max-width: 768px) {
  .hero-quote-box {
    left: 20px;
    right: 20px;
    bottom: 80px;
    max-width: none;
    padding: 18px;
  }

  .hero-quote-box h2 {
    font-size: 18px;
  }

  .hero-quote-box p {
    font-size: 13px;
  }
}
/* HERO QUOTE ANIMATION */

/* animate text separately */

.hero-quote-box h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease;
  transition-delay: 0.3s;
}

.carousel-item.active .hero-quote-box h2 {
  opacity: 1;
  transform: translateY(0);
}

.carousel-item.active .hero-quote-box p {
  opacity: 1;
  transform: translateY(0);
}

.carousel-item.active .hero-quote-tag {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   PREMIUM HERO CAROUSEL UPGRADE
   keeps same layout/content
   ========================================= */

/* smoother slide item rendering */
.hero-carousel .carousel-item {
  transition: transform 1.1s ease-in-out;
}

/* image cinematic zoom */
.hero-slide-image,
.hero-slide .hero-bg-image,
.hero-slide img {
  transform: scale(1.02);
  transition: transform 7s ease;
  will-change: transform;
}

.carousel-item.active .hero-slide-image,
.carousel-item.active .hero-bg-image,
.carousel-item.active img {
  transform: scale(1.12);
}

/* richer overlay */
.hero-slide-overlay,
.hero-overlay,
.hero-dark-overlay {
  background: linear-gradient(
    180deg,
    rgba(4, 10, 20, 0.22) 0%,
    rgba(4, 10, 20, 0.4) 32%,
    rgba(4, 10, 20, 0.72) 68%,
    rgba(4, 10, 20, 0.88) 100%
  );
}

/* premium lighting */
.hero-slide::before,
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(216, 173, 95, 0.16),
      transparent 22%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(95, 144, 255, 0.14),
      transparent 24%
    );
  z-index: 1;
  pointer-events: none;
}

/* quote box */

/* top gold line */
.hero-quote-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 1),
    rgba(240, 209, 142, 0)
  );
}

.hero-quote-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 5px rgba(216, 173, 95, 0.08);
}

/* slide text animation */

.carousel-item.active .hero-quote-box {
  opacity: 1;
  transform: translateY(0);
}

.hero-quote-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(216, 173, 95, 0.34);
  border-radius: 999px;
  background: rgba(216, 173, 95, 0.12);
  color: #f4deb0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.12s;
  transition-delay: 0.1s;
}

.carousel-item.active .hero-quote-tag,
.carousel-item.active .hero-quote-box h2,
.carousel-item.active .hero-quote-box h3,
.carousel-item.active .hero-quote-box p {
  opacity: 1;
  transform: translateY(0);
}

/* premium controls */

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
  opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background-color: rgba(6, 14, 26, 0.48);
  background-size: 52%;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

/* premium indicators */

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 6px;
  margin: 0 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: all 0.35s ease;
}

.hero-carousel .carousel-indicators .active {
  width: 54px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(216, 173, 95, 0.34);
}

/* responsive */
@media (max-width: 991.98px) {
  .hero-quote-box {
    left: 5%;
    right: 5%;
    bottom: 10%;
    width: auto;
    padding: 22px 22px;
    border-radius: 20px;
  }

  .hero-quote-box h2,
  .hero-quote-box h3 {
    font-size: clamp(1.35rem, 4vw, 2rem);
  }

  .hero-quote-box p {
    font-size: 0.95rem;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .hero-quote-box {
    left: 14px;
    right: 14px;
    bottom: 18px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .hero-quote-tag {
    margin-bottom: 10px;
    padding: 7px 12px;
    font-size: 0.66rem;
  }

  .hero-quote-box h2,
  .hero-quote-box h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
    line-height: 1.22;
  }

  .hero-quote-box p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .hero-carousel .carousel-control-prev-icon,
  .hero-carousel .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-carousel .carousel-indicators {
    bottom: 10px;
  }

  .hero-carousel .carousel-indicators [data-bs-target] {
    width: 22px;
    height: 5px;
  }

  .hero-carousel .carousel-indicators .active {
    width: 36px;
  }
}

/* =========================================
   HERO CAROUSEL INDICATOR CLICK FIX
   ========================================= */

/* decorative overlays should never block clicks */
.hero-slide::before,
.hero-slide-overlay,
.hero-overlay,
.hero-dark-overlay {
  pointer-events: none;
}

/* quote box should not block indicator area */

/* keep indicator layer above everything clickable */
.hero-carousel .carousel-indicators {
  bottom: 22px;
  margin-bottom: 0;
  z-index: 20;
  pointer-events: auto;
}

.hero-carousel .carousel-indicators button,
.hero-carousel .carousel-indicators [data-bs-target] {
  pointer-events: auto;
  position: relative;
  z-index: 21;
}

/* controls also stay clickable */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 8%;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 20;
}

/* mobile: move indicators lower and quote box higher so they don't overlap */
@media (max-width: 767.98px) {
  .hero-quote-box {
    bottom: 44px;
  }

  .hero-carousel .carousel-indicators {
    bottom: 8px;
  }
}
/* =========================================
   PREMIUM ABOUT GULF BITON CARDS
   ========================================= */

.info-card {
  height: 100%;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.035)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.05));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.info-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(rgba(216, 173, 95, 0.14), transparent 70%);
  pointer-events: none;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.32);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.045)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.07), rgba(216, 173, 95, 0.08));
  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(216, 173, 95, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.info-card .tag {
  margin-bottom: 16px;
  background: rgba(216, 173, 95, 0.14);
  border: 1px solid rgba(216, 173, 95, 0.32);
  color: #f6deb0;
}

.info-card h4 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.info-card p {
  color: #c8d6e8;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: justify;
 
}

/* equal visual spacing */
#about .row.g-4 > [class*="col-"] {
  display: flex;
}

#about .row.g-4 > [class*="col-"] .info-card {
  width: 100%;
}

/* responsive refinement */
@media (max-width: 991.98px) {
  .info-card {
    padding: 24px;
    border-radius: 20px;
  }

  .info-card h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .info-card {
    padding: 22px;
    border-radius: 18px;
  }

  .info-card .tag {
    margin-bottom: 14px;
  }
}

/* =========================================
   PREMIUM ABOUT LEFT CONTENT
   ========================================= */

#about .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
}

/* subtle gold underline accent */

#about .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 16px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 1),
    rgba(240, 209, 142, 0)
  );
}

/* paragraph improvement */

#about .section-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #c8d6e8;
  margin-bottom: 28px;
  max-width: 580px;
}

/* =========================================
   FEATURE LIST IMPROVEMENT
   ========================================= */

.feature-stack {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-direction: column;
}

/* feature item */

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8e4f5;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

/* icon styling */

.feature-line i {
  margin-top: 2px;
  color: #d8ad5f;
  font-size: 18px;
}

/* text */

.feature-line span {
  color: #d3e1f1;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}

/* hover premium effect */

.feature-line:hover {
  background: rgba(216, 173, 95, 0.05);
  border-color: rgba(216, 173, 95, 0.25);
  transform: translateX(4px);
}

/* =========================================
   EYEBROW IMPROVEMENT
   ========================================= */

#about .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  padding: 6px 12px;

  border-radius: 40px;

  background: rgba(216, 173, 95, 0.12);

  border: 1px solid rgba(216, 173, 95, 0.28);

  color: #f6deb0;
}
/* =========================================
   PREMIUM CORE TRADING PORTFOLIO
   ========================================= */

/* image block */

#solutions .solution-card:hover .solution-image {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(0, 0, 0, 0.14);
}

/* icon badge premium */

#solutions .solution-card:hover .icon-badge {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.3),
    rgba(240, 209, 142, 0.1)
  );
  box-shadow:
    0 16px 30px rgba(216, 173, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* heading */

/* description */

/* list */

/* responsive */
@media (max-width: 1199.98px) {
  #solutions .solution-image {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  #solutions .solution-card {
    padding: 22px;
  }

  #solutions .solution-image {
    height: 200px;
    margin-bottom: 18px;
  }

  #solutions .solution-card h4 {
    font-size: 1.12rem;
  }

  #solutions .solution-card p {
    font-size: 0.94rem;
  }
}

/* =========================================
   PREMIUM CORE TRADING PORTFOLIO LAYOUT
   ========================================= */

#solutions .row {
  align-items: stretch;
}

#solutions .col-md-6,
#solutions .col-xl-3 {
  display: flex;
}

#solutions .solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.28);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#solutions .solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

#solutions .solution-image {
  width: 100%;
  height: 190px;
  margin: 8px 0 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #f8fafc, #eef3f8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  margin-bottom: 18px;
}

#solutions .solution-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

#solutions .solution-card:hover .solution-image img {
  transform: scale(1.05);
}

#solutions .solution-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

#solutions .solution-card-body p{
  text-align: left;
}

#solutions .icon-badge {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.22),
    rgba(216, 173, 95, 0.08)
  );
  border: 1px solid rgba(216, 173, 95, 0.14);
  color: #f4dbab;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(216, 173, 95, 0.1);
  transition: transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

#solutions .solution-card li {
  margin-bottom: 5px;
  line-height: 1.6;
}

#solutions .solution-card li::marker {
  color: #d8ad5f;
}

@media (max-width: 1199.98px) {
  #solutions .solution-image {
    height: 180px;
  }

  #solutions .solution-card h4 {
    min-height: auto;
  }

  #solutions .solution-card p {
    min-height: 110px;
  }
}

@media (max-width: 767.98px) {
  #solutions .col-md-6,
  #solutions .col-xl-3 {
    display: block;
  }

  #solutions .solution-card {
    padding: 16px;
  }

  #solutions .solution-image {
    height: 200px;
  }

  #solutions .solution-card h4,
  #solutions .solution-card p {
    min-height: auto;
  }
}
/* PREMIUM INDUSTRIES SERVED */

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

.industry-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.04), rgba(216, 173, 95, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.32);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.industry-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.18),
    rgba(216, 173, 95, 0.07)
  );
  border: 1px solid rgba(216, 173, 95, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 25px rgba(0, 0, 0, 0.18);
}

.industry-icon-wrap i {
  font-size: 1.55rem;
  color: #f4dbab;
}

.industry-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-label {
  display: inline-block;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2d38b;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-card h5 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #fff;
}

.industry-card p {
  margin: 0;
  color: #cdd9ea;
  line-height: 1.75;
}

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

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

  .industry-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .industry-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .industry-icon-wrap i {
    font-size: 1.35rem;
  }
}

/* PREMIUM HOW ENQUIRIES MOVE */

.process-row {
  position: relative;
}

.process-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.04), rgba(216, 173, 95, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.process-no {
  display: flex;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111a28;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 14px 28px rgba(216, 173, 95, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.process-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2d38b;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.process-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-card h5 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.3;
  color: #fff;
}

.process-card p {
  margin: 0;
  color: #cfdbea;
  line-height: 1.75;
}

/* optional premium step connector on desktop */
@media (min-width: 1200px) {
  .process-row > div:not(:last-child) .process-card::after {
    content: "";
    position: absolute;
    top: 56px;
    right: -22px;
    width: 44px;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(216, 173, 95, 0.5),
      rgba(216, 173, 95, 0.08)
    );
    z-index: 3;
  }
}

@media (max-width: 991.98px) {
  .process-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .process-top {
    margin-bottom: 16px;
  }

  .process-no {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
}

@media (max-width: 767.98px) {
  .process-card {
    padding: 22px 18px;
  }

  .process-top {
    flex-direction: row;
    align-items: center;
  }

  .process-card h5 {
    font-size: 1.1rem;
  }

  .process-card p {
    font-size: 0.95rem;
  }
}
/* PREMIUM BEYOND TRADING / MINI SERVICE CARDS */

.mini-service {
  height: 100%;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.04), rgba(216, 173, 95, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.mini-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.mini-service:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mini-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.mini-service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.22),
    rgba(216, 173, 95, 0.08)
  );
  box-shadow:
    0 14px 28px rgba(216, 173, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mini-service-icon-wrap i {
  margin: 0;
  color: #f4dbab;
  font-size: 1.5rem;
  line-height: 1;
}

.mini-service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2d38b;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.mini-service h5 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
}

.mini-service p {
  color: #cfdbea;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991.98px) {
  .mini-service {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .mini-service-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .mini-service-icon-wrap i {
    font-size: 1.35rem;
  }
}

@media (max-width: 767.98px) {
  .mini-service {
    padding: 22px 18px;
  }

  .mini-service-top {
    margin-bottom: 16px;
  }

  .mini-service-tag {
    font-size: 0.66rem;
    padding: 7px 11px;
  }

  .mini-service h5 {
    font-size: 1.08rem;
  }

  .mini-service p {
    font-size: 0.95rem;
  }
}
/* PREMIUM PARTNERS SECTION */

#partners .section-title {
  max-width: 620px;
}

#partners .section-text {
  max-width: 600px;
}

.partner-card {
  position: relative;
  height: 100%;
  padding: 26px 22px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.04), rgba(216, 173, 95, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.partner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.partner-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.22),
    rgba(216, 173, 95, 0.08)
  );
  box-shadow:
    0 14px 28px rgba(216, 173, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.partner-icon-badge i {
  color: #f4dbab;
  font-size: 1.35rem;
  line-height: 1;
}

.partner-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-card h5 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.32;
}

.partner-card p {
  margin: 0;
  color: #cfdbea;
  line-height: 1.75;
}

@media (max-width: 991.98px) {
  .partner-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .partner-icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .partner-icon-badge i {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .partner-card {
    padding: 22px 18px;
  }

  .partner-card-top {
    margin-bottom: 16px;
  }

  .partner-card h5 {
    font-size: 1.08rem;
  }

  .partner-card p {
    font-size: 0.95rem;
  }
}

/* PREMIUM RFQ SECTION */

.premium-rfq-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.premium-rfq-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.premium-rfq-content {
  position: relative;
  z-index: 1;
}

.premium-rfq-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.premium-rfq-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dce7f5;
}

.premium-rfq-point i {
  color: #f0d18e;
  margin-top: 2px;
  flex-shrink: 0;
}

.premium-contact-stack {
  gap: 12px;
}

.premium-contact-stack a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6eef9;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.premium-contact-stack a:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 173, 95, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.22),
    rgba(216, 173, 95, 0.08)
  );
  box-shadow:
    0 10px 24px rgba(216, 173, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-icon i {
  color: #f4dbab;
  font-size: 1rem;
  line-height: 1;
}

.premium-rfq-form-wrap {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.premium-rfq-form .form-control:focus,
.premium-rfq-form .form-select:focus {
  border-color: rgba(216, 173, 95, 0.42);
  box-shadow: 0 0 0 0.2rem rgba(216, 173, 95, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.premium-rfq-btn {
  min-height: 60px;
  border-radius: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

@media (max-width: 991.98px) {
  .premium-rfq-shell {
    padding: 30px;
    border-radius: 24px;
  }

  .premium-rfq-form-wrap {
    padding: 20px;
    border-radius: 20px;
  }
}

@media (max-width: 767.98px) {
  .premium-rfq-shell {
    padding: 22px;
    border-radius: 20px;
  }

  .premium-rfq-form-wrap {
    padding: 16px;
    border-radius: 18px;
  }

  .premium-contact-stack a {
    padding: 12px 14px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .premium-rfq-btn {
    min-height: 56px;
  }
}
/* PREMIUM CONTACT CTA SECTION */

.premium-contact-cta {
  position: relative;
  overflow: hidden;
  padding: 34px 32px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.premium-contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.premium-contact-copy {
  max-width: 560px;
}

.premium-contact-copy h3 {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.premium-contact-copy p {
  color: #cdd9e8;
  line-height: 1.75;
}

.premium-contact-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.premium-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ecf3fc;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.premium-contact-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 173, 95, 0.34);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(216, 173, 95, 0.05);
}

.premium-contact-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.22),
    rgba(216, 173, 95, 0.08)
  );
  box-shadow:
    0 10px 22px rgba(216, 173, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.premium-contact-link-icon i {
  color: #f4dbab;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .premium-contact-cta {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .premium-contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .premium-contact-cta {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .premium-contact-copy h3 {
    font-size: 1.3rem;
  }

  .premium-contact-links {
    width: 100%;
    gap: 10px;
  }

  .premium-contact-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .premium-contact-link-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}
/* PREMIUM FOOTER */

.premium-footer {
  position: relative;
  padding: 86px 0 28px;
  background:
    radial-gradient(
      circle at top center,
      rgba(216, 173, 95, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #030913 0%, #02070f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% - 1px),
    rgba(255, 255, 255, 0.02) calc(100% - 1px)
  );
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
}

.premium-footer-top {
  position: relative;
  padding: 0 0 26px;
}

.premium-footer-brand {
  align-items: center;
  margin-bottom: 18px;
}

.premium-footer-text {
  max-width: 430px;
  color: #b8c8db;
  line-height: 1.85;
}

.premium-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.premium-footer-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dbe7f5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.premium-footer-block {
  position: relative;
  padding-top: 10px;
}

.premium-footer-block h6 {
  position: relative;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.premium-footer-block h6::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.premium-footer .footer-links li {
  margin-bottom: 14px;
}

.premium-footer .footer-links a {
  color: #bfd1e7;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.premium-footer .footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.premium-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.premium-footer-contact i {
  color: #f0d18e;
  font-size: 0.95rem;
  width: 18px;
  flex-shrink: 0;
}

.premium-footer-bottom {
  position: relative;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #90a5c1;
}

.premium-footer-bottom a {
  color: #dbe6f5;
  font-weight: 600;
  transition: color 0.3s ease;
}

.premium-footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .premium-footer {
    padding: 72px 0 26px;
  }

  .premium-footer-top {
    padding-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .premium-footer {
    padding: 62px 0 24px;
  }

  .premium-footer-badges {
    gap: 8px;
  }

  .premium-footer-badges span {
    font-size: 0.75rem;
    padding: 9px 12px;
  }

  .premium-footer-bottom {
    gap: 8px;
  }
}

/* PREMIUM FLOATING CONTACT */

.premium-floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1200;
}

.premium-floating-contact .float-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.premium-floating-contact .float-btn i {
  position: relative;
  z-index: 2;
}

.premium-floating-contact .float-btn-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
}

.premium-floating-contact .float-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  z-index: 0;
}

.premium-floating-contact .float-btn:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(216, 173, 95, 0.34);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.premium-floating-contact .whatsapp {
  background: linear-gradient(135deg, #1fb95c, #25d366);
}

.premium-floating-contact .phone {
  background: linear-gradient(135deg, #1667d9, #0d6efd);
}

.premium-floating-contact .email {
  background: linear-gradient(135deg, #59636f, #6c757d);
}

.premium-floating-contact .top {
  background: linear-gradient(135deg, #17283f, #212529);
}

.premium-floating-contact .whatsapp .float-btn-ring,
.premium-floating-contact .phone .float-btn-ring,
.premium-floating-contact .email .float-btn-ring,
.premium-floating-contact .top .float-btn-ring {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.premium-floating-contact .whatsapp::before,
.premium-floating-contact .phone::before,
.premium-floating-contact .email::before,
.premium-floating-contact .top::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  right: 10px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(6px);
  z-index: 1;
}

@media (max-width: 767.98px) {
  .premium-floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .premium-floating-contact .float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}

/* ============================= */
/* PREMIUM TOPBAR */
/* ============================= */

/* subtle glow line */
.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 173, 95, 0.5),
    transparent
  );
}

/* inner layout */

/* items */

.topbar-item a {
  color: #c6d3e6;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* location text */

.topbar-item span {
  color: #94a9c5;
}

/* hover highlight */

.topbar-item:hover {
  transform: translateY(-1px);
}

/* divider between items */

.topbar-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 14px;
  margin-left: 14px;
  background: rgba(255, 255, 255, 0.08);
}

/* remove divider for last */

.topbar-item:last-child::after {
  display: none;
}

/* responsive */

@media (max-width: 992px) {
  .topbar-inner {
    gap: 16px;
    justify-content: center;
  }

  .topbar-item:not(:last-child)::after {
    display: none;
  }
}

/* =========================================
   PREMIUM MEGA MENU V3
   ========================================= */

.mega-menu-v3 {
  width: min(1240px, calc(100vw - 40px)) !important;
  max-width: 1240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(216, 173, 95, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at left center,
      rgba(95, 144, 255, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(7, 18, 34, 0.98), rgba(10, 24, 46, 0.98));
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.55),
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.mega-v3-shell {
  position: relative;
  padding: 22px;
}

.mega-v3-topline {
  height: 3px;
  width: 100%;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0),
    rgba(95, 144, 255, 0)
  );
}

.mega-v3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.15fr;
  gap: 18px;
}

.mega-v3-column {
  padding: 10px 8px;
}

.mega-v3-column h6 {
  margin-bottom: 16px;
  color: #f1d188;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-v3-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.mega-v3-link + .mega-v3-link {
  margin-top: 8px;
}

.mega-v3-link:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 173, 95, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mega-v3-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.18),
    rgba(216, 173, 95, 0.07)
  );
  color: #f4dbab;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mega-v3-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mega-v3-text strong {
  color: #f8fbff;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
}

.mega-v3-text small {
  color: #9fb1c9;
  font-size: 0.8rem;
  line-height: 1.55;
}

.mega-v3-feature {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    ),
    linear-gradient(135deg, rgba(216, 173, 95, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mega-v3-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.mega-v3-feature h5 {
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.45;
}

.mega-v3-feature p {
  margin-bottom: 20px;
  color: #c7d5e8;
  font-size: 0.93rem;
  line-height: 1.8;
}

.mega-v3-feature-points {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.mega-v3-feature-points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mega-v3-feature-points i {
  color: #f0d18e;
  margin-top: 2px;
  flex-shrink: 0;
}

.mega-v3-feature-points span {
  color: #e4edf8;
  font-size: 0.88rem;
  line-height: 1.55;
}

.mega-v3-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mega-v3-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 0.88rem;
}

@media (min-width: 1200px) {
  .mega-dropdown:hover .mega-menu-v3,
  .mega-dropdown:focus-within .mega-menu-v3,
  .mega-menu-v3:hover {
    display: block !important;
    animation: megaFadeDesktopLuxury 0.24s ease;
  }
}

@keyframes megaFadeDesktopLuxury {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@media (max-width: 1199.98px) {
  .mega-menu-v3 {
    width: 100% !important;
    max-width: 100%;
    border-radius: 22px;
  }

  .mega-v3-shell {
    padding: 14px;
  }

  .mega-v3-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mega-v3-feature {
    padding: 22px 18px;
  }
}

@media (max-width: 767.98px) {
  .mega-v3-column,
  .mega-v3-feature {
    padding: 10px 6px;
  }

  .mega-v3-link {
    padding: 12px;
    border-radius: 16px;
  }

  .mega-v3-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
  }

  .mega-v3-text strong {
    font-size: 0.92rem;
  }

  .mega-v3-text small {
    font-size: 0.76rem;
  }

  .mega-v3-feature h5 {
    font-size: 1.1rem;
  }
}

/* =========================================
   PREMIUM NAVBAR BAR UPGRADE
   ========================================= */

.site-header.scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 12, 22, 0.82);
  backdrop-filter: blur(16px);
  padding-top: 8px;
}

.site-header.scrolled .navbar {
  background: linear-gradient(
    180deg,
    rgba(7, 18, 34, 0.92),
    rgba(10, 24, 46, 0.9)
  );
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    0 8px 22px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.navbar {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 38, 0.82),
    rgba(10, 24, 46, 0.78)
  );
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: visible !important;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0),
    rgba(95, 144, 255, 0)
  );
  pointer-events: none;
}

.header-shell {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 0 20px;
}

.brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  margin-right: 10px;
}

.navbar-collapse {
  align-items: center;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  padding: 12px 14px !important;
  color: #dbe6f5 !important;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 14px;
  transition: color 0.28s ease,
    background 0.28s ease,
    transform 0.28s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
  transition: transform 0.28s ease;
}

.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
}

.nav-actions .btn {
  min-height: 46px;
  padding: 11px 18px;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .navbar .container.header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 18px;
  }

  .navbar-collapse {
    display: contents !important;
  }

  .nav-center {
    justify-content: center;
  }
}

@media (max-width: 1399.98px) {
  .nav-link {
    padding-left: 11px !important;
    padding-right: 11px !important;
    font-size: 0.93rem;
  }

  .nav-actions .btn {
    padding: 11px 16px;
  }
}

@media (max-width: 1199.98px) {
  .site-header {
    padding-top: 8px;
  }

  .navbar {
    border-radius: 22px;
  }

  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 0 16px;
  }

  .brand {
    min-width: auto;
    max-width: calc(100% - 70px);
  }

  .brand-logo {
    width: 110px;
    height: 110px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 14px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: linear-gradient(
      180deg,
      rgba(10, 23, 46, 0.97),
      rgba(14, 32, 63, 0.97)
    );
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .nav-center {
    gap: 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 12px !important;
    border-radius: 12px;
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
    margin-top: 14px;
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    border-radius: 18px;
  }

  .header-shell {
    min-height: 76px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 110px;
    height: 110px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
}

/* =========================================
   PREMIUM HERO ACTIONS
   ========================================= */

/* =========================================
   PREMIUM HERO STATS
   ========================================= */

.premium-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.34);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stat-value-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}

.stat-value-line strong {
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.stat-value-line span {
  color: #f0d18e;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-value-line-text strong {
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.premium-stat-card p {
  max-width: 220px;
  color: #c4d3e6;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
  .premium-hero-actions {
    gap: 14px;
  }

  .premium-hero-actions .btn {
    min-height: 62px;
  }

  .premium-stat-card {
    padding: 22px 18px;
  }
}

@media (max-width: 767.98px) {
  .premium-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-hero-actions .btn,
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    min-width: 100%;
  }

  .premium-stat-card p {
    max-width: 100%;
  }
}

/* =========================================
   PREMIUM HERO SECTION UPGRADE
   ========================================= */

.premium-hero-section {
  position: relative;
  padding: 120px 0 95px;
  overflow: hidden;
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}

.hero-glow-1 {
  width: 320px;
  height: 320px;
  top: 60px;
  left: -80px;
  background: rgba(95, 144, 255, 0.12);
}

.hero-glow-2 {
  width: 360px;
  height: 360px;
  top: 20px;
  right: -100px;
  background: rgba(216, 173, 95, 0.12);
}

.hero-eyebrow {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.premium-hero-title {
  margin-top: 24px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.premium-hero-text {
  max-width: 92%;
  font-size: 1.04rem;
  line-height: 1.9;
  color: #c7d6e8;
}

.premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.premium-hero-actions .btn {
  min-height: 68px;
  padding: 14px 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.premium-hero-actions .btn:hover {
  transform: translateY(-4px);
}

.hero-btn-primary {
  min-width: 220px;
}

.hero-btn-secondary {
  min-width: 250px;
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.btn-text-wrap strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.btn-text-wrap small {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.92;
}

.premium-hero-stats {
  margin-top: 8px;
}

.premium-stat-card {
  position: relative;
  height: 100%;
  padding: 26px 22px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.06), rgba(216, 173, 95, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.premium-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.stat-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.22),
    rgba(216, 173, 95, 0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.premium-hero-panel {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-panel-topline {
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.premium-hero-panel .panel-head h3 {
  margin-top: 14px;
  font-size: 1.5rem;
  line-height: 1.35;
}

.premium-hero-panel .hero-tile {
  min-height: 122px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.premium-hero-panel .hero-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 173, 95, 0.24);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
}

.premium-hero-panel .hero-strip {
  margin-top: 18px;
}

.premium-hero-panel .hero-strip > div {
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
}

@media (max-width: 991.98px) {
  .premium-hero-section {
    padding: 95px 0 75px;
  }

  .premium-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .premium-hero-text {
    max-width: 100%;
  }

  .premium-hero-panel {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .premium-hero-section {
    padding: 82px 0 62px;
  }

  .premium-hero-title {
    font-size: 2.35rem;
  }

  .premium-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary,
  .hero-btn-secondary,
  .premium-hero-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .premium-hero-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .premium-hero-panel .panel-head h3 {
    font-size: 1.28rem;
  }
}

/* =========================================
   LUXURY PREMIUM HERO SECTION
   ========================================= */

.luxury-hero-section {
  position: relative;
  padding: 130px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(95, 144, 255, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(216, 173, 95, 0.16),
      transparent 22%
    );
}

.hero-lux-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
  opacity: 0.35;
}

.hero-lux-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.65;
}

.hero-lux-orb-1 {
  width: 320px;
  height: 320px;
  left: -70px;
  top: 80px;
  background: rgba(95, 144, 255, 0.18);
}

.hero-lux-orb-2 {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 30px;
  background: rgba(216, 173, 95, 0.18);
}

.luxury-hero-row {
  position: relative;
  z-index: 2;
}

.luxury-hero-copy {
  position: relative;
  z-index: 2;
}

.luxury-hero-eyebrow {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.luxury-hero-title {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 4.8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.luxury-hero-text {
  max-width: 92%;
  font-size: 1.05rem;
  line-height: 1.95;
  color: #c9d7e8;
}

.luxury-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.luxury-hero-actions .btn {
  min-height: 72px;
  padding: 14px 24px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.luxury-hero-actions .btn:hover {
  transform: translateY(-5px);
}

.luxury-btn-primary {
  min-width: 228px;
  box-shadow:
    0 24px 50px rgba(216, 173, 95, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.luxury-btn-secondary {
  min-width: 255px;
  background: rgba(255, 255, 255, 0.03);
  border-width: 1px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.luxury-btn-inner {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.luxury-btn-inner strong {
  font-size: 1rem;
  font-weight: 800;
}

.luxury-btn-inner small {
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.92;
}

.luxury-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.luxury-stat-card {
  position: relative;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.05));
  box-shadow:
    0 26px 55px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.luxury-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.luxury-stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 173, 95, 0.34);
  box-shadow:
    0 34px 66px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.luxury-stat-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.22),
    rgba(216, 173, 95, 0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.luxury-stat-value {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
}

.luxury-stat-value strong {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.luxury-stat-value span {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #f0d18e;
}

.luxury-stat-value-text strong {
  letter-spacing: 0.05em;
}

.luxury-stat-card p {
  margin: 0;
  max-width: 220px;
  color: #c4d3e6;
  font-size: 1rem;
  line-height: 1.75;
}

.luxury-hero-panel {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.07));
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.luxury-panel-topline {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.luxury-panel-head h3 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.35;
  color: #fff;
}

.luxury-panel-head p {
  margin-bottom: 22px;
  color: #c4d3e6;
  font-size: 0.96rem;
  line-height: 1.8;
}

.luxury-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.luxury-hero-tile {
  min-height: 122px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.luxury-hero-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 173, 95, 0.24);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.luxury-hero-tile i {
  font-size: 1.45rem;
  color: #f4dbab;
}

.luxury-hero-tile span {
  color: #eef4fd;
  font-weight: 700;
}

.luxury-hero-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.luxury-hero-strip > div {
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
}

.luxury-hero-strip b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.luxury-hero-strip span {
  color: #b8cae0;
  font-size: 0.88rem;
}

@media (max-width: 991.98px) {
  .luxury-hero-section {
    padding: 100px 0 80px;
  }

  .luxury-hero-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
  }

  .luxury-hero-text {
    max-width: 100%;
  }

  .luxury-hero-stats {
    grid-template-columns: 1fr;
  }

  .luxury-hero-panel {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .luxury-hero-section {
    padding: 86px 0 64px;
  }

  .luxury-hero-title {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .luxury-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .luxury-btn-primary,
  .luxury-btn-secondary,
  .luxury-hero-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .luxury-hero-grid,
  .luxury-hero-strip {
    grid-template-columns: 1fr;
  }

  .luxury-hero-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .luxury-panel-head h3 {
    font-size: 1.28rem;
  }
}

/* =========================================
   ULTRA LUXURY HERO SECTION
   ========================================= */

.ultra-hero-section {
  position: relative;
  padding: 145px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(79, 130, 255, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(216, 173, 95, 0.18),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.ultra-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 22, 0.08), rgba(5, 12, 22, 0.18)),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015),
      transparent 35%,
      transparent 65%,
      rgba(255, 255, 255, 0.015)
    );
  pointer-events: none;
}

.ultra-hero-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.ultra-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  opacity: 0.62;
}

.ultra-hero-orb-1 {
  width: 340px;
  height: 340px;
  left: -90px;
  top: 90px;
  background: rgba(95, 144, 255, 0.18);
}

.ultra-hero-orb-2 {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 30px;
  background: rgba(216, 173, 95, 0.18);
}

.ultra-hero-orb-3 {
  width: 220px;
  height: 220px;
  left: 40%;
  top: 40px;
  background: rgba(255, 255, 255, 0.06);
}

.ultra-hero-row {
  position: relative;
  z-index: 2;
}

.ultra-hero-copy {
  position: relative;
  z-index: 2;
}

.ultra-hero-eyebrow {
  /* background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 16px 30px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.06); */
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 500;
}

.ultra-hero-title {
  margin-top: 26px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 5vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow:
    0 14px 32px rgba(0, 0, 0, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.16);
  max-width: 95%;
}

.ultra-hero-text {
  max-width: 90%;
  font-size: 1.06rem;
  line-height: 2;
  color: #cad8e9;
}

.ultra-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  margin-bottom: 36px;
}

.ultra-hero-actions .btn {
  min-height: 74px;
  padding: 15px 24px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.ultra-hero-actions .btn:hover {
  transform: translateY(-6px);
}

.ultra-btn-primary {
  min-width: 230px;
  box-shadow:
    0 28px 55px rgba(216, 173, 95, 0.2),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.ultra-btn-secondary {
  min-width: 260px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ultra-btn-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.ultra-btn-content strong {
  font-size: 1rem;
  font-weight: 800;
}

.ultra-btn-content small {
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.92;
}

.ultra-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ultra-stat-card {
  position: relative;
  min-height: 228px;
  padding: 30px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.05));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.ultra-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.36);
  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(216, 173, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ultra-stat-topline {
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.ultra-stat-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216, 173, 95, 0.24),
    rgba(216, 173, 95, 0.08)
  );
  color: #f4dbab;
  font-size: 1.22rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ultra-stat-value {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
}

.ultra-stat-value strong {
  font-size: clamp(2.5rem, 3vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.ultra-stat-value span {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #f0d18e;
}

.ultra-stat-value-text strong {
  letter-spacing: 0.05em;
}

.ultra-stat-card p {
  max-width: 220px;
  margin: 0;
  color: #c6d6e8;
  font-size: 1rem;
  line-height: 1.75;
}

.ultra-hero-panel {
  position: relative;
  padding: 36px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.08));
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.ultra-panel-goldline {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
}

.ultra-panel-head h3 {
  margin-top: 14px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.62rem;
  line-height: 1.34;
}

.ultra-panel-head p {
  margin-bottom: 24px;
  color: #c4d3e6;
  font-size: 0.97rem;
  line-height: 1.85;
  text-align: justify;
}

.ultra-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ultra-hero-tile {
  min-height: 126px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(216, 173, 95, 0), rgba(216, 173, 95, 0.95), rgba(240, 209, 142, 0));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.ultra-hero-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 173, 95, 0.25);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.16);
}

.ultra-hero-tile i {
  color: #f4dbab;
  font-size: 1.45rem;
}

.ultra-hero-tile span {
  color: #eef4fd;
  font-weight: 700;
}

.ultra-hero-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.ultra-hero-strip > div {
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(90deg, rgba(216, 173, 95, 0), rgba(216, 173, 95, 0.95), rgba(240, 209, 142, 0));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    color: #fff;
}

.ultra-hero-strip b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.95rem;
}

.ultra-hero-strip span {
  color: #b8cae0;
  font-size: 0.88rem;
}

@media (max-width: 991.98px) {
  .ultra-hero-section {
    padding: 105px 0 82px;
  }

  .ultra-hero-title {
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    max-width: 100%;
  }

  .ultra-hero-text {
    max-width: 100%;
  }

  .ultra-hero-stats {
    grid-template-columns: 1fr;
  }

  .ultra-hero-panel {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .ultra-hero-section {
    padding: 88px 0 66px;
  }

  .ultra-hero-title {
    font-size: 2.4rem;
    line-height: 1.03;
  }

  .ultra-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ultra-btn-primary,
  .ultra-btn-secondary,
  .ultra-hero-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .ultra-hero-grid,
  .ultra-hero-strip {
    grid-template-columns: 1fr;
  }

  .ultra-hero-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .ultra-panel-head h3 {
    font-size: 1.3rem;
  }
}
#solutions .solution-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    ),
    linear-gradient(135deg, rgba(95, 144, 255, 0.04), rgba(216, 173, 95, 0.05));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#solutions .solution-card h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 56px;
  display: flex;
  align-items: center;
}

#solutions .solution-card p {
  color: #c8d7e7;
  font-size: 0.80rem;
  line-height: 1.75;
  margin-bottom: 10px;
  min-height: 118px;
  text-align: justify;
}

#solutions .solution-card ul {
  margin: 0;
  padding-left: 18px;
  color: #e3edf9;
  margin-top: auto;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  align-items: center;
  background: #0c1730;
  color: #fff;
}
.carousel-item {
  position: relative;
}

/* =========================================
   HERO CAROUSEL QUOTE BOX
   ========================================= */

.hero-quote-box {
  position: absolute;
  left: 8%;
  bottom: 55%;
  z-index: 3;
  max-width: 75%;
  padding: 10px 26px;
  border: 0;
  border-radius: 6px;
  background: rgba(7, 17, 31, 0.01);
  box-shadow: none;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.85s ease;
  width: min(600px, calc(100% - 40px));
  overflow: hidden;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.3;
  border-left: 4px solid #d4af37;
  text-align: left;
  border-top: 2px solid #d4af37;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* quote title */

.hero-quote-box h2,
.hero-quote-box h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.2rem, 2.0vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.85s ease 0.3s;
  text-align: justify;
}

/* quote text */

.hero-quote-box p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.85s ease 0.52s;
  transition-delay: 0.6s;
  max-width: 580px;
  font-weight: 500;
}

/* =========================================
   FINAL RESPONSIVE FIXES
   add at very end of style.css
   ========================================= */

/* better global media behavior */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* better horizontal breathing room for full-width sections */
.container-fluid.header-shell,
.topbar .container-fluid,
main .container-fluid,
.site-footer .container-fluid {
  padding-left: clamp(14px, 2vw, 28px);
  padding-right: clamp(14px, 2vw, 28px);
}

/* desktop refinement */
@media (min-width: 1400px) {
  .hero-title {
    font-size: clamp(3.2rem, 4vw, 4.8rem);
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

/* large laptop / tablet landscape */
@media (max-width: 1199.98px) {
  .topbar-inner {
    justify-content: center;
    gap: 12px 18px;
    text-align: center;
  }

  .topbar-item {
    font-size: 0.88rem;
  }

  .site-header {
    overflow: visible;
  }

  .navbar {
    padding: 10px 0;
  }

  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 74px);
    gap: 10px;
  }

  .brand-logo {
    width: 110px;
    height: 110px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
    line-height: 1.08;
  }

  .brand-copy small {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .navbar-toggler {
    flex-shrink: 0;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 14px;
    padding: 18px 16px;
    border-radius: 18px;
    background: linear-gradient(
      180deg,
      rgba(10, 23, 46, 0.96),
      rgba(14, 32, 63, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-center {
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0 !important;
    font-size: 0.95rem;
  }

  .nav-actions {
    width: 100%;
    margin: 14px 0 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .nav-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .mega-menu,
  .mega-menu-v3 {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px;
    border-radius: 18px;
  }

  .mega-grid,
  .mega-v3-grid {
    grid-template-columns: 1fr !important;
  }

  .mega-highlight,
  .mega-v3-feature {
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-carousel-section {
    height: 78vh;
    min-height: 620px;
  }

  .hero-quote-box {
    left: 5%;
    right: 5%;
    bottom: 8%;
    max-width: none;
    width: auto;
  }

  .ultra-hero-section {
    padding: 80px 0 64px;
  }

  .ultra-hero-row {
    align-items: stretch !important;
  }

  .ultra-hero-copy,
  .ultra-hero-panel {
    height: 100%;
  }

  .hero-title,
  .ultra-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    text-align: center;
  }

  .hero-text,
  .ultra-hero-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .ultra-hero-actions,
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .ultra-hero-actions .btn,
  .hero-actions .btn {
    min-width: 220px;
  }

  .ultra-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-text {
    font-size: 0.85rem;
  }

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

  #solutions .row > [class*="col-"],
  #about .row.g-4 > [class*="col-"] {
    display: flex;
  }

  .footer-cta,
  .premium-contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-contact-links {
    justify-content: flex-start;
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .topbar {
    font-size: 0.84rem;
  }

  .topbar-inner {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .brand-logo {
    width: 110px;
    height: 110px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .hero-carousel-section {
    height: 70vh;
    min-height: 540px;
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-quote-box {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .hero-quote-box h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .hero-quote-box p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .ultra-hero-section,
  .hero-section {
    padding: 68px 0 58px;
    min-height: auto;
  }

  .hero-title,
  .ultra-hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 14px;
  }

  .hero-text,
  .ultra-hero-text {
    font-size: 0.98rem;
  }

  .india span {
    font-size: 0.92rem;
  }

  .ultra-hero-actions .btn,
  .hero-actions .btn {
    min-width: 200px;
    min-height: 52px;
  }

  .ultra-hero-stats,
  .hero-stats-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ultra-stat-card:last-child,
  .hero-stats-full .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .ultra-hero-grid,
  .hero-grid,
  .dual-list {
    grid-template-columns: 1fr 1fr;
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .section-text {
    max-width: 100%;
  }

  #solutions .solution-card,
  .info-card,
  .mini-service,
  .industry-card,
  .partner-card,
  .process-card {
    border-radius: 20px;
  }

  #solutions .solution-image {
    height: 170px;
  }

  .client-logo-card {
    width: 150px;
    height: 96px;
  }

  .partner-logo-item {
    width: 190px;
    height: 104px;
  }

  .partner-logo-item img {
    max-width: 145px;
    max-height: 56px;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .container-fluid.header-shell,
  .topbar .container-fluid,
  main .container-fluid,
  .site-footer .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar {
    font-size: 0.8rem;
  }

  .topbar-inner {
    justify-content: flex-start;
    gap: 8px 12px;
    padding: 8px 0;
  }

  .topbar-item {
    flex-wrap: wrap;
    gap: 6px;
  }

  .brand {
    max-width: calc(100% - 60px);
    gap: 8px;
  }

  .brand-logo {
    width: 110px;
    height: 110px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
    line-height: 1.05;
  }

  .brand-copy small {
    font-size: 0.46rem;
    letter-spacing: 0.08em;
    margin-left: 0;
  }

  .navbar-collapse {
    padding: 14px;
    border-radius: 16px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-carousel-section {
    height: 58vh;
    min-height: 420px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .hero-quote-box {
    left: 14px;
    right: 14px;
    bottom: 56px;
    padding: 16px;
    border-radius: 16px;
  }

  .hero-quote-tag {
    font-size: 0.64rem;
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  .hero-quote-box h2 {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .hero-quote-box p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .scroll-indicator {
    bottom: 12px;
  }

  .scroll-indicator span {
    width: 20px;
    height: 32px;
  }

  .ultra-hero-section,
  .hero-section {
    padding: 52px 0 46px;
  }

  .hero-title,
  .ultra-hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: left;
  }

  .hero-text,
  .ultra-hero-text {
    font-size: 0.92rem;
    line-height: 1.75;
    text-align: left;
  }

  .india span {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .ultra-hero-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ultra-hero-actions .btn,
  .hero-actions .btn {
    width: 100%;
    min-width: 100%;
  }

  .ultra-hero-stats,
  .hero-stats-full,
  .hero-grid,
  .ultra-hero-grid,
  .dual-list,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .ultra-hero-panel,
  .hero-panel,
  .service-feature-card,
  .cta-shell,
  .premium-rfq-shell,
  .premium-contact-cta {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.45rem;
    margin: 1.2rem 0 0.8rem;
  }

  .section-text {
    font-size: 0.94rem;
    text-align: left;
  }

  .feature-line {
    padding: 12px 14px;
  }

  #solutions .solution-card {
    padding: 16px;
  }

  #solutions .solution-image {
    height: 180px;
    padding: 14px;
  }

  .client-logo-card {
    width: 132px;
    height: 88px;
    padding: 10px;
  }

  .client-logo-card img {
    max-height: 42px;
  }

  .partner-logo-item {
    width: 156px;
    height: 86px;
    padding: 10px;
    border-radius: 14px;
  }

  .partner-logo-item img {
    max-width: 118px;
    max-height: 42px;
  }

  .footer-cta-links,
  .premium-contact-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta-links a,
  .premium-contact-links a {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
}

/* very small mobile */
@media (max-width: 479.98px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy small {
    font-size: 0.42rem;
  }

  .hero-carousel-section {
    min-height: 380px;
  }

  .hero-title,
  .ultra-hero-title {
    font-size: 1.4rem;
  }

  .hero-quote-box {
    bottom: 48px;
    padding: 14px;
  }

  .hero-quote-box h2 {
    font-size: 0.94rem;
  }

  .hero-quote-box p {
    font-size: 0.78rem;
  }

  .section-title {
    font-size: 1.28rem;
  }

  #solutions .solution-image {
    height: 160px;
  }

  .process-no,
  .contact-icon,
  .premium-contact-link-icon {
    transform: scale(0.92);
  }
}

.about-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.about-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.about-hero-premium .hero-title {
  max-width: 1200px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.06;
}

.about-hero-premium .hero-text {
  max-width: 1200px;
  color: #c7d6e8;
  line-height: 1.9;
}
.about-overview-intro {
  padding-left: 10px;
  border-left: 2px solid rgba(216, 173, 95, 0.35);
}

.about-overview-card {
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
}

.about-overview-side {
  display: grid;
  gap: 18px;
}

.about-side-card {
  height: 100%;
  border-radius: 22px;
  transition: 0.35s ease;
}

.about-side-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 173, 95, 0.28);
}

.about-side-card h5 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

@media (max-width: 991.98px) {
  .about-overview-card {
    padding: 24px;
  }

  .about-overview-intro {
    padding-left: 0;
    border-left: 0;
  }
}

.about-premium-card {
  position: relative;
  height: 100%;
  padding: 26px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-premium-card h4 {
  margin: 16px 0 12px;
  font-size: 1.12rem;
  line-height: 1.4;
}

.about-premium-card p {
  color: #c7d6e8;
}

@media (max-width: 767.98px) {
  .about-premium-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

.about-process-card {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.03), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-process-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.about-process-card p {
  color: #c7d6e8;
}

.about-process-card .process-no {
  margin-bottom: 18px;
}

@media (max-width: 767.98px) {
  .about-process-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

.about-cta-premium {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.08));
  box-shadow:
    0 32px 72px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-cta-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-cta-points {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.about-cta-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8e4f5;
}

.about-cta-point i {
  color: #f0d18e;
  margin-top: 3px;
}

.about-cta-contact-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.about-cta-contact-card h5 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  color: #fff;
}

.about-cta-contact-card p {
  margin-bottom: 20px;
  color: #c7d6e8;
}

.about-cta-links {
  display: grid;
  gap: 12px;
}

.about-cta-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.about-cta-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.about-cta-links i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .about-cta-premium {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .about-cta-premium {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .about-cta-contact-card {
    padding: 20px 18px;
    border-radius: 18px;
  }
}
.about-mvv-card {
  position: relative;
  height: 100%;
  padding: 30px 26px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-mvv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-mvv-card h4 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.about-mvv-card p {
  color: #c7d6e8;
}

@media (max-width: 767.98px) {
  .about-mvv-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

.about-industry-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-industry-card i {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.25rem;
}

.about-industry-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.about-industry-card p {
  color: #c7d6e8;
}

@media (max-width: 767.98px) {
  .about-industry-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}
.about-capability-card {
  position: relative;
  height: 100%;
  padding: 30px 26px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-capability-card h4 {
  margin-bottom: 12px;
  font-size: 1.14rem;
  line-height: 1.35;
}

.about-capability-card p {
  color: #c7d6e8;
}

.about-capability-card .mini-icon {
  margin-bottom: 18px;
}

@media (max-width: 767.98px) {
  .about-capability-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

.about-serve-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 22px 48px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-serve-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-serve-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-serve-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.22rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-serve-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.about-serve-card p {
  color: #c7d6e8;
}

@media (max-width: 767.98px) {
  .about-serve-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

.about-philosophy-wrap {
  display: grid;
  gap: 18px;
}

.about-philosophy-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 22px 48px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-philosophy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-philosophy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-philosophy-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-philosophy-content h5 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.about-philosophy-content p {
  color: #c7d6e8;
  margin: 0;
}

@media (max-width: 767.98px) {
  .about-philosophy-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
    border-radius: 20px;
  }
}

.about-trust-shell {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.08));
  box-shadow:
    0 30px 70px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-trust-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-trust-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  height: 100%;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.about-trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(216,173,95,0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.about-trust-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.1rem;
}

.about-trust-item h5 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.35;
}

.about-trust-item p {
  margin: 0;
  color: #c7d6e8;
}

@media (max-width: 991.98px) {
  .about-trust-shell {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .about-trust-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .about-trust-item {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   ABOUT PAGE REFINED SPACING
   ========================================= */

.about-page .section-pad,
.page-main .section-pad {
  padding: 72px 0;
}

.about-page .section-pad.pt-0,
.page-main .section-pad.pt-0 {
  padding-top: 0;
}

.about-page .section-intro,
.page-main .section-intro {
  margin-bottom: 12px;
}

.about-page .section-title,
.page-main .section-title {
  max-width: 860px;
}

.about-page .section-text,
.page-main .section-text {
  max-width: 820px;
  line-height: 1.85;
}

.about-page p,
.page-main p {
  line-height: 1.85;
}

.about-page .row.g-4,
.page-main .row.g-4 {
  --bs-gutter-y: 1.35rem;
}

.about-page .row.g-5,
.page-main .row.g-5 {
  --bs-gutter-y: 1.8rem;
}

/* =========================================
   PDF PROFILE SECTION
   ========================================= */

.about-profile-download-section {
  padding-top: 42px;
  padding-bottom: 58px;
}

.about-profile-shell {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.08));
  box-shadow:
    0 30px 70px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-profile-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.about-profile-points {
  display: grid;
  gap: 12px;
}

.about-profile-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8e4f5;
}

.about-profile-point i {
  color: #f0d18e;
  margin-top: 3px;
}

.about-profile-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  text-align: left;
}

.about-profile-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.4rem;
}

.about-profile-card h5 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  color: #fff;
}

.about-profile-card p {
  color: #c7d6e8;
  margin-bottom: 20px;
}

.about-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-profile-actions .btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 12px 18px;
}

/* =========================================
   BEAUTIFUL CONTENT PRESENTATION
   ========================================= */

.about-overview-card,
.about-premium-card,
.about-industry-card,
.about-capability-card,
.about-mvv-card,
.about-process-card,
.about-serve-card,
.about-philosophy-card,
.about-trust-item,
.about-cta-contact-card,
.about-side-card {
  backdrop-filter: blur(8px);
}

.about-overview-card,
.about-premium-card,
.about-industry-card,
.about-capability-card,
.about-mvv-card,
.about-process-card {
  padding-top: 24px;
  padding-bottom: 24px;
}

.about-philosophy-wrap,
.about-overview-side,
.about-cta-points,
.about-profile-points {
  gap: 14px;
}

.about-trust-shell,
.about-cta-premium,
.about-profile-shell {
  border-radius: 28px;
}

.about-trust-item,
.about-philosophy-card,
.about-serve-card,
.about-side-card,
.about-profile-card {
  border-radius: 20px;
}

.about-premium-card h4,
.about-capability-card h4,
.about-mvv-card h4,
.about-process-card h5,
.about-industry-card h5,
.about-serve-card h5,
.about-philosophy-content h5,
.about-trust-item h5,
.about-side-card h5 {
  line-height: 1.38;
}

.about-overview-intro .section-text,
.about-page .section-intro .section-text,
.page-main .section-intro .section-text {
  color: #c7d6e8;
}

/* =========================================
   MOBILE / TABLET REFINEMENT
   ========================================= */

@media (max-width: 991.98px) {
  .about-page .section-pad,
  .page-main .section-pad {
    padding: 60px 0;
  }

  .about-profile-shell,
  .about-cta-premium,
  .about-trust-shell {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .about-page .section-pad,
  .page-main .section-pad {
    padding: 52px 0;
  }

  .about-profile-download-section {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .about-profile-shell,
  .about-cta-premium,
  .about-trust-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .about-profile-card,
  .about-cta-contact-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .about-profile-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-profile-actions .btn {
    width: 100%;
  }
}
/* =========================================
   CONTACT PAGE PREMIUM
   ========================================= */

.contact-page .section-pad {
  padding: 72px 0;
}

.contact-page .section-pad.pt-0 {
  padding-top: 0;
}

.contact-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.contact-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.contact-hero-premium .hero-title {
  max-width: 1200px;
  font-size: clamp(2.4rem, 4vw, 4.15rem);
  line-height: 1.06;
}

.contact-hero-premium .hero-text {
  max-width: 1200px;
  color: #c7d6e8;
  line-height: 1.9;
}

/* quick cards */

.contact-card-premium {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 22px 48px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.contact-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.contact-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.07));
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.contact-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.22rem;
}

.contact-card-premium h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.contact-card-premium p {
  color: #c7d6e8;
  margin-bottom: 14px;
}

.contact-card-premium a {
  color: #f0d18e;
  font-weight: 700;
}

.contact-card-premium a:hover {
  color: #fff;
}

/* main section */

.contact-info-shell,
.contact-form-shell,
.contact-asset-card,
.contact-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.contact-info-shell::before,
.contact-form-shell::before,
.contact-asset-card::before,
.contact-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1rem;
}

.contact-info-item h6 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.96rem;
}

.contact-info-item a,
.contact-info-item span {
  color: #c7d6e8;
}

.contact-info-item a:hover {
  color: #fff;
}

.contact-business-note {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  text-align: justify;
}

.contact-business-note h5 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact-business-note p {
  color: #c7d6e8;
  margin: 0;
}

/* support cards */

.contact-support-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-support-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.contact-support-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.contact-support-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.contact-support-card p {
  color: #c7d6e8;
}

/* profile and map */

.contact-asset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-map-placeholder {
  min-height: 250px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at center, rgba(216,173,95,0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-map-overlay {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  color: #e7f0fc;
  font-weight: 700;
}

.contact-map-overlay i {
  font-size: 2rem;
  color: #f0d18e;
}

/* form tune */

.contact-premium-form .form-control,
.contact-premium-form .form-select {
  min-height: 58px;
}

.contact-premium-form textarea.form-control {
  min-height: 160px;
}

/* CTA */

.contact-cta-shell .footer-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-cta-shell .footer-cta-links a {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e7f0fc;
}

.contact-cta-shell .footer-cta-links a:hover {
  color: #fff;
  border-color: rgba(216,173,95,0.25);
}

/* responsive */

@media (max-width: 991.98px) {
  .contact-page .section-pad {
    padding: 60px 0;
  }

  .contact-info-shell,
  .contact-form-shell,
  .contact-asset-card,
  .contact-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .section-pad {
    padding: 52px 0;
  }

  .contact-hero-premium .hero-title {
    font-size: 2rem;
  }

  .contact-card-premium,
  .contact-support-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contact-info-shell,
  .contact-form-shell,
  .contact-asset-card,
  .contact-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contact-info-item {
    grid-template-columns: 1fr;
  }

  .contact-asset-actions,
  .contact-cta-shell .footer-cta-links {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-asset-actions .btn,
  .contact-cta-shell .footer-cta-links a {
    width: 100%;
    justify-content: center;
  }

  .contact-map-placeholder {
    min-height: 200px;
  }
}

/* =========================================
   THANK YOU PAGE
   ========================================= */

.thankyou-page .section-pad {
  padding: 72px 0;
}

.thankyou-shell,
.thankyou-contact-strip {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.08));
  box-shadow:
    0 30px 70px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.thankyou-shell::before,
.thankyou-contact-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.thankyou-shell {
  text-align: center;
}

.thankyou-badge {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 2rem;
  box-shadow:
    0 16px 34px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.thankyou-shell .section-title,
.thankyou-shell .section-text {
  margin-left: auto;
  margin-right: auto;
}

.thankyou-points {
  max-width: 760px;
  margin: 28px auto 0;
  display: grid;
  gap: 14px;
  text-align: left;
}

.thankyou-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #d8e4f5;
}

.thankyou-point i {
  color: #f0d18e;
  margin-top: 3px;
}

.thankyou-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.thankyou-actions .btn {
  min-height: 52px;
  min-width: 190px;
}

.thankyou-contact-links {
  display: grid;
  gap: 12px;
}

.thankyou-contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.thankyou-contact-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.thankyou-contact-links i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .thankyou-page .section-pad {
    padding: 60px 0;
  }

  .thankyou-shell,
  .thankyou-contact-strip {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .thankyou-page .section-pad {
    padding: 52px 0;
  }

  .thankyou-shell,
  .thankyou-contact-strip {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .thankyou-badge {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 1.75rem;
  }

  .thankyou-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thankyou-actions .btn {
    width: 100%;
    min-width: 100%;
  }
}

/* =========================================
   RFQ PAGE PREMIUM
   ========================================= */

.rfq-page .section-pad {
  padding: 72px 0;
}

.rfq-page .section-pad.pt-0 {
  padding-top: 0;
}

.rfq-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.rfq-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.rfq-hero-premium .hero-title {
  max-width: 1200px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.06;
}

.rfq-hero-premium .hero-text {
  max-width: 1200px;
  color: #c7d6e8;
  line-height: 1.9;
}

.rfq-side-card,
.rfq-main-card,
.rfq-contact-strip {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.rfq-side-card::before,
.rfq-main-card::before,
.rfq-contact-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.rfq-side-points {
  display: grid;
  gap: 14px;
}

.rfq-side-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8e4f5;
}

.rfq-side-point i {
  color: #f0d18e;
  margin-top: 3px;
}

.premium-rfq-form .form-control,
.premium-rfq-form .form-select {
  min-height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
  box-shadow: none;
}

.premium-rfq-form textarea.form-control {
  min-height: 170px;
  padding-top: 14px;
}

.rfq-support-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.rfq-support-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.rfq-support-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.rfq-support-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.rfq-support-card p {
  color: #c7d6e8;
}

.rfq-contact-links {
  display: grid;
  gap: 12px;
}

.rfq-contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.rfq-contact-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.rfq-contact-links i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .rfq-page .section-pad {
    padding: 60px 0;
  }

  .rfq-side-card,
  .rfq-main-card,
  .rfq-contact-strip {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .rfq-page .section-pad {
    padding: 52px 0;
  }

  .rfq-hero-premium .hero-title {
    font-size: 2rem;
  }

  .rfq-side-card,
  .rfq-main-card,
  .rfq-contact-strip {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .rfq-support-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

/* =========================================
   DESIGN SERVICES PAGE
   ========================================= */

.design-page .section-pad {
  padding: 72px 0;
}

.design-page .section-pad.pt-0 {
  padding-top: 0;
}

.design-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.design-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.design-hero-premium .hero-title {
  max-width: 920px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.06;
}

.design-hero-premium .hero-text {
  max-width: 860px;
  color: #c7d6e8;
  line-height: 1.9;
}

.design-overview-card,
.design-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.design-overview-card::before,
.design-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.design-side-stack {
  display: grid;
  gap: 18px;
}

.design-side-card {
  border-radius: 22px;
  transition: 0.35s ease;
}

.design-side-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216,173,95,0.28);
}

.design-service-card,
.design-benefit-card,
.design-process-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.design-service-card:hover,
.design-benefit-card:hover,
.design-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.design-service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.design-service-card h5,
.design-benefit-card h5,
.design-process-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.design-service-card p,
.design-benefit-card p,
.design-process-card p {
  color: #c7d6e8;
}

.design-cta-contact {
  display: grid;
  gap: 12px;
}

.design-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.design-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.design-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .design-page .section-pad {
    padding: 60px 0;
  }

  .design-overview-card,
  .design-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .design-page .section-pad {
    padding: 52px 0;
  }

  .design-hero-premium .hero-title {
    font-size: 2rem;
  }

  .design-overview-card,
  .design-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .design-service-card,
  .design-benefit-card,
  .design-process-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

/* =========================================
   PROJECT MANAGEMENT PAGE
   ========================================= */

.pm-page .section-pad {
  padding: 72px 0;
}

.pm-page .section-pad.pt-0 {
  padding-top: 0;
}

.pm-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.pm-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.pm-hero-premium .hero-title {
  max-width: 920px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.06;
}

.pm-hero-premium .hero-text {
  max-width: 860px;
  color: #c7d6e8;
  line-height: 1.9;
}

.pm-overview-card,
.pm-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.pm-overview-card::before,
.pm-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.pm-side-stack {
  display: grid;
  gap: 18px;
}

.pm-side-card {
  border-radius: 22px;
  transition: 0.35s ease;
}

.pm-side-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216,173,95,0.28);
}

.pm-service-card,
.pm-benefit-card,
.pm-process-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.pm-service-card:hover,
.pm-benefit-card:hover,
.pm-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.pm-service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.pm-service-card h5,
.pm-benefit-card h5,
.pm-process-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.pm-service-card p,
.pm-benefit-card p,
.pm-process-card p {
  color: #c7d6e8;
}

.pm-cta-contact {
  display: grid;
  gap: 12px;
}

.pm-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.pm-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.pm-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .pm-page .section-pad {
    padding: 60px 0;
  }

  .pm-overview-card,
  .pm-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .pm-page .section-pad {
    padding: 52px 0;
  }

  .pm-hero-premium .hero-title {
    font-size: 2rem;
  }

  .pm-overview-card,
  .pm-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .pm-service-card,
  .pm-benefit-card,
  .pm-process-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

/* =========================================
   GENERAL CONTRACTING PAGE
   ========================================= */

.gc-page .section-pad {
  padding: 72px 0;
}

.gc-page .section-pad.pt-0 {
  padding-top: 0;
}

.gc-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.gc-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.gc-hero-premium .hero-title {
  max-width: 920px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.06;
}

.gc-hero-premium .hero-text {
  max-width: 860px;
  color: #c7d6e8;
  line-height: 1.9;
}

.gc-overview-card,
.gc-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.gc-overview-card::before,
.gc-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.gc-side-stack {
  display: grid;
  gap: 18px;
}

.gc-side-card {
  border-radius: 22px;
  transition: 0.35s ease;
}

.gc-side-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216,173,95,0.28);
}

.gc-service-card,
.gc-benefit-card,
.gc-process-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.gc-service-card:hover,
.gc-benefit-card:hover,
.gc-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.gc-service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.gc-service-card h5,
.gc-benefit-card h5,
.gc-process-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.gc-service-card p,
.gc-benefit-card p,
.gc-process-card p {
  color: #c7d6e8;
}

.gc-cta-contact {
  display: grid;
  gap: 12px;
}

.gc-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.gc-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.gc-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .gc-page .section-pad {
    padding: 60px 0;
  }

  .gc-overview-card,
  .gc-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .gc-page .section-pad {
    padding: 52px 0;
  }

  .gc-hero-premium .hero-title {
    font-size: 2rem;
  }

  .gc-overview-card,
  .gc-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .gc-service-card,
  .gc-benefit-card,
  .gc-process-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}
/* =========================================
   FABRICATION PAGE
   ========================================= */

.fab-page .section-pad {
  padding: 72px 0;
}

.fab-page .section-pad.pt-0 {
  padding-top: 0;
}

.fab-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.fab-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.fab-hero-premium .hero-title {
  max-width: 920px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1.06;
}

.fab-hero-premium .hero-text {
  max-width: 860px;
  color: #c7d6e8;
  line-height: 1.9;
}

.fab-overview-card,
.fab-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.fab-overview-card::before,
.fab-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.fab-side-stack {
  display: grid;
  gap: 18px;
}

.fab-side-card {
  border-radius: 22px;
  transition: 0.35s ease;
}

.fab-side-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216,173,95,0.28);
}

.fab-service-card,
.fab-benefit-card,
.fab-process-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.fab-service-card:hover,
.fab-benefit-card:hover,
.fab-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.fab-service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.fab-service-card h5,
.fab-benefit-card h5,
.fab-process-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.fab-service-card p,
.fab-benefit-card p,
.fab-process-card p {
  color: #c7d6e8;
}

.fab-cta-contact {
  display: grid;
  gap: 12px;
}

.fab-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.fab-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.fab-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .fab-page .section-pad {
    padding: 60px 0;
  }

  .fab-overview-card,
  .fab-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .fab-page .section-pad {
    padding: 52px 0;
  }

  .fab-hero-premium .hero-title {
    font-size: 2rem;
  }

  .fab-overview-card,
  .fab-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .fab-service-card,
  .fab-benefit-card,
  .fab-process-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
}
/* ============================
TRADING PRODUCT GRID
============================ */

.trading-filter button{
margin:6px;
padding:10px 20px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.15);
background:transparent;
color:#fff;
font-size:14px;
transition:0.3s;
}

.trading-filter button:hover{
background:#d8ad5f;
color:#000;
}

.filter-btn.active{
background:#d8ad5f;
color:#000;
}

.product-card{
padding:28px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
background:rgba(255,255,255,0.03);
transition:0.35s;
height:100%;
}

.product-card:hover{
transform:translateY(-6px);
border-color:#d8ad5f;
box-shadow:0 20px 40px rgba(0,0,0,0.35);
}

.product-card img{
width:60px;
margin-bottom:16px;
}

.product-card h5{
margin-bottom:10px;
}

.product-card p{
font-size:14px;
opacity:0.8;
}
/* =========================================
   VALVES PAGE PREMIUM
   ========================================= */

.valves-page .section-pad {
  padding: 72px 0;
}

.valves-page .section-pad.pt-0 {
  padding-top: 0;
}

.valves-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.valves-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.valves-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.valves-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.valves-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.valves-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.valves-hero-points i {
  color: #f0d18e;
}

.valves-showcase-card,
.valves-procurement-card,
.valves-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.valves-showcase-card::before,
.valves-procurement-card::before,
.valves-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.valves-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.valves-showcase-card h4,
.valves-procurement-card h5 {
  margin-bottom: 12px;
}

.valves-showcase-card p,
.valves-procurement-card p {
  color: #c7d6e8;
}

.valves-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.valves-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.valves-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.valves-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.valve-card,
.valve-application-card,
.valve-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.valve-card:hover,
.valve-application-card:hover,
.valve-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.valve-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.valve-card h5,
.valve-application-card h5,
.valve-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.valve-card p,
.valve-application-card p,
.valve-advantage-card p {
  color: #c7d6e8;
}

.valve-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.6rem;
}

.valve-application-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.valves-cta-contact {
  display: grid;
  gap: 12px;
}

.valves-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.valves-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.valves-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .valves-page .section-pad {
    padding: 60px 0;
  }

  .valves-showcase-card,
  .valves-procurement-card,
  .valves-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .valves-page .section-pad {
    padding: 52px 0;
  }

  .valves-hero-premium .hero-title {
    font-size: 2rem;
  }

  .valves-showcase-card,
  .valves-procurement-card,
  .valves-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .valves-showcase-grid {
    grid-template-columns: 1fr;
  }

  .valve-card,
  .valve-application-card,
  .valve-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .valves-hero-points {
    gap: 10px;
  }

  .valves-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   PUMPS PAGE PREMIUM
   ========================================= */

.pumps-page .section-pad {
  padding: 72px 0;
}

.pumps-page .section-pad.pt-0 {
  padding-top: 0;
}

.pumps-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.pumps-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.pumps-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.pumps-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.pumps-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.pumps-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.pumps-hero-points i {
  color: #f0d18e;
}

.pumps-showcase-card,
.pumps-procurement-card,
.pumps-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.pumps-showcase-card::before,
.pumps-procurement-card::before,
.pumps-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.pumps-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.pumps-showcase-card h4,
.pumps-procurement-card h5 {
  margin-bottom: 12px;
}

.pumps-showcase-card p,
.pumps-procurement-card p {
  color: #c7d6e8;
}

.pumps-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.pumps-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.pumps-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.pumps-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.pump-card,
.pump-application-card,
.pump-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.pump-card:hover,
.pump-application-card:hover,
.pump-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.pump-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.pump-card h5,
.pump-application-card h5,
.pump-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.pump-card p,
.pump-application-card p,
.pump-advantage-card p {
  color: #c7d6e8;
}

.pump-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.6rem;
}

.pump-application-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.pumps-cta-contact {
  display: grid;
  gap: 12px;
}

.pumps-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.pumps-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.pumps-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .pumps-page .section-pad {
    padding: 60px 0;
  }

  .pumps-showcase-card,
  .pumps-procurement-card,
  .pumps-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .pumps-page .section-pad {
    padding: 52px 0;
  }

  .pumps-hero-premium .hero-title {
    font-size: 2rem;
  }

  .pumps-showcase-card,
  .pumps-procurement-card,
  .pumps-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .pumps-showcase-grid {
    grid-template-columns: 1fr;
  }

  .pump-card,
  .pump-application-card,
  .pump-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .pumps-hero-points {
    gap: 10px;
  }

  .pumps-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   ELECTRICAL PANELS PAGE PREMIUM
   ========================================= */

.panels-page .section-pad {
  padding: 72px 0;
}

.panels-page .section-pad.pt-0 {
  padding-top: 0;
}

.panels-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.panels-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.panels-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.panels-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.panels-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.panels-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.panels-hero-points i {
  color: #f0d18e;
}

.panels-showcase-card,
.panels-procurement-card,
.panels-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.panels-showcase-card::before,
.panels-procurement-card::before,
.panels-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.panels-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.panels-showcase-card h4,
.panels-procurement-card h5 {
  margin-bottom: 12px;
}

.panels-showcase-card p,
.panels-procurement-card p {
  color: #c7d6e8;
}

.panels-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.panels-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.panels-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.panels-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.panel-card,
.panel-application-card,
.panel-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.panel-card:hover,
.panel-application-card:hover,
.panel-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.panel-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.panel-card h5,
.panel-application-card h5,
.panel-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.panel-card p,
.panel-application-card p,
.panel-advantage-card p {
  color: #c7d6e8;
}

.panel-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.6rem;
}

.panel-application-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.panels-cta-contact {
  display: grid;
  gap: 12px;
}

.panels-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.panels-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.panels-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .panels-page .section-pad {
    padding: 60px 0;
  }

  .panels-showcase-card,
  .panels-procurement-card,
  .panels-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .panels-page .section-pad {
    padding: 52px 0;
  }

  .panels-hero-premium .hero-title {
    font-size: 2rem;
  }

  .panels-showcase-card,
  .panels-procurement-card,
  .panels-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .panels-showcase-grid {
    grid-template-columns: 1fr;
  }

  .panel-card,
  .panel-application-card,
  .panel-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .panels-hero-points {
    gap: 10px;
  }

  .panels-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   HEAVY MACHINERY PAGE PREMIUM
   ========================================= */

.machinery-page .section-pad {
  padding: 72px 0;
}

.machinery-page .section-pad.pt-0 {
  padding-top: 0;
}

.machinery-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.machinery-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.machinery-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.machinery-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.machinery-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.machinery-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.machinery-hero-points i {
  color: #f0d18e;
}

.machinery-showcase-card,
.machinery-procurement-card,
.machinery-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.machinery-showcase-card::before,
.machinery-procurement-card::before,
.machinery-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.machinery-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.machinery-showcase-card h4,
.machinery-procurement-card h5 {
  margin-bottom: 12px;
}

.machinery-showcase-card p,
.machinery-procurement-card p {
  color: #c7d6e8;
}

.machinery-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.machinery-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.machinery-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.machinery-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.machinery-card,
.machinery-application-card,
.machinery-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.machinery-card:hover,
.machinery-application-card:hover,
.machinery-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.machinery-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.machinery-card h5,
.machinery-application-card h5,
.machinery-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.machinery-card p,
.machinery-application-card p,
.machinery-advantage-card p {
  color: #c7d6e8;
}

.machinery-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.6rem;
}

.machinery-application-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.machinery-cta-contact {
  display: grid;
  gap: 12px;
}

.machinery-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.machinery-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.machinery-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .machinery-page .section-pad {
    padding: 60px 0;
  }

  .machinery-showcase-card,
  .machinery-procurement-card,
  .machinery-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .machinery-page .section-pad {
    padding: 52px 0;
  }

  .machinery-hero-premium .hero-title {
    font-size: 2rem;
  }

  .machinery-showcase-card,
  .machinery-procurement-card,
  .machinery-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .machinery-showcase-grid {
    grid-template-columns: 1fr;
  }

  .machinery-card,
  .machinery-application-card,
  .machinery-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .machinery-hero-points {
    gap: 10px;
  }

  .machinery-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   INDUSTRIES PAGE PREMIUM
   ========================================= */

.industries-page .section-pad {
  padding: 72px 0;
}

.industries-page .section-pad.pt-0 {
  padding-top: 0;
}

.industries-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.industries-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.industries-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.industries-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.industries-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.industries-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.industries-hero-points i {
  color: #f0d18e;
}

.industries-showcase-card,
.industries-strategy-card,
.industries-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.industries-showcase-card::before,
.industries-strategy-card::before,
.industries-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.industries-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.industries-showcase-card h4,
.industries-strategy-card h5 {
  margin-bottom: 12px;
}

.industries-showcase-card p,
.industries-strategy-card p {
  color: #c7d6e8;
}

.industries-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.industries-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.industries-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.industries-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.industry-sector-card,
.industries-support-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.industry-sector-card:hover,
.industries-support-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.industry-sector-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.industry-sector-card h5,
.industries-support-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.industry-sector-card p,
.industries-support-card p {
  color: #c7d6e8;
}

.industries-support-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.6rem;
}

.industries-cta-contact {
  display: grid;
  gap: 12px;
}

.industries-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.industries-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.industries-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .industries-page .section-pad {
    padding: 60px 0;
  }

  .industries-showcase-card,
  .industries-strategy-card,
  .industries-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .industries-page .section-pad {
    padding: 52px 0;
  }

  .industries-hero-premium .hero-title {
    font-size: 2rem;
  }

  .industries-showcase-card,
  .industries-strategy-card,
  .industries-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .industries-showcase-grid {
    grid-template-columns: 1fr;
  }

  .industry-sector-card,
  .industries-support-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .industries-hero-points {
    gap: 10px;
  }

  .industries-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   PROJECTS PAGE PREMIUM
   ========================================= */

.projects-page .section-pad {
  padding: 72px 0;
}

.projects-page .section-pad.pt-0 {
  padding-top: 0;
}

.projects-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.projects-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.projects-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.projects-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.projects-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.projects-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.projects-hero-points i {
  color: #f0d18e;
}

.projects-showcase-card,
.projects-trust-card,
.projects-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.projects-showcase-card::before,
.projects-trust-card::before,
.projects-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.projects-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.projects-showcase-card h4,
.projects-trust-card h5 {
  margin-bottom: 12px;
}

.projects-showcase-card p,
.projects-trust-card p {
  color: #c7d6e8;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.projects-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.projects-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.projects-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.project-capability-card,
.project-type-card,
.project-case-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.project-capability-card:hover,
.project-type-card:hover,
.project-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.project-capability-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.project-capability-card h5,
.project-type-card h5,
.project-case-card h4 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.project-capability-card p,
.project-type-card p,
.project-case-card p {
  color: #c7d6e8;
}

.project-type-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.projects-cta-contact {
  display: grid;
  gap: 12px;
}

.projects-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.projects-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.projects-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .projects-page .section-pad {
    padding: 60px 0;
  }

  .projects-showcase-card,
  .projects-trust-card,
  .projects-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .projects-page .section-pad {
    padding: 52px 0;
  }

  .projects-hero-premium .hero-title {
    font-size: 2rem;
  }

  .projects-showcase-card,
  .projects-trust-card,
  .projects-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

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

  .project-capability-card,
  .project-type-card,
  .project-case-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .projects-hero-points {
    gap: 10px;
  }

  .projects-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   PARTNERS PAGE PREMIUM
   ========================================= */

.partners-page .section-pad {
  padding: 72px 0;
}

.partners-page .section-pad.pt-0 {
  padding-top: 0;
}

.partners-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.partners-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.partners-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.partners-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.partners-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.partners-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.partners-hero-points i {
  color: #f0d18e;
}

.partners-showcase-card,
.partners-philosophy-card,
.partners-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.partners-showcase-card::before,
.partners-philosophy-card::before,
.partners-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.partners-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.partners-showcase-card h4,
.partners-philosophy-card h5 {
  margin-bottom: 12px;
}

.partners-showcase-card p,
.partners-philosophy-card p {
  color: #c7d6e8;
}

.partners-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.partners-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.partners-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.partners-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.partner-card,
.partner-opportunity-card,
.partner-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.partner-card:hover,
.partner-opportunity-card:hover,
.partner-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.partner-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.partner-card h5,
.partner-opportunity-card h5,
.partner-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.partner-card p,
.partner-opportunity-card p,
.partner-advantage-card p {
  color: #c7d6e8;
}

.partner-opportunity-card i,
.partner-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.45rem;
}

.partners-cta-contact {
  display: grid;
  gap: 12px;
}

.partners-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.partners-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.partners-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .partners-page .section-pad {
    padding: 60px 0;
  }

  .partners-showcase-card,
  .partners-philosophy-card,
  .partners-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .partners-page .section-pad {
    padding: 52px 0;
  }

  .partners-hero-premium .hero-title {
    font-size: 2rem;
  }

  .partners-showcase-card,
  .partners-philosophy-card,
  .partners-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .partners-showcase-grid {
    grid-template-columns: 1fr;
  }

  .partner-card,
  .partner-opportunity-card,
  .partner-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .partners-hero-points {
    gap: 10px;
  }

  .partners-hero-points span {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   MANPOWER PAGE PREMIUM
   ========================================= */

.manpower-page .section-pad {
  padding: 72px 0;
}

.manpower-page .section-pad.pt-0 {
  padding-top: 0;
}

.manpower-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.manpower-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.manpower-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.manpower-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.manpower-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.manpower-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.manpower-hero-points i {
  color: #f0d18e;
}

.manpower-showcase-card,
.manpower-procurement-card,
.manpower-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.manpower-showcase-card::before,
.manpower-procurement-card::before,
.manpower-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.manpower-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.manpower-showcase-card h4,
.manpower-procurement-card h5 {
  margin-bottom: 12px;
}

.manpower-showcase-card p,
.manpower-procurement-card p {
  color: #c7d6e8;
}

.manpower-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.manpower-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.manpower-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.manpower-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.manpower-card,
.manpower-application-card,
.manpower-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.manpower-card:hover,
.manpower-application-card:hover,
.manpower-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.manpower-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.manpower-card h5,
.manpower-application-card h5,
.manpower-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.manpower-card p,
.manpower-application-card p,
.manpower-advantage-card p {
  color: #c7d6e8;
}

.manpower-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.45rem;
}

.manpower-application-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.manpower-cta-contact {
  display: grid;
  gap: 12px;
}

.manpower-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.manpower-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.manpower-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .manpower-page .section-pad {
    padding: 60px 0;
  }

  .manpower-showcase-card,
  .manpower-procurement-card,
  .manpower-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .manpower-page .section-pad {
    padding: 52px 0;
  }

  .manpower-hero-premium .hero-title {
    font-size: 2rem;
  }

  .manpower-showcase-card,
  .manpower-procurement-card,
  .manpower-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .manpower-showcase-grid {
    grid-template-columns: 1fr;
  }

  .manpower-card,
  .manpower-application-card,
  .manpower-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .manpower-hero-points {
    gap: 10px;
  }

  .manpower-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   BIM PAGE PREMIUM
   ========================================= */

.bim-page .section-pad {
  padding: 72px 0;
}

.bim-page .section-pad.pt-0 {
  padding-top: 0;
}

.bim-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.bim-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.bim-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.bim-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.bim-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.bim-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.bim-hero-points i {
  color: #f0d18e;
}

.bim-showcase-card,
.bim-procurement-card,
.bim-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.bim-showcase-card::before,
.bim-procurement-card::before,
.bim-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.bim-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.bim-showcase-card h4,
.bim-procurement-card h5 {
  margin-bottom: 12px;
}

.bim-showcase-card p,
.bim-procurement-card p {
  color: #c7d6e8;
}

.bim-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.bim-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.bim-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.bim-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.bim-card,
.bim-application-card,
.bim-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.bim-card:hover,
.bim-application-card:hover,
.bim-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.bim-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.bim-card h5,
.bim-application-card h5,
.bim-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.bim-card p,
.bim-application-card p,
.bim-advantage-card p {
  color: #c7d6e8;
}

.bim-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.45rem;
}

.bim-application-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.bim-cta-contact {
  display: grid;
  gap: 12px;
}

.bim-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.bim-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.bim-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .bim-page .section-pad {
    padding: 60px 0;
  }

  .bim-showcase-card,
  .bim-procurement-card,
  .bim-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .bim-page .section-pad {
    padding: 52px 0;
  }

  .bim-hero-premium .hero-title {
    font-size: 2rem;
  }

  .bim-showcase-card,
  .bim-procurement-card,
  .bim-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .bim-showcase-grid {
    grid-template-columns: 1fr;
  }

  .bim-card,
  .bim-application-card,
  .bim-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .bim-hero-points {
    gap: 10px;
  }

  .bim-hero-points span {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================
   IT SOLUTIONS PAGE PREMIUM
   ========================================= */

.it-page .section-pad {
  padding: 72px 0;
}

.it-page .section-pad.pt-0 {
  padding-top: 0;
}

.it-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 173, 95, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(95, 144, 255, 0.12), transparent 28%);
}

.it-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 40%, transparent 60%, rgba(255,255,255,0.015));
  pointer-events: none;
}

.it-hero-premium .hero-title {
  max-width: 980px;
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
  line-height: 1.05;
}

.it-hero-premium .hero-text {
  max-width: 880px;
  color: #c7d6e8;
  line-height: 1.9;
}

.it-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.it-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #e8f0fb;
  font-size: 0.92rem;
  font-weight: 600;
}

.it-hero-points i {
  color: #f0d18e;
}

.it-showcase-card,
.it-procurement-card,
.it-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.it-showcase-card::before,
.it-procurement-card::before,
.it-cta-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.it-showcase-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.45rem;
}

.it-showcase-card h4,
.it-procurement-card h5 {
  margin-bottom: 12px;
}

.it-showcase-card p,
.it-procurement-card p {
  color: #c7d6e8;
}

.it-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.it-showcase-grid > div {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
}

.it-showcase-grid strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.it-showcase-grid span {
  color: #aebfd6;
  font-size: 0.9rem;
}

.it-card,
.it-application-card,
.it-advantage-card {
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.05));
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.it-card:hover,
.it-application-card:hover,
.it-advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,173,95,0.3);
  box-shadow:
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
}

.it-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.22),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1.2rem;
}

.it-card h5,
.it-application-card h5,
.it-advantage-card h5 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.it-card p,
.it-application-card p,
.it-advantage-card p {
  color: #c7d6e8;
}

.it-advantage-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f0d18e;
  font-size: 1.45rem;
}

.it-application-card i {
  display: inline-block;
  margin-bottom: 14px;
  color: #f4dbab;
  font-size: 1.45rem;
}

.it-cta-contact {
  display: grid;
  gap: 12px;
}

.it-cta-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: #e7f0fc;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.it-cta-contact a:hover {
  transform: translateY(-3px);
  border-color: rgba(216,173,95,0.3);
  background: rgba(255,255,255,0.06);
}

.it-cta-contact i {
  color: #f0d18e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .it-page .section-pad {
    padding: 60px 0;
  }

  .it-showcase-card,
  .it-procurement-card,
  .it-cta-shell {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .it-page .section-pad {
    padding: 52px 0;
  }

  .it-hero-premium .hero-title {
    font-size: 2rem;
  }

  .it-showcase-card,
  .it-procurement-card,
  .it-cta-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .it-showcase-grid {
    grid-template-columns: 1fr;
  }

  .it-card,
  .it-application-card,
  .it-advantage-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .it-hero-points {
    gap: 10px;
  }

  .it-hero-points span {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   PREMIUM MEGA MENU / GLOBAL NAV
   ========================================= */

@media (max-width: 1199.98px) {
  .mega-dropdown {
    position: relative;
  }

  .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 10px;
    border-radius: 20px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mega-highlight {
    border-top: 0;
  }
}

/* =========================================
   PREMIUM MEGA MENU / GLOBAL NAV
   ========================================= */

@media (max-width: 1199.98px) {
  .mega-dropdown {
    position: relative;
  }

  .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 10px;
    border-radius: 20px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mega-highlight {
    border-top: 0;
  }
}
/* =========================================
   PREMIUM MEGA MENU / GLOBAL NAV
   ========================================= */

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50% !important;
  z-index: 1200;
  display: none;
  width: min(1180px, calc(100vw - 24px));
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12,23,48,0.98), rgba(7,17,31,0.98)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.06));
  box-shadow: 0 30px 70px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateX(-50%);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.15fr;
  gap: 0;
}

.mega-col,
.mega-highlight {
  padding: 28px 24px;
}

.mega-col {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.mega-col h6 {
  margin-bottom: 16px;
  color: #f0d18e;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-col a {
  display: block;
  padding: 10px 0;
  color: #dbe7f6;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.mega-col a:hover {
  transform: translateX(4px);
  color: #ffffff;
}

.mega-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top right, rgba(216,173,95,0.16), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  position: relative;
}

.mega-highlight .tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(216,173,95,0.16);
  border: 1px solid rgba(216,173,95,0.25);
  color: #f4dbab;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-highlight h5 {
  margin: 16px 0 12px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.45;
}

.mega-highlight p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 18px;
  color: #bfd0e5;
}

.mega-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1199.98px) {
  .mega-dropdown {
    position: relative;
  }

  .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 10px;
    border-radius: 20px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mega-highlight {
    border-top: 0;
  }
}

/* =========================================
   TOPBAR
   ========================================= */

@media (max-width: 767.98px) {
  .topbar-inner {
    justify-content: center;
    gap: 10px 14px;
  }

  .topbar-item {
    font-size: 0.82rem;
  }
}

/* =========================================
   PREMIUM MEGA MENU V2
   ========================================= */

.mega-dropdown {
  position: static;
}

.premium-mega-menu {
  left: 50% !important;
  transform: translateX(-50%) translateY(12px);
  width: min(1240px, calc(100vw - 28px));
  margin-top: 18px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  display: block;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.mega-dropdown:hover .premium-mega-menu,
.mega-dropdown .premium-mega-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.premium-mega-shell {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(216,173,95,0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(95,144,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(10,22,42,0.98), rgba(5,12,24,0.98));
  box-shadow:
    0 34px 80px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
}

.premium-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.15fr;
}

.premium-mega-col {
  padding: 30px 22px 26px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.premium-mega-head {
  margin-bottom: 16px;
}

.mega-mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(216,173,95,0.22);
  background: rgba(216,173,95,0.10);
  color: #f0d18e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-mega-head h6 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.premium-mega-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  border: 1px solid transparent;
}

.premium-mega-link + .premium-mega-link {
  margin-top: 6px;
}

.premium-mega-link i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.18),
    rgba(216,173,95,0.06)
  );
  color: #f4dbab;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.premium-mega-link strong {
  display: block;
  color: #edf3fd;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
}

.premium-mega-link span {
  display: block;
  margin-top: 3px;
  color: #9eb0ca;
  font-size: 0.82rem;
  line-height: 1.55;
}

.premium-mega-link:hover {
  transform: translateY(-2px);
  border-color: rgba(216,173,95,0.16);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.premium-mega-link:hover strong {
  color: #ffffff;
}

.premium-mega-feature {
  position: relative;
  padding: 30px 26px 26px;
  background:
    radial-gradient(circle at top right, rgba(216,173,95,0.20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.premium-mega-feature::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.premium-feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(216,173,95,0.14);
  border: 1px solid rgba(216,173,95,0.24);
  color: #f4dbab;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.premium-mega-feature h5 {
  margin: 18px 0 12px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.5;
  font-weight: 700;
}

.premium-mega-feature p {
  margin: 0 0 18px;
  color: #bfd0e5;
  line-height: 1.8;
  font-size: 0.92rem;
}

.premium-feature-points {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.premium-feature-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8f0fb;
  font-size: 0.9rem;
}

.premium-feature-points i {
  color: #f0d18e;
}

.premium-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #f0d18e !important;
}

@media (max-width: 1199.98px) {
  .premium-mega-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .premium-mega-menu.show {
    display: block;
  }

  .premium-mega-grid {
    grid-template-columns: 1fr;
  }

  .premium-mega-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 22px 18px;
  }

  .premium-mega-feature {
    padding: 22px 18px;
  }

  .premium-mega-link {
    padding: 12px 10px;
  }
}

/* =========================================
   PREMIUM NAVBAR SHELL V2
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  overflow: visible;
  transition: padding 0.3s ease,
    background 0.3s ease;
  padding: 14px 0 0;
}

.premium-navbar {
  padding: 0;
  background: transparent;
}

.premium-header-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 0 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(10, 22, 42, 0.78), rgba(7, 17, 31, 0.76)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.05));
  box-shadow:
    0 18px 45px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: visible;
}

.premium-header-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(216,173,95,0.14),
    rgba(95,144,255,0.10)
  );
  /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.premium-header-shell::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0),
    rgba(95,144,255,0.45),
    rgba(95,144,255,0)
  );
  opacity: 0.9;
  pointer-events: none;
}

.navbar-brand.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 18px;
  text-decoration: none;
}

.brand-logo {
  width: 110;
  height: 110px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.20));
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}

.brand-copy strong {
  display: block;
  font-size: 1.5rem !important;
  font-weight: 800;
  line-height: 1.15;
  color: #BCBF0D;
  margin: 0;
  letter-spacing: 0.03em;
}

.brand-copy small {
  display: block;
  margin-top: 3px;
  color: #BCBF0D;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-left: 4px;
}

.nav-center {
  align-items: center;
  gap: 2px;
}

.navbar .nav-link {
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px !important;
  border-radius: 14px;
  color: #deebfa !important;
  font-size: 0.95rem;
  transition: color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.navbar .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.045);
  transform: translateY(-1px);
}

.navbar .nav-link.active {
  color: #f6ddb0 !important;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.14),
    rgba(216,173,95,0.05)
  );
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.navbar .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

.premium-nav-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.premium-btn i {
  font-size: 0.95rem;
}

.premium-btn:hover {
  transform: translateY(-2px);
}

.premium-btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #eef4fd;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.premium-btn-outline:hover {
  border-color: rgba(216,173,95,0.26);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    0 0 0 1px rgba(216,173,95,0.05);
}

.premium-btn-gold {
  border: 1px solid rgba(216,173,95,0.30);
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #09111f;
  box-shadow:
    0 12px 28px rgba(216,173,95,0.20),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.premium-btn-gold:hover {
  color: #09111f;
  box-shadow:
    0 16px 34px rgba(216,173,95,0.28),
    0 0 0 1px rgba(255,255,255,0.08);
}

.site-header.is-sticky {
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  padding-top: 8px;
}

.site-header.is-sticky .premium-header-shell {
  min-height: 76px;
  background:
    linear-gradient(180deg, rgba(8,18,34,0.90), rgba(5,12,24,0.88)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.05));
  box-shadow:
    0 18px 50px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.navbar-toggler {
  padding: 8px 12px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(216,173,95,0.18);
}

@media (max-width: 1199.98px) {
  .site-header {
    padding-top: 10px;
  }

  .premium-header-shell {
    min-height: 74px;
    padding: 12px 16px;
    border-radius: 20px;
  }

  .premium-header-shell::after {
    left: 20px;
    right: 20px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
  }

  .nav-center {
    gap: 6px;
  }

  .navbar .nav-link {
    min-height: 42px;
    width: 100%;
  }

  .premium-nav-actions {
    margin-left: 0;
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .premium-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .premium-header-shell {
    padding: 12px 14px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.64rem;
  }
}

.header-shell .navbar-collapse {
  position: relative;
  z-index: 2;
}

.topbar {
  background: linear-gradient(180deg, rgba(7,17,31,0.88), rgba(7,17,31,0.78));
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  position: relative;
  z-index: 1035;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  min-height: 42px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bfd0e5;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.topbar-item i {
  color: #f0d18e;
  font-size: 0.9rem;
}

.topbar-item a,
.topbar-item span {
  color: #bfd0e5;
  text-decoration: none;
  transition: color 0.25s ease;
}

.topbar-item a:hover {
  color: #ffffff;
}

/* =========================================
   FIX: SOLUTIONS MENU SUB-MENU VISIBILITY
   ========================================= */

.navbar,
.navbar .container,
.navbar-collapse,
.navbar-nav,
.nav-item,
.dropdown,
.mega-dropdown {
  overflow: visible !important;
}

.mega-dropdown {
  position: static !important;
}

.mega-dropdown .dropdown-menu,
.mega-dropdown .mega-menu,
.mega-dropdown .premium-mega-menu {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px);
  z-index: 9999 !important;

  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  width: min(1240px, calc(100vw - 24px));
  margin: 0;
  padding: 0;
  border-radius: 28px;

  background:
    linear-gradient(180deg, rgba(10,22,42,0.98), rgba(5,12,24,0.98));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.42),
    0 8px 24px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.mega-dropdown:hover .dropdown-menu,
.mega-dropdown:hover .mega-menu,
.mega-dropdown:hover .premium-mega-menu,
.mega-dropdown .dropdown-menu.show,
.mega-dropdown .mega-menu.show,
.mega-dropdown .premium-mega-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* inner links more visible */
.mega-col a,
.premium-mega-link,
.dropdown-menu a {
  color: #eaf2ff !important;
}

.mega-col a:hover,
.premium-mega-link:hover,
.dropdown-menu a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.05);
}

/* prevent submenu clipping under sticky header */
#siteHeader,
.navbar {
  z-index: 1030;
}

.mega-dropdown .dropdown-menu,
.mega-dropdown .mega-menu,
.mega-dropdown .premium-mega-menu {
  z-index: 1080 !important;
}

/* mobile behavior */
@media (max-width: 1199.98px) {
  .mega-dropdown .dropdown-menu,
  .mega-dropdown .mega-menu,
  .mega-dropdown .premium-mega-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important;
    border-radius: 20px;
  }

  .mega-dropdown .dropdown-menu.show,
  .mega-dropdown .mega-menu.show,
  .mega-dropdown .premium-mega-menu.show {
    display: block !important;
  }
}

/* SOLUTIONS MENU FINAL FIX */

.site-header,
.navbar,
.navbar .container,
.navbar-collapse,
.navbar-nav,
.nav-item,
.mega-dropdown {
  overflow: visible !important;
}

.mega-dropdown {
  position: static !important;
}

@media (min-width: 1200px) {
  .mega-dropdown .mega-menu,
  .mega-dropdown .premium-mega-menu,
  .mega-dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1180px, calc(100vw - 32px)) !important;
    margin-top: 14px !important;
    z-index: 99999 !important;

    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    overflow: visible !important;
  }

  .mega-dropdown.show .mega-menu,
  .mega-dropdown.show .premium-mega-menu,
  .mega-dropdown.show .dropdown-menu,
  .mega-dropdown .mega-menu.show,
  .mega-dropdown .premium-mega-menu.show,
  .mega-dropdown .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 1199.98px) {
  .mega-dropdown .mega-menu,
  .mega-dropdown .premium-mega-menu,
  .mega-dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    margin-top: 10px !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mega-dropdown .mega-menu.show,
  .mega-dropdown .premium-mega-menu.show,
  .mega-dropdown .dropdown-menu.show {
    display: block !important;
  }
}
/* =========================================
   FINAL MEGA MENU OVERRIDE - CLEAN FIX
   ========================================= */

.site-header,
.navbar,
.navbar .container,
.navbar-collapse,
.navbar-nav,
.navbar-nav .nav-item,
.nav-center,
.dropdown,
.mega-dropdown {
  overflow: visible !important;
}

.mega-dropdown {
  position: static !important;
}

.mega-dropdown > .nav-link,
.mega-dropdown > .dropdown-toggle {
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .mega-dropdown .dropdown-menu,
  .mega-dropdown .mega-menu,
  .mega-dropdown .premium-mega-menu,
  .mega-dropdown .mega-menu-v3 {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(12px) !important;
    width: min(1240px, calc(100vw - 32px)) !important;
    max-width: min(1240px, calc(100vw - 32px)) !important;
    margin: 0 !important;
    z-index: 99999 !important;

    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    overflow: visible !important;
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;

    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
  }

  .mega-dropdown:hover > .dropdown-menu,
  .mega-dropdown:hover > .mega-menu,
  .mega-dropdown:hover > .premium-mega-menu,
  .mega-dropdown:hover > .mega-menu-v3,
  .mega-dropdown.show > .dropdown-menu,
  .mega-dropdown.show > .mega-menu,
  .mega-dropdown.show > .premium-mega-menu,
  .mega-dropdown.show > .mega-menu-v3,
  .mega-dropdown > .dropdown-menu.show,
  .mega-dropdown > .mega-menu.show,
  .mega-dropdown > .premium-mega-menu.show,
  .mega-dropdown > .mega-menu-v3.show,
  .mega-dropdown:focus-within > .dropdown-menu,
  .mega-dropdown:focus-within > .mega-menu,
  .mega-dropdown:focus-within > .premium-mega-menu,
  .mega-dropdown:focus-within > .mega-menu-v3 {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  .mega-dropdown > .dropdown-menu::before,
  .mega-dropdown > .mega-menu::before,
  .mega-dropdown > .premium-mega-menu::before,
  .mega-dropdown > .mega-menu-v3::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
  }
}

@media (max-width: 1199.98px) {
  .mega-dropdown .dropdown-menu,
  .mega-dropdown .mega-menu,
  .mega-dropdown .premium-mega-menu,
  .mega-dropdown .mega-menu-v3 {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    z-index: auto !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important;
    overflow: visible !important;
  }

  .mega-dropdown.show > .dropdown-menu,
  .mega-dropdown.show > .mega-menu,
  .mega-dropdown.show > .premium-mega-menu,
  .mega-dropdown.show > .mega-menu-v3,
  .mega-dropdown > .dropdown-menu.show,
  .mega-dropdown > .mega-menu.show,
  .mega-dropdown > .premium-mega-menu.show,
  .mega-dropdown > .mega-menu-v3.show {
    display: block !important;
  }
}

.mega-dropdown .mega-col a,
.mega-dropdown .premium-mega-link,
.mega-dropdown .mega-v3-link,
.mega-dropdown .dropdown-menu a {
  color: #eaf2ff !important;
}

.mega-dropdown .mega-col a:hover,
.mega-dropdown .premium-mega-link:hover,
.mega-dropdown .mega-v3-link:hover,
.mega-dropdown .dropdown-menu a:hover {
  color: #ffffff !important;
}


/* =========================================
   FINAL MEGA MENU OVERRIDE - 2026 CLEAN FIX
   ========================================= */

.site-header,
.site-header .navbar,
.site-header .navbar .container,
.site-header .navbar .container-fluid,
.site-header .navbar-collapse,
.site-header .navbar-nav,
.site-header .nav-center,
.site-header .nav-item,
.site-header .dropdown,
.site-header .mega-dropdown {
  overflow: visible !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1400 !important;
}

.site-header .navbar {
  position: relative;
  z-index: 1401;
}

.site-header .mega-dropdown {
  position: static !important;
}

.site-header .mega-dropdown > .nav-link,
.site-header .mega-dropdown > .dropdown-toggle {
  position: relative;
  z-index: 2;
}

.site-header .mega-dropdown > .dropdown-menu,
.site-header .mega-dropdown > .mega-menu,
.site-header .mega-dropdown > .premium-mega-menu,
.site-header .mega-dropdown > .mega-menu-v3 {
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .site-header .mega-dropdown > .dropdown-menu,
  .site-header .mega-dropdown > .mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu,
  .site-header .mega-dropdown > .mega-menu-v3 {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
    width: min(1240px, calc(100vw - 32px)) !important;
    max-width: min(1240px, calc(100vw - 32px)) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    z-index: 2000 !important;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
  }

  .site-header .mega-dropdown:hover > .dropdown-menu,
  .site-header .mega-dropdown:hover > .mega-menu,
  .site-header .mega-dropdown:hover > .premium-mega-menu,
  .site-header .mega-dropdown:hover > .mega-menu-v3,
  .site-header .mega-dropdown.show > .dropdown-menu,
  .site-header .mega-dropdown.show > .mega-menu,
  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown.show > .mega-menu-v3,
  .site-header .mega-dropdown > .dropdown-menu.show,
  .site-header .mega-dropdown > .mega-menu.show,
  .site-header .mega-dropdown > .premium-mega-menu.show,
  .site-header .mega-dropdown > .mega-menu-v3.show,
  .site-header .mega-dropdown:focus-within > .dropdown-menu,
  .site-header .mega-dropdown:focus-within > .mega-menu,
  .site-header .mega-dropdown:focus-within > .premium-mega-menu,
  .site-header .mega-dropdown:focus-within > .mega-menu-v3 {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  .site-header .mega-dropdown > .dropdown-menu::before,
  .site-header .mega-dropdown > .mega-menu::before,
  .site-header .mega-dropdown > .premium-mega-menu::before,
  .site-header .mega-dropdown > .mega-menu-v3::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
  }
}

@media (max-width: 1199.98px) {
  .site-header .mega-dropdown > .dropdown-menu,
  .site-header .mega-dropdown > .mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu,
  .site-header .mega-dropdown > .mega-menu-v3 {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    padding: 0 !important;
    z-index: auto !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }

  .site-header .mega-dropdown.show > .dropdown-menu,
  .site-header .mega-dropdown.show > .mega-menu,
  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown.show > .mega-menu-v3,
  .site-header .mega-dropdown > .dropdown-menu.show,
  .site-header .mega-dropdown > .mega-menu.show,
  .site-header .mega-dropdown > .premium-mega-menu.show,
  .site-header .mega-dropdown > .mega-menu-v3.show {
    display: block !important;
  }
}

.site-header .mega-dropdown .mega-col a,
.site-header .mega-dropdown .premium-mega-link,
.site-header .mega-dropdown .mega-v3-link,
.site-header .mega-dropdown .dropdown-menu a {
  color: #eaf2ff !important;
}

.site-header .mega-dropdown .mega-col a:hover,
.site-header .mega-dropdown .premium-mega-link:hover,
.site-header .mega-dropdown .mega-v3-link:hover,
.site-header .mega-dropdown .dropdown-menu a:hover {
  color: #ffffff !important;
}
/* =========================================
   MEGA MENU CENTER ALIGN FIX
   ========================================= */

.mega-dropdown {
  position: static !important; /* allow full width positioning */
}

.mega-dropdown .dropdown-menu,
.mega-dropdown .premium-mega-menu,
.mega-dropdown .mega-menu,
.mega-dropdown .mega-menu-v3 {

  position: absolute !important;

  top: calc(100% + 12px) !important;

  left: 50% !important;
  right: auto !important;

  transform: translateX(-50%) !important;

  width: min(1200px, calc(100vw - 40px)) !important;

  margin: 0 auto !important;

  z-index: 9999 !important;
}

/* ensure navbar allows dropdown overflow */

.navbar,
.navbar .container,
.navbar-collapse,
.navbar-nav {
  overflow: visible !important;
}

/* =========================================
   FINAL FIX: CENTERED MEGA MENU V3
   ========================================= */

@media (min-width: 1200px) {
  .mega-dropdown {
    position: static !important;
  }

  .mega-dropdown > .mega-menu-v3 {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;

    width: min(1120px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 0 !important;

    z-index: 99999 !important;
    overflow: hidden !important;
  }

  .mega-dropdown:hover > .mega-menu-v3,
  .mega-dropdown.show > .mega-menu-v3,
  .mega-dropdown > .mega-menu-v3.show {
    transform: translateX(-50%) translateY(0) !important;
  }
}

/* make the inside layout fit medium desktop screens better */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .mega-v3-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .mega-v3-feature {
    grid-column: 1 / -1;
  }
}

/* keep full premium layout only on very wide screens */
@media (min-width: 1400px) {
  .mega-v3-grid {
    grid-template-columns: 1fr 1fr 1fr 1.15fr !important;
  }
}
/* =========================================
   FINAL VIEWPORT SAFE FIX — PREMIUM MEGA MENU
   keeps current content and visual style
   ========================================= */

.site-header,
.site-header .navbar,
.site-header .container-fluid,
.site-header .header-shell,
.site-header .navbar-collapse,
.site-header .navbar-nav,
.site-header .nav-center,
.site-header .nav-item,
.site-header .dropdown,
.site-header .mega-dropdown {
  overflow: visible !important;
}

.site-header .mega-dropdown {
  position: static !important;
}

.site-header .mega-dropdown > .premium-mega-menu {
  box-sizing: border-box;
}

.site-header .premium-mega-grid {
  align-items: stretch;
}

.site-header .premium-mega-col,
.site-header .premium-mega-feature,
.site-header .premium-mega-link,
.site-header .premium-mega-link > div {
  min-width: 0;
}

@media (min-width: 1200px) {
  .site-header .mega-dropdown > .premium-mega-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
    width: min(1100px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 99999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: visible !important;
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }

  .site-header .mega-dropdown:hover > .premium-mega-menu,
  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu.show,
  .site-header .mega-dropdown:focus-within > .premium-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1499.98px) {
  .site-header .premium-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .site-header .premium-mega-col {
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  .site-header .premium-mega-col:nth-child(2n) {
    border-right: 0;
  }

  .site-header .premium-mega-feature {
    grid-column: 1 / -1 !important;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
}

@media (min-width: 1500px) {
  .site-header .mega-dropdown > .premium-mega-menu {
    width: min(1240px, calc(100vw - 32px)) !important;
    max-width: min(1240px, calc(100vw - 32px)) !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr 1fr 1.15fr !important;
  }

  .site-header .premium-mega-feature {
    grid-column: auto !important;
    border-top: 0;
  }
}

@media (max-width: 1199.98px) {
  .site-header .mega-dropdown > .premium-mega-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: auto !important;
  }

  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu.show {
    display: block !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr !important;
  }

  .site-header .premium-mega-col {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .site-header .premium-mega-feature {
    grid-column: auto !important;
  }
}

/* =========================================
   MEGA MENU ALIGN FROM LEFT OF SOLUTIONS
   ========================================= */

@media (min-width: 1200px) {
  .mega-dropdown {
    position: relative !important;
  }

  .mega-dropdown > .dropdown-menu,
  .mega-dropdown > .premium-mega-menu,
  .mega-dropdown > .mega-menu,
  .mega-dropdown > .mega-menu-v3 {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: auto !important;
    transform: translateX(0) translateY(10px) !important;

    width: min(1180px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 0 !important;
    z-index: 99999 !important;
  }

  .mega-dropdown:hover > .dropdown-menu,
  .mega-dropdown:hover > .premium-mega-menu,
  .mega-dropdown:hover > .mega-menu,
  .mega-dropdown:hover > .mega-menu-v3,
  .mega-dropdown.show > .dropdown-menu,
  .mega-dropdown.show > .premium-mega-menu,
  .mega-dropdown.show > .mega-menu,
  .mega-dropdown.show > .mega-menu-v3,
  .mega-dropdown > .dropdown-menu.show,
  .mega-dropdown > .premium-mega-menu.show,
  .mega-dropdown > .mega-menu.show,
  .mega-dropdown > .mega-menu-v3.show {
    transform: translateX(0) translateY(0) !important;
  }
}

/* safety: prevent clipping */
.navbar,
.navbar .container,
.navbar-collapse,
.navbar-nav {
  overflow: visible !important;
}

/* =========================================
   FIX: DESKTOP NAVBAR FIT INSIDE VIEWPORT
   ========================================= */

@media (min-width: 1200px) and (max-width: 1499.98px) {
  .navbar .container.header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    column-gap: 10px !important;
  }

  .brand {
    min-width: 180px !important;
    gap: 10px !important;
    margin-right: 0 !important;
  }

  .brand-logo {
    width: 72px !important;
    height: 72px !important;
  }

  .brand-copy strong {
    font-size: 0.88rem !important;
  }

  .brand-copy small {
    font-size: 0.50rem !important;
    letter-spacing: 0.10em !important;
  }

  .navbar-collapse {
    min-width: 0 !important;
  }

  .navbar-nav,
  .nav-center {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    min-width: 0 !important;
  }

  .navbar-nav .nav-item {
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }

  .nav-link {
    min-height: 42px !important;
    padding: 10px 9px !important;
    font-size: 0.88rem !important;
    white-space: nowrap !important;
  }

  .nav-actions {
    margin-left: 8px !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  .nav-actions .btn {
    min-height: 42px !important;
    padding: 10px 12px !important;
    font-size: 0.84rem !important;
    white-space: nowrap !important;
  }
}

/* slightly tighter for 1200–1299 screens */
@media (min-width: 1200px) and (max-width: 1299.98px) {
  .brand {
    min-width: 160px !important;
  }

  .brand-logo {
    width: 64px !important;
    height: 64px !important;
  }

  .brand-copy {
    display: none !important;
  }

  .nav-link {
    padding: 10px 7px !important;
    font-size: 0.84rem !important;
  }

  .nav-actions .btn {
    padding: 9px 10px !important;
    font-size: 0.80rem !important;
  }
}

/* =========================================
   NAVBAR COMPACT FIX (KEEP LOGO 110x110)
   ========================================= */

.brand-logo{
  width:110px !important;
  height:110px !important;
}

/* reduce space between menu items */
.navbar-nav,
.nav-center{
  gap:2px !important;
}

/* reduce padding around links */
.navbar-nav .nav-link{
  font-size:0.88rem !important;
  padding:10px 10px !important;
  white-space:nowrap;
}

/* tighten nav item spacing */
.navbar-nav .nav-item{
  margin:0 2px !important;
}

/* reduce space between navbar sections */
.navbar .container.header-shell{
  column-gap:8px !important;
}

/* slightly reduce button size on right */
.nav-actions .btn{
  padding:9px 12px !important;
  font-size:0.85rem !important;
}

/* prevent wrapping */
.navbar-nav{
  flex-wrap:nowrap !important;
}

/* =========================================
   EXTRA NAVBAR COMPACT TUNING
   ========================================= */

/* reduce menu text slightly more */
.navbar-nav .nav-link{
  font-size:0.82rem !important;
  padding:9px 9px !important;
  letter-spacing:0.02em;
}

/* tighten spacing between items */
.navbar-nav .nav-item{
  margin:0 1px !important;
}

/* keep items on one line */
.navbar-nav{
  gap:1px !important;
  flex-wrap:nowrap !important;
}

/* reduce dropdown arrow spacing */
.navbar-nav .dropdown-toggle::after{
  margin-left:4px !important;
}

/* =========================================
   UNIFORM PREMIUM SOLUTIONS MEGA MENU
   ========================================= */

.site-header .mega-dropdown > .premium-mega-menu {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(10, 22, 42, 0.98), rgba(6, 14, 28, 0.98)) !important;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.38),
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header .premium-mega-shell {
  padding: 18px !important;
}

.site-header .premium-mega-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1.1fr !important;
  gap: 0 !important;
}

.site-header .premium-mega-col,
.site-header .premium-mega-feature {
  padding: 24px 22px !important;
}

.site-header .premium-mega-col {
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.site-header .premium-mega-col:last-of-type {
  border-right: 0 !important;
}

.site-header .premium-mega-head {
  margin-bottom: 16px !important;
}

.site-header .premium-mega-head h6 {
  margin: 8px 0 0 !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.site-header .mega-mini-tag {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(216, 173, 95, 0.28) !important;
  background: rgba(216, 173, 95, 0.12) !important;
  color: #f0d18e !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.site-header .premium-mega-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 14px 14px !important;
  border-radius: 18px !important;
  color: #e7effa !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease !important;
}

.site-header .premium-mega-link i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.10), rgba(216,173,95,0.10)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: #f0d18e !important;
  font-size: 1.02rem !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.site-header .premium-mega-link strong {
  display: block !important;
  margin-bottom: 4px !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.site-header .premium-mega-link span {
  display: block !important;
  color: #b8c8de !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
}

.site-header .premium-mega-link:hover,
.site-header .premium-mega-link:focus-visible {
  transform: translateY(-2px) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.06), rgba(216,173,95,0.08)) !important;
  border-color: rgba(216,173,95,0.18) !important;
  box-shadow:
    0 14px 28px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.site-header .premium-mega-link:hover i,
.site-header .premium-mega-link:focus-visible i {
  background:
    linear-gradient(135deg, rgba(216,173,95,0.18), rgba(240,209,142,0.10)) !important;
  border-color: rgba(216,173,95,0.22) !important;
  color: #ffd889 !important;
}

.site-header .premium-mega-feature {
  background:
    radial-gradient(circle at top right, rgba(216,173,95,0.14), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)) !important;
}

.site-header .premium-mega-feature h5 {
  margin: 16px 0 12px !important;
  color: #ffffff !important;
  font-size: 1.18rem !important;
  line-height: 1.45 !important;
}

.site-header .premium-mega-feature p {
  color: #c4d2e4 !important;
  font-size: 0.92rem !important;
  line-height: 1.75 !important;
}

.site-header .premium-feature-points {
  display: grid !important;
  gap: 10px !important;
  margin: 18px 0 20px !important;
}

.site-header .premium-feature-points span {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: #e5eef9 !important;
  font-size: 0.86rem !important;
}

.site-header .premium-feature-points i {
  color: #f0d18e !important;
  margin-top: 2px !important;
}

.site-header .premium-feature-actions {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .site-header .premium-mega-feature {
    grid-column: 1 / -1 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
  }
}

@media (max-width: 1199.98px) {
  .site-header .premium-mega-grid {
    grid-template-columns: 1fr !important;
  }

  .site-header .premium-mega-col {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }

  .site-header .premium-mega-feature {
    border-top: 0 !important;
  }
}

/* ABOUT / HOME UNIFORM PREMIUM MEGA MENU VIEWPORT FIX */
@media (min-width: 1200px) {
  .site-header .mega-dropdown {
    position: relative !important;
  }

  .site-header .mega-dropdown > .premium-mega-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: auto !important;
    transform: translateY(10px) !important;

    width: min(1120px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 0 !important;

    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 99999 !important;
    overflow: hidden !important;
  }

  .site-header .mega-dropdown:hover > .premium-mega-menu,
  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr 1fr 1.05fr !important;
  }

  .site-header .premium-mega-link strong {
    font-size: 0.92rem !important;
  }

  .site-header .premium-mega-link span {
    font-size: 0.79rem !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header .mega-dropdown > .premium-mega-menu {
    width: min(1040px, calc(100vw - 32px)) !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-header .premium-mega-feature {
    grid-column: 1 / -1 !important;
  }
}
/* =========================================
   ABOUT PAGE: KEEP SOLUTIONS MEGA MENU INSIDE VIEWPORT
   ========================================= */

@media (min-width: 1200px) {
  .site-header .mega-dropdown {
    position: relative !important;
  }

  .site-header .mega-dropdown > .premium-mega-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;

    /* open from the Solutions item, but keep it inside screen */
    left: 0 !important;
    right: auto !important;
    transform: translateY(10px) !important;

    width: min(1080px, calc(100vw - 40px)) !important;
    max-width: calc(100vw - 40px) !important;
    margin: 0 !important;

    z-index: 99999 !important;
    overflow: hidden !important;
  }

  .site-header .mega-dropdown:hover > .premium-mega-menu,
  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu.show {
    transform: translateY(0) !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr 1fr 1.05fr !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header .mega-dropdown > .premium-mega-menu {
    width: min(980px, calc(100vw - 32px)) !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-header .premium-mega-feature {
    grid-column: 1 / -1 !important;
  }

  .site-header .premium-mega-link strong {
    font-size: 0.9rem !important;
  }

  .site-header .premium-mega-link span {
    font-size: 0.78rem !important;
  }
}

/* =========================================
   FINAL FIX: ABOUT PAGE SOLUTIONS MEGA MENU
   keep inside viewport
   ========================================= */

@media (min-width: 1200px) {
  /* header and navbar must allow dropdown overflow */
  .site-header,
  .site-header .navbar,
  .site-header .header-shell,
  .site-header .navbar-collapse,
  .site-header .nav-center,
  .site-header .mega-dropdown {
    overflow: visible !important;
  }

  /* make the navbar the positioning reference */
  .site-header .navbar {
    position: relative !important;
  }

  /* cancel old desktop static behavior */
  .site-header .mega-dropdown {
    position: static !important;
  }

  /* authoritative premium mega menu positioning */
  .site-header .mega-dropdown > .premium-mega-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;

    /* center against the navbar, not the tiny nav item */
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;

    width: min(1100px, calc(100vw - 40px)) !important;
    max-width: calc(100vw - 40px) !important;
    margin: 0 !important;

    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    z-index: 99999 !important;
    overflow: hidden !important;
  }

  .site-header .mega-dropdown:hover > .premium-mega-menu,
  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  /* slightly tighter inner layout for medium desktop */
  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr 1fr 1.02fr !important;
  }

  .site-header .premium-mega-link strong {
    font-size: 0.91rem !important;
  }

  .site-header .premium-mega-link span {
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header .mega-dropdown > .premium-mega-menu {
    width: min(980px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-header .premium-mega-feature {
    grid-column: 1 / -1 !important;
  }
}

/* =========================================
   INDUSTRIES PAGE - FINAL SOLUTIONS MEGA MENU FIX
   ========================================= */

@media (min-width: 1200px) {
  .site-header,
  .site-header .navbar,
  .site-header .header-shell,
  .site-header .navbar-collapse,
  .site-header .nav-center,
  .site-header .mega-dropdown {
    overflow: visible !important;
  }

  /* use navbar as stable reference */
  .site-header .navbar {
    position: relative !important;
  }

  /* cancel old conflicting left/right anchor rules */
  .site-header .mega-dropdown {
    position: static !important;
  }

  /* authoritative positioning for premium mega menu */
  .site-header .mega-dropdown > .premium-mega-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;

    width: min(1060px, calc(100vw - 36px)) !important;
    max-width: calc(100vw - 36px) !important;
    margin: 0 !important;

    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    z-index: 99999 !important;
    overflow: hidden !important;
  }

  .site-header .mega-dropdown:hover > .premium-mega-menu,
  .site-header .mega-dropdown.show > .premium-mega-menu,
  .site-header .mega-dropdown > .premium-mega-menu.show,
  .site-header .mega-dropdown:focus-within > .premium-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  /* slightly tighter inner layout */
  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr 1fr 1.02fr !important;
    gap: 0 !important;
  }

  .site-header .premium-mega-col h6 {
    font-size: 0.88rem !important;
  }

  .site-header .premium-mega-col a {
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
  }

  .site-header .premium-mega-feature h5 {
    font-size: 1.08rem !important;
    line-height: 1.45 !important;
  }

  .site-header .premium-mega-feature p {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header .mega-dropdown > .premium-mega-menu {
    width: min(960px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-header .premium-mega-feature {
    grid-column: 1 / -1 !important;
  }
}


/* =========================================
   STICKY + TRANSPARENT HEADER PATCH
   ========================================= */
:root {
  --topbar-height: 0px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1405 !important;
  background: linear-gradient(180deg, rgba(7,17,31,0.34), rgba(7,17,31,0.18));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header {
  position: sticky;
  top: var(--topbar-height, 0px);
  z-index: 1400 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 8px;
}

.premium-navbar {
  background: transparent !important;
}

.premium-header-shell {
  background:
    linear-gradient(180deg, rgba(10, 22, 42, 0.34), rgba(7, 17, 31, 0.20)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.04));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-sticky {
  background: transparent !important;
  box-shadow: none !important;
}

.site-header.is-sticky .premium-header-shell,
.site-header.scrolled .premium-header-shell {
  background:
    linear-gradient(180deg, rgba(8,18,34,0.56), rgba(5,12,24,0.34)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.05));
  box-shadow:
    0 18px 48px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

body .hero-section:first-of-type,
body .ultra-hero-section:first-of-type {
  margin-top: calc(-1 * (var(--topbar-height, 0px) + 96px));
  padding-top: calc(145px + var(--topbar-height, 0px) + 96px);
}

@media (max-width: 1199.98px) {
  .site-header {
    padding-top: 6px;
  }

  .premium-header-shell {
    background:
      linear-gradient(180deg, rgba(10, 22, 42, 0.42), rgba(7, 17, 31, 0.28)),
      linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.04));
  }

  body .hero-section:first-of-type,
  body .ultra-hero-section:first-of-type {
    margin-top: calc(-1 * (var(--topbar-height, 0px) + 84px));
    padding-top: calc(145px + var(--topbar-height, 0px) + 84px);
  }
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9998;
  background: transparent;
  backdrop-filter: blur(10px);
}

/* optional scroll effect */
.site-header.scrolled {
  background: rgba(10, 20, 40, 0.85);
}

/* =========================================================
   FINAL FIX: TOPBAR + HEADER TRANSPARENT AND STICKY/FIXED
   ========================================================= */

:root {
  --topbar-height: 42px;
}

/* do not let any parent block sticky/fixed behavior */
html,
body {
  overflow-x: hidden;
}

body {
  padding-top: 0 !important;
}

/* TOPBAR */
.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 2000 !important;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.55), rgba(7, 17, 31, 0.22)) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* HEADER */
.site-header {
  position: fixed !important;
  top: var(--topbar-height) !important;
  left: 0;
  width: 100%;
  z-index: 1990 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 8px !important;
  overflow: visible !important;
}

/* keep navbar shell transparent premium */
.site-header .premium-navbar,
.site-header .navbar {
  background: transparent !important;
}

.premium-header-shell,
.header-shell {
  background:
    linear-gradient(180deg, rgba(10, 22, 42, 0.34), rgba(7, 17, 31, 0.18)),
    linear-gradient(135deg, rgba(95, 144, 255, 0.04), rgba(216, 173, 95, 0.04)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* slightly stronger while scrolling */
.site-header.scrolled .premium-header-shell,
.site-header.scrolled .header-shell {
  background:
    linear-gradient(180deg, rgba(10, 22, 42, 0.46), rgba(7, 17, 31, 0.28)),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.05)) !important;
}

/* HERO SHOULD START BEHIND TOPBAR + HEADER */
.hero-carousel-section,
.hero-section,
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  margin-top: 0 !important;
}

.hero-carousel-section {
  position: relative;
  min-height: 100vh;
}

/* move hero content a bit downward so text is visible below nav */
.hero-overlay-content,
.hero-content,
.hero-section .container,
.hero-carousel-caption,
.carousel-caption {
  position: relative;
  z-index: 3;
}

/* desktop spacing */
@media (min-width: 992px) {
  .hero-section .container,
  .hero-carousel-caption,
  .carousel-caption {
    padding-top: 170px !important;
  }
}

/* tablet/mobile spacing */
@media (max-width: 991.98px) {
  .topbar {
    position: fixed !important;
  }

  .site-header {
    position: fixed !important;
    top: var(--topbar-height) !important;
    padding-top: 6px !important;
  }

  .hero-section .container,
  .hero-carousel-caption,
  .carousel-caption {
    padding-top: 150px !important;
  }
}

/* make sure Bootstrap container under fixed header stays visible */
.site-header .container-fluid {
  position: relative;
  z-index: 2;
}

/* =========================================
   EXTRA TRANSPARENT SITE HEADER
   ========================================= */

.site-header {
  position: fixed !important;
  top: var(--topbar-height) !important;
  left: 0;
  width: 100%;
  z-index: 1990 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 8px !important;
  overflow: visible !important;
}

.site-header .premium-navbar,
.site-header .navbar {
  background: transparent !important;
  box-shadow: none !important;
}

.premium-header-shell,
.header-shell {
  background: rgba(10, 22, 42, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* even more transparent when page is at top */
.site-header:not(.scrolled) .premium-header-shell,
.site-header:not(.scrolled) .header-shell {
  background: rgba(10, 22, 42, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* slightly stronger only after scroll */
.site-header.scrolled .premium-header-shell,
.site-header.scrolled .header-shell {
  background: rgba(10, 22, 42, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* navbar inner spacing only */
.site-header .navbar,
.site-header .premium-navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* =====================================================
   FINAL HERO VISIBILITY FIX
   header more transparent + hero caption moved down
   ===================================================== */

/* 1) make topbar a bit lighter */
.topbar {
  background: rgba(7, 17, 31, 0.38) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* 2) keep site header itself fully transparent */
.site-header {
  background: transparent !important;
  box-shadow: none !important;
}

/* 3) make the navbar shell much more transparent */
.premium-header-shell,
.header-shell {
  background: rgba(15, 22, 36, 0.16) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* 4) on page top, make it even lighter */
.site-header:not(.scrolled) .premium-header-shell,
.site-header:not(.scrolled) .header-shell {
  background: rgba(15, 22, 36, 0.10) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05) !important;
}

/* 5) after scroll, slightly stronger but still transparent */
.site-header.scrolled .premium-header-shell,
.site-header.scrolled .header-shell {
  background: rgba(15, 22, 36, 0.18) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
}

/* 6) IMPORTANT:
   move hero caption lower so heading and quote-tag are visible */
.hero-carousel-caption,
.carousel-caption {
  top: 58% !important;
  transform: translateY(-50%) !important;
  z-index: 5 !important;
}

/* 7) if your content box inside caption exists, keep it fully visible */
.hero-overlay-content,
.hero-content,
.hero-copy,
.hero-text {
  position: relative;
  z-index: 6 !important;
}

/* 8) quote tag / badge visibility */
.hero-carousel-caption .hero-eyebrow,
.hero-carousel-caption .hero-badge,
.hero-carousel-caption .quote-tag,
.carousel-caption .hero-eyebrow,
.carousel-caption .hero-badge,
.carousel-caption .quote-tag {
  position: relative;
  z-index: 7 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 9) heading visibility */
.hero-carousel-caption h1,
.hero-carousel-caption h2,
.hero-carousel-caption h3,
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3 {
  position: relative;
  z-index: 7 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 10) desktop fine tuning */
@media (min-width: 992px) {
  .hero-carousel-caption,
  .carousel-caption {
    top: 60% !important;
  }
}

/* 11) tablet/mobile fine tuning */
@media (max-width: 991.98px) {
  .hero-carousel-caption,
  .carousel-caption {
    top: 63% !important;
  }
}
/* =====================================================
   EXACT FIX FOR HERO HEADING + QUOTE TAG VISIBILITY
   ===================================================== */

/* header stays very transparent */
.site-header {
  background: transparent !important;
  box-shadow: none !important;
}

.premium-header-shell,
.header-shell {
  background: rgba(12, 20, 34, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05) !important;
}

.site-header.scrolled .premium-header-shell,
.site-header.scrolled .header-shell {
  background: rgba(12, 20, 34, 0.16) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

/* IMPORTANT: fix hero text position */
.hero-quote-box {
  position: absolute !important;
  left: 7% !important;
  right: auto !important;
  bottom: 22% !important;
  top: auto !important;
  transform: translateX(0) !important;
  z-index: 20 !important;
  max-width: 700px !important;
  width: min(700px, calc(100% - 60px)) !important;
  opacity: 0;
}

/* active slide content visible */
.carousel-item.active .hero-quote-box {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* quote tag must show */
.hero-quote-tag {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: relative;
  z-index: 21 !important;
}

/* heading must show */
.hero-quote-box h2,
.hero-quote-box h3 {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: relative;
  z-index: 21 !important;
}

/* paragraph must show */
.hero-quote-box p {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: relative;
  z-index: 21 !important;
}

/* desktop tuning */
@media (min-width: 992px) {
  .hero-quote-box {
    left: 7% !important;
    bottom: 20% !important;
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .hero-quote-box {
    left: 6% !important;
    right: 6% !important;
    bottom: 16% !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .hero-quote-box {
    left: 14px !important;
    right: 14px !important;
    bottom: 14% !important;
    width: auto !important;
    max-width: none !important;
    padding: 18px !important;
  }
}

/* =====================================================
   FINAL: 100% TRANSPARENT HEADER (NO BLUR / NO OVERLAY)
   ===================================================== */

/* REMOVE ALL GLASS / BLUR / DARK BACKGROUND */
.site-header {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* REMOVE HEADER SHELL BACKGROUND COMPLETELY */
.premium-header-shell,
.header-shell {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* NAVBAR INSIDE ALSO CLEAN */
.site-header .navbar,
.site-header .premium-navbar {
  background: transparent !important;
  box-shadow: none !important;
}

/* EVEN ON SCROLL — KEEP IT TRANSPARENT */
.site-header.scrolled,
.site-header.scrolled .premium-header-shell,
.site-header.scrolled .header-shell {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* TOPBAR LIGHTER (OPTIONAL BUT BETTER VISIBILITY) */
.topbar {
  background: rgba(7, 17, 31, 0.25) !important;
  backdrop-filter: none !important;
}

/* ENSURE HERO CONTENT ABOVE IMAGE */
.hero-quote-box {
  z-index: 30 !important;
}
/* =====================================================
   FINAL REAL FIX
   topbar + header overlay on hero image
   ===================================================== */

:root {
  --topbar-height: 44px;
  --header-offset: 96px;
}

/* keep page clean */
html,
body {
  overflow-x: hidden;
}

/* topbar overlays page */
.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 2000 !important;
  background: rgba(7, 17, 31, 0.22) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* header overlays image instead of pushing image down */
.site-header {
  position: fixed !important;
  top: var(--topbar-height) !important;
  left: 0;
  width: 100%;
  z-index: 1990 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 8px !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* fully transparent navbar shell */
.premium-header-shell,
.header-shell,
.site-header .navbar,
.site-header .premium-navbar,
.site-header.is-sticky,
.site-header.scrolled,
.site-header.is-sticky .premium-header-shell,
.site-header.scrolled .premium-header-shell {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* important:
   hero must start from top, not below header */
.hero-carousel-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  height: 100vh;
  min-height: 760px;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
  height: 100vh !important;
  min-height: 760px;
}

/* this is the actual visibility fix:
   move quote box lower so it clears topbar + header */
.hero-quote-box {
  position: absolute !important;
  left: 7% !important;
  bottom: 16% !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  z-index: 30 !important;
  max-width: 700px !important;
  width: min(700px, calc(100% - 60px)) !important;
}

/* mobile/tablet */
@media (max-width: 1199.98px) {
  :root {
    --header-offset: 84px;
  }

  .hero-carousel-section,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 680px !important;
  }

  .hero-quote-box {
    left: 5% !important;
    right: 5% !important;
    bottom: 12% !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel-section,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 560px !important;
  }

  .hero-quote-box {
    left: 14px !important;
    right: 14px !important;
    bottom: 10% !important;
    padding: 16px !important;
  }
}
/* =========================================
   FINAL FIX: HEADER FULLY TRANSPARENT
   + SHOW MORE TOP OF HERO IMAGE
   ========================================= */

/* keep topbar + header transparent */
.topbar {
  background: rgba(7, 17, 31, 0.18) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header,
.site-header.scrolled,
.site-header.is-sticky {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.premium-header-shell,
.header-shell,
.site-header.scrolled .premium-header-shell,
.site-header.is-sticky .premium-header-shell,
.site-header .navbar,
.site-header .premium-navbar {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* IMPORTANT:
   show more TOP of the image so image-heading is visible */
.hero-carousel .carousel-item img,
.hero-slide img,
.hero-slide-image,
.hero-slide .hero-bg-image {
  object-fit: cover !important;
  object-position: center top !important;
}

/* optional: reduce dark overlay slightly so image text is clearer */
.hero-slide-overlay,
.hero-overlay,
.hero-dark-overlay,
.hero-slide::before,
.carousel-item::before {
  opacity: 0.72 !important;
}
/* =========================================
   MAKE ALL HERO IMAGE HEADINGS DISPLAY
   LIKE THE FABRICATION SLIDE
   ========================================= */

/* keep full hero image visible in a better vertical position */
.hero-carousel .carousel-item img,
.hero-slide img,
.hero-slide-image,
.hero-slide .hero-bg-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 22% !important;
}

/* optional: slightly reduce dark overlay so image heading is clearer */
.hero-slide-overlay,
.hero-overlay,
.hero-dark-overlay,
.hero-slide::before,
.carousel-item::before {
  opacity: 0.58 !important;
}

.hero-carousel .carousel-item img,
.hero-slide img,
.hero-slide-image,
.hero-slide .hero-bg-image {
  object-position: center 18% !important;
}
.hero-carousel .carousel-item img,
.hero-slide img,
.hero-slide-image,
.hero-slide .hero-bg-image {
  object-position: center 28% !important;
}
/* =====================================================
   ULTRA TRANSPARENT HEADER (CLEAR WATER EFFECT)
   ===================================================== */

/* TOPBAR — very light */
.topbar {
  background: rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
}

/* HEADER BASE */
.site-header {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* REMOVE ALL GLASS / BLUR / COLOR */
.premium-header-shell,
.header-shell,
.site-header .navbar,
.site-header .premium-navbar,
.site-header.scrolled,
.site-header.is-sticky,
.site-header.scrolled .premium-header-shell,
.site-header.is-sticky .premium-header-shell {
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* REMOVE ANY PSEUDO OVERLAYS */
.site-header::before,
.site-header::after,
.premium-header-shell::before,
.premium-header-shell::after {
  display: none !important;
}

/* KEEP TEXT VISIBLE (important for usability) */
.site-header .nav-link,
.site-header .navbar-brand,
.site-header .btn {
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.site-header .nav-link.active,
.site-header .nav-link:hover,
.site-header .nav-item.active .nav-link {
  background: transparent !important;
  box-shadow: none !important;
}
/* =========================================
   MOVE QUOTE BOX SLIGHTLY UP
   ========================================= */

.hero-quote-box {
  bottom: 20% !important;  /* was 16% or similar */
}
/* =========================================
   MOVE QUOTE BOX LITTLE RIGHT
   ========================================= */

.hero-quote-box {
  left: 9% !important;  /* was ~7% */
}
/* slight upward adjustment */
.hero-quote-box {
  bottom: 22% !important;  /* small increase from previous */
}
@media (max-width: 767.98px) {
  .hero-quote-box {
    bottom: 15% !important;
  }
}

.solution-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0; /* optional for premium look */
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 KEY LINE */
  display: block;
}
.solution-image {
  height: 220px; /* adjust as per your design */
}

.solution-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

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

.solution-card:hover .solution-image img {
  transform: scale(1.08); /* luxury zoom effect */
}

/* =========================================
   FINAL FIX: SOLUTION CARD IMAGE FULL COVER
   ========================================= */

#solutions .solution-card {
  padding: 0;
  overflow: hidden;
}

#solutions .solution-image {
  width: 100%;
  height: 260px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 24px 24px 0 0;
  background: transparent !important;
  box-shadow: none;
  display: block;
  overflow: hidden;
}

#solutions .solution-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

#solutions .solution-card:hover .solution-image img {
  transform: scale(1.06);
}

#solutions .solution-card-body {
  padding: 18px 18px 20px;
}

/* responsive */
@media (max-width: 991.98px) {
  #solutions .solution-image {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  #solutions .solution-image {
    height: 200px;
    border-radius: 20px 20px 0 0;
  }

  #solutions .solution-card-body {
    padding: 16px;
  }
}

.solution-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1));
}

.solution-card h4 {
  position: relative;
  /* bottom: 32px; */
  left: 16px;
  color: #fff;
  z-index: 2;
}

.solution-card {
  border: 1px solid rgba(216,173,95,0.25);
  backdrop-filter: blur(12px);
}

/* =========================================
   BEYOND TRADING - PREMIUM SECTION
   ========================================= */

.services-section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.section-text {
  color: #c9d7e8;
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 15px;
}

/* FEATURE CARD */
.service-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-feature-card h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.dual-list {
  display: flex;
  gap: 25px;
}

.dual-list ul {
  padding-left: 18px;
}

.dual-list li {
  margin-bottom: 12px;
  color: #d6e2f2;
  line-height: 1.7;
}

/* MINI SERVICE CARD */
.mini-service {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 26px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-service:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 95, 0.4);
}

.mini-service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mini-service-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(216, 173, 95, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8ad5f;
}

.mini-service-tag {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #d8ad5f;
  text-transform: uppercase;
}

.mini-service h5 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
  min-height: 50px;
}

.mini-service p {
  color: #cfdbea;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 767px) {
  .dual-list {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* =========================================
   ULTRA LUXURY - BEYOND TRADING
   ========================================= */

.ultra-services {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 173, 95, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(95, 144, 255, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.96), rgba(10, 20, 38, 1));
}

.ultra-services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 25%, transparent 70%, rgba(255,255,255,0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.015) 0,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.55;
}

.ultra-services .container {
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(216, 173, 95, 0.28);
  /* background: rgba(216, 173, 95, 0.08);
  box-shadow: 0 10px 30px rgba(216, 173, 95, 0.08); */
      background: linear-gradient(90deg, rgba(216, 173, 95, 0), rgba(216, 173, 95, 0.95), rgba(240, 209, 142, 0));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  margin-bottom: 18px;
}

.ultra-services .section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.28);
}

.ultra-services .section-text {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(225, 235, 248, 0.82);
  font-size: 1.04rem;
  line-height: 1.95;
}

.ultra-feature-card,
.ultra-mini-service {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ultra-feature-card::before,
.ultra-mini-service::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(240, 209, 142, 0.10) 0%,
    transparent 28%,
    transparent 68%,
    rgba(95, 144, 255, 0.08) 100%
  );
}

.ultra-feature-card {
  padding: 34px 32px;
  min-height: 100%;
}

.feature-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  /* background: rgba(240, 209, 142, 0.08); */
      background: linear-gradient(90deg, rgba(216, 173, 95, 0), rgba(216, 173, 95, 0.95), rgba(240, 209, 142, 0));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  border: 1px solid rgba(240, 209, 142, 0.22);
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ultra-feature-card h4 {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-intro {
  color: rgba(223, 233, 245, 0.80);
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 24px;
  text-align: justify;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
}

.feature-point i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.feature-point span {
  color: #e9f0f9;
  line-height: 1.6;
  font-size: 0.85rem;
  text-align: justify;
}

.ultra-mini-service {
  padding: 26px 24px 24px;
  min-height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ultra-mini-service:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.35);
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(216, 173, 95, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.ultra-mini-service .mini-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ultra-mini-service .mini-service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.18rem;
  background:
    linear-gradient(180deg, rgba(216, 173, 95, 0.18), rgba(216, 173, 95, 0.08));
  border: 1px solid rgba(216, 173, 95, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 12px 24px rgba(216, 173, 95, 0.08);
}

.ultra-mini-service .mini-service-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.ultra-mini-service h5 {
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  min-height: 58px;
  letter-spacing: -0.015em;
}

.ultra-mini-service p {
  margin: 0;
  color: rgba(220, 231, 244, 0.82);
  font-size: 0.96rem;
  line-height: 1.88;
}

@media (max-width: 991.98px) {
  .ultra-services {
    padding: 95px 0;
  }

  .ultra-feature-card {
    padding: 28px 24px;
  }

  .ultra-mini-service {
    padding: 24px 20px;
  }

  .ultra-mini-service h5 {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .ultra-services {
    padding: 80px 0;
  }

  .section-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .ultra-services .section-text {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .ultra-feature-card h4 {
    font-size: 1.35rem;
  }

  .feature-intro,
  .feature-point span,
  .ultra-mini-service p {
    font-size: 0.93rem;
  }

  .ultra-mini-service .mini-service-top {
    gap: 14px;
    align-items: center;
  }

  .ultra-mini-service .mini-service-tag {
    font-size: 0.64rem;
  }
}

/* =========================================
   ULTRA MINI SERVICE - LUXURY CARD TEXT FIX
   ========================================= */

.ultra-services .row.g-4 > [class*="col-"] {
  display: flex;
}

.ultra-mini-service {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 24px 24px;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ultra-mini-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(240, 209, 142, 0.10) 0%,
      transparent 30%,
      transparent 70%,
      rgba(95, 144, 255, 0.08) 100%
    );
  pointer-events: none;
}

.ultra-mini-service::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 209, 142, 0.08),
    rgba(255, 255, 255, 0.12),
    rgba(240, 209, 142, 0.08),
    transparent
  );
  transform: skewX(-22deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.ultra-mini-service:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 95, 0.34);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(216, 173, 95, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.ultra-mini-service:hover::after {
  left: 145%;
}

.ultra-mini-service .mini-service-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.ultra-mini-service .mini-service-icon-wrap {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  background:
    linear-gradient(180deg, rgba(216, 173, 95, 0.18), rgba(216, 173, 95, 0.08));
  border: 1px solid rgba(216, 173, 95, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 12px 24px rgba(216, 173, 95, 0.08);
}

.ultra-mini-service .mini-service-tag {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  white-space: nowrap;
}

.mini-service-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}


.ultra-mini-service h5 {
  margin: 0 0 14px 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  min-height: 58px;
  display: flex;
  align-items: flex-start;
}

.ultra-mini-service p {
  margin: 0;
  color: rgba(226, 235, 246, 0.84);
  font-size: 0.80rem;
  line-height: 1.9;
  text-align: justify;
  max-width: 95%;
}

/* Optional elegant divider below heading */
.ultra-mini-service h5::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0.35)
  );
}

/* Better desktop alignment */
@media (min-width: 768px) {
  .ultra-mini-service {
    min-height: 295px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .ultra-mini-service {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .ultra-mini-service h5 {
    min-height: auto;
    font-size: 1.1rem;
  }

  .ultra-mini-service p {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .ultra-mini-service {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .ultra-mini-service .mini-service-top {
    margin-bottom: 16px;
  }

  .ultra-mini-service .mini-service-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
    border-radius: 15px;
  }

  .ultra-mini-service .mini-service-tag {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .ultra-mini-service h5 {
    font-size: 1.05rem;
    line-height: 1.35;
    min-height: auto;
    margin-bottom: 12px;
  }

  .ultra-mini-service p {
    font-size: 0.92rem;
    line-height: 1.8;
  }
}

/* =========================================
   LUXURY PARTNER-ALIGNED POSITIONING
   ========================================= */

.luxury-partners-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 173, 95, 0.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(95, 144, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(8, 18, 34, 0.98), rgba(9, 22, 43, 1));
}

.luxury-partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 24%, transparent 76%, rgba(255,255,255,0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.012) 0,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.55;
}

.luxury-partners-section .container-fluid {
  position: relative;
  z-index: 2;
}

.partners-shell {
  position: relative;
}

.partners-copy {
  max-width: 620px;
}

.luxury-partners-section .section-title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.luxury-partners-section .section-text {
  max-width: 100%;
  color: rgba(223, 233, 245, 0.84);
  font-size: 1.02rem;
  line-height: 1.95;
  text-align: left;
}

.partners-copy-panel {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.partners-copy-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(216,173,95,0.05), rgba(95,144,255,0.04));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.partners-copy-point i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.partners-copy-point span {
  color: #e7eef8;
  line-height: 1.65;
  font-size: 0.96rem;
}

.luxury-partner-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 24px 24px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.08));
  box-shadow:
    0 24px 70px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.luxury-partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(240,209,142,0.10) 0%,
    transparent 30%,
    transparent 70%,
    rgba(95,144,255,0.08) 100%
  );
}

.luxury-partner-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.06),
    rgba(240,209,142,0.10),
    rgba(255,255,255,0.06),
    transparent
  );
  transform: skewX(-24deg);
  transition: left 0.9s ease;
  pointer-events: none;
}

.luxury-partner-card:hover {
  transform: translateY(-9px);
  border-color: rgba(216,173,95,0.34);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.42),
    0 0 0 1px rgba(216,173,95,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.luxury-partner-card:hover::after {
  left: 150%;
}

.partner-card-topline {
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
  z-index: 2;
}

.luxury-partner-logo {
  position: relative;
  z-index: 2;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
}

.luxury-partner-logo img {
  max-width: 170px;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.luxury-partner-card:hover .luxury-partner-logo img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

.luxury-partner-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.partner-mini-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,173,95,0.10);
  border: 1px solid rgba(216,173,95,0.18);
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.luxury-partner-body h5 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 58px;
  letter-spacing: -0.015em;
}

.luxury-partner-body h5::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0.95),
    rgba(240,209,142,0.35)
  );
}

.luxury-partner-body p {
  margin: 0 0 18px;
  color: rgba(225,235,246,0.84);
  font-size: 0.95rem;
  line-height: 1.88;
  text-align: left;
}

.partner-points {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.partner-points li {
  position: relative;
  padding-left: 18px;
  color: #d9e4f2;
  font-size: 0.92rem;
  line-height: 1.6;
}

.partner-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 5px rgba(216,173,95,0.08);
}

@media (min-width: 768px) {
  .luxury-partner-card {
    min-height: 420px;
  }
}

@media (max-width: 991.98px) {
  .luxury-partners-section {
    padding: 92px 0;
  }

  .partners-copy {
    max-width: 100%;
  }

  .luxury-partner-card {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .luxury-partner-body h5 {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .luxury-partners-section {
    padding: 78px 0;
  }

  .luxury-partners-section .section-title {
    font-size: 2rem;
  }

  .luxury-partners-section .section-text {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .partners-copy-panel {
    margin-top: 24px;
  }

  .partners-copy-point {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .luxury-partner-card {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .luxury-partner-logo {
    height: 72px;
    margin-bottom: 18px;
  }

  .luxury-partner-logo img {
    max-width: 148px;
    max-height: 62px;
  }

  .luxury-partner-body h5 {
    font-size: 1.06rem;
    margin-bottom: 12px;
  }

  .luxury-partner-body p,
  .partner-points li {
    font-size: 0.91rem;
  }
}

/* =========================================
   ULTRA PREMIUM PARTNER POSITIONING
   ========================================= */

.ultra-partners-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 173, 95, 0.14), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(95, 144, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #081221 0%, #0a1629 100%);
}

.ultra-partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 26%, transparent 74%, rgba(255,255,255,0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.012) 0,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 120px
    );
  opacity: 0.55;
}

.ultra-partners-wrap {
  position: relative;
  z-index: 2;
}

.ultra-partners-copy {
  max-width: 590px;
}

.ultra-partners-section .section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(216, 173, 95, 0.28);
  background: rgba(216, 173, 95, 0.08);
  box-shadow: 0 10px 30px rgba(216, 173, 95, 0.08);
  margin-bottom: 18px;
}

.ultra-partners-section .section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 10px 35px rgba(0,0,0,0.28);
}

.ultra-partners-section .section-text {
  color: rgba(225, 235, 246, 0.84);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 0;
}

.ultra-copy-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.ultra-copy-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(216,173,95,0.05), rgba(95,144,255,0.04));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.ultra-copy-point i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.ultra-copy-point span {
  color: #e7eef8;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* CARD */
.ultra-partners-section .row.g-4 > [class*="col-"] {
  display: flex;
}

.ultra-partner-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.08));
  box-shadow:
    0 24px 70px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.ultra-partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(240,209,142,0.10) 0%,
    transparent 28%,
    transparent 70%,
    rgba(95,144,255,0.08) 100%
  );
}

.ultra-partner-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240,209,142,0.08),
    rgba(255,255,255,0.12),
    rgba(240,209,142,0.08),
    transparent
  );
  transform: skewX(-24deg);
  transition: left 0.9s ease;
  pointer-events: none;
}

.ultra-partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216,173,95,0.35);
  box-shadow:
    0 32px 85px rgba(0,0,0,0.42),
    0 0 0 1px rgba(216,173,95,0.08),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.ultra-partner-card:hover::after {
  left: 150%;
}

.ultra-partner-glow {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,1),
    rgba(240,209,142,0)
  );
  z-index: 2;
}

.ultra-partner-logo {
  position: relative;
  z-index: 2;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 16px 12px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.ultra-partner-logo img {
  max-width: 155px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ultra-partner-card:hover .ultra-partner-logo img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

.ultra-partner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.partner-mini-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,173,95,0.10);
  border: 1px solid rgba(216,173,95,0.18);
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ultra-partner-content h5 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 58px;
  letter-spacing: -0.015em;
}

.ultra-partner-content h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0.95),
    rgba(240,209,142,0.32)
  );
}

.ultra-partner-content p {
  margin: 0 0 18px;
  color: rgba(225,235,246,0.84);
  font-size: 0.94rem;
  line-height: 1.88;
  max-width: 95%;
}

.partner-points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 10px;
}

.partner-points li {
  position: relative;
  padding-left: 18px;
  color: #dce6f3;
  font-size: 0.91rem;
  line-height: 1.6;
}

.partner-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 5px rgba(216,173,95,0.08);
}

@media (min-width: 768px) {
  .ultra-partner-card {
    min-height: 430px;
  }
}

@media (max-width: 991.98px) {
  .ultra-partners-section {
    padding: 95px 0;
  }

  .ultra-partner-card {
    padding: 24px 18px 22px;
    border-radius: 24px;
  }

  .ultra-partner-logo {
    min-height: 95px;
  }

  .ultra-partner-content h5 {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .ultra-partners-section {
    padding: 80px 0;
  }

  .ultra-partners-section .section-title {
    font-size: 2rem;
  }

  .ultra-partners-section .section-text {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .ultra-copy-point {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .ultra-partner-card {
    padding: 22px 16px 20px;
    border-radius: 22px;
  }

  .ultra-partner-logo {
    min-height: 88px;
    padding: 14px 10px;
    border-radius: 18px;
  }

  .ultra-partner-logo img {
    max-width: 135px;
    max-height: 56px;
  }

  .ultra-partner-content h5 {
    font-size: 1.04rem;
    margin-bottom: 12px;
  }

  .ultra-partner-content p,
  .partner-points li {
    font-size: 0.9rem;
  }
}

/* =========================================
   ULTRA PARTNER LOGO PLATE
   ========================================= */

.ultra-partner-logo-shell {
  position: relative;
  z-index: 2;
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.ultra-partner-logo-plate {
  position: relative;
  width: 100%;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,252,0.92));
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -10px 24px rgba(180, 193, 209, 0.10);
}

.ultra-partner-logo-plate::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.55), transparent 34%, transparent 68%, rgba(210,220,232,0.18));
}

.ultra-partner-logo-plate::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -20%;
  width: 75%;
  height: 140%;
  transform: rotate(18deg);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.42),
    rgba(255,255,255,0)
  );
  opacity: 0.6;
}

.ultra-partner-logo-plate img {
  position: relative;
  z-index: 2;
  max-width: 190px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: contrast(1.03) saturate(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ultra-partner-card:hover .ultra-partner-logo-plate img {
  transform: scale(1.05);
  filter: contrast(1.06) saturate(1.06);
}

.ultra-partner-card:hover .ultra-partner-logo-plate {
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -10px 24px rgba(180, 193, 209, 0.12),
    0 0 0 1px rgba(240, 209, 142, 0.14);
}

.ultra-partner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  padding: 2px 2px 0;
}

.partner-mini-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,173,95,0.10);
  border: 1px solid rgba(216,173,95,0.18);
  color: var(--gold-2);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ultra-partner-content h5 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.015em;
  min-height: 58px;
}

.ultra-partner-content h5::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0.96),
    rgba(240,209,142,0.28)
  );
}

.ultra-partner-content p {
  margin: 0 0 18px;
  color: rgba(226,235,246,0.84);
  font-size: 0.94rem;
  line-height: 1.9;
  max-width: 96%;
}

.partner-points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 10px;
}

.partner-points li {
  position: relative;
  padding-left: 18px;
  color: #dbe5f2;
  font-size: 0.9rem;
  line-height: 1.62;
}

/* =========================================
   ULTRA LUXURY LEFT COPY AREA - PARTNERS
   ========================================= */

.ultra-partners-copy {
  position: relative;
  max-width: 610px;
}

.ultra-partners-copy .section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(216, 173, 95, 0.28);
  background: rgba(216, 173, 95, 0.08);
  box-shadow: 0 10px 30px rgba(216, 173, 95, 0.08);
  margin-bottom: 20px;
}

.ultra-partners-copy .section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.ultra-partners-copy .section-text {
  color: rgba(225, 235, 246, 0.84);
  font-size: 1rem;
  line-height: 1.95;
  margin: 0;
  max-width: 96%;
}

.ultra-copy-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.ultra-copy-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(216,173,95,0.05), rgba(95,144,255,0.04));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ultra-copy-point i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.ultra-copy-point span {
  color: #e7eef8;
  font-size: 0.95rem;
  line-height: 1.68;
}

/* PREMIUM STATS STRIP */
.partner-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.partner-stat-card {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(216,173,95,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(216,173,95,0.07), rgba(95,144,255,0.04));
  box-shadow:
    0 18px 42px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.partner-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.partner-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.partner-stat-card span {
  display: block;
  color: rgba(223, 233, 245, 0.84);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .ultra-partners-copy {
    max-width: 100%;
  }

  .partner-stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .ultra-partners-copy .section-title {
    font-size: 2rem;
  }

  .ultra-partners-copy .section-text {
    font-size: 0.95rem;
    line-height: 1.85;
    max-width: 100%;
  }

  .ultra-copy-point {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .ultra-copy-point span {
    font-size: 0.91rem;
  }

  .partner-stats-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner-stat-card {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .partner-stat-card strong {
    font-size: 1.05rem;
  }

  .partner-stat-card span {
    font-size: 0.8rem;
  }
}

/* =========================================
   PARTNER SECTION - AMBIENT LUXURY EFFECTS
   ========================================= */

.ultra-partners-wrap {
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.partners-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.partners-ambient-one {
  width: 340px;
  height: 340px;
  top: 30px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(216, 173, 95, 0.22) 0%,
    rgba(216, 173, 95, 0.12) 30%,
    rgba(216, 173, 95, 0.02) 68%,
    transparent 100%
  );
  animation: partnerFloatOne 8s ease-in-out infinite;
}

.partners-ambient-two {
  width: 320px;
  height: 320px;
  right: -70px;
  bottom: 20px;
  background: radial-gradient(
    circle,
    rgba(95, 144, 255, 0.18) 0%,
    rgba(95, 144, 255, 0.10) 34%,
    rgba(95, 144, 255, 0.02) 70%,
    transparent 100%
  );
  animation: partnerFloatTwo 10s ease-in-out infinite;
}

.partners-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
}

/* Keep actual content above ambient layer */
.ultra-partners-wrap > .row,
.ultra-partners-copy,
.ultra-partner-card {
  position: relative;
  z-index: 2;
}

/* Left copy premium glow */
.ultra-partners-copy {
  position: relative;
}

.ultra-partners-copy::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -18px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 173, 95, 0.12) 0%,
    rgba(216, 173, 95, 0.05) 42%,
    transparent 75%
  );
  filter: blur(26px);
  z-index: -1;
  pointer-events: none;
}

.ultra-partners-copy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 58px;
  width: 88px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
  box-shadow: 0 0 18px rgba(216, 173, 95, 0.26);
  pointer-events: none;
}

/* Card ambient depth */
.ultra-partner-card {
  position: relative;
}

.ultra-partner-card .ultra-partner-glow {
  box-shadow:
    0 0 18px rgba(216, 173, 95, 0.24),
    0 0 34px rgba(216, 173, 95, 0.10);
}

.ultra-partner-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.ultra-partner-card:hover::before {
  background: linear-gradient(
    135deg,
    rgba(240,209,142,0.14) 0%,
    transparent 28%,
    transparent 68%,
    rgba(95,144,255,0.10) 100%
  );
}

/* Optional subtle shadow under cards */
.ultra-partner-card::selection {
  background: rgba(216, 173, 95, 0.18);
}

/* Animations */
@keyframes partnerFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, 12px, 0) scale(1.04);
  }
}

@keyframes partnerFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-14px, -10px, 0) scale(1.05);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .partners-ambient-one {
    width: 240px;
    height: 240px;
    left: -40px;
    top: 10px;
    filter: blur(65px);
  }

  .partners-ambient-two {
    width: 230px;
    height: 230px;
    right: -30px;
    bottom: 10px;
    filter: blur(65px);
  }

  .partners-grid-lines {
    opacity: 0.16;
    background-size: 100px 100px;
  }
}

@media (max-width: 767.98px) {
  .partners-ambient-one,
  .partners-ambient-two {
    opacity: 0.55;
    filter: blur(56px);
  }

  .partners-ambient-one {
    width: 190px;
    height: 190px;
    left: -28px;
    top: 0;
  }

  .partners-ambient-two {
    width: 180px;
    height: 180px;
    right: -24px;
    bottom: 0;
  }

  .partners-grid-lines {
    opacity: 0.10;
    background-size: 84px 84px;
  }

  .ultra-partners-copy::before {
    width: 120px;
    height: 120px;
    left: -10px;
    top: -10px;
    filter: blur(22px);
  }

  .ultra-partners-copy::after {
    width: 60px;
    top: 48px;
  }
}

.ultra-partner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  padding: 4px 2px 0;
}

.partner-mini-label {
  margin-bottom: 15px;
}

.ultra-partner-content h5 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.015em;
  min-height: 58px;
}

.ultra-partner-content p {
  margin: 0 0 20px;
  color: rgba(226, 235, 246, 0.84);
  font-size: 0.85rem;
  line-height: 1.92;
  max-width: 100%;
  text-align:left;
}

.partner-points {
  margin-top: auto;
  gap: 11px;
}

.partner-points li {
  font-size: 0.9rem;
  line-height: 1.64;
}

/* =========================================
   PREMIUM STAGGER REVEAL ANIMATION
   ========================================= */

.reveal-up {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.30s;
}

.reveal-delay-4 {
  transition-delay: 0.42s;
}

.reveal-delay-5 {
  transition-delay: 0.54s;
}

.reveal-delay-6 {
  transition-delay: 0.66s;
}

.ultra-partner-card {
  transform-origin: center bottom;
}

.ultra-partner-card:hover .partner-mini-label {
  border-color: rgba(240, 209, 142, 0.32);
  background: rgba(216, 173, 95, 0.14);
  box-shadow: 0 6px 20px rgba(216, 173, 95, 0.10);
}

.ultra-partner-card:hover .ultra-partner-content h5 {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(240, 209, 142, 0.08);
}

.ultra-partner-card:hover .partner-points li::before {
  box-shadow: 0 0 0 6px rgba(216,173,95,0.10);
}

/* =====================================================
   FINAL PREMIUM MEGA MENU - GULF BITON
   Put this at the END of style.css
   ===================================================== */

/* ---------- NAVBAR SPACING IMPROVEMENT ---------- */
@media (min-width: 1200px) {
  .premium-navbar .navbar-nav,
  .premium-navbar .nav-center {
    gap: 8px !important;
  }

  .premium-navbar .nav-item {
    margin: 0 !important;
  }

  .premium-navbar .nav-link {
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
  }

  .premium-navbar .nav-link:hover,
  .premium-navbar .nav-link.active,
  .premium-navbar .mega-dropdown.show > .nav-link {
    color: #ffffff !important;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.07),
      rgba(255,255,255,0.03)
    );
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  }

  .premium-navbar .dropdown-toggle::after {
    margin-left: 8px !important;
    vertical-align: middle;
  }
}

/* ---------- MEGA MENU POSITION ---------- */
.mega-dropdown {
  position: static !important;
}

@media (min-width: 1200px) {
  .mega-dropdown > .premium-mega-menu {
    position: absolute !important;
    top: calc(100% + 14px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(14px) scale(0.985) !important;
    transform-origin: top center;
    width: min(1280px, calc(100vw - 48px)) !important;
    max-width: 1280px !important;
    margin: 0 !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999 !important;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .mega-dropdown:hover > .premium-mega-menu,
  .mega-dropdown.show > .premium-mega-menu,
  .mega-dropdown > .premium-mega-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }
}

/* ---------- MAIN MENU SHELL ---------- */
.site-header .premium-mega-menu {
  overflow: hidden !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  background:
    radial-gradient(circle at top right, rgba(216,173,95,0.10), transparent 24%),
    radial-gradient(circle at left center, rgba(95,144,255,0.10), transparent 28%),
    linear-gradient(180deg, rgba(8,18,34,0.98), rgba(6,14,28,0.985)) !important;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.42),
    0 10px 30px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header .premium-mega-shell {
  position: relative;
  padding: 22px !important;
}

.site-header .premium-mega-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,1),
    rgba(240,209,142,0),
    rgba(95,144,255,0)
  );
}

/* ---------- GRID ---------- */
.site-header .premium-mega-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1.08fr !important;
  gap: 18px !important;
  align-items: stretch;
}

.site-header .premium-mega-col,
.site-header .premium-mega-feature {
  min-height: 100%;
}

.site-header .premium-mega-col {
  padding: 16px 14px !important;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.site-header .premium-mega-col:last-of-type {
  border-right: none;
}

/* ---------- COLUMN HEADING ---------- */
.site-header .premium-mega-head {
  margin-bottom: 18px !important;
}

.site-header .mega-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216,173,95,0.25);
  background: rgba(216,173,95,0.10);
  color: #f3d79b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header .premium-mega-head h6 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---------- LINKS ---------- */
.site-header .premium-mega-link {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header .premium-mega-link + .premium-mega-link {
  margin-top: 8px;
}

.site-header .premium-mega-link:hover {
  transform: translateY(-2px);
  border-color: rgba(216,173,95,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow:
    0 14px 28px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.site-header .premium-mega-link i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(216,173,95,0.20),
    rgba(216,173,95,0.08)
  );
  color: #f4dbab;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-header .premium-mega-link:hover i {
  transform: scale(1.06);
  box-shadow:
    0 10px 24px rgba(216,173,95,0.12),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.site-header .premium-mega-link strong {
  display: block;
  color: #f8fbff !important;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
}

.site-header .premium-mega-link span {
  display: block;
  margin-top: 4px;
  color: #9fb1c9 !important;
  font-size: 0.80rem;
  line-height: 1.55;
}

/* ---------- FEATURE PANEL ---------- */
.site-header .premium-mega-feature {
  position: relative;
  padding: 24px !important;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(216,173,95,0.08), rgba(95,144,255,0.04));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.site-header .premium-mega-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0)
  );
}

.site-header .premium-feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216,173,95,0.28);
  background: rgba(216,173,95,0.12);
  color: #f4deb0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header .premium-mega-feature h5 {
  margin: 16px 0 14px;
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-header .premium-mega-feature p {
  margin-bottom: 18px;
  color: #c7d5e8;
  font-size: 0.90rem;
  line-height: 1.8;
}

.site-header .premium-feature-points {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.site-header .premium-feature-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5eef8;
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-header .premium-feature-points i {
  color: #f0d18e;
}

.site-header .premium-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-header .premium-feature-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 0.88rem;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header .premium-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-header .premium-mega-feature {
    grid-column: 1 / -1;
  }

  .site-header .premium-mega-col {
    border-right: none;
  }
}

@media (max-width: 1199.98px) {
  .mega-dropdown > .premium-mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    border-radius: 22px !important;
  }

  .site-header .premium-mega-shell {
    padding: 14px !important;
  }

  .site-header .premium-mega-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .site-header .premium-mega-col {
    padding: 10px 8px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .site-header .premium-mega-col:last-of-type {
    border-bottom: none;
  }

  .site-header .premium-mega-feature {
    padding: 20px !important;
  }
}

@media (max-width: 767.98px) {
  .site-header .premium-mega-link {
    padding: 12px;
    border-radius: 16px;
  }

  .site-header .premium-mega-link i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
  }

  .site-header .premium-mega-link strong {
    font-size: 0.92rem;
  }

  .site-header .premium-mega-link span {
    font-size: 0.76rem;
  }

  .site-header .premium-mega-feature h5 {
    font-size: 1.08rem;
  }
}

/* =====================================================
   HOSTINGER FIX: TRANSPARENT + STICKY HEADER OVER HERO
   ===================================================== */
:root {
  --topbar-height: 44px;
  --site-header-height: 96px;
}

html,
body {
  overflow-x: hidden;
}

body {
  padding-top: 0 !important;
}

.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 3000 !important;
  background: rgba(7, 17, 31, 0.22) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header {
  position: fixed !important;
  top: var(--topbar-height) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2990 !important;
  padding-top: 10px !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header,
.site-header .navbar,
.site-header .premium-navbar,
.site-header .container-fluid,
.site-header .header-shell,
.site-header .premium-header-shell {
  overflow: visible !important;
}

.site-header .navbar,
.site-header .premium-navbar,
.premium-header-shell,
.header-shell {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header.scrolled,
.site-header.is-sticky,
.site-header.scrolled .navbar,
.site-header.is-sticky .navbar,
.site-header.scrolled .premium-navbar,
.site-header.is-sticky .premium-navbar,
.site-header.scrolled .premium-header-shell,
.site-header.is-sticky .premium-header-shell,
.site-header.scrolled .header-shell,
.site-header.is-sticky .header-shell {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header .nav-link,
.site-header .navbar-brand,
.site-header .brand-copy strong,
.site-header .brand-copy small {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.site-header .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #ffffff !important;
}

.hero-carousel-section,
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
  position: relative;
}

.hero-carousel-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-slide,
.hero-carousel .carousel-item,
.hero-carousel .carousel-item img,
.hero-slide img,
.hero-slide-image,
.hero-slide .hero-bg-image {
  min-height: 100vh !important;
}

.hero-carousel .carousel-item img,
.hero-slide img,
.hero-slide-image,
.hero-slide .hero-bg-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.hero-overlay,
.hero-slide-overlay,
.hero-dark-overlay,
.hero-slide::before,
.carousel-item::before {
  opacity: 0.52 !important;
}

.hero-quote-box {
  z-index: 30 !important;
}

@media (max-width: 1199.98px) {
  :root {
    --site-header-height: 82px;
  }

  .site-header {
    top: var(--topbar-height) !important;
    padding-top: 6px !important;
  }

  .site-header .navbar-collapse {
    margin-top: 12px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(8, 18, 34, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .hero-slide,
  .hero-carousel .carousel-item,
  .hero-carousel .carousel-item img,
  .hero-slide img,
  .hero-slide-image,
  .hero-slide .hero-bg-image {
    min-height: 760px !important;
  }
}

@media (max-width: 767.98px) {
  :root {
    --topbar-height: 40px;
    --site-header-height: 76px;
  }

  .hero-slide,
  .hero-carousel .carousel-item,
  .hero-carousel .carousel-item img,
  .hero-slide img,
  .hero-slide-image,
  .hero-slide .hero-bg-image {
    min-height: 620px !important;
  }
}
.footer-map {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.premium-footer-map-block {
  position: relative;
}

.footer-map-head {
  margin-bottom: 18px;
}

.footer-map-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  background:
    linear-gradient(135deg, rgba(216, 173, 95, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(216, 173, 95, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 24px rgba(0,0,0,0.22);
}

.footer-map-head h6 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.footer-map-head p {
  margin: 0;
  max-width: 680px;
  color: rgba(237, 243, 253, 0.78);
  font-size: 0.96rem;
  line-height: 1.75;
}

.premium-footer-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(11, 24, 48, 0.96), rgba(7, 17, 31, 0.98));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.premium-footer-map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(216, 173, 95, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(12, 23, 48, 0.08), rgba(12, 23, 48, 0.34));
  pointer-events: none;
  z-index: 2;
}

.premium-footer-map-wrap::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 2;
}

.premium-footer-map-wrap iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.premium-footer-map-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.premium-map-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0b1220;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-map-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.4);
  color: #08101d;
}

.premium-map-btn i {
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .premium-footer-map-wrap,
  .premium-footer-map-wrap iframe {
    min-height: 280px;
    height: 280px;
  }

  .premium-footer-map-overlay {
    justify-content: center;
  }

  .footer-map-head p {
    font-size: 0.92rem;
  }
}

@media (max-width: 575.98px) {
  .premium-footer-map-wrap,
  .premium-footer-map-wrap iframe {
    min-height: 240px;
    height: 240px;
    border-radius: 20px;
  }

  .premium-footer-map-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .premium-map-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  .footer-map-head h6 {
    font-size: 1.02rem;
  }
}

/* ===============================
   ULTRA PREMIUM MAP UPGRADE
   =============================== */

.premium-footer-map-wrap {
  transform: perspective(1000px) rotateX(0deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* 🔥 subtle 3D hover */
.premium-footer-map-wrap:hover {
  transform: perspective(1000px) rotateX(3deg) translateY(-6px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* 🔥 cinematic dark overlay */
.premium-footer-map-wrap::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.5)),
    linear-gradient(135deg, rgba(216,173,95,0.25), transparent 40%);
  opacity: 0.85;
}

/* 🔥 glowing border effect */
.premium-footer-map-wrap::after {
  border: 1px solid rgba(216,173,95,0.25);
  box-shadow: 0 0 30px rgba(216,173,95,0.08);
}

/* 🔥 smooth zoom on map */
.premium-footer-map-wrap iframe {
  transition: transform 0.8s ease, filter 0.6s ease;
}

.premium-footer-map-wrap:hover iframe {
  transform: scale(1.04);
  filter: saturate(1.2) contrast(1.05);
}

/* ===============================
   PREMIUM BUTTON UPGRADE
   =============================== */

.premium-map-btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
}

/* 🔥 light sweep animation */
.premium-map-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: all 0.6s ease;
}

.premium-map-btn:hover::before {
  left: 120%;
}

/* 🔥 glow on hover */
.premium-map-btn:hover {
  box-shadow:
    0 20px 50px rgba(216,173,95,0.35),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

/* ===============================
   TEXT LUXURY IMPROVEMENT
   =============================== */

.footer-map-head h6 {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.footer-map-head p {
  opacity: 0.85;
}

/* ===============================
   MICRO ANIMATION
   =============================== */

.footer-map-kicker {
  transition: all 0.3s ease;
}

.premium-footer-map-block:hover .footer-map-kicker {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(216,173,95,0.25);
}

.premium-enquiry-box,
.premium-footer-map-block {
  height: 100%;
}

.premium-enquiry-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-enquiry-map-row {
  margin-top: 18px;
}

.footer-enquiry-map-row > [class*="col-"] {
  display: flex;
}

.footer-enquiry-map-row .premium-footer-block {
  width: 100%;
}

.premium-footer-map-block {
  padding-left: 18px;
}

.footer-map-head {
  margin-bottom: 18px;
  max-width: 720px;
}

.footer-map-head h6 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-map-head h6::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.footer-map-head p {
  margin: 0;
  max-width: 760px;
  color: rgba(237, 243, 253, 0.82);
  font-size: 1rem;
  line-height: 1.85;
}

.premium-footer-map-wrap {
  min-height: 360px;
}

.premium-footer-map-wrap iframe {
  height: 360px;
}

@media (max-width: 991.98px) {
  .premium-footer-map-block {
    padding-left: 0;
  }

  .footer-map-head h6 {
    font-size: 1.5rem;
  }

  .premium-footer-map-wrap {
    min-height: 300px;
  }

  .premium-footer-map-wrap iframe {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .footer-map-head h6 {
    font-size: 1.28rem;
  }

  .footer-map-head p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .premium-footer-map-wrap {
    min-height: 240px;
  }

  .premium-footer-map-wrap iframe {
    height: 240px;
  }
}

/* ==========================
   UPGRADED LOCATION BLOCK
   ========================== */

.premium-location-block {
  position: relative;
}

.premium-location-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.premium-location-head h6 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.premium-location-head p {
  max-width: 760px;
  color: rgba(237, 243, 253, 0.82);
  font-size: 1rem;
  line-height: 1.85;
}

.premium-location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.location-mini-card {
  min-width: 240px;
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(95,144,255,0.04), rgba(216,173,95,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.location-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216,173,95,0.32);
  box-shadow:
    0 24px 42px rgba(0,0,0,0.24),
    0 0 0 1px rgba(216,173,95,0.05);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.08));
}

.location-mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(216,173,95,0.22), rgba(216,173,95,0.08));
  box-shadow:
    0 10px 24px rgba(216,173,95,0.12),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.location-mini-icon i {
  color: #f4dbab;
  font-size: 1.05rem;
  line-height: 1;
}

.location-mini-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.location-mini-text strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}

.location-mini-text small {
  margin-top: 4px;
  color: #bfd0e3;
  font-size: 0.82rem;
  line-height: 1.5;
}

.premium-location-map-wrap {
  min-height: 380px;
  border-radius: 26px;
}

.premium-location-map-wrap iframe {
  height: 380px;
}

.premium-location-overlay {
  justify-content: space-between;
  align-items: flex-end;
}

.premium-location-overlay::before {
  content: "Serving industrial clients across Saudi Arabia";
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.68);
  border: 1px solid rgba(255,255,255,0.12);
  color: #eef4fd;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

@media (max-width: 991.98px) {
  .premium-location-meta {
    gap: 12px;
  }

  .location-mini-card {
    min-width: 100%;
  }

  .premium-location-map-wrap {
    min-height: 300px;
  }

  .premium-location-map-wrap iframe {
    height: 300px;
  }

  .premium-location-overlay {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .premium-location-head h6 {
    font-size: 1.3rem;
  }

  .premium-location-head p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .location-mini-card {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .location-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .premium-location-map-wrap {
    min-height: 240px;
    border-radius: 20px;
  }

  .premium-location-map-wrap iframe {
    height: 240px;
  }

  .premium-location-overlay::before {
    font-size: 0.74rem;
    padding: 10px 14px;
    text-align: center;
  }
}

/* FINAL LOCATION BLOCK REFINEMENT */

.premium-location-head {
  margin-bottom: 22px;
}

.premium-location-head h6 {
  margin: 0 0 12px;
}

.premium-location-head p {
  max-width: 680px;
}

.location-mini-card {
  min-height: 82px;
}

.premium-location-map-wrap {
  overflow: hidden;
  min-height: 380px;
}

.premium-location-map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
}

.premium-location-overlay {
  padding-top: 12px;
}

@media (max-width: 991.98px) {
  .premium-location-map-wrap {
    min-height: 300px;
  }

  .premium-location-map-wrap iframe {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .premium-location-head {
    margin-bottom: 18px;
  }

  .location-mini-card {
    min-height: auto;
  }

  .premium-location-map-wrap {
    min-height: 240px;
  }

  .premium-location-map-wrap iframe {
    height: 240px;
  }
}

/* =========================================
   FINAL FOOTER LOCATION POLISH
   ========================================= */

.footer-enquiry-map-row {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-enquiry-map-row > [class*="col-"] {
  display: flex;
  align-items: stretch;
}

.footer-enquiry-map-row .premium-footer-block {
  width: 100%;
}

/* left enquiry block */
.footer-enquiry-map-row .premium-footer-block h6 {
  margin-bottom: 24px;
}

.footer-enquiry-map-row .premium-footer-contact {
  padding-top: 4px;
}

/* right location block */
.premium-footer-map-block {
  padding-left: 26px;
}

.premium-location-block {
  position: relative;
  padding-top: 6px;
}

.premium-location-head {
  margin-bottom: 24px;
  max-width: 760px;
}

.premium-location-head .footer-map-kicker {
  margin-bottom: 16px;
}

.premium-location-head h6 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.premium-location-head p {
  margin: 0;
  max-width: 760px;
  color: rgba(237, 243, 253, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

/* mini cards */
.premium-location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.location-mini-card {
  min-height: 86px;
  border-radius: 20px;
  padding: 16px 18px;
}

.location-mini-text strong {
  font-size: 0.98rem;
}

.location-mini-text small {
  font-size: 0.84rem;
}

/* map frame */
.premium-location-map-wrap {
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
}

.premium-location-map-wrap iframe {
  width: 100%;
  height: 390px;
  display: block;
}

.premium-location-overlay {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

/* make footer content safer under sticky header feeling */
.premium-footer-top {
  padding-top: 18px;
}

@media (max-width: 991.98px) {
  .premium-footer-map-block {
    padding-left: 0;
  }

  .footer-enquiry-map-row {
    margin-top: 24px;
    padding-top: 18px;
  }

  .premium-location-head h6 {
    font-size: 1.55rem;
  }

  .premium-location-map-wrap {
    min-height: 300px;
  }

  .premium-location-map-wrap iframe {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .footer-enquiry-map-row {
    margin-top: 18px;
    padding-top: 14px;
  }

  .premium-location-head {
    margin-bottom: 18px;
  }

  .premium-location-head h6 {
    font-size: 1.28rem;
    line-height: 1.15;
  }

  .premium-location-head p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .premium-location-meta {
    gap: 12px;
    margin-bottom: 16px;
  }

  .location-mini-card {
    min-height: auto;
    padding: 14px 14px;
    border-radius: 16px;
  }

  .premium-location-map-wrap {
    min-height: 240px;
    border-radius: 20px;
  }

  .premium-location-map-wrap iframe {
    height: 240px;
  }
}

/* =========================================
   FINAL FOOTER BALANCE POLISH
   ========================================= */

.footer-enquiry-map-row {
  align-items: flex-start;
}

.footer-enquiry-map-row .col-lg-4 .premium-footer-block {
  padding-top: 18px;
}

.footer-enquiry-map-row .col-lg-8 .premium-footer-block {
  padding-top: 0;
}

.footer-enquiry-map-row .premium-footer-contact li {
  margin-bottom: 18px;
}

.footer-enquiry-map-row .premium-footer-contact a {
  font-size: 1rem;
  line-height: 1.5;
}

.premium-location-meta {
  margin-bottom: 26px;
}

.premium-location-map-wrap {
  margin-top: 4px;
}

/* make enquiry side feel a little richer */
.footer-enquiry-map-row .premium-footer-block h6 {
  margin-bottom: 26px;
}

.footer-enquiry-map-row .premium-footer-contact {
  position: relative;
}

.footer-enquiry-map-row .premium-footer-contact::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0.55),
    rgba(216, 173, 95, 0)
  );
}

@media (max-width: 991.98px) {
  .footer-enquiry-map-row .col-lg-4 .premium-footer-block {
    padding-top: 0;
  }

  .premium-location-meta {
    margin-bottom: 20px;
  }
}

/* RESPONSIVE */

/* ===== TOPBAR ===== */
.topbar {
  position: relative;
  z-index: 1100;
}


/* ===== HEADER BELOW TOPBAR + VENDOR BAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1080;
}

/* If your header is fixed instead of sticky, use this instead:
.site-header{
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 1080;
}
body{
  padding-top: 170px;
}
*/


/* =========================
   TOPBAR
========================= */
.topbar {
  position: relative;
  z-index: 1200;
  width: 100%;
  background: rgba(5, 15, 30, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

/* =========================
   VENDOR BANNER
========================= */

/* =========================
   HEADER POSITION
========================= */
.site-header {
  position: absolute;
  top: 98px; /* 42 topbar + 56 vendor bar */
  left: 0;
  width: 100%;
  z-index: 1100;
}

/* sticky state if you already use JS */
.site-header.is-sticky,
.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* Optional: hero should not jump behind header */
.hero-section,
.hero-carousel,
.hero {
  position: relative;
}

/* =========================
   VERY IMPORTANT RESET
========================= */
.topbar *,
.vendor-banner *,
.site-header * {
  position: relative;
}

/* if any custom absolute positioning is causing overlap, remove it */
.topbar .vendor-banner,
.topbar .vendor-announcement,
.vendor-banner .topbar-item {
  position: static !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .topbar-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 8px 0;
  }

  .vendor-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    min-height: auto;
    padding: 12px 0;
  }

  .vendor-text {
    flex-direction: column;
    overflow: visible;
  }

  .vendor-message {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .vendor-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-header {
    top: 132px;
  }
}
/* =========================
   TOP ANNOUNCEMENT BAR
========================= */
.vendor-topbar {
  position: relative;
  z-index: 1300;
  width: 100%;
  background: linear-gradient(90deg, #0b1830, #07111f);
  border-bottom: 1px solid rgba(216,173,95,0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.vendor-topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT */
.vendor-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.vendor-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vendor-text {
  font-size: 13px;
  color: #d5deea;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* RIGHT */
.vendor-right {
  display: flex;
  gap: 10px;
}

.btn-view,
.btn-download {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-view {
  border: 1px solid rgba(216,173,95,0.8);
  color: #f0d18e;
}

.btn-view:hover {
  background: rgba(216,173,95,0.15);
  color: #fff;
}

.btn-download {
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
}

.btn-download:hover {
  transform: translateY(-1px);
}

/* =========================
   FIX HEADER POSITION
========================= */
.site-header {
  position: absolute;
  top: 48px + 40px; /* vendor bar + topbar */
}

/* If above doesn't work, use fixed value */
.site-header {
  top: 88px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .vendor-topbar-inner {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .vendor-left {
    flex-direction: column;
  }

  .vendor-text {
    white-space: normal;
  }
}

:root{
  --vendor-bar-h: 48px;
  --topbar-h: 42px;
  --header-offset: calc(var(--vendor-bar-h) + var(--topbar-h));
}

/* ===== VENDOR STICKY BAR ===== */
.vendor-sticky-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--vendor-bar-h);
  z-index: 1400;
  background: linear-gradient(90deg, rgba(8,18,36,.98), rgba(6,14,28,.98));
  border-bottom: 1px solid rgba(216,173,95,.28);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

.vendor-sticky-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.vendor-sticky-left{
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.vendor-sticky-badge{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vendor-sticky-text{
  min-width: 0;
  display: block;
  color: #d9e2ef;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-sticky-actions{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vendor-btn-outline,
.vendor-btn-fill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .25s ease;
}

.vendor-btn-outline{
  border: 1px solid rgba(216,173,95,.78);
  color: #f0d18e;
  background: transparent;
}

.vendor-btn-outline:hover{
  background: rgba(216,173,95,.12);
  color: #fff;
}

.vendor-btn-fill{
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
  border: 1px solid transparent;
}

.vendor-btn-fill:hover{
  transform: translateY(-1px);
}

/* ===== TOPBAR BELOW STICKY AD ===== */
.topbar{
  position: fixed;
  top: var(--vendor-bar-h);
  left: 0;
  width: 100%;
  min-height: var(--topbar-h);
  z-index: 1350;
  background: rgba(6,16,32,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.topbar-inner{
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}

/* ===== HEADER BELOW BOTH ===== */
.site-header{
  position: fixed;
  top: var(--header-offset);
  left: 0;
  width: 100%;
  z-index: 1300;
}

/* ===== HERO OFFSET ===== */
.hero,
.hero-section,
.hero-slider,
.hero-carousel,
.page-hero{
  padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) + 92px);
}

/* If your hero already has padding-top, increase only enough to clear bars */

/* ===== IMPORTANT RESET ===== */
.vendor-sticky-bar *,
.topbar *,
.site-header *{
  box-sizing: border-box;
}

.vendor-sticky-bar a,
.topbar a,
.site-header a{
  position: relative;
}

/* ===== MOBILE ===== */
@media (max-width: 991.98px){
  :root{
    --vendor-bar-h: auto;
    --topbar-h: auto;
    --header-offset: 118px;
  }

  .vendor-sticky-bar{
    height: auto;
    padding: 8px 0;
  }

  .vendor-sticky-inner{
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .vendor-sticky-left{
    flex-direction: column;
    align-items: center;
    overflow: visible;
    text-align: center;
  }

  .vendor-sticky-text{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .vendor-sticky-actions{
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar{
    top: 72px;
    position: fixed;
  }

  .site-header{
    top: 118px;
  }

  .hero,
  .hero-section,
  .hero-slider,
  .hero-carousel,
  .page-hero{
    padding-top: 210px;
  }
}

/* =========================================
   FINAL FIX — STICKY VENDOR BAR ABOVE TOPBAR
   keep this block at the very end of style.css
   ========================================= */

:root {
  --vendor-bar-h: 48px;
  --topbar-h: 42px;
  --header-h: 92px;
  --header-offset: calc(var(--vendor-bar-h) + var(--topbar-h));
}

/* ===== VENDOR BAR ===== */
.vendor-sticky-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: var(--vendor-bar-h) !important;
  z-index: 2100 !important;
  background: linear-gradient(90deg, rgba(8,18,36,0.98), rgba(6,14,28,0.98));
  border-bottom: 1px solid rgba(216,173,95,0.28);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vendor-sticky-inner {
  min-height: var(--vendor-bar-h);
  height: var(--vendor-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vendor-sticky-left {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.vendor-sticky-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vendor-sticky-text {
  min-width: 0;
  display: block;
  color: #d9e2ef;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-sticky-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vendor-btn-outline,
.vendor-btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.vendor-btn-outline {
  border: 1px solid rgba(216,173,95,0.78);
  color: #f0d18e;
  background: transparent;
}

.vendor-btn-outline:hover {
  background: rgba(216,173,95,0.12);
  color: #fff;
}

.vendor-btn-fill {
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
  border: 1px solid transparent;
}

.vendor-btn-fill:hover {
  transform: translateY(-1px);
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed !important;
  top: var(--vendor-bar-h) !important;
  left: 0;
  width: 100%;
  min-height: var(--topbar-h) !important;
  z-index: 2050 !important;
  background: rgba(6,16,32,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar-inner {
  min-height: var(--topbar-h) !important;
  display: flex;
  align-items: center;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed !important;
  top: var(--header-offset) !important;
  left: 0;
  width: 100%;
  z-index: 1990 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 8px !important;
  overflow: visible !important;
}

/* keep sticky header below bars even in scrolled state */
.site-header.scrolled,
.site-header.is-sticky {
  position: fixed !important;
  top: var(--header-offset) !important;
  left: 0;
  width: 100%;
  z-index: 1990 !important;
}

/* ===== HERO / FIRST VIEW OFFSET ===== */
.hero-section,
.hero-carousel-section,
.hero,
.page-hero {
  padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) + 92px) !important;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  margin-top: 0 !important;
}

/* keep quote box clear from header */
.hero-quote-box {
  z-index: 6;
}

/* ===== SAFETY RESET ===== */
.vendor-sticky-bar *,
.topbar *,
.site-header * {
  box-sizing: border-box;
}

/* ===== MOBILE ===== */
@media (max-width: 991.98px) {
  :root {
    --vendor-bar-h: 72px;
    --topbar-h: 44px;
    --header-offset: 116px;
  }

  .vendor-sticky-bar {
    height: auto !important;
    padding: 8px 0;
  }

  .vendor-sticky-inner {
    min-height: auto;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .vendor-sticky-left {
    flex-direction: column;
    align-items: center;
    overflow: visible;
    text-align: center;
  }

  .vendor-sticky-text {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .vendor-sticky-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar {
    top: 72px !important;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.is-sticky {
    top: 116px !important;
  }

  .hero-section,
  .hero-carousel-section,
  .hero,
  .page-hero {
    padding-top: 200px !important;
  }
}

@media (max-width: 767.98px) {
  .vendor-sticky-badge {
    font-size: 10px;
    padding: 0 12px;
  }

  .vendor-btn-outline,
  .vendor-btn-fill {
    height: 30px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero-section,
  .hero-carousel-section,
  .hero,
  .page-hero {
    padding-top: 190px !important;
  }
}

/* =========================================
   FINAL STICKY BAR FIX
   keep at the very end
   ========================================= */

:root{
  --vendor-bar-h: 48px;
  --topbar-h: 42px;
  --header-offset: calc(var(--vendor-bar-h) + var(--topbar-h));
}

/* vendor bar */
.vendor-sticky-bar{
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  min-height: var(--vendor-bar-h);
  z-index: 2200 !important;
  background: linear-gradient(90deg, rgba(8,18,36,0.98), rgba(6,14,28,0.98));
  border-bottom: 1px solid rgba(216,173,95,0.28);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vendor-sticky-inner{
  min-height: var(--vendor-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vendor-sticky-left{
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.vendor-sticky-badge{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vendor-sticky-text{
  min-width: 0;
  color: #d9e2ef;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-sticky-actions{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vendor-btn-outline,
.vendor-btn-fill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.vendor-btn-outline{
  border: 1px solid rgba(216,173,95,0.78);
  color: #f0d18e;
  background: transparent;
}

.vendor-btn-fill{
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111;
  border: 1px solid transparent;
}

/* topbar */
.topbar{
  position: fixed !important;
  top: var(--vendor-bar-h) !important;
  left: 0;
  width: 100%;
  min-height: var(--topbar-h);
  z-index: 2150 !important;
  background: rgba(6,16,32,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar .container-fluid{
  padding-left: 16px;
  padding-right: 16px;
}

.topbar-inner{
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
}

.topbar-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* header */
.site-header{
  position: fixed !important;
  top: var(--header-offset) !important;
  left: 0;
  width: 100%;
  z-index: 2100 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 8px !important;
}

.site-header.scrolled,
.site-header.is-sticky{
  top: var(--header-offset) !important;
}

/* hero offset */
/* HERO SHOULD START RIGHT BELOW HEADER */
.hero-section,
.hero-carousel-section{
  padding-top: calc(var(--vendor-bar-h) + var(--topbar-h)) !important;
}

/* mobile */
@media (max-width: 991.98px){
  :root{
    --vendor-bar-h: 72px;
    --topbar-h: 44px;
    --header-offset: 116px;
  }

  .vendor-sticky-bar{
    min-height: 72px;
    padding: 8px 0;
  }

  .vendor-sticky-inner{
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .vendor-sticky-left{
    flex-direction: column;
    align-items: center;
    overflow: visible;
    text-align: center;
  }

  .vendor-sticky-text{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .vendor-sticky-actions{
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar{
    top: 72px !important;
  }

  .topbar-inner{
    justify-content: center;
    flex-wrap: wrap;
    padding: 6px 0;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.is-sticky{
    top: 116px !important;
  }

  .hero-section,
  .hero-carousel-section{
    padding-top: 200px !important;
  }
}

@media (max-width: 767.98px){
  .topbar-item{
    font-size: 0.78rem;
  }

  .hero-section,
  .hero-carousel-section{
    padding-top: 190px !important;
  }
}
.site-header{
  background: rgba(5, 12, 24, 0.55) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* =========================================
   PREMIUM VENDOR BAR (ULTRA LUXURY)
   ========================================= */

.vendor-sticky-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;

  background:
    linear-gradient(90deg, rgba(5,15,35,0.96), rgba(10,25,55,0.96)),
    radial-gradient(circle at 20% 50%, rgba(216,173,95,0.15), transparent 40%);

  border-bottom: 1px solid rgba(216,173,95,0.25);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 -1px 0 rgba(216,173,95,0.2);
}

/* inner layout */
.vendor-sticky-inner{
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* badge */
.vendor-sticky-badge{
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #0b1220;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;

  box-shadow:
    0 0 20px rgba(216,173,95,0.35),
    inset 0 0 6px rgba(255,255,255,0.2);
}

/* text */
.vendor-sticky-text{
  color: #dfe7f5;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* buttons */
.vendor-btn-outline{
  border: 1px solid rgba(216,173,95,0.6);
  color: #f0d18e;
  background: transparent;

  transition: all 0.3s ease;
}

.vendor-btn-outline:hover{
  background: rgba(216,173,95,0.12);
  box-shadow: 0 0 14px rgba(216,173,95,0.35);
}

/* primary button */
.vendor-btn-fill{
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #0b1220;
  font-weight: 700;

  box-shadow:
    0 8px 20px rgba(216,173,95,0.35),
    inset 0 0 6px rgba(255,255,255,0.3);

  transition: all 0.3s ease;
}

.vendor-btn-fill:hover{
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(216,173,95,0.5);
}

/* =========================================
   FINAL HERO VISIBILITY TUNING
   ========================================= */

/* show more carousel image under header */
.hero-carousel-section{
  padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 18px) !important;
}

/* keep header floating over hero for premium look */
.site-header{
  background: transparent !important;
  padding-top: 6px !important;
}

/* tighten navbar block a little so hero image becomes more visible */
.navbar{
  background: linear-gradient(
    180deg,
    rgba(8, 20, 38, 0.72),
    rgba(10, 24, 46, 0.66)
  ) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-shell{
  min-height: 84px !important;
}

/* desktop hero quote box slightly lower for better balance */
.hero-quote-box{
  bottom: 10% !important;
}

/* tablet */
@media (max-width: 991.98px){
  .hero-carousel-section{
    padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 10px) !important;
  }

  .header-shell{
    min-height: 78px !important;
  }
}

/* mobile */
@media (max-width: 767.98px){
  .hero-carousel-section{
    padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 6px) !important;
  }

  .header-shell{
    min-height: 72px !important;
  }
}

/* =========================================
   ULTRA PREMIUM VENDOR BAR
   ========================================= */

.vendor-sticky-bar{
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  min-height: 52px;
  z-index: 2200 !important;

  background:
    linear-gradient(90deg, rgba(4,14,34,0.97), rgba(7,20,46,0.97)),
    radial-gradient(circle at 15% 50%, rgba(216,173,95,0.14), transparent 30%);

  border-bottom: 1px solid rgba(216,173,95,0.22);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.26),
    inset 0 -1px 0 rgba(255,255,255,0.04);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vendor-sticky-bar::before{
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0),
    rgba(95,144,255,0)
  );
  pointer-events: none;
}

.vendor-sticky-inner{
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vendor-sticky-left{
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.vendor-sticky-badge{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #0f1726;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 8px 18px rgba(216,173,95,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.vendor-sticky-text{
  min-width: 0;
  color: #e3ebf7;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-sticky-actions{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vendor-btn-outline,
.vendor-btn-fill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.vendor-btn-outline{
  border: 1px solid rgba(216,173,95,0.65);
  color: #f2d38b;
  background: rgba(255,255,255,0.02);
}

.vendor-btn-outline:hover{
  transform: translateY(-1px);
  background: rgba(216,173,95,0.10);
  border-color: rgba(216,173,95,0.85);
  box-shadow: 0 0 16px rgba(216,173,95,0.16);
  color: #fff;
}

.vendor-btn-fill{
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111a28;
  border: 1px solid transparent;
  box-shadow:
    0 10px 20px rgba(216,173,95,0.24),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

.vendor-btn-fill:hover{
  transform: translateY(-2px);
  box-shadow:
    0 14px 26px rgba(216,173,95,0.34),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* responsive */
@media (max-width: 991.98px){
  .vendor-sticky-bar{
    min-height: auto;
    padding: 8px 0;
  }

  .vendor-sticky-inner{
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .vendor-sticky-left{
    flex-direction: column;
    align-items: center;
    overflow: visible;
    text-align: center;
  }

  .vendor-sticky-text{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 12.5px;
  }

  .vendor-sticky-actions{
    justify-content: center;
    flex-wrap: wrap;
  }
}
.topbar{
  background: linear-gradient(
    180deg,
    rgba(7,16,30,0.88),
    rgba(7,16,30,0.82)
  ) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar-item{
  color: #d5dfec;
  font-weight: 500;
}
/* =========================================
   FINAL TOP HERO LIFT
   ========================================= */

/* pull hero upward a bit more */
.hero-carousel-section{
  padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 34px) !important;
}

/* keep navbar compact so more image shows */
.header-shell{
  min-height: 80px !important;
}

/* keep header overlay premium */
.site-header{
  padding-top: 4px !important;
}

.navbar{
  background: linear-gradient(
    180deg,
    rgba(8, 20, 38, 0.68),
    rgba(10, 24, 46, 0.62)
  ) !important;
}

/* tablet */
@media (max-width: 991.98px){
  .hero-carousel-section{
    padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 18px) !important;
  }

  .header-shell{
    min-height: 76px !important;
  }
}

/* mobile */
@media (max-width: 767.98px){
  .hero-carousel-section{
    padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 10px) !important;
  }

  .header-shell{
    min-height: 72px !important;
  }
}

/* =========================================
   PREMIUM 3D MARQUEE TEXT
   ========================================= */

.vendor-sticky-left{
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.vendor-marquee{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%,
    transparent 100%
  );
}

.vendor-marquee-track{
  display: flex;
  align-items: center;
  width: max-content;
  gap: 80px;
  animation: vendorMarquee 18s linear infinite;
  will-change: transform;
}

.vendor-marquee:hover .vendor-marquee-track{
  animation-play-state: paused;
}

.vendor-marquee-track span{
  display: inline-block;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #eef4fd;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.18),
    0 2px 10px rgba(0,0,0,0.28),
    0 0 14px rgba(95,144,255,0.10);
  transform: perspective(1000px) rotateX(8deg);
}

@keyframes vendorMarquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* mobile refinement */
@media (max-width: 991.98px){
  .vendor-marquee-track{
    gap: 42px;
    animation-duration: 18s;
  }

  .vendor-marquee-track span{
    font-size: 16px;
    transform: none;
    text-align: center;
  }
}

/* =========================================
   ULTRA LUXURY VENDOR BAR
   keep at very end of style.css
   ========================================= */

.vendor-sticky-bar{
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 3000 !important;
  padding: 8px 0 6px;
  background:
    linear-gradient(180deg, rgba(2,8,18,0.96), rgba(4,12,26,0.92)),
    radial-gradient(circle at 15% 50%, rgba(216,173,95,0.10), transparent 28%);
  border-bottom: 1px solid rgba(216,173,95,0.16);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.34),
    inset 0 -1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vendor-sticky-bar::before{
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0.18),
    rgba(216,173,95,0)
  );
  opacity: 0.95;
  pointer-events: none;
}

.vendor-sticky-inner{
  min-height: auto;
  display: block;
}

.vendor-sticky-shell{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    linear-gradient(135deg, rgba(95,144,255,0.05), rgba(216,173,95,0.06));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.vendor-sticky-shell::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.06) 50%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: vendorShine 7s linear infinite;
  pointer-events: none;
}

@keyframes vendorShine{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(140%); }
}

.vendor-sticky-left{
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.vendor-sticky-badge{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #101722;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 10px 22px rgba(216,173,95,0.24),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.vendor-sticky-badge i{
  font-size: 11px;
  line-height: 1;
}

.vendor-marquee{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,1) 7%,
    rgba(0,0,0,1) 93%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,1) 7%,
    rgba(0,0,0,1) 93%,
    transparent 100%
  );
}

.vendor-marquee-track{
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: vendorMarqueeLuxury 24s linear infinite;
}

.vendor-marquee:hover .vendor-marquee-track{
  animation-play-state: paused;
}

.vendor-marquee-track span{
  display: inline-block;
  white-space: nowrap;
  color: #edf3fd;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.15),
    0 8px 20px rgba(0,0,0,0.22),
    0 0 12px rgba(95,144,255,0.08);
  transform: perspective(1000px) rotateX(7deg);
}

@keyframes vendorMarqueeLuxury{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.vendor-sticky-actions{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vendor-btn-outline,
.vendor-btn-fill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.vendor-btn-outline{
  border: 1px solid rgba(216,173,95,0.58);
  background: rgba(255,255,255,0.02);
  color: #f1d188;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.vendor-btn-outline:hover{
  transform: translateY(-1px);
  background: rgba(216,173,95,0.10);
  border-color: rgba(216,173,95,0.85);
  color: #fff;
  box-shadow: 0 0 18px rgba(216,173,95,0.14);
}

.vendor-btn-fill{
  background: linear-gradient(135deg, #d8ad5f, #f0d18e);
  color: #111a28;
  border: 1px solid transparent;
  box-shadow:
    0 12px 24px rgba(216,173,95,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.vendor-btn-fill:hover{
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(216,173,95,0.30),
    inset 0 1px 0 rgba(255,255,255,0.32);
}

/* better balance with topbar */
.topbar{
  top: 68px !important;
}

.site-header,
.site-header.scrolled,
.site-header.is-sticky{
  top: calc(68px + var(--topbar-h)) !important;
}

.hero-carousel-section{
  padding-top: calc(68px + var(--topbar-h) - 34px) !important;
}

/* responsive */
@media (max-width: 991.98px){
  .vendor-sticky-bar{
    padding: 8px 0;
  }

  .vendor-sticky-shell{
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .vendor-sticky-left{
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: visible;
  }

  .vendor-marquee{
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .vendor-marquee-track{
    gap: 40px;
    animation-duration: 18s;
  }

  .vendor-marquee-track span{
    font-size: 24px !important;
    transform: none;
  }

  .vendor-sticky-actions{
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar{
    top: 92px !important;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.is-sticky{
    top: 136px !important;
  }

  .hero-carousel-section{
    padding-top: 104px !important;
  }
}

/* =========================================
   FINAL HERO LIFT (MAX VISIBILITY)
   ========================================= */

/* move carousel upward more */
.hero-carousel-section{
  padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 60px) !important;
}

/* reduce header height */
.header-shell{
  min-height: 72px !important;
}

/* keep navbar compact */
.navbar{
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* mobile */
@media (max-width: 991.98px){
  .hero-carousel-section{
    padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 30px) !important;
  }
}

@media (max-width: 767.98px){
  .hero-carousel-section{
    padding-top: calc(var(--vendor-bar-h) + var(--topbar-h) - 18px) !important;
  }
}

.vendor-sticky-bar{
  background: rgba(5, 12, 24, 0.35) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(216,173,95,0.18);
  box-shadow: none !important;
}

.topbar{
  background: rgba(5, 12, 24, 0.25) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header{
  background: rgba(5, 12, 24, 0.15) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: none !important;
}

.navbar{
  background: transparent !important;
}

/* text clarity */
.topbar-item,
.vendor-sticky-text{
  color: #e6edf7 !important;
}

/* logo glow */
.logo-text{
  text-shadow: 0 0 10px rgba(95,144,255,0.3);
}

/* menu text */
.navbar-nav .nav-link{
  color: #eaf1fb !important;
}
/* =========================================
   VENDOR MODAL
   ========================================= */

.vendor-modal-content{
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8,20,38,0.96), rgba(10,24,46,0.96));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  color: #fff;
  overflow: hidden;
  margin-top: 150px;
}

.vendor-modal-header{
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 22px;
}

.vendor-modal-header .modal-title{
  font-size: 1.15rem;
  font-weight: 800;
  color: #f0d18e;
}

.vendor-modal-body{
  padding: 24px 22px 26px;

}

.vendor-modal-body p{
  color: #d6e1ef;
  line-height: 1.8;
  margin-bottom: 14px;
}

.vendor-modal-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* =========================================
   PREMIUM PDF MODAL VIEWER
   ========================================= */

.vendor-pdf-modal .modal-content{
  background: rgba(5, 15, 30, 0.95);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.vendor-pdf-modal .modal-header{
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 20px;
}

.vendor-pdf-modal h5{
  color: #f0d18e;
  font-weight: 700;
}

.vendor-pdf-modal .modal-body{
  padding: 0;
  background: #0b1220;
}

.vendor-pdf-modal iframe{
  display: block;
  width: 100%;
  height: 75vh;

}

/* =========================================
   ULTRA PREMIUM PDF VIEWER MODAL
   ========================================= */

.vendor-pdf-modal .modal-dialog {
  padding: 20px;
}

.vendor-pdf-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(216,173,95,0.10), transparent 24%),
    radial-gradient(circle at left center, rgba(95,144,255,0.08), transparent 28%),
    linear-gradient(180deg, rgba(6,15,28,0.96), rgba(8,20,38,0.97));
  box-shadow:
    0 38px 100px rgba(0,0,0,0.5),
    0 12px 32px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.vendor-pdf-topline {
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216,173,95,0),
    rgba(216,173,95,0.95),
    rgba(240,209,142,0),
    rgba(95,144,255,0)
  );
  z-index: 3;
}

.vendor-pdf-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
}

.vendor-pdf-title-wrap {
  min-width: 0;
}

.vendor-doc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,173,95,0.12);
  border: 1px solid rgba(216,173,95,0.24);
  color: #f3d99a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.vendor-pdf-header .modal-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.vendor-doc-subtitle {
  margin: 0;
  color: #bfd0e6;
  font-size: 0.95rem;
  line-height: 1.7;
}

.vendor-pdf-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vendor-doc-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(216,173,95,0.35);
  color: #f1d188;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.vendor-doc-open:hover {
  transform: translateY(-1px);
  background: rgba(216,173,95,0.08);
  border-color: rgba(216,173,95,0.55);
  box-shadow: 0 0 18px rgba(216,173,95,0.12);
  color: #fff;
}

.vendor-doc-expand {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: #eaf1fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.vendor-doc-expand:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(216,173,95,0.28);
}

.vendor-pdf-body {
  position: relative;
  padding: 18px;
  background: transparent;
}

.vendor-pdf-frame-wrap {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(6,14,26,0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 24px 60px rgba(0,0,0,0.24);
}

.vendor-pdf-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

.vendor-pdf-glow-1 {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -50px;
  background: rgba(95,144,255,0.16);
}

.vendor-pdf-glow-2 {
  width: 220px;
  height: 220px;
  bottom: -60px;
  right: -50px;
  background: rgba(216,173,95,0.18);
}

.vendor-pdf-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );
}

.vendor-pdf-toolbar-left,
.vendor-pdf-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vendor-pdf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e8f0fb;
  font-size: 0.78rem;
  font-weight: 700;
}

.vendor-pdf-chip.muted-chip {
  color: #b8c9dd;
}

.vendor-zoom-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #f0f6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.vendor-zoom-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(216,173,95,0.25);
}

.vendor-zoom-level {
  min-width: 52px;
  text-align: center;
  color: #f1d188;
  font-size: 0.84rem;
  font-weight: 800;
}

.vendor-pdf-stage {
  position: relative;
  z-index: 1;
  height: 76vh;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(10,18,32,0.80), rgba(7,13,24,0.88));
}

.vendor-pdf-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0b1220;
  transform-origin: top center;
  transition: transform 0.25s ease;
}

.vendor-pdf-fallback {
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.vendor-pdf-fallback p {
  margin: 0;
  color: #bacee6;
  font-size: 0.85rem;
  line-height: 1.6;
}

.vendor-pdf-fallback a {
  color: #f1d188;
  font-weight: 700;
  text-decoration: none;
}

.vendor-pdf-fallback a:hover {
  color: #fff;
}

.vendor-pdf-modal.modal.show {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 991.98px) {
  .vendor-pdf-modal .modal-dialog {
    padding: 10px;
  }

  .vendor-pdf-shell {
    border-radius: 22px;
  }

  .vendor-pdf-header {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 18px 16px;
  }

  .vendor-pdf-header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .vendor-pdf-body {
    padding: 12px;
  }

  .vendor-pdf-stage {
    height: 70vh;
    min-height: 440px;
  }
}

@media (max-width: 767.98px) {
  .vendor-pdf-header .modal-title {
    font-size: 1.08rem;
  }

  .vendor-doc-subtitle {
    font-size: 0.88rem;
  }

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

  .vendor-pdf-toolbar-left,
  .vendor-pdf-toolbar-right {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .vendor-doc-open {
    min-height: 40px;
    padding: 0 14px;
  }

  .vendor-pdf-stage {
    height: 64vh;
    min-height: 360px;
  }
}

/* =========================
   VENDOR MODAL PREMIUM
========================= */

.vendor-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.vendor-modal.active {
  display: block;
}

/* backdrop */
.vendor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(8px);
}

/* content */
.vendor-modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 85vh;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 20, 40, 0.95);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(216,173,95,0.25);
}

/* header */
.vendor-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vendor-modal-header h5 {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.vendor-modal-header span {
  font-size: 12px;
  color: #9eb0ca;
}

/* close */
.vendor-modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* body */
.vendor-modal-body {
  flex: 1;
  background: #fff;
}

.vendor-modal-body iframe {
  width: 100%;
  height: 100%;
}

/* footer */
.vendor-modal-footer {
  padding: 12px 20px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255,255,255,0.08);
}
/* =========================
   EPC LEVEL MODAL ANIMATION
========================= */

.vendor-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.vendor-modal.active {
  opacity: 1;
  pointer-events: all;
}

/* BACKDROP */
.vendor-modal-backdrop {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vendor-modal.active .vendor-modal-backdrop {
  opacity: 1;
}

/* CONTENT ANIMATION */
.vendor-modal-content {
  transform: translateY(60px) scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(.23,1,.32,1);
}

.vendor-modal.active .vendor-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* HEADER SLIDE */
.vendor-modal-header {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.vendor-modal.active .vendor-modal-header {
  transform: translateY(0);
  opacity: 1;
}

/* BODY FADE */
.vendor-modal-body {
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}

.vendor-modal.active .vendor-modal-body {
  opacity: 1;
}

/* GOLD SHINE EFFECT */
.vendor-modal-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.08) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-120%);
}

.vendor-modal.active .vendor-modal-content::after {
  animation: shineMove 1s ease forwards;
}

@keyframes shineMove {
  to {
    transform: translateX(120%);
  }
}

.vendor-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
}

.vendor-modal.active {
  display: block;
}

.vendor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 20, 0.82);
  backdrop-filter: blur(8px);
}

.vendor-modal-panel {
  position: absolute;
  inset: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(6, 16, 32, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.vendor-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex: 0 0 auto;
}

.vendor-modal-header h5 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.vendor-modal-header span {
  color: #b8c8db;
  font-size: 0.9rem;
}

.vendor-modal-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.vendor-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  background: #0b1220;
}

.vendor-modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

.vendor-modal-footer {
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .vendor-modal-panel {
    inset: 10px;
    border-radius: 16px;
  }

  .vendor-modal-header,
  .vendor-modal-footer {
    padding: 14px 16px;
  }
}

.vendor-letter-images {
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vendor-letter-images img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.vendor-modal-body.vendor-letter-images {
  height: calc(100vh - 180px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background:
    radial-gradient(circle at top center, rgba(216, 173, 95, 0.08), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #08192f 55%, #06101d 100%);
  scroll-behavior: smooth;
}

/* premium scrollbar */
.vendor-modal-body.vendor-letter-images::-webkit-scrollbar {
  width: 10px;
}

.vendor-modal-body.vendor-letter-images::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.vendor-modal-body.vendor-letter-images::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d8ad5f, #f0d18e);
  border-radius: 999px;
}

/* large premium page display */
.vendor-letter-images img {
  width: min(96%, 1180px);
  height: auto;
  margin: 0 auto;
  display: block;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.38),
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* subtle hover premium effect */
.vendor-letter-images img:hover {
  transform: translateY(-3px) scale(1.004);
  box-shadow:
    0 34px 72px rgba(0, 0, 0, 0.44),
    0 14px 30px rgba(0, 0, 0, 0.22);
}

/* page separator glow */
.vendor-letter-images img + img {
  position: relative;
}

/* tablet */
@media (max-width: 991.98px) {
  .vendor-modal-body.vendor-letter-images {
    height: calc(100vh - 160px);
    padding: 20px;
    gap: 22px;
  }

  .vendor-letter-images img {
    width: min(98%, 1000px);
    border-radius: 12px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .vendor-modal-body.vendor-letter-images {
    height: calc(100vh - 145px);
    padding: 14px;
    gap: 16px;
  }

  .vendor-letter-images img {
    width: 100%;
    border-radius: 10px;
  }
}

.vendor-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.vendor-modal.active {
  display: flex;
}

.vendor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(10px);
}

.vendor-modal-panel {
  position: relative;
  width: min(96vw, 1320px);
  height: min(94vh, 980px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(5, 16, 32, 0.98), rgba(6, 19, 38, 0.98)),
    linear-gradient(135deg, rgba(95, 144, 255, 0.05), rgba(216, 173, 95, 0.06));
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.52),
    0 20px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vendor-modal-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 173, 95, 0),
    rgba(216, 173, 95, 0.95),
    rgba(240, 209, 142, 0)
  );
  z-index: 2;
}

.vendor-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}

.vendor-modal-header h5 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.vendor-modal-header span {
  color: #b8c8dc;
  font-size: 0.92rem;
}

.vendor-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.vendor-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(90deg);
}

.vendor-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.02));
}

.vendor-page {
  position: relative;
  width: 100%;
}

.vendor-page::before {
  content: "Document Preview";
  display: inline-flex;
  margin: 0 auto 10px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4dbab;
  background: rgba(216, 173, 95, 0.12);
  border: 1px solid rgba(216, 173, 95, 0.24);
}
.vendor-modal-panel {
  height: 96vh; /* almost full screen */
  max-height: 100vh;
}
.vendor-modal-header {
  padding: 14px 20px 10px;
}

.vendor-modal-footer {
  padding: 10px 18px 12px;
}

.vendor-modal-body.vendor-letter-images {
  flex: 1; /* VERY IMPORTANT */
  height: auto;
  overflow-y: auto;
}

.vendor-letter-images img {
  width: min(94%, 1280px);
  height: auto;
}

.vendor-modal-panel {
  width: min(98vw, 1400px);
}