/* ============================================================
   SANSAV General Trading FZE – Main Stylesheet
   Dark Enterprise · Gold Luxury · FRG-Inspired
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold:        #0090f5;
  --gold-light:  #40b0ff;
  --gold-dark:   #006dd4;
  --gold-dim:    rgba(0,144,245,0.12);
  --gold-border: rgba(0,144,245,0.25);

  --bg:    #05090f;
  --bg-2:  #080e18;
  --bg-3:  #0b1220;
  --bg-4:  #0f172a;
  --bg-card: rgba(12,20,35,0.9);

  --text:       #e8eaf0;
  --text-2:     #b8c0cc;
  --text-muted: #7a8494;
  --text-light: #4a5568;

  --white: #ffffff;

  --border:    rgba(0,144,245,0.15);
  --border-md: rgba(0,144,245,0.28);
  --border-sub: rgba(255,255,255,0.08);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --shadow:    0 16px 48px rgba(0,0,0,0.4);
  --shadow-sm: 0 6px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 32px 80px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 30px rgba(0,144,245,0.20);

  --transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Keyframes ---- */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes loaderFill { from { width:0; } to { width:100%; } }
@keyframes scrollPill { 0%,100% { transform:translateY(0); opacity:1; } 60% { transform:translateY(10px); opacity:0; } }
@keyframes tickerScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes pulseDot  { 0%,100% { box-shadow:0 0 0 0 rgba(0,144,245,0.5); } 50% { box-shadow:0 0 0 6px rgba(0,144,245,0); } }
@keyframes glowGold  { 0%,100% { opacity:0.5; } 50% { opacity:1; } }
@keyframes floatY    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes shimmer   { from { transform:translateX(-100%); } to { transform:translateX(100%); } }
@keyframes ringPulse { 0% { transform:scale(1); opacity:1; } 100% { transform:scale(2.2); opacity:0; } }
@keyframes gridMove  { from { background-position: 0 0; } to { background-position: 60px 60px; } }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.loader-logo {
  width: 120px; filter: drop-shadow(0 0 20px rgba(0,144,245,0.4));
  animation: floatY 2s ease-in-out infinite;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 99px;
  animation: loaderFill 2.4s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.loader-text {
  font-family: 'Syne', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   PARTICLE CANVAS
   ============================================================ */
#particleCanvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex; align-items: center;
  padding: 12px 24px;
  background: rgba(5,9,15,0.50);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: 60px;
  transition: var(--transition);
  position: relative;
  /* overflow: visible so dropdown menu is not clipped */
}
/* Gold shimmer line */
.nav-container::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

#navbar.scrolled .nav-container {
  background: rgba(5,9,15,0.50);
  border-color: var(--border-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-brand { display: flex; align-items: center; }
.nav-logo  { height: 38px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin: 0 auto; padding: 0;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 7px 14px; border-radius: 99px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: var(--gold-dim);
}

/* ---- Dropdown ---- */
.nav-dropdown { position: relative; }
.nav-chevron { font-size: 10px; margin-left: 2px; transition: transform 0.3s; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: rgba(8,14,24,0.97);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 10px 0;
  min-width: 230px;
  list-style: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(0,144,245,0.08);
  backdrop-filter: blur(20px);
  z-index: 200;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  font-size: 13px; color: var(--text-2);
  border-radius: 0;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu li a i { color: var(--gold); width: 16px; text-align: center; font-size: 13px; }
.nav-dropdown-menu li a:hover { color: var(--gold); background: var(--gold-dim); }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  color: #ffffff !important;
  background: var(--gold);
  padding: 9px 20px; border-radius: 99px;
  margin-left: 12px;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(0,144,245,0.4);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; margin-left: 12px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: 99px;
  border: none; cursor: pointer;
  transition: var(--transition);
  line-height: 1.2;
  white-space: nowrap;
}
.btn i { font-size: 13px; }

.btn-primary {
  background: var(--gold);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 28px rgba(0,144,245,0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-md);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
  opacity: 0.08;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,144,245,0.07) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, transparent 40%, var(--bg) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,144,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,144,245,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 12s linear infinite;
  opacity: 0.6;
}

.hero-container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px; align-items: center;
  min-height: calc(100vh - 100px);
  padding-top: 40px; padding-bottom: 100px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.1; font-weight: 400;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-heading-em {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  font-size: 17px; color: var(--text-2); max-width: 560px;
  line-height: 1.8; margin-bottom: 40px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Metric Panel */
.hero-metric-panel { position: relative; }

.metric-card {
  background: rgba(10,17,30,0.85);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-gold);
  position: relative;
}
.metric-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.metric-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border-sub);
}
.metric-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}
.metric-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #4ade80; font-weight: 600;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 1.5s ease-in-out infinite;
}

