/* ============================================
   PROSTAR INTERNATIONAL FZE — Luxury Design System
   Premium Precious Metals Trading Website
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ────────────────────────── */
:root {
  /* Custom Section Highlight Colors — Gold & Blue palette */
  --about-color: #F3CC09;
  --about-color-rgb: 243, 204, 9;
  --services-color: #1A3983;
  --services-color-rgb: 26, 57, 131;
  --process-color: #1E5FAA;
  --process-color-rgb: 30, 95, 170;
  --global-color: #0F1E4D;
  --global-color-rgb: 15, 30, 77;
  --compliance-color: #058ABD;
  --compliance-color-rgb: 5, 138, 189;

  /* Primary Gold Palette */
  --gold-100: #FFF8E9;
  --gold-200: #FCE9B2;
  --gold-300: #E8C36D;
  --gold-400: #CDA645;
  --gold-500: #B08A2A;
  --gold-600: #8C6820;
  --gold-700: #6F5017;
  --gold-800: #4F3A10;
  --gold-900: #2F230B;

  /* Blue Palette (replaces old red/wine neutrals) */
  --navy-50: #FFFFFF;
  --navy-100: #E5EAF5;
  --navy-200: #4A6BB5;
  --navy-300: #2A4A95;
  --navy-400: #1A3983;
  --navy-500: #0F1E4D;
  --navy-600: #0A1638;
  --navy-700: #070F26;
  --navy-800: #050A1A;
  --navy-900: #02050E;

  /* Accent Blue Palette (replaces red/bronze accents) */
  --red-50: #0F1E4D;
  --red-100: #0A1638;
  --red-500: #1E5FAA;
  --red-600: #1A3983;
  --red-700: #0F1E4D;

  /* Accents (Mapped to Dark Theme text colors) */
  --white: #FFFFFF;
  --white-90: #F0F0F0;
  --white-70: #CCCCCC;
  --white-50: #999999;
  --white-30: #666666;
  --white-10: rgba(255, 255, 255, 0.08);
  --white-05: rgba(255, 255, 255, 0.04);

  /* Gold Gradients */
  --gradient-gold: linear-gradient(135deg, #CDA645 0%, #F1D47D 25%, #B38A2A 50%, #E6C569 75%, #9A7421 100%);
  --gradient-red: linear-gradient(135deg, #1A3983 0%, #3A6BD5 50%, #0F1E4D 100%);
  --gradient-gold-red: linear-gradient(135deg, #CDA645 0%, #F1D47D 100%);
  --gradient-gold-text: linear-gradient(135deg, #F3CC09 0%, #FFE57F 50%, #CDA645 100%);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(243, 204, 9, 0.06), rgba(212, 168, 69, 0.08));
  --gradient-dark: linear-gradient(180deg, #0A1638 0%, #0F1E4D 50%, #050A1A 100%);
  --gradient-radial: radial-gradient(ellipse at center, rgba(243, 204, 9, 0.06) 0%, transparent 70%);

  /* Glass — blue-tinted */
  --glass-bg: rgba(10, 22, 56, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1280px;
  --container-wide: 1440px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-smooth: all 0.6s var(--ease-out-expo);
  --transition-fast: all 0.3s var(--ease-out-quart);
}

/* ── Reset & Base ────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: #0a1a3d;
  color: var(--white-90);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(180deg, #0a1a3d 0%, #0F1E4D 50%, #0a1a3d 100%);
  background-attachment: fixed;
}

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

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

/* ── Scrollbar ────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-700);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 4px;
}

/* ── Preloader ────────────────────────── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--white-10);
  margin-top: 30px;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  width: 0%;
  border-radius: 2px;
  animation: preloaderFill 2.5s var(--ease-out-expo) forwards;
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes preloaderFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ── Cursor Glow (desktop) ────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, rgba(212, 168, 69, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ── Gold Particles Canvas ────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ── Navigation ────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
  background: linear-gradient(180deg, rgba(10, 22, 56, 0.85) 0%, transparent 100%);
}

.navbar.scrolled {
  background: rgba(10, 22, 56, 0.9);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  transition: var(--transition-fast);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.navbar.scrolled .nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-70);
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--gold-500);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold-600);
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 3px !important;
  color: var(--gold-500) !important;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  transition: left 0.4s var(--ease-out-expo);
  z-index: -1;
}

.nav-cta:hover {
  color: var(--navy-700) !important;
}

.nav-cta:hover::before {
  left: 0;
}

.nav-cta:hover::after {
  display: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ── Hero Section ────────────────────────── */
.hero-scroll-track {
  position: relative;
  height: 250vh;
  background: var(--navy-600);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.hero.sticky-hero {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
}

.hero-canvas-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-600);
  overflow: hidden;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 56, 0.4) 0%, rgba(10, 22, 56, 0.2) 40%, #0a1a3d 100%),
    var(--gradient-radial);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border: 1px solid rgba(243, 204, 9, 0.22);
  border-radius: 50px;
  background: rgba(10, 22, 56, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s var(--ease-out-expo) 0.8s forwards;
}

.hero-title .gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-400);
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease-out-expo) 1.1s forwards;
}

.hero-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--white-70);
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease-out-expo) 1.3s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease-out-expo) 1.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Buttons ────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  background: var(--gradient-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(-50%, -50%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(176, 138, 42, 0.25);
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  background: transparent;
  color: var(--gold-600);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold-500);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(176, 138, 42, 0.08);
  border-color: var(--gold-600);
  color: var(--gold-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(176, 138, 42, 0.12);
}

/* ── Hero Scroll Indicator ────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 2s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-50);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

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

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── Marquee Ticker ────────────────────────── */
.marquee-section {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  background: var(--gold-500);
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0a0a0a;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0a0a0a;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Section Commons ────────────────────────── */
.section {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 2;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gradient-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.05rem;
  color: var(--white-50);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Reveal Animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ── About Section ────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  perspective: 1000px;
}

.about-image-inner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s var(--ease-out-expo);
  z-index: 2;
}

.about-image-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  z-index: 3;
  transition: 0.8s var(--ease-out-expo);
}

