/* ========================================
   ELEVATEUX - COMBINED STYLESHEET
   All styles from: index, services, about, 
   contact, 404, and thank-you pages
   ======================================== */

/* ========================================
   1. ROOT VARIABLES & RESET
   ======================================== */
:root {
  --ux-bg: #0b202d;
  --ux-bg-rgb: 11, 32, 45;
  --ux-bg-2: #0b202d;
  --ux-card: #0b202d;
  --ux-text: #f5f7fa;
  --ux-muted: #9fb2c7;
  --ux-gold: #d6b67c;
  --ux-gold-rgb: 214, 182, 124;
  --ux-gold-muted: rgba(214, 182, 124, 0.4);
  --ux-gold-2: #d6b67c;
  --ux-gold-highlight: #d6b67c;
  --ux-gold-mid: #d6b67c;
  --ux-gold-shadow: #d6b67c;
  --ux-white: #fff;
  --ux-shadow: 0 8px 30px #0b202d;
  --ux-radius: 18px;
  --ux-max: 1120px;
  --ux-metallic-gold-gradient: linear-gradient(145deg, #D6B67C, #D6B67C 25%, #b59862 50%, #c0a36c 75%, #D6B67C);
  --navy: #0b202d;
  --gold: #d6b67c;
  --white: #FFFFFF;
}

/* RESET (lightweight) */
.ux * {
  box-sizing: border-box;
}

.ux html,
.ux body {
  margin: 0;
}

/* ========================================
   2. BASE LAYOUT & TYPOGRAPHY
   ======================================== */
body,
html {
  background: var(--ux-bg);
  color: var(--ux-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

.ux a {
  color: inherit;
  text-decoration: none;
}

.ux .wrap {
  max-width: var(--ux-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */
.ux-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(6px);
  background: rgba(15, 25, 42, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ux-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.ux-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.ux-logo img {
  height: 65px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.ux-logo__name {
  font-family: Poppins, Inter, sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.9px;
  color: var(--ux-gold, #d6b67c) !important;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.3s ease;
}

.ux-logo:hover img,
.ux-logo:hover .ux-logo__name {
  transform: scale(1.05);
}

/* Header Icon Group */
.header-icon-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.header-icon-group a {
  color: white;
  font-size: 22px;
  text-decoration: none;
  margin: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  will-change: transform, opacity;
}

.header-icon-group:hover a {
  transform: scale(0.9);
  opacity: 0.7;
}

.header-icon-group a:hover {
  transform: scale(1.15) !important;
  opacity: 1 !important;
  color: var(--ux-gold, #D4AF37) !important;
}

/* ========================================
   4. SIDE-DRAWER MENU SYSTEM
   ======================================== */
.ux-menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 24px;
  width: 30px;
  padding: 0;
  z-index: 10001;
  margin-left: auto;
}

.ux-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--ux-text);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.ux-side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 90vw;
  height: 100%;
  background: var(--ux-bg);
  z-index: 10000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}

.ux-drawer-aux-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(4px) brightness(0.8);
  transform: scale(1.05);
}

.ux-drawer-aux-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(11, 32, 45, 0.5), transparent);
}

.ux-drawer-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.ux-drawer-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ux-text);
  text-decoration: none;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.ux-drawer-link:hover {
  color: var(--ux-gold);
  transform: translateX(10px);
}

.ux-menu-item-image {
  height: 60px;
  width: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: 15px;
}

.ux-drawer-link:hover .ux-menu-item-image {
  opacity: 1;
}

.ux-drawer-socials {
  display: flex;
  gap: 25px;
  font-size: 28px;
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ux-drawer-socials a {
  color: var(--ux-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.ux-drawer-socials a:hover {
  color: var(--ux-gold);
  transform: scale(1.15);
}

body.menu-is-active .ux-side-drawer {
  transform: translateX(0);
}

body.menu-is-active .ux-menu-toggle span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

body.menu-is-active .ux-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-is-active .ux-menu-toggle span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

body.menu-is-active {
  overflow: hidden;
}

.ux-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-is-active .ux-drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   5. HERO SECTION
   ======================================== */
.ux-hero {
  position: relative;
  padding: 96px 0 72px;
  background-image: linear-gradient(180deg, rgba(11, 22, 34, .4), #0b202d), url("assets/images/background/main-slider-bg-1.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(231, 199, 95, .14), transparent 60%), linear-gradient(180deg, #0b202d, #0b202d);
  pointer-events: none;
}

.ux-hero .wrap {
  position: relative;
  z-index: 1;
}

.ux-hero__card {
  background: #0b202d;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--ux-radius);
  padding: 36px 28px;
  box-shadow: var(--ux-shadow);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ux-h1 {
  font: 700 clamp(28px, 5vw, 48px) Poppins, Inter, sans-serif;
  margin: 0 0 12px;
}

.ux-sub {
  color: var(--ux-muted);
  font-size: clamp(14px, 2.2vw, 18px);
  margin-bottom: 24px;
}

/* Fixed Parallax Background (hero section override) */
#hero-section {
  position: relative;
  z-index: 1;
  padding: 96px 0 72px;
  background: transparent;
  transform: none !important;
  filter: none !important;
  perspective: none !important;
}

#hero-section::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 50% 50%, #d6b67c, transparent 60%), var(--ux-bg, #0b202d);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* ========================================
   6. BUTTONS & CTAs
   ======================================== */
.ux-btn-hover {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font: 600 16px Poppins, Inter, sans-serif;
  color: var(--ux-text);
  background: var(--ux-bg);
  border: 1px solid rgba(255, 255, 255, .2);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.ux-btn-hover .btn-text {
  position: relative;
  z-index: 2;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.ux-btn-hover .btn-hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateX(30%);
  opacity: 0;
  color: #0b202d;
  font-weight: 700;
  z-index: 3;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.ux-btn-hover .btn-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--ux-gold);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 1;
}

.ux-btn-hover:hover {
  border-color: var(--ux-gold);
  color: #0b202d;
}

.ux-btn-hover:hover .btn-text {
  transform: translateX(-30%);
  opacity: 0;
}

.ux-btn-hover:hover .btn-hover {
  transform: translateX(0);
  opacity: 1;
}

.ux-btn-hover:hover .btn-bg {
  width: 220%;
  height: 500%;
}

.ux-btn-hover:hover .btn-bg {
  background: linear-gradient(145deg, var(--ux-gold-mid), var(--ux-gold-shadow));
}

.ux-btn-hover:hover .btn-hover {
  color: var(--ux-bg) !important;
}

/* Small Button Styling */
.ux-btn-small {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: var(--ux-gold);
  background: transparent;
  border: 2px solid var(--ux-gold);
  padding: 10px 25px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ux-btn-small:hover {
  background: var(--ux-gold);
  color: var(--ux-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(214, 182, 124, 0.3);
}

/* Big CTA Button */
.big-cta-btn {
  display: inline-block;
  font-family: 'Poppins', Inter, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ux-gold);
  background: transparent;
  border: 2px solid var(--ux-gold);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.big-cta-btn:hover {
  background: var(--ux-gold);
  color: var(--ux-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

/* ========================================
   7. ABOUT SECTION
   ======================================== */
.ux-about {
  padding: 64px 0;
}

.ux-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}

.ux-about h2 {
  font: 700 clamp(24px, 4vw, 40px) Poppins, Inter, sans-serif;
  margin: 0 0 12px;
}

.ux-about p {
  color: var(--ux-muted);
  margin: 0;
}

.ux-about img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--ux-shadow);
}

@media (max-width: 900px) {
  .ux-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page: 2-Column Section */
.about-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.about-section .wrap {
  display: contents;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--ux-radius);
  border: 1px solid rgba(255, 255, 255, .08);
  opacity: 0.8;
}

.about-text .ux-h2 {
  font: 700 clamp(24px, 4vw, 36px) Poppins, Inter, sans-serif;
  margin: 0 0 16px;
}

.about-text p {
  font-size: 17px;
  color: var(--ux-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Core Values Section */
.values-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(11, 32, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--ux-radius);
  padding: 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-card .icon {
  font-size: 28px;
  color: var(--ux-gold);
  margin-bottom: 16px;
}

.value-card .ux-h3 {
  font: 600 22px Poppins, Inter, sans-serif;
  color: var(--ux-white);
  margin: 0 0 10px;
}

.value-card p {
  font-size: 15px;
  color: var(--ux-muted);
  line-height: 1.6;
  margin: 0;
}

/* Meet AUX - Sticky Scroll Section */
.aux-scroll-section {
  padding: 100px 0;
}

.aux-scroll-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}

.aux-scroll-sticky {
  position: sticky;
  top: 100px;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aux-scroll-sticky img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(214, 182, 124, 0.2));
}

.aux-scroll-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 15vh;
  padding-bottom: 15vh;
}

.aux-scroll-step {
  background: rgba(11, 32, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--ux-radius);
  padding: 32px;
  min-height: 250px;
}

.aux-scroll-step .ux-h3 {
  font: 600 24px Poppins, Inter, sans-serif;
  color: var(--ux-gold);
  margin: 0 0 12px;
}

.aux-scroll-step p {
  font-size: 17px;
  color: var(--ux-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  .about-section .wrap {
    display: block;
  }

  .about-image {
    margin-bottom: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .aux-scroll-section .wrap {
    grid-template-columns: 1fr;
  }

  .aux-scroll-sticky {
    position: relative;
    top: 0;
    height: auto;
    padding: 0 0 30px 0;
  }

  .aux-scroll-sticky img {
    max-width: 300px;
  }

  .aux-scroll-content {
    padding: 0;
  }

  .aux-scroll-step {
    min-height: auto;
  }
}

/* ========================================
   8. PACKAGES SECTION
   ======================================== */
.ux-pack {
  padding: 56px 0 32px;
  background: var(--ux-bg);
}

.ux-title {
  font: 700 clamp(22px, 3.6vw, 36px) Poppins, Inter, sans-serif;
  text-align: center;
  margin: 0 0 26px;
}

.ux-cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .ux-cards {
    grid-template-columns: 1fr;
  }
}

.ux-card {
  background: var(--ux-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--ux-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ux-card h3 {
  font: 700 24px Poppins, Inter, sans-serif;
  margin: 2px 0 6px;
}

.ux-price {
  font: 700 22px Poppins, Inter, sans-serif;
  color: var(--ux-gold);
  margin-bottom: 12px;
}

.ux-list {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.ux-list li {
  margin: 8px 0;
  color: var(--ux-text);
}

.ux-bonus {
  color: var(--ux-gold);
}

.ux-badge {
  display: inline-block;
  background: rgba(231, 199, 95, .12);
  border: 1px solid var(--ux-gold);
  color: var(--ux-gold);
  font: 700 12px Poppins, Inter, sans-serif;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.ux-note {
  margin: 26px 0 6px;
  text-align: center;
  color: var(--ux-muted);
}

/* Card Hover Effects */
.ux-card:hover {
  transform: scale(1.05);
  border-color: var(--ux-gold);
  box-shadow: 0 12px 40px #0b202d;
}

.ux-cards:hover .ux-card:not(:hover) {
  transform: scale(0.98);
  opacity: 0.7;
  filter: blur(1px);
}

.ux-card .ux-btn-hover {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Parallax Row Packages */
.ux-cards:not(.parallax-row) {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ux-cards.parallax-row {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 20px 40px 20px;
  -webkit-overflow-scrolling: touch;
  transition: all 0.4s ease;
}

.ux-cards.parallax-row::-webkit-scrollbar {
  display: none;
}

.ux-cards.parallax-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ux-cards.parallax-row .ux-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.4s ease,
    filter 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  will-change: transform, opacity, filter;
  border: 1px solid rgba(255, 255, 255, .06);
}

.ux-cards.parallax-row:hover .ux-card {
  transform: scale(0.90);
  opacity: 0.65;
  filter: blur(1.5px) grayscale(40%);
}

.ux-cards.parallax-row .ux-card:hover {
  transform: scale(1.08);
  opacity: 1 !important;
  filter: none !important;
  border-color: var(--ux-gold, #d4af37);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
  z-index: 10;
}

@media (min-width: 1400px) {
  .ux-cards.parallax-row {
    overflow-x: visible;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ux-cards.parallax-row .ux-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* Premium Package Styling */
.ux-card.premium-card {
  border: 2px solid var(--ux-gold);
  box-shadow: 0 14px 44px rgba(231, 199, 95, .20), var(--ux-shadow);
  position: relative;
}

.ux-card.premium-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  pointer-events: none;
  box-shadow: 0 0 0 2px rgba(231, 199, 95, .08), 0 0 28px rgba(231, 199, 95, .10) inset;
}

.premium-card h3 {
  color: var(--ux-gold);
}

.ux-btn.premium-cta {
  background: linear-gradient(180deg, var(--ux-gold), #d6b67c);
  color: #0b202d;
  font-weight: 700;
  box-shadow: 0 8px 22px #d6b67c;
}

.ux-btn.premium-cta:hover {
  background: #fff;
  color: #0b202d;
}

/* Masonry Grid Packages */
.package-grid-top,
.package-grid-bottom {
  display: grid;
  gap: 22px;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 992px) {
  .package-grid-bottom {
    grid-template-columns: 1fr 1fr;
    width: 67%;
    margin: 0 auto;
  }
}

.package-grid-top:hover .ux-card,
.package-grid-bottom:hover .ux-card {
  transform: scale(0.95);
  opacity: 0.6;
  filter: blur(2px) grayscale(30%);
  transition: all 0.4s ease;
}

.package-grid-top .ux-card:hover,
.package-grid-bottom .ux-card:hover {
  transform: scale(1.05) !important;
  opacity: 1 !important;
  filter: none !important;
  border-color: var(--ux-gold);
  box-shadow: 0 20px 60px rgba(214, 182, 124, 0.3);
  z-index: 10;
}

.ux-card {
  max-width: 420px;
  margin: 0 auto;
}

/* GSAP Scroll Section */
#packages-container {
  height: 500vh;
  position: relative;
  overflow: hidden;
  background: var(--ux-bg);
}

#packages-sticky-title {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#packages-sticky-title h2 {
  font: 700 clamp(32px, 5vw, 48px) Poppins, Inter, sans-serif;
  text-align: center;
  margin: 0;
  color: var(--ux-text);
  transition: color 0.5s ease;
}

.package-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.package-panel .ux-card {
  width: 360px;
  transform: scale(0.8);
  opacity: 1;
}

/* ========================================
   9. INTERACTIVE PROCESS SECTION
   ======================================== */
.ux-process {
  padding: 64px 0;
  background: var(--ux-bg);
}

.process-container {
  display: flex;
  gap: 16px;
  height: 60vh;
  min-height: 500px;
  max-height: 650px;
}

.process-panel {
  flex: 1;
  border-radius: var(--ux-radius);
  background-size: cover;
  background-position: center 20%;
  background-blend-mode: overlay;
  background-color: rgba(29, 44, 61, 0.9);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: flex 0.7s cubic-bezier(0.05, 0.6, 0.4, 0.9),
    background-color 0.7s ease;
}

.process-panel.active {
  flex: 10;
  background-color: rgba(11, 32, 45, 0.7);
}

.panel-content {
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.large-step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(214, 182, 124, 0.15);
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.process-panel h3,
.process-panel p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.process-panel h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: var(--ux-gold);
  margin: 0;
}

.process-panel p {
  color: var(--ux-white);
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

.process-panel.active h3,
.process-panel.active p {
  opacity: 1;
  transform: translateY(0);
  white-space: normal;
}

.process-panel.active h3 {
  transition-delay: 0.3s;
}

.process-panel.active p {
  transition-delay: 0.4s;
  opacity: 1;
}

@media (max-width: 768px) {
  .process-panel h3 {
    font-size: 22px;
  }

  .process-panel p {
    font-size: 15px;
  }
}

/* ========================================
   10. FAQ SECTION
   ======================================== */
.ux-faqs {
  padding: 64px 0;
  background: var(--ux-bg);
}

.ux-faqs .ux-title {
  margin-bottom: 40px;
  text-align: center;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ux-white);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--ux-gold);
}

.faq-question::after {
  content: '\2304';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  color: var(--ux-gold);
  font-size: 20px;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding: 0 0 20px 0;
  color: var(--ux-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ========================================
   11. BIG CTA SECTION
   ======================================== */
.ux-big-cta {
  padding: 100px 0;
  background: #0b202d;
  text-align: center;
}

.cta-small-text {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ux-muted);
  margin-bottom: 10px;
  opacity: 0.7;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  background: linear-gradient(145deg, var(--ux-gold-highlight), var(--ux-gold-mid) 50%, var(--ux-gold-shadow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .ux-big-cta {
    padding: 64px 20px;
  }

  .cta-title {
    font-size: 32px !important;
    line-height: 1.3;
  }

  .cta-small-text {
    font-size: 18px;
  }
}

/* ========================================
   12. FOOTER
   ======================================== */
.ux-foot {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--ux-muted);
  font-size: 15px;
}

.ux-foot .row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.poppins-700 {
  font-weight: 700;
  font-family: Poppins, Inter, sans-serif;
}

/* 3-Column Pro Footer */
.pro-footer {
  background: var(--ux-bg);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--ux-muted);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ux-white);
  margin: 0 0 12px 0;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, transparent, var(--ux-gold), transparent);
}

.footer-link {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--ux-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--ux-gold);
}

.footer-link.icon-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link .fa-solid,
.footer-link .fa-brands {
  font-size: 18px;
  width: 20px;
  color: var(--ux-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.02);
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: var(--ux-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.pro-footer .wrap {
  max-width: var(--ux-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Link Highlight Animation */
#contact:target #footer-email-link {
  color: var(--ux-gold);
  animation: pulse-gold 1.5s 2;
}

@keyframes pulse-gold {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 #0b202d;
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 10px #d6b67c;
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 #0b202d;
  }
}

/* ========================================
   13. PRELOADER
   ======================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--ux-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#preloader img {
  width: 60px;
  height: auto;
  animation: pulse-loader 1.5s infinite ease-in-out;
}

@keyframes pulse-loader {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

/* ========================================
   14. GOLD GRADIENT & PREMIUM EFFECTS
   ======================================== */
.premium-gold-gradient {
  background: linear-gradient(145deg, var(--ux-gold-highlight), var(--ux-gold-mid) 50%, var(--ux-gold-shadow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-gradient-text {
  background: linear-gradient(90deg, #d4af37, #f0e68c, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ========================================
   15. CURSOR FOLLOWER
   ======================================== */
.cursor-follower {
  position: fixed;
  width: 25px;
  height: 25px;
  background: linear-gradient(145deg, #D6B67C, #D6B67C 25%, #b59862 50%, #c0a36c 75%, #D6B67C);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale(0);
}

.cursor-follower.interactive {
  transform: scale(1.5);
}

/* Cursor Spotlight Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 400px at var(--x) var(--y), #0b202d, transparent 80%);
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: subtle-glow-pulse 8s infinite alternate ease-in-out;
}

body:hover::before {
  opacity: 0.08;
}

@keyframes subtle-glow-pulse {
  0% {
    opacity: 0.08;
    transform: scale(1);
  }

  100% {
    opacity: 0.12;
    transform: scale(1.05);
  }
}

/* ========================================
   16. SERVICES PAGE SPECIFIC
   ======================================== */
.services-page-anchor {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60vw;
  max-width: 700px;
  z-index: 1;
  filter: blur(4px) grayscale(30%);
  opacity: 0.25;
  pointer-events: none;
  transform: translateX(10%);
}

.services-content {
  position: relative;
  z-index: 2;
  background: transparent;
}

/* Table Styling */
table {
  color: var(--ux-text);
}

table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

table ul li {
  margin: 6px 0;
  font-size: 14px;
}

table ul li:before {
  content: "✓ ";
  color: var(--ux-gold);
  font-weight: 700;
  margin-right: 6px;
}

.ux-pack table .ux-btn-hover {
  min-width: 190px;
  box-sizing: border-box;
}

.ux-pack table th:first-child,
.ux-pack table td:first-child {
  position: sticky;
  left: 0;
  z-index: 101;
  background: var(--ux-bg);
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.ux-pack table td {
  padding: 20px 20px;
  vertical-align: middle;
}

.ux-pack table th {
  padding: 20px 10px;
}

div[data-aos="fade-up"][data-aos-delay="100"] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

div[data-aos="fade-up"][data-aos-delay="100"]::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .scroll-hint-wrapper {
    display: block;
    text-align: right;
    margin: -15px 5px 10px 0;
  }

  .scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ux-gold);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    animation: fadeInOutHint 5s 1s forwards;
  }

  .scroll-hint i {
    animation: nudge 1.5s infinite ease-in-out;
  }

  @keyframes fadeInOutHint {
    0% {
      opacity: 0;
    }

    20% {
      opacity: 1;
    }

    80% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  @keyframes nudge {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(4px);
    }
  }

  .services-page-anchor {
    width: 80vw;
    max-width: 500px;
    opacity: 0.1;
  }
}

/* ========================================
   17. CONTACT PAGE SPECIFIC
   ======================================== */
.contact-page-anchor {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60vw;
  max-width: 700px;
  z-index: 1;
  filter: blur(4px) grayscale(30%);
  opacity: 0.25;
  pointer-events: none;
  transform: translateX(10%);
}

.contact-content {
  position: relative;
  z-index: 2;
  background: transparent;
}

.contact-card-section {
  padding: 60px 0 100px 0;
}

.contact-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(11, 32, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--ux-radius);
  padding: 40px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.contact-card-h2 {
  font: 700 clamp(24px, 4vw, 36px) Poppins, Inter, sans-serif;
  margin: 0 0 16px;
  color: var(--ux-white);
}

.contact-card-p {
  font-size: 17px;
  color: var(--ux-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card-h3 {
  font: 600 18px Poppins, Inter, sans-serif;
  color: var(--ux-gold);
  margin: 0 0 20px;
}

.contact-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ux-muted);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: default;
  transition: all 0.3s ease;
}

.contact-tag:hover {
  background: rgba(214, 182, 124, 0.1);
  border-color: var(--ux-gold);
  color: var(--ux-gold);
  transform: translateY(-2px);
}

.contact-card-cta {
  text-align: center;
}

.contact-card-cta .ux-btn-hover {
  min-width: 240px;
}

@media (max-width: 768px) {
  .contact-page-anchor {
    width: 80vw;
    max-width: 500px;
    opacity: 0.1;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-card-h2 {
    font-size: 28px;
  }

  .contact-card-p {
    font-size: 16px;
  }

  .contact-tag-group {
    gap: 8px;
  }

  .contact-tag {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* ========================================
   18. 404 PAGE SPECIFIC
   ======================================== */
.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.error-page .container {
  max-width: 600px;
  padding: 20px;
}

.error-page h1 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--ux-gold);
  margin: 0;
  line-height: 1;
}

.error-page h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.error-page p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-buttons a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  color: var(--ux-white);
  background-color: transparent;
  border: 2px solid var(--ux-gold);
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-buttons a.btn-primary {
  background-color: var(--ux-gold);
  color: var(--ux-bg);
}

.cta-buttons a:hover {
  background-color: var(--ux-gold);
  color: var(--ux-bg);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.cta-buttons a.btn-primary:hover {
  background-color: #c0a36c;
  border-color: #c0a36c;
}

/* ========================================
   19. THANK YOU PAGE SPECIFIC
   ======================================== */
.thank-you-page {
  background-image: url('assets/images/aux-thank-you-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 450px;
  background-attachment: fixed;
}

.thank-you-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ux-gold);
  letter-spacing: 0.5px;
}

.thank-you-page h2,
.thank-you-page h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ux-gold);
  letter-spacing: 0.5px;
}

.thank-you-page .lead {
  color: #e9eef5;
}

.ux-overlay {
  background: #0b202dd1;
  min-height: 100vh;
  width: 100vw;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ux-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ux-btn-gold {
  background: linear-gradient(180deg, #d6b67c, #d6b67c);
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(214, 182, 124, .22);
  transition: box-shadow .12s;
}

.ux-btn-gold:hover,
.ux-btn-gold:focus {
  box-shadow: 0 0 18px rgba(214, 182, 124, .35);
  color: #111;
}

.ux-btn-outline {
  border-radius: 999px;
}

.ux-countdown {
  font-size: 15px;
  color: #d6b67c;
  margin-top: 18px;
  opacity: 0.85;
  font-family: "Inter", sans-serif;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  .ux-content {
    padding: 0 16px;
  }

  .ux-btn-gold,
  .ux-btn-outline {
    font-size: 1rem;
    padding: 10px 22px;
  }
}

/* ========================================
   20. FORM STYLING
   ======================================== */
.ux-form {
  padding: 56px 0;
}

.ux-form .frame {
  aspect-ratio: 9 / 16;
  max-width: 900px;
  margin: 0 auto;
  border: 0;
  width: 100%;
  height: 70vh;
}

@media (max-width: 600px) {
  .ux-form .frame {
    height: 78vh;
  }
}

.audit-form-column input:focus,
.audit-form-column select:focus {
  border-color: var(--ux-gold, #d4af37) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
  outline: none;
}

/* ========================================
   21. EXTRACTED INLINE STYLES FROM HTML
   ======================================== */

/* Utility Classes */
.text-muted {
  color: var(--ux-muted);
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.my-40 {
  margin: 40px 0;
}

.text-center {
  text-align: center;
}

/* About Section Variations */
.ux-about--no-padding-top {
  padding-top: 0;
}

.ux-about__title {
  font-size: clamp(22px, 3.6vw, 36px);
}

/* Meet AUX Card */
.meet-aux-card {
  background: var(--ux-card);
  border-radius: var(--ux-radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.meet-aux-card img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.meet-aux-card img:hover {
  transform: scale(1.03);
}

.meet-aux-card h3 {
  margin-top: 20px;
  font-family: Poppins, sans-serif;
  color: var(--ux-gold);
}

.meet-aux-card p {
  color: var(--ux-muted);
}

/* Package Grid Title */
.package-grid-title {
  margin: 40px 0;
}

/* Card Highlight Variation */
.ux-card--highlight {
  border-color: rgba(212, 175, 55, 0.18);
}

/* Hero Section Variations */
.ux-hero--transparent {
  background: transparent;
}

.ux-hero--compact {
  padding: 72px 0;
}

.ux-hero__card--wide {
  max-width: 1000px;
}

.ux-hero__card--left {
  text-align: left;
}

/* Process Panel Background Images */
.process-panel--contact {
  background-image: url('assets/images/aux-contact.png');
}

.process-panel--design {
  background-image: url('assets/images/aux-design.png');
}

.process-panel--services {
  background-image: url('assets/images/aux-services.png');
}

.process-panel--review {
  background-image: url('assets/images/aux-review.png');
}

.process-panel--launch {
  background-image: url('assets/images/aux-launch.png');
}

/* ========================================
   22. LEGAL PAGES SPECIFIC
   ======================================== */
.legal-content {
  padding: 80px 0;
  min-height: 60vh;
}

.legal-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--ux-gold);
  margin: 0 0 8px 0;
  line-height: 1.2;
  text-align: center;
}

.legal-content small {
  display: block;
  font-size: 14px;
  color: var(--ux-muted);
  margin-bottom: 32px;
  font-style: italic;
}

.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--ux-gold);
  margin: 40px 0 16px 0;
  line-height: 1.3;
}

.legal-content p {
  color: var(--ux-text);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-content ul li {
  color: var(--ux-text);
  font-size: 16px;
  line-height: 1.8;
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
}

.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ux-gold);
  font-weight: 700;
}

.legal-content strong {
  color: var(--ux-white);
  font-weight: 600;
}

.page-effective-date {
  display: block;
  text-align: center;
  margin-bottom: 24px;
  color: var(--ux-muted);
  opacity: 0.8;
  font-size: 15px;
}

.card-list-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-list-item p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0;
  color: var(--ux-text);
}

.card-list-item p .fa-solid {
  color: var(--ux-gold);
  margin-top: 5px;
  font-size: 14px;
}

.legal-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-footer-note {
  text-align: center;
  color: var(--ux-muted);
  font-size: 14px;
  margin-top: 40px;
  font-style: italic;
}

/* Legal Page Card Styling */
.legal-content .ux-card p {
  color: var(--ux-text);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.legal-content .ux-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-content .ux-card ul li {
  color: var(--ux-text);
  font-size: 16px;
  line-height: 1.8;
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
}

.legal-content .ux-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ux-gold);
  font-weight: 700;
}

.legal-content .ux-card strong {
  color: var(--ux-white);
  font-weight: 600;
}

.legal-content .ux-card a {
  color: var(--ux-gold);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.legal-content .ux-card a:hover {
  opacity: 0.8;
}