.metric-rows { padding: 8px 0; }
.metric-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.metric-row:last-child { border-bottom: none; }
.metric-row:hover { background: rgba(0,144,245,0.05); }

.mrow-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
  flex-shrink: 0;
}
.mrow-label { font-size: 13px; color: var(--text-2); flex: 1; }
.mrow-val {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--gold);
}

.metric-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border-sub);
  font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.metric-footer i { color: var(--gold); }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-pill {
  width: 26px; height: 42px;
  border: 2px solid var(--border-md);
  border-radius: 99px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 7px;
}
.scroll-pill span {
  display: block; width: 4px; height: 8px;
  background: var(--gold); border-radius: 99px;
  animation: scrollPill 2s ease-in-out infinite;
}
.hero-scroll-hint p {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative; z-index: 2;
  padding: 14px 0;
}
.ticker-strip::before,
.ticker-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 1; pointer-events: none;
}
.ticker-strip::before { left: 0; background: linear-gradient(90deg, var(--bg-3), transparent); }
.ticker-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg-3), transparent); }

.ticker-track {
  display: flex; align-items: center; gap: 0; white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.ticker-track span {
  font-family: 'Syne', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); padding: 0 20px;
  transition: color 0.3s;
}
.ticker-track span:hover { color: var(--gold); }
.ticker-sep { color: var(--gold) !important; opacity: 0.6; padding: 0 8px !important; }

/* ============================================================
   STATS ROW
   ============================================================ */
#stats {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
  padding: 70px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center; padding: 24px 20px;
  position: relative;
  transition: var(--transition);
}
.stat-block + .stat-block::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.stat-block:hover { transform: translateY(-4px); }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px,4vw,52px); font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-divider {
  width: 30px; height: 2px;
  background: var(--gold); opacity: 0.5;
  margin: 10px auto 10px;
  border-radius: 1px;
}
.stat-desc {
  font-size: 13px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  line-height: 1.4;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { position: relative; z-index: 2; padding: 100px 0; }

.sec-header {
  text-align: center;
  max-width: 680px; margin: 0 auto 70px;
}

.sec-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.sec-header .sec-eyebrow { justify-content: center; }
.sec-eyebrow::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: var(--gold); border-radius: 1px;
}

.sec-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400; line-height: 1.15;
  color: var(--white); letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.sec-heading em {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: italic;
}

.sec-sub {
  font-size: 16px; color: var(--text-2); line-height: 1.75;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--bg); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-img-side {}
.about-img-wrap {
  position: relative;
  padding-bottom: 24px; padding-right: 24px;
}
.about-main-img {
  border-radius: var(--radius);
  width: 100%; height: 480px; object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.about-sm-img {
  position: absolute; bottom: 0; right: 0;
  width: 42%; height: 200px; object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--bg);
  box-shadow: var(--shadow);
}
.about-year-badge {
  position: absolute; top: 30px; left: -16px;
  background: var(--gold);
  color: #ffffff;
  padding: 18px 20px; border-radius: var(--radius-sm);
  text-align: center; font-weight: 800;
  line-height: 1.1;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(0,144,245,0.4);
}
.about-year-badge small {
  display: block; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.75); margin-top: 4px;
}

.about-text-side .sec-eyebrow { margin-bottom: 16px; }

.about-lead {
  font-size: 18px; font-weight: 500; color: var(--text);
  line-height: 1.75; margin-bottom: 16px;
}
.about-body {
  font-size: 15px; color: var(--text-2);
  line-height: 1.8; margin-bottom: 36px;
}