.about-image:hover .about-image-inner::before {
  left: 150%;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-frame {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 1px solid var(--gold-600);
  border-radius: 8px;
  z-index: 1;
  transition: transform 0.6s var(--ease-out-expo), border-color 0.6s var(--ease-out-expo);
  box-shadow: 0 0 20px rgba(212, 168, 69, 0.1);
  pointer-events: none;
}

.about-image:hover .about-image-frame {
  transform: translate(-10px, -10px) scale(1.02);
  border-color: var(--gold-400);
  box-shadow: 0 0 30px rgba(212, 168, 69, 0.25);
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.about-text h3 .gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-tagline {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-400);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.about-text p {
  color: var(--white-70);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  transition: all 0.4s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.about-feature.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out-quart);
  transform-origin: bottom;
}

.about-feature:hover {
  border-color: rgba(243, 204, 9, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(243, 204, 9, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.08);
}

.about-feature:hover::before {
  transform: scaleY(1);
}

.about-feature-icon {
  font-size: 1.2rem;
  color: var(--gold-500);
  transition: transform 0.3s ease;
}

.about-feature:hover .about-feature-icon {
  transform: scale(1.2) rotate(15deg);
}

.about-feature span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-90);
}

/* ── Stats Section ────────────────────────── */
.stats-section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  background: rgba(212, 168, 69, 0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-600), transparent);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-50);
}

/* ── Services Section ────────────────────────── */
#services {
  position: relative;
  background: linear-gradient(135deg, #0a1a3d 0%, #0f2155 50%, #0a1a3d 100%);
  background-size: 200% 200%;
  animation: servicesBgShift 14s ease-in-out infinite;
  color: #ffffff;
}

#services .section-label,
#services .section-title,
#services .section-description,
#services .service-card h3,
#services .service-card p,
#services .service-card .service-link {
  color: #ffffff;
}

#services .section-description {
  color: #ffffff;
  opacity: 0.85;
}

#services .section-title .gold-text {
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  background: none;
}

#services .gold-orb {
  display: none;
}

@keyframes servicesBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.service-card {
  position: relative;
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(212, 168, 69, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(30, 95, 170, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 60px rgba(30, 95, 170, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  margin-bottom: 28px;
  font-size: 1.6rem;
  background: var(--gradient-gold-subtle);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  border-color: var(--gold-500);
  background: rgba(212, 168, 69, 0.12);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
  transition: var(--transition-fast);
}

#services .service-card:hover h3 {
  color: var(--gold-400);
}

.service-card p {
  color: #ffffff;
  opacity: 0.88;
  font-size: 0.9rem;
  line-height: 1.8;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link-arrow {
  transform: translateX(4px);
}

/* ── Parallax Image Break ────────────────────────── */
.parallax-break {
  position: relative;
  height: 500px;
  overflow: hidden;
  z-index: 2;
}

.parallax-break img {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  object-fit: cover;
  filter: brightness(1.1) grayscale(0.2);
  opacity: 0.15;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-600), rgba(26, 57, 131, 0.4), var(--navy-600));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
}

.parallax-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white-90);
  max-width: 800px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.parallax-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ── Why Choose Us ────────────────────────── */
#why {
  position: relative;
  background: linear-gradient(135deg, #08163a 0%, #0d1f4d 50%, #08163a 100%);
  background-size: 200% 200%;
  animation: whyBgShift 16s ease-in-out infinite;
  color: #ffffff;
}

#why .section-label,
#why .section-title,
#why .section-description,
#why .why-card h3,
#why .why-card p {
  color: #ffffff;
}

#why .section-description {
  color: #ffffff;
  opacity: 0.85;
}

#why .section-title .gold-text {
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  background: none;
}

@keyframes whyBgShift {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

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

.why-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: rgba(243, 204, 9, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(30, 95, 170, 0.25);
}

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.4;
}

.why-card:hover .why-number {
  opacity: 1;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-card p {
  color: #ffffff;
  opacity: 0.88;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── Process / How It Works ────────────────────────── */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-600), var(--gold-600), transparent);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step-content {
  width: calc(50% - 40px);
  padding: 32px;
  background: #ffffff;
  color: #000000;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.process-step-content:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-step-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-gold);
  border: 3px solid #ffffff;
  z-index: 2;
  box-shadow: 0 0 20px rgba(212, 168, 69, 0.3);
}

.process-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #000000;
}

.process-step-content p {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Global Reach Map Section ────────────────────────── */
.global-section {
  background: rgba(212, 168, 69, 0.02);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.global-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.global-map {
  position: relative;
}

.global-map svg {
  width: 100%;
  height: auto;
  opacity: 0.3;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-500);
  animation: mapPulse 2s ease-in-out infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--red-500);
  animation: mapRipple 2s ease-out infinite;
}

@keyframes mapPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

@keyframes mapRipple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.global-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.global-info p {
  color: var(--white-70);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.global-locations {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.location-item:hover {
  border-color: var(--red-500);
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.location-icon {
  font-size: 1.3rem;
}

.location-details h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-400);
  margin-bottom: 3px;
}

.location-details p {
  font-size: 0.82rem;
  color: var(--white-50);
  margin-bottom: 0;
}

/* ── Compliance / Regulatory Section ────────────────────────── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.compliance-card {
  padding: 40px 32px;
  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-smooth);
}

.compliance-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.compliance-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-gold-subtle);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 2rem;
  transition: var(--transition-fast);
}

.compliance-card:hover .compliance-icon {
  border-color: var(--gold-500);
  background: rgba(212, 168, 69, 0.15);
  transform: rotateY(360deg);
}

.compliance-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #000000;
}

.compliance-card p {
  color: #000000;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── CTA Section ────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 2;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) grayscale(0.2);
  opacity: 0.12;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 56, 0.95), rgba(15, 30, 77, 0.9));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 30px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  color: var(--white-70);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── Contact Section ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  padding: 40px;
  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #000000;
}

.contact-info>p {
  color: #000000;
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-gold-subtle);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.1rem;
}

.contact-detail h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #000000;
  margin-bottom: 4px;
}

.contact-detail p {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  padding: 48px;
  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  color: #000000;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 168, 69, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: #ffffff;
  color: #000000;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Footer ────────────────────────── */
.footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 30px;
  background: var(--navy-700);
  border-top: 1px solid var(--glass-border);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--white-50);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--white-50);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  background: rgba(212, 168, 69, 0.08);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--white-50);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--gold-500);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-30);
  letter-spacing: 1px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--white-30);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-500);
}

/* ── Floating Gold Orbs (decorative) ────────────────────────── */
.gold-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 69, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(15px, 15px) scale(1.02);
  }
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1024px) {

  .about-grid,
  .global-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 56, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.5s var(--ease-out-expo);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .services-grid,
  .compliance-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .process-step-content {
    width: 100%;
  }

  .process-step-dot {
    left: 20px;
    transform: none;
  }

  .about-image-frame {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
  }

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

  .stat-item::after {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .section-container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }
}

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

  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 8px 20px;
  }

  .contact-form {
    padding: 28px;
  }
}