.about-pillars { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--border-md);
  background: rgba(0,144,245,0.06);
}
.pillar-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px;
}
.pillar strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 2px; }
.pillar span   { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   DIVISIONS
   ============================================================ */
#companies {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.div-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.div-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,144,245,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.div-card:hover { transform: translateY(-6px); border-color: var(--border-md); }
.div-card:hover::before { opacity: 1; }
.div-card:hover { box-shadow: var(--shadow), 0 0 0 1px rgba(0,144,245,0.15); }

.div-card-featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(12,20,35,0.95) 0%, rgba(20,16,4,0.9) 100%);
}
.div-card-featured::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.div-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 14px;
}
.div-badge {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #ffffff; background: var(--gold);
  padding: 4px 10px; border-radius: 99px;
}

.div-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: color-mix(in srgb, var(--c, var(--gold)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--gold)) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--c, var(--gold)); font-size: 22px;
  margin-bottom: 20px;
}

.div-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 21px; font-weight: 400; color: var(--white);
  margin-bottom: 10px; line-height: 1.2;
}
.div-card p {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  margin-bottom: 20px;
}

.div-list {
  flex: 1; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.div-list li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.div-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0.7; flex-shrink: 0;
}

.div-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border-sub);
  padding-top: 18px; margin-top: auto;
}
.div-url {
  font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.div-url i { font-size: 9px; }
.div-link {
  font-size: 12px; font-weight: 700; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: gap 0.2s;
}
.div-link:hover { gap: 10px; }
.div-link i { font-size: 10px; }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--bg); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 58px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-md), var(--border-md), transparent);
  z-index: 0;
}

.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 24px;
  position: relative; z-index: 1;
}
.ps-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 10px;
}
.ps-connector {
  width: 1px; height: 24px;
  background: var(--border-md); margin-bottom: 0;
}
.ps-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
}
.ps-icon::after {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid var(--gold-border);
  opacity: 0; transition: opacity 0.3s;
}
.process-step:hover .ps-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(0,144,245,0.2);
}
.process-step:hover .ps-icon::after { opacity: 1; }

.process-step h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; font-weight: 400; color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.gallery-swiper { position: relative; overflow: hidden; border-radius: var(--radius); }

.gslide {
  position: relative; border-radius: var(--radius);
  overflow: hidden;
}
.gslide img {
  width: 100%; height: 380px; object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gslide:hover img { transform: scale(1.04); }

.gslide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  color: var(--white);
}

/* Swiper overrides */
.swiper-button-prev,
.swiper-button-next {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,17,30,0.9);
  border: 1px solid var(--border-md);
  color: var(--gold) !important;
  transition: var(--transition);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--gold);
  color: #ffffff !important;
  border-color: var(--gold);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 13px !important; font-weight: 900; }

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1 !important;
  width: 20px !important;
  border-radius: 4px !important;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg); }

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
}
.testi-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold); font-size: 15px;
  letter-spacing: 2px; margin-bottom: 18px;
}
.testi-card p {
  font-size: 15px; color: var(--text-2);
  line-height: 1.75; font-style: italic;
  flex: 1; margin-bottom: 24px;
}
.testi-card p::before { content: '\201C'; color: var(--gold); font-size: 24px; line-height: 0; vertical-align: -6px; margin-right: 4px; }
.testi-card p::after  { content: '\201D'; color: var(--gold); font-size: 24px; line-height: 0; vertical-align: -6px; margin-left: 4px; }

.testi-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border-sub);
  padding-top: 20px;
}
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #ffffff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: var(--white); }
.testi-author span   { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  padding: 0; position: relative; z-index: 2;
}
.cta-inner {
  background:
    radial-gradient(ellipse 80% 100% at 20% 50%, rgba(0,144,245,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(99,102,241,0.06) 0%, transparent 60%),
    var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-glow-1, .cta-glow-2 {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: glowGold 4s ease-in-out infinite;
}
.cta-glow-1 {
  width: 500px; height: 500px;
  background: rgba(0,144,245,0.06);
  top: -200px; left: -100px;
}
.cta-glow-2 {
  width: 400px; height: 400px;
  background: rgba(99,102,241,0.05);
  bottom: -200px; right: -100px;
  animation-delay: -2s;
}

.cta-content {
  display: flex; align-items: center;
  justify-content: space-between; gap: 60px;
  position: relative; z-index: 1;
}
.cta-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400; color: var(--white);
  line-height: 1.2; margin-bottom: 14px;
}
.cta-text h2 em {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: italic;
}
.cta-text p {
  font-size: 16px; color: var(--text-2); max-width: 500px; line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--bg-2); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px; align-items: start;
}