/* ── Special Text Shimmer Effect ────────────────────────── */
.shimmer-text {
  background: linear-gradient(120deg,
      var(--gold-700) 0%,
      var(--gold-300) 15%,
      var(--gold-700) 30%,
      var(--gold-500) 50%,
      var(--gold-300) 65%,
      var(--gold-700) 80%,
      var(--gold-500) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Magnetic Button Effect ────────────────────────── */
.magnetic-btn {
  transition: transform 0.3s var(--ease-out-quart);
}

/* ── Section Divider ────────────────────────── */
.section-divider {
  width: 80px;
  height: 1px;
  background: var(--gradient-gold);
  margin: 0 auto 30px;
}

/* ── Gold Line Decorations ────────────────────────── */
.gold-line-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-600), transparent);
  opacity: 0.3;
}

.gold-line-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-600), transparent);
  opacity: 0.3;
}

/* ── Section Color Highlights & Accents ────────────────────────── */

/* 1. About Section - Theme: #F3CC09 (Gold) */
#about {
  background: radial-gradient(circle at top right, rgba(var(--about-color-rgb), 0.04) 0%, transparent 60%);
}

#about .section-label {
  color: var(--about-color);
}

#about .section-label::before,
#about .section-label::after {
  background: var(--about-color);
}

#about h3 .gold-text {
  background: linear-gradient(135deg, var(--about-color) 0%, #FFF3B3 50%, var(--about-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#about .about-image-frame {
  border-color: var(--about-color);
  box-shadow: 0 0 20px rgba(var(--about-color-rgb), 0.15);
}

#about .about-image:hover .about-image-frame {
  border-color: var(--about-color);
  box-shadow: 0 0 30px rgba(var(--about-color-rgb), 0.35);
}

#about .about-feature::before {
  background: var(--about-color);
}

#about .about-feature-icon {
  color: var(--about-color);
}

#about .about-feature:hover {
  border-color: rgba(var(--about-color-rgb), 0.3);
  box-shadow: 0 10px 25px rgba(var(--about-color-rgb), 0.08);
}

.orb-1 {
  background: radial-gradient(circle, rgba(var(--about-color-rgb), 0.12), transparent 70%);
}

/* 2. Services Section - Theme: #1A3983 (Royal Blue) */
#services {
  background: linear-gradient(135deg, #0a1a3d 0%, #0f2155 50%, #0a1a3d 100%);
  background-size: 200% 200%;
  animation: servicesBgShift 14s ease-in-out infinite;
}

#services .section-label,
#services .section-label::before,
#services .section-label::after,
#services .service-link {
  color: #ffffff;
  background: #ffffff;
}

#services .section-label::before,
#services .section-label::after {
  background: rgba(255, 255, 255, 0.6);
}

#services h2,
#services h2 .gold-text {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

#services .service-card::before {
  background: var(--gradient-gold);
}

#services .service-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

#services .service-card:hover h3 {
  color: var(--gold-400);
}

#services .service-icon {
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

#services .service-card:hover .service-icon {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.15);
}

/* 3. Process Section - Theme: Royal Blue */
#process {
  background: radial-gradient(circle at bottom left, rgba(var(--process-color-rgb), 0.05) 0%, transparent 60%);
}

#process .section-label {
  color: var(--process-color);
}

#process .section-label::before,
#process .section-label::after {
  background: var(--process-color);
}

#process h2 .gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#process .process-timeline::before {
  background: linear-gradient(180deg, transparent, var(--process-color) 20%, var(--process-color) 80%, transparent);
}

#process .process-step-dot {
  background: var(--gradient-gold);
  box-shadow: 0 0 20px rgba(var(--process-color-rgb), 0.45);
}

#process .process-step-content h3 {
  color: #000000;
}

#process .process-step-content:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 4. Global Reach Section - Theme: Deep Navy Blue (Dark Mode Break) */
.global-section {
  background: linear-gradient(135deg, var(--global-color) 0%, #0A1638 100%) !important;
  color: #FFFFFF !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#global .section-title {
  color: #FFFFFF;
}

#global h3 {
  color: #FFFFFF;
}

#global .section-label {
  color: var(--about-color);
  /* Use Gold for highlight/contrast */
}

#global .section-label::before,
#global .section-label::after {
  background: var(--about-color);
}

#global .gold-text {
  background: linear-gradient(135deg, var(--about-color) 0%, #FFF3B3 50%, var(--about-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#global .global-info p {
  color: rgba(255, 255, 255, 0.75);
}