.contact-info-col {
  display: flex; flex-direction: column; gap: 28px;
}
.cinfo-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cinfo-item:hover {
  border-color: var(--border-md);
  background: rgba(0,144,245,0.04);
}
.cinfo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
}
.cinfo-item strong { display: block; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.cinfo-item p, .cinfo-item a { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.cinfo-item a:hover { color: var(--gold); }

.cinfo-socials {
  display: flex; gap: 12px; margin-top: 4px;
}
.cinfo-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 15px;
  transition: var(--transition);
}
.cinfo-socials a:hover {
  background: var(--gold); color: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(0,144,245,0.35);
}

/* Contact Form */
.cform {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.cform h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; font-weight: 400; color: var(--white);
  margin-bottom: 28px;
}
.cform-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.cform-group {
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 16px;
}
.cform-row .cform-group { margin-bottom: 0; }
.cform-group label {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
}
.cform-group input,
.cform-group select,
.cform-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  appearance: none;
}
.cform-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a8494' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0,144,245,0.1);
}
.cform-group input::placeholder,
.cform-group textarea::placeholder { color: var(--text-light); }
.cform-group textarea { resize: vertical; min-height: 120px; }
.cform-group select option { background: var(--bg-4); color: var(--text); }

.form-success {
  display: none; margin-top: 16px;
  padding: 14px 18px; border-radius: var(--radius-xs);
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80; font-size: 14px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--bg); border-top: 1px solid var(--border); position: relative; z-index: 2; }

.footer-inner { padding: 80px 0 0; }

.footer-top-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand-col p {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
  max-width: 280px; margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold); color: #ffffff;
  border-color: var(--gold);
}

.footer-links-col h6 {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 14px; color: var(--text-muted);
  transition: color 0.25s;
}
.footer-links-col ul li a:hover { color: var(--gold); }

.footer-contact-ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-ul li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.footer-contact-ul li i { color: var(--gold); margin-top: 3px; font-size: 12px; flex-shrink: 0; }
.footer-contact-ul a:hover { color: var(--gold); }

.footer-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom-row p { font-size: 13px; color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--text-light); transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP & WHATSAPP
   ============================================================ */
#backToTop {
  position: fixed; bottom: 90px; right: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border-md);
  color: var(--gold); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold); color: #ffffff; border-color: var(--gold); }

.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

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