#global .location-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#global .location-item:hover {
  border-color: var(--about-color);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#global .location-details h4 {
  color: #FFFFFF;
}

#global .location-details p {
  color: rgba(255, 255, 255, 0.6);
}

#global .map-pin {
  background: var(--about-color);
  box-shadow: 0 0 20px var(--about-color);
}

#global .map-pin::after {
  border-color: var(--about-color);
}

/* 5. Compliance Section - Theme: #058ABD (Vibrant Cyan) */
#compliance {
  background: radial-gradient(circle at top left, rgba(var(--compliance-color-rgb), 0.05) 0%, transparent 60%);
}

#compliance .section-label {
  color: var(--compliance-color);
}

#compliance .section-label::before,
#compliance .section-label::after {
  background: var(--compliance-color);
}

#compliance h2 .gold-text {
  background: linear-gradient(135deg, var(--compliance-color) 0%, #6BD2FF 50%, var(--compliance-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#compliance .compliance-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

#compliance .compliance-icon {
  color: #000000;
  background: var(--gradient-gold-subtle);
  border-color: rgba(0, 0, 0, 0.12);
}

#compliance .compliance-card:hover .compliance-icon {
  border-color: var(--gold-500);
  background: rgba(212, 168, 69, 0.15);
}

/* Navigation Links Color Highlights */
.nav-links a[href="#about"]:hover {
  color: var(--about-color);
}

.nav-links a[href="#services"]:hover {
  color: var(--services-color);
}

.nav-links a[href="#process"]:hover {
  color: var(--process-color);
}

.nav-links a[href="#global"]:hover {
  color: var(--services-color);
}

/* Use slightly brighter services-color on white nav bar for readability */
.nav-links a[href="#compliance"]:hover {
  color: var(--compliance-color);
}

.nav-links a[href="#about"]::after {
  background: var(--about-color);
}

.nav-links a[href="#services"]::after {
  background: var(--services-color);
}

.nav-links a[href="#process"]::after {
  background: var(--process-color);
}

.nav-links a[href="#global"]::after {
  background: var(--global-color);
}

.nav-links a[href="#compliance"]::after {
  background: var(--compliance-color);
}

/* ── Floating Contact (WhatsApp + Email) ────────────────────────── */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.floating-contact > * {
  pointer-events: auto;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.float-btn i,
.float-btn svg {
  font-size: 1.6rem;
  line-height: 1;
  z-index: 1;
  transition: transform 0.3s var(--ease-out-expo);
}

/* Inline SVGs used for the contact icons */
.float-btn .float-svg {
  width: 60%;
  height: 60%;
  display: block;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.float-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0a0a0a;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.float-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0a0a0a;
}

.float-btn:hover .float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

.float-toggle {
  background: var(--gradient-gold);
  color: #1a1a1a;
  animation: floatPulse 2.4s ease-in-out infinite;
}

.float-toggle:hover {
  background: var(--gradient-gold);
  color: #1a1a1a;
}

.float-whatsapp {
  background: #25d366;
  color: #ffffff;
  animation: floatPulseGreen 2.4s ease-in-out infinite;
}

.float-whatsapp:hover {
  background: #1ebe5d;
}

.float-email {
  background: #cda645;
  color: #1a1a1a;
}

.float-email:hover {
  background: #e0bc5a;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(205, 166, 69, 0.5); }
  50%      { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(205, 166, 69, 0); }
}

@keyframes floatPulseGreen {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* Action buttons hidden until the toggle is pressed — works on all viewports */
.float-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo),
              transform 0.3s var(--ease-out-expo);
}

.floating-contact.is-open .float-actions {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Staggered pop-in for the two contact buttons */
.floating-contact.is-open .float-whatsapp,
.floating-contact.is-open .float-email {
  animation: floatActionIn 0.35s var(--ease-out-expo) both;
}
.floating-contact.is-open .float-email {
  animation-delay: 0.06s;
}

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

/* Open-state visual: rotate the chat icon into a plus/X */
.floating-contact.is-open .float-toggle .float-svg {
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out-expo);
}

/* On narrow viewports, shrink the widget for thumb reach */
@media (max-width: 640px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-toggle,
  .float-whatsapp,
  .floating-contact.is-open .float-whatsapp,
  .floating-contact.is-open .float-email {
    animation: none;
  }
  .float-btn .float-svg,
  .float-btn i,
  .float-toggle .float-svg {
    transition: none;
  }
}