/* Tablet */
@media (max-width: 1100px) {
  .hero-container    { grid-template-columns: 1fr; gap: 50px; padding-bottom: 60px; }
  .hero-metric-panel { max-width: 440px; }
  .divisions-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid      { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .stats-row         { grid-template-columns: repeat(5,1fr); }
  .about-layout      { grid-template-columns: 1fr; gap: 50px; }
  .about-img-wrap    { max-width: 500px; }
  .cta-content       { flex-direction: column; text-align: center; }
  .cta-actions       { justify-content: center; }
  .footer-top-row    { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  #navbar        { top: 10px; width: calc(100% - 24px); }

  .nav-container { padding: 10px 16px; border-radius: 40px; }
  .nav-links     { display: none; position: fixed; top: 70px; left: 12px; right: 12px;
                   flex-direction: column; gap: 0;
                   background: rgba(5,9,15,0.97);
                   backdrop-filter: blur(20px);
                   border: 1px solid var(--border-md);
                   border-radius: var(--radius);
                   padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links a   { display: block; padding: 12px 24px; border-radius: 0; }
  .nav-toggle    { display: flex; }
  .nav-cta       { display: none; }
  .nav-dropdown-menu {
    display: none; position: static; transform: none;
    background: rgba(0,144,245,0.05); border: none; border-radius: 0;
    box-shadow: none; min-width: unset; padding: 0; backdrop-filter: none;
    animation: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li a { padding: 8px 24px 8px 44px; font-size: 12px; }
  .nav-chevron { transition: transform 0.3s; }
  .nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

  .hero-container { padding-top: 20px; padding-bottom: 80px; }
  .hero-heading   { font-size: 38px; }
  .hero-ctas      { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-block:nth-child(3)::before { display: none; }

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

  .about-img-wrap { max-width: 100%; }
  .about-sm-img   { width: 44%; height: 140px; }
  .about-year-badge { left: -8px; }

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

  .cform          { padding: 28px 20px; }
  .cform-row      { grid-template-columns: 1fr; }

  .footer-top-row    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-row { flex-direction: column; text-align: center; gap: 14px; }

  section { padding: 70px 0; }

  .cta-inner  { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 32px; }
  .stats-row    { grid-template-columns: 1fr 1fr; }
  .stat-block + .stat-block::before { display: none; }
  .sec-heading  { font-size: 28px; }
}

/* ============================================================
   EXTRA ANIMATIONS & FLASHY EFFECTS
   ============================================================ */

/* ---- New Keyframes ---- */
@keyframes borderRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(60px,-40px) scale(1.1); }
  66%  { transform: translate(-40px,60px) scale(0.95); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes sparkleAppear {
  0%,100% { opacity:0; transform:scale(0) rotate(0deg); }
  50%      { opacity:1; transform:scale(1) rotate(180deg); }
}
@keyframes textGlowPulse {
  0%,100% { text-shadow: 0 0 20px rgba(0,144,245,0.3); }
  50%     { text-shadow: 0 0 40px rgba(0,144,245,0.7), 0 0 80px rgba(0,144,245,0.3); }
}
@keyframes progressGrow {
  from { width: 0; }
}
@keyframes scanLine {
  0%   { top: -2px; }
  100% { top: 100%; }
}
@keyframes auraPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,144,245,0.3), 0 0 30px rgba(0,144,245,0.1); }
  50%     { box-shadow: 0 0 0 12px rgba(0,144,245,0), 0 0 60px rgba(0,144,245,0.2); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatBob {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  25%     { transform: translateY(-14px) rotate(2deg); }
  75%     { transform: translateY(-7px) rotate(-1deg); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes cursorGlow {
  0%,100% { transform: scale(1); opacity:0.6; }
  50%     { transform: scale(1.3); opacity:0.9; }
}
@keyframes goldRain {
  0%   { transform: translateY(-20px) rotate(45deg); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:0.8; }
  100% { transform: translateY(100vh) rotate(45deg); opacity:0; }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes borderGlow {
  0%,100% { opacity:0.4; }
  50%     { opacity:1; }
}
@keyframes countGlow {
  0%,100% { filter: none; }
  50%     { filter: drop-shadow(0 0 12px rgba(0,144,245,0.8)); }
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-20px); }
}

/* ---- Scroll Progress Bar ---- */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0,144,245,0.6);
}

/* ---- Cursor Glow ---- */
.cursor-glow {
  position: fixed; width: 300px; height: 300px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(0,144,245,0.06) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: transform 0.05s, opacity 0.3s;
  animation: cursorGlow 3s ease-in-out infinite;
}

/* ---- Ripple Effect on Buttons ---- */
.btn { position: relative; overflow: hidden; }
.btn .ripple-el {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0); animation: ripple 0.6s linear;
  pointer-events: none;
}

/* ---- Button Shimmer Sweep ---- */
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}
.btn-ghost::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,144,245,0.15), transparent);
  transform: skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite 1s;
}

/* ---- Floating Background Orbs ---- */
.bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  animation: orbDrift 12s ease-in-out infinite;
  z-index: 0;
}
.bg-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,144,245,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.bg-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -4s; animation-duration: 15s;
}
.bg-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,144,245,0.05) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation-delay: -8s; animation-duration: 18s;
}

/* Apply orbs to key sections */
#hero, #about, #companies, #process, #contact { position: relative; }

/* ---- Hero Extra Flashy ---- */
.hero-heading { animation: textGlowPulse 4s ease-in-out infinite; }

/* Floating sparkle stars in hero */
.hero-bg::before {
  content: '✦';
  position: absolute; top: 20%; left: 15%;
  color: var(--gold); font-size: 10px; opacity: 0.4;
  animation: sparkleAppear 3s ease-in-out infinite;
}
.hero-bg::after {
  content: '✦';
  position: absolute; top: 60%; right: 20%;
  color: var(--gold); font-size: 8px; opacity: 0.3;
  animation: sparkleAppear 4s ease-in-out infinite 1.5s;
}

/* Hero metric panel floating animation */
.hero-metric-panel { animation: heroFloat 6s ease-in-out infinite; }

/* Metric card animated top border */
.metric-card::before {
  animation: borderGlow 3s ease-in-out infinite;
}

/* ---- Animated Gradient Section Dividers ---- */
section::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,144,245,0.2), transparent);
  pointer-events: none;
}
#stats::before, .ticker-strip::before { display: none; }

/* ---- Stats Number Glow on Count ---- */
.stat-number { animation: countGlow 3s ease-in-out infinite; }
.stat-block:nth-child(2) .stat-number { animation-delay: 0.5s; }
.stat-block:nth-child(3) .stat-number { animation-delay: 1s; }
.stat-block:nth-child(4) .stat-number { animation-delay: 1.5s; }
.stat-block:nth-child(5) .stat-number { animation-delay: 2s; }

/* ---- Section Headings Glow ---- */
.sec-heading em { animation: textGlowPulse 5s ease-in-out infinite; }

/* ---- Animated Eyebrow Line ---- */
.sec-eyebrow::before {
  animation: lineGrow 1.5s ease-out forwards, borderGlow 3s ease-in-out 1.5s infinite;
}

/* ---- Division Cards Enhanced Hover ---- */
.div-card {
  perspective: 1000px;
}
.div-card:hover {
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,144,245,0.25),
    0 0 40px rgba(0,144,245,0.08);
}

/* Featured card animated border gradient */
.div-card-featured {
  position: relative;
}
.div-card-featured::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, var(--gold), transparent 40%, var(--gold-dark) 60%, transparent, var(--gold));
  background-size: 300% 300%;
  animation: gradientShift 4s ease-in-out infinite;
  z-index: -1;
  opacity: 0.6;
}

/* Division icon pulse on card hover */
.div-card:hover .div-icon {
  animation: auraPulse 1.5s ease-in-out infinite;
  background: color-mix(in srgb, var(--c, var(--gold)) 20%, transparent);
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s ease;
}

/* ---- Process Steps Animated ---- */
.process-step:hover .ps-icon {
  animation: auraPulse 1.5s ease-in-out infinite;
}
.process-step .ps-num {
  position: relative;
}
.process-step .ps-num::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform-origin: left;
  transform: scaleX(0); transition: transform 0.4s ease;
}
.process-step:hover .ps-num::after { transform: scaleX(1); }

/* Process connector animated fill */
.ps-connector {
  background: linear-gradient(180deg, var(--gold), var(--border-md));
  animation: borderGlow 3s ease-in-out infinite;
}

/* ---- Gallery Slide Glow ---- */
.gslide {
  box-shadow: 0 0 0 0 rgba(0,144,245,0);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.gslide:hover {
  box-shadow: 0 0 0 2px rgba(0,144,245,0.4), 0 20px 50px rgba(0,0,0,0.6);
}

/* ---- Testimonial Stars Shimmer ---- */
.testi-stars {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s linear infinite;
}

/* Testimonial card animated on hover */
.testi-card:hover {
  box-shadow:
    var(--shadow-gold),
    0 0 0 1px rgba(0,144,245,0.2),
    0 20px 50px rgba(0,0,0,0.5);
}

/* ---- CTA Banner Extra Glow ---- */
.cta-inner {
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(0,144,245,0.04) 0%,
    transparent 40%,
    rgba(99,102,241,0.03) 70%,
    transparent 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
}

/* Scan line effect on CTA */
.cta-inner::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,144,245,0.15), transparent);
  animation: scanLine 4s linear infinite;
  pointer-events: none;
}

/* CTA buttons pulse */
#cta-banner .btn-primary {
  animation: auraPulse 3s ease-in-out infinite;
}

/* ---- Contact Form Input Glow ---- */
.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(0,144,245,0.15), 0 0 20px rgba(0,144,245,0.1);
}

/* Form error message */
.form-error {
  display: none; margin-top: 16px;
  padding: 14px 18px; border-radius: var(--radius-xs);
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171; font-size: 14px;
  align-items: center; gap: 10px;
}
.form-error.show { display: flex; }
.form-error i { font-size: 16px; }

/* ---- Footer Animated Gradient Top Border ---- */
#footer {
  border-top: none;
  position: relative;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}

/* Footer links animated underline */
.footer-links-col ul li a {
  position: relative;
}
.footer-links-col ul li a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.footer-links-col ul li a:hover::after { width: 100%; }

/* ---- Nav Links Animated Underline ---- */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1.5px;
  background: var(--gold); border-radius: 1px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(0.6); }

/* ---- About Year Badge Glow ---- */
.about-year-badge {
  animation: auraPulse 4s ease-in-out infinite;
}

/* ---- WhatsApp Float Pulse ---- */
.wa-float::after {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ringPulse 2s ease-out infinite;
}
.wa-float { position: fixed; }

/* ---- Ticker Gold Glow ---- */
.ticker-strip {
  box-shadow: 0 0 30px rgba(0,144,245,0.05) inset;
}
.ticker-sep {
  animation: textGlowPulse 2s ease-in-out infinite;
}

/* ---- Pillar Cards Animated ---- */
.pillar:hover .pillar-icon {
  animation: auraPulse 1.5s ease-in-out infinite;
  transform: scale(1.1);
}
.pillar { transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.pillar:hover { transform: translateX(6px); }

/* ---- Contact Info Items ---- */
.cinfo-item:hover .cinfo-icon {
  animation: auraPulse 1.5s ease-in-out infinite;
}

/* ---- Metric Card Row Hover ---- */
.metric-row {
  position: relative; overflow: hidden;
}
.metric-row::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,144,245,0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.metric-row:hover::before { transform: translateX(100%); }

/* ---- Gold Particle Decorations ---- */
.gold-particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); pointer-events: none; z-index: 0;
  animation: goldRain linear infinite;
  opacity: 0;
}

/* ---- Stat block hover glow ---- */
.stat-block:hover .stat-number {
  filter: drop-shadow(0 0 20px rgba(0,144,245,0.9));
}
.stat-block:hover .stat-divider {
  width: 50px; opacity: 1;
  box-shadow: 0 0 10px rgba(0,144,245,0.5);
}
.stat-divider { transition: width 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease; }

/* ---- Preloader Gold Sparkles ---- */
.loader-inner::before, .loader-inner::after {
  content: '✦';
  position: absolute; color: var(--gold); opacity: 0.4;
  animation: sparkleAppear 2s ease-in-out infinite;
}
.loader-inner::before { top: -30px; left: 20px; font-size: 12px; }
.loader-inner::after  { bottom: -20px; right: 20px; font-size: 8px; animation-delay: 1s; }

/* ---- Animated section background grids ---- */
#companies::after, #process::after, #contact::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,144,245,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,144,245,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ---- Holographic sheen on nav-cta button ---- */
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 300% 300%;
  animation: gradientShift 4s ease-in-out infinite;
}
.nav-cta:hover {
  background: var(--gold-light);
  animation: none;
}

/* ---- Animated border on cform ---- */
.cform {
  position: relative;
}
.cform::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(0,144,245,0.3), transparent 40%, rgba(0,144,245,0.15) 70%, transparent);
  background-size: 300% 300%;
  animation: gradientShift 6s ease-in-out infinite;
  z-index: -1;
  opacity: 0.5;
}

/* ---- About main image glow ---- */
.about-main-img {
  transition: box-shadow 0.5s ease;
}
.about-img-side:hover .about-main-img {
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,144,245,0.2), 0 0 40px rgba(0,144,245,0.08);
}

/* ---- Section fade-in enhancement ---- */
[data-aos="fade-up"]   { will-change: transform, opacity; }
[data-aos="fade-left"] { will-change: transform, opacity; }
[data-aos="fade-right"]{ will-change: transform, opacity; }
