/* ==========================================================================
   AURAVEX — Luxury Digital Growth & Technology Design System
   UAE Headquarters: Sharjah | Serving Dubai, Abu Dhabi & All 7 Emirates
   TYPOGRAPHY: Outfit + Cinzel Decorative + Sora + Space Grotesk
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Surface & Backgrounds */
  --bg-deep: #030406;
  --bg-dark: #07090D;
  --bg-card: rgba(13, 17, 25, 0.76);
  --bg-card-hover: rgba(19, 25, 37, 0.92);
  --bg-card-glass: rgba(15, 20, 29, 0.68);
  --bg-elevated: #0F131E;
  --bg-secondary: #090C13;

  /* Gold Luxury Palette */
  --gold-300: #FFF5D6;
  --gold-400: #F7E58D;
  --gold-500: #D4AF37;
  --gold-600: #BA8814;
  --gold-700: #8E6508;
  --gold-glow: rgba(212, 175, 55, 0.42);
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-bright: rgba(212, 175, 55, 0.65);

  /* Gold Gradient Presets */
  --grad-gold: linear-gradient(135deg, #FFF8DC 0%, #D4AF37 32%, #AA771C 68%, #F7E5A9 100%);
  --grad-gold-text: linear-gradient(120deg, #FFFFFF 0%, #FFF3C4 20%, #D4AF37 55%, #AA771C 85%, #FFDF73 100%);
  --grad-silver: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);
  --grad-dark: linear-gradient(180deg, rgba(13, 16, 23, 0.95) 0%, rgba(5, 6, 8, 0.98) 100%);
  --grad-glow-radial: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.25) 0%, transparent 70%);

  /* High-Tech Cyan / Cyber Accents */
  --tech-cyan: #00F2FE;
  --tech-blue: #38BDF8;
  --tech-glow: rgba(0, 242, 254, 0.32);

  /* Typography Colors */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --text-gold: #E5C378;

  /* Upgraded Typography Families */
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Cinzel Decorative', 'Cinzel', serif;
  --font-sans: 'Sora', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 20px 48px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.35);
  --shadow-gold-lg: 0 20px 50px -10px rgba(212, 175, 55, 0.5);

  /* Layout Spacing */
  --nav-height: 90px;
  --nav-height-scrolled: 72px;
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 9999px;

  /* Smooth Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ==========================================================================
   CUSTOM LOGO CURSOR SYSTEM (Ultra-Visible, Golden Glow & Trail)
   ========================================================================== */
html.has-custom-cursor,
html.has-custom-cursor *,
html.has-custom-cursor *::before,
html.has-custom-cursor *::after {
  cursor: none !important;
}

#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37 0%, #00F2FE 50%, #F7E58D 100%);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8), 0 0 24px rgba(0, 242, 254, 0.6);
  z-index: 10000000;
  pointer-events: none;
  transition: width 0.08s ease-out;
}

#auravex-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  pointer-events: none !important;
  z-index: 9999999 !important;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.08s linear;
}

#auravex-cursor.visible {
  opacity: 1;
}

.cursor-aim-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 6px #FFF, 0 0 12px #D4AF37;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

#auravex-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.95)) drop-shadow(0 0 20px rgba(247, 229, 141, 0.8)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.4));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
  pointer-events: none;
}

.cursor-glow-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(0, 242, 254, 0.15) 50%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: cursorPulse 2.2s ease-in-out infinite alternate;
}

@keyframes cursorPulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.35); opacity: 1; }
}

#cursor-trailer {
  position: fixed;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
  pointer-events: none !important;
  z-index: 9999998 !important;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, background 0.3s ease;
  will-change: transform;
}

#cursor-trailer.visible {
  opacity: 1;
}

/* Cursor Hover States */
body.cursor-hover #auravex-cursor img {
  transform: scale(1.35) rotate(14deg);
  filter: drop-shadow(0 0 16px rgba(247, 229, 141, 1)) drop-shadow(0 0 32px rgba(212, 175, 55, 0.9)) drop-shadow(0 0 45px rgba(0, 242, 254, 0.6));
}

body.cursor-hover #cursor-trailer {
  width: 78px;
  height: 78px;
  border-color: #F7E58D;
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

body.cursor-click #auravex-cursor img {
  transform: scale(0.85) rotate(-10deg);
}

body.cursor-click #cursor-trailer {
  transform: translate(-50%, -50%) scale(0.75);
}

/* Stardust trail particle */
.cursor-sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 10px var(--gold-400), 0 0 18px rgba(0, 242, 254, 0.8);
  pointer-events: none !important;
  z-index: 9999997 !important;
  animation: sparkleFade 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sparkleFade {
  0% { transform: scale(1.2) rotate(0deg); opacity: 1; }
  100% { transform: scale(0.2) translateY(16px) rotate(180deg); opacity: 0; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #040507;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37 0%, #684B0E 100%);
  border-radius: 10px;
  border: 2px solid #040507;
}
::-webkit-scrollbar-thumb:hover {
  background: #F7E58D;
}

::selection {
  background: rgba(212, 175, 55, 0.38);
  color: #FFF5D6;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Ambient Animated Background Canvas & Glows --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  will-change: transform;
  animation: floatAmbient 18s ease-in-out infinite alternate;
}

.ambient-glow-1 {
  top: -10%;
  right: -5%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
}

.ambient-glow-2 {
  top: 40%;
  left: -15%;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
  animation-duration: 22s;
  animation-delay: -5s;
}

.ambient-glow-3 {
  bottom: 5%;
  right: 10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, 35px) scale(1.1); }
  100% { transform: translate(-35px, -25px) scale(0.95); }
}

/* Mouse spotlight glow tracker */
#cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 242, 254, 0.04) 40%, transparent 70%);
  z-index: 1;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  z-index: 2;
}

/* Fluid Animated Section Padding */
section {
  position: relative;
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(80px, 9vw, 130px);
  z-index: 2;
  transition: padding var(--transition-normal);
}

.section-compact {
  padding-top: clamp(50px, 6vw, 80px);
  padding-bottom: clamp(50px, 6vw, 80px);
}

/* --- Typography Helpers --- */
.gold-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 800;
}

.silver-text {
  background: var(--grad-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
}

.section-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: badgeSweep 3.5s infinite ease-in-out;
}

@keyframes badgeSweep {
  0% { left: -100%; }
  40%, 100% { left: 160%; }
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-400);
  box-shadow: 0 0 12px var(--gold-400);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: var(--text-muted);
  line-height: 1.72;
}

/* --- Buttons & CTAs with Magnetic Glow --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  z-index: 1;
}

.btn-primary-gold {
  background: var(--grad-gold);
  color: #07090D;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 247, 217, 0.4);
}

.btn-primary-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.btn-primary-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold-lg);
  color: #000000;
}

.btn-primary-gold:hover::before {
  opacity: 1;
}

.btn-secondary-glass {
  background: rgba(20, 26, 38, 0.65);
  border: 1px solid var(--gold-border);
  color: #FFFFFF;
  backdrop-filter: blur(14px);
}

.btn-secondary-glass:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.btn-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-circle {
  transform: translateX(4px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.84rem;
}

/* ==========================================================================
   NAVIGATION BAR (Precision Aligned • Zero Overlap • Luxury Floating Pill)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
  padding: 0 clamp(16px, 2.5vw, 36px);
  background: transparent;
}

.site-header.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(6, 8, 12, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
  padding: 0 clamp(16px, 2.5vw, 30px);
}

.nav-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.8vw, 24px);
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-emblem-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.55));
  transition: transform var(--transition-spring);
}

.brand-logo-link:hover .brand-emblem-img {
  transform: rotate(6deg) scale(1.08);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.6vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1.05;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  margin-top: 3px;
  white-space: nowrap;
}

/* Nav Menu Items (Center Floating Pill) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.9vw, 16px);
  background: rgba(14, 18, 28, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px clamp(10px, 1.2vw, 20px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  transition: all var(--transition-normal);
  flex-shrink: 1;
  white-space: nowrap;
}

.site-header.scrolled .nav-menu {
  background: rgba(10, 13, 20, 0.85);
  border-color: rgba(212, 175, 55, 0.3);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 0.84vw, 0.88rem);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 5px clamp(4px, 0.5vw, 8px);
  transition: color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition-normal);
  box-shadow: 0 0 10px var(--gold-400);
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Right Side CTA Wrap */
.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  flex-shrink: 0;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-phone-link:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-400);
  color: #FFF5D6;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.nav-cta-wrap .btn-sm {
  padding: 9px clamp(14px, 1.2vw, 22px);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Responsive Header Rules (Guaranteed Zero Overlap) */
@media (max-width: 1340px) {
  .brand-tagline {
    display: none;
  }
}

@media (max-width: 1240px) {
  .nav-phone-link span {
    display: none;
  }
  .nav-phone-link {
    padding: 8px 10px;
  }
}

@media (max-width: 1140px) {
  .nav-menu {
    display: none;
  }
  .nav-phone-link {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border);
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--gold-400);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: rgba(6, 8, 12, 0.97);
  backdrop-filter: blur(28px);
  z-index: 999;
  padding: 110px 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--gold-border);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-400);
  padding-left: 10px;
  border-color: var(--gold-border);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 5.4vw, 4.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero-description {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* Hero Media Card */
.hero-visual-wrap {
  position: relative;
  z-index: 3;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border-bright);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), var(--shadow-gold);
  transform-style: preserve-3d;
  transition: transform var(--transition-normal);
}

.hero-media-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.hero-banner-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-media-card:hover .hero-banner-img {
  transform: scale(1.04);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.12) 0%, rgba(6, 8, 12, 0.88) 100%);
  pointer-events: none;
}

/* Floating Dynamic Metric Cards */
.hero-floating-card {
  position: absolute;
  padding: 16px 20px;
  background: rgba(12, 16, 26, 0.88);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.hero-floating-card.card-top-right {
  top: 30px;
  right: -25px;
  animation-duration: 7s;
}

.hero-floating-card.card-bottom-left {
  bottom: 30px;
  left: -25px;
  animation-duration: 8s;
  animation-delay: -3s;
}

@keyframes floatCard {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(1deg); }
}

.floating-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.floating-icon-wrap.cyan-variant {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.3);
  color: var(--tech-cyan);
}

.floating-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.floating-card-info p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   INTERACTIVE BUSINESS GROWTH ESTIMATOR (SCREENSHOT 2 IMPLEMENTATION)
   Starts from 12k AED with Dynamic Live Sliders & Real-Time Cards
   ========================================================================== */
.growth-estimator-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-secondary) 50%, var(--bg-deep) 100%);
  padding: clamp(90px, 10vw, 140px) 0;
  overflow: hidden;
}

.estimator-container-glass {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 54px);
  background: rgba(14, 18, 27, 0.82);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(28px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), var(--shadow-gold-lg);
  position: relative;
  overflow: hidden;
}

/* Rotating Laser Golden Border Beam */
.estimator-container-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(212, 175, 55, 0.35), transparent 30%);
  animation: borderBeamRotate 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes borderBeamRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.estimator-inner-content {
  position: relative;
  z-index: 2;
  background: rgba(10, 13, 20, 0.94);
  border-radius: calc(var(--radius-xl) - 4px);
  padding: clamp(24px, 3.5vw, 44px);
}

.estimator-header-wrap {
  text-align: center;
  margin-bottom: 44px;
}

.estimator-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.estimator-main-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.estimator-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 38px;
}

/* Left Controls */
.estimator-controls-side {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.estimator-field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.estimator-label {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: #FFFFFF;
}

.estimator-select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(16, 21, 31, 0.9);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.estimator-select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.estimator-select option {
  background: #0B0E16;
  color: #FFFFFF;
}

/* Slider Track & Thumb */
.slider-value-display {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1.1;
  margin-top: 6px;
}

.estimator-slider-wrap {
  position: relative;
  margin: 14px 0 8px;
}

.estimator-gold-slider {
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #D4AF37 0%, rgba(255, 255, 255, 0.12) 100%);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.estimator-gold-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F7E58D;
  border: 3px solid #050608;
  box-shadow: 0 0 16px var(--gold-400);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.estimator-gold-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.estimator-limits-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.limit-start {
  color: var(--gold-400);
  font-weight: 600;
}

.limit-end {
  color: var(--text-dim);
}

/* Right Side: 3 Comparison Result Cards */
.estimator-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.estimator-result-card {
  background: rgba(18, 23, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.estimator-result-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--shadow-gold);
}

.estimator-result-card.highlighted-card {
  background: rgba(22, 28, 42, 0.85);
  border: 1.5px solid var(--gold-400);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.estimator-card-toplabel {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.highlighted-card .estimator-card-toplabel {
  color: var(--gold-400);
  font-weight: 700;
}

.estimator-card-bignum {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 12px;
}

.highlighted-card .estimator-card-bignum {
  color: #F7E58D;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.estimator-card-sublabel {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Bottom Plan Button */
.estimator-bottom-action {
  text-align: center;
  padding-top: 10px;
}

.btn-estimator-plan {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 46px;
  border-radius: var(--radius-pill);
  background: var(--grad-gold);
  color: #07090D;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold-lg);
  border: 1px solid rgba(255, 247, 217, 0.5);
  transition: all var(--transition-normal);
}

.btn-estimator-plan:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6);
  color: #000000;
}

/* ==========================================================================
   VERTICAL FLOATING QUICK-DOCK (SCREENSHOT 2 DOCK IMPLEMENTATION)
   ========================================================================== */
.floating-quick-dock {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(14, 18, 27, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  padding: 14px 10px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), var(--shadow-gold);
  z-index: 950;
}

.dock-pill-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-spring);
  position: relative;
}

.dock-pill-btn:hover {
  background: var(--grad-gold);
  color: #07090D;
  transform: scale(1.18);
  box-shadow: 0 0 20px var(--gold-400);
}

.dock-pill-btn.whatsapp-dock {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
}

.dock-pill-btn.whatsapp-dock:hover {
  transform: scale(1.22);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

/* Tooltip on dock */
.dock-pill-btn .dock-tooltip {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #090C13;
  border: 1px solid var(--gold-border);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.dock-pill-btn:hover .dock-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   REACT NATIVE MOBILE SHOWCASE SECTION
   ========================================================================== */
.mobile-showcase-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
}

.mobile-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.phone-mockup-frame {
  width: 320px;
  height: 640px;
  background: #080A0E;
  border-radius: 46px;
  border: 10px solid #1C2230;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), var(--shadow-gold-lg);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-mockup-frame::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #1C2230;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen-inner {
  flex: 1;
  background: #050608;
  padding: 38px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.phone-screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.phone-screen-logo {
  height: 24px;
  width: auto;
}

.phone-sim-content {
  flex: 1;
  overflow-y: auto;
}

.phone-sim-badge {
  font-size: 0.65rem;
  color: var(--gold-400);
  font-family: var(--font-mono);
  background: rgba(212, 175, 55, 0.12);
  padding: 3px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 6px;
}

.phone-sim-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 8px;
}

.phone-sim-chart-card {
  background: rgba(20, 26, 38, 0.8);
  border-radius: 14px;
  border: 1px solid var(--gold-border);
  padding: 12px;
  margin-bottom: 12px;
}

.phone-sim-chart-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-400);
}

.phone-sim-tabs {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-tab-icon {
  font-size: 0.68rem;
  color: var(--gold-400);
  font-family: var(--font-mono);
}

/* ==========================================================================
   ABOUT SECTION & GROWTH EQUATION
   ========================================================================== */
.about-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
}

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

.growth-formula-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.growth-formula-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.formula-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.formula-step-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.formula-step-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-border);
  transform: translateX(6px);
}

.step-label-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-number-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.about-feature-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.about-feature-box:hover {
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-4px);
}

.about-feature-box h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CORE INDUSTRIES SECTION (Interactive Tabs + Showcase)
   ========================================================================== */
.industries-section {
  background: var(--bg-deep);
  position: relative;
}

.industries-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.industry-tab-btn {
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(16, 21, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-tab-btn:hover {
  color: #FFFFFF;
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.08);
}

.industry-tab-btn.active {
  background: var(--grad-gold);
  color: #07090E;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  font-weight: 700;
}

.industry-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.industry-media-side {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.industry-showcase-card:hover .industry-img {
  transform: scale(1.05);
}

.industry-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(14, 18, 26, 0.95) 100%),
              linear-gradient(180deg, transparent 60%, rgba(14, 18, 26, 0.95) 100%);
}

.industry-content-side {
  padding: 44px 44px 44px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-sector-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.industry-headline {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

.industry-summary {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
}

.industry-bullets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.industry-bullet-pill {
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.industry-bullet-pill:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

/* ==========================================================================
   SERVICES MATRIX (All 11 Pillars from PDF)
   ========================================================================== */
.services-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-deep) 100%);
  position: relative;
}

.services-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.service-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.service-filter-btn:hover {
  border-color: var(--gold-border);
  color: #FFFFFF;
}

.service-filter-btn.active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-400);
  color: var(--gold-300);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.2);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), var(--shadow-gold);
}

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

.service-card-top {
  margin-bottom: 24px;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--grad-gold);
  color: #07090D;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.service-card-category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 6px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.service-card-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.service-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}

.service-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-bullet-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-400);
}

.service-card-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-action-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-action-link:hover {
  gap: 10px;
  color: #FFFFFF;
}

/* ==========================================================================
   OUR GROWTH SYSTEM (Page 9: 7 Steps Roadmap)
   ========================================================================== */
.growth-system-section {
  background: var(--bg-deep);
  position: relative;
}

.system-timeline-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500) 0%, rgba(212, 175, 55, 0.15) 100%);
  z-index: 1;
}

.system-step-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.system-step-node {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-300);
  transition: all var(--transition-normal);
}

.system-step-row:hover .system-step-node {
  background: var(--grad-gold);
  color: #07080B;
  transform: scale(1.12);
  box-shadow: 0 0 35px var(--gold-400);
}

.system-step-card {
  flex-grow: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
}

.system-step-row:hover .system-step-card {
  border-color: var(--gold-border-bright);
  background: rgba(22, 28, 42, 0.8);
  transform: translateX(10px);
  box-shadow: var(--shadow-gold);
}

.step-header-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-card-body {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   REVENUE-BASED PARTNERSHIP (Page 9)
   ========================================================================== */
.partnership-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
  position: relative;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.partnership-info-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partnership-models-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.partnership-model-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: all var(--transition-normal);
}

.partnership-model-chip:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-400);
  transform: translateY(-3px);
}

.partnership-model-chip svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

/* ==========================================================================
   WHY AURAVEX? (Page 9-10: 6 Core Pillars)
   ========================================================================== */
.why-section {
  background: var(--bg-deep);
  position: relative;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.why-pillar-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  backdrop-filter: blur(16px);
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.why-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.why-pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  background: rgba(22, 28, 42, 0.85);
  box-shadow: var(--shadow-gold);
}

.why-pillar-card:hover::before {
  opacity: 1;
}

.why-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 20px;
  transition: all var(--transition-spring);
}

.why-pillar-card:hover .why-icon-badge {
  background: var(--grad-gold);
  color: #07090D;
  transform: scale(1.1) rotate(6deg);
}

.why-pillar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.why-pillar-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   RESULTS THAT MATTER & PROCESS (Page 11-12)
   ========================================================================== */
.results-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  position: relative;
}

.metrics-counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.metric-counter-card {
  padding: 30px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.metric-counter-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.counter-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.counter-suffix {
  color: var(--gold-400);
}

.counter-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* 7-Stage Process Horizontal Grid */
.process-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  position: relative;
}

.process-step-item {
  padding: 24px 18px;
  background: rgba(18, 22, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
}

.process-step-item:hover {
  background: rgba(212, 175, 55, 0.09);
  border-color: var(--gold-border-bright);
  transform: translateY(-5px);
}

.process-step-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.process-step-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.process-step-brief {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ==========================================================================
   UAE & GLOBAL FOOTPRINT (Page 11: 7 Emirates)
   ========================================================================== */
.uae-section {
  background: var(--bg-deep);
  position: relative;
}

.uae-presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.emirates-badges-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.emirate-badge {
  padding: 12px 22px;
  background: rgba(18, 22, 34, 0.8);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.emirate-badge.hq-badge {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-400);
  color: var(--gold-300);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.emirate-badge:hover,
.emirate-badge.active-emirate {
  background: var(--grad-gold);
  color: #07090D;
  border-color: transparent;
  transform: translateY(-3px) scale(1.04);
}

.uae-map-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.uae-map-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.uae-map-card:hover .uae-map-img {
  transform: scale(1.03);
}

.uae-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.15) 0%, rgba(8, 10, 15, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.uae-map-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
}

.uae-map-overlay p {
  color: var(--gold-300);
  font-size: 0.92rem;
}

/* ==========================================================================
   FINAL CTA BANNER (Page 12)
   ========================================================================== */
.final-cta-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, rgba(4, 5, 7, 0.98) 75%);
  padding: clamp(90px, 12vw, 150px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-box-glass {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 68px) 36px;
  background: rgba(14, 18, 28, 0.85);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold-lg);
  backdrop-filter: blur(24px);
  position: relative;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.15;
}

.final-cta-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==========================================================================
   FOOTER & CONTACT SECTION
   ========================================================================== */
.site-footer {
  background: #040507;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 80px;
  padding-bottom: 36px;
  position: relative;
  z-index: 2;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-side p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-400);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #FFFFFF;
}

.footer-contact-item a:hover {
  color: var(--gold-400);
}

/* Service Tags Ribbon */
.footer-services-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.footer-services-strip span.sep {
  color: rgba(212, 175, 55, 0.4);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--text-dim);
}

/* ==========================================================================
   INTERACTIVE BOOKING MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 7, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card-hover);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--shadow-gold-lg);
  transform: translateY(30px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-backdrop.active .modal-window {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-400);
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.form-field-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(10, 13, 19, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
  background: rgba(14, 18, 26, 0.95);
}

.form-select option {
  background: #0E121A;
  color: #FFFFFF;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 28px;
  background: rgba(14, 18, 27, 0.95);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--shadow-gold);
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   INTERACTIVE BUSINESS GROWTH ESTIMATOR (SCREENSHOT 2 LUXURY IMPLEMENTATION)
   Starts from AED 12,000 | Custom Animated Slider & Live Projected Cards
   ========================================================================== */
.growth-estimator-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.estimator-container-glass {
  position: relative;
  background: rgba(11, 15, 24, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 64px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.estimator-container-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.8) 50%, transparent 100%);
  animation: laserScan 6s linear infinite;
}

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

.estimator-inner-content {
  position: relative;
  z-index: 2;
}

.estimator-header-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px auto;
}

.estimator-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.estimator-main-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.estimator-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
  align-items: center;
}

/* Left: Controls */
.estimator-controls-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.estimator-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimator-label {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #F1F5F9;
}

.estimator-select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(16, 21, 33, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.estimator-select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.slider-value-display {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--tech-cyan);
  background: linear-gradient(135deg, #00F2FE 0%, #FFF5D6 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

/* Custom Gold & Cyan Slide Bar */
.estimator-slider-wrap {
  position: relative;
  width: 100%;
  margin: 16px 0 10px 0;
}

.estimator-gold-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #D4AF37 0%, #00F2FE 100%);
  outline: none;
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

.estimator-gold-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF5D6 15%, #D4AF37 60%, #AA771C 100%);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 16px rgba(212, 175, 55, 1), 0 0 30px rgba(0, 242, 254, 0.7);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.estimator-gold-slider::-webkit-slider-thumb:hover {
  transform: scale(1.22);
  box-shadow: 0 0 24px rgba(255, 245, 214, 1), 0 0 40px rgba(212, 175, 55, 0.9);
}

.estimator-gold-slider::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF5D6 15%, #D4AF37 60%, #AA771C 100%);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 16px rgba(212, 175, 55, 1), 0 0 30px rgba(0, 242, 254, 0.7);
  cursor: pointer;
}

/* Preset Quick Select Pills */
.estimator-presets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.estimator-preset-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.estimator-preset-pill:hover,
.estimator-preset-pill.active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-400);
  color: #FFF5D6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.estimator-limits-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 6px;
}

.limit-start {
  color: #00F2FE;
  font-weight: 700;
  background: rgba(0, 242, 254, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 242, 254, 0.25);
}

.limit-end {
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* Right: 3 Output Cards (Screenshot 2 Match) */
.estimator-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.estimator-result-card {
  background: rgba(14, 18, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.estimator-result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

/* Highlighted Middle Card: High-Intent Leads */
.estimator-result-card.highlighted-card {
  background: linear-gradient(180deg, rgba(29, 21, 56, 0.85) 0%, rgba(16, 19, 32, 0.95) 100%);
  border: 1.8px solid #8B5CF6;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.35), inset 0 0 20px rgba(139, 92, 246, 0.15);
  transform: scale(1.04);
}

.estimator-result-card.highlighted-card:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 0 45px rgba(139, 92, 246, 0.55), inset 0 0 25px rgba(139, 92, 246, 0.25);
}

.estimator-card-toplabel {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.highlighted-card .estimator-card-toplabel {
  color: #C4B5FD;
}

.estimator-card-bignum {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 8px;
}

.highlighted-card .estimator-card-bignum {
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.estimator-card-sublabel {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.highlighted-card .estimator-card-sublabel {
  color: #E2E8F0;
  font-weight: 500;
}

/* Bottom CTA Plan Button */
.estimator-bottom-action {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-estimator-plan {
  padding: 18px 46px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #00F2FE 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.45);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-estimator-plan::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-estimator-plan:hover::after {
  left: 100%;
}

.btn-estimator-plan:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 48px rgba(139, 92, 246, 0.65), 0 0 30px rgba(0, 242, 254, 0.5);
}

/* ==========================================================================
   VERTICAL FLOATING QUICK-DOCK (SCREENSHOT 2 DOCK MATCH)
   ========================================================================== */
.floating-quick-dock {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  background: rgba(11, 15, 24, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 8px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
}

.dock-pill-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 26, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.dock-pill-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-400);
  color: #FFF5D6;
  transform: scale(1.15) translateX(-4px);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
}

.dock-pill-btn.whatsapp-dock {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: #10B981;
}

.dock-pill-btn.whatsapp-dock:hover {
  background: #10B981;
  color: #000;
  border-color: #10B981;
  box-shadow: 0 0 22px rgba(16, 185, 129, 0.6);
}

.dock-tooltip {
  position: absolute;
  right: 58px;
  white-space: nowrap;
  background: rgba(10, 14, 22, 0.95);
  border: 1px solid var(--gold-border-bright);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.dock-pill-btn:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   LASER BORDER BEAMS & CARD SHIMMER MICRO-ANIMATIONS
   ========================================================================== */
.hero-media-card,
.phone-mockup-frame,
.industry-showcase-card,
.service-card {
  position: relative;
  overflow: hidden;
}

.hero-media-card::before,
.phone-mockup-frame::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(212, 175, 55, 0.8) 60deg, rgba(0, 242, 254, 0.6) 120deg, transparent 180deg);
  border-radius: inherit;
  z-index: -1;
  animation: rotateBorder 6s linear infinite;
  opacity: 0.7;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Shimmer light sweep on hover */
.service-card::after,
.about-feature-box::after,
.why-pillar-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.service-card:hover::after,
.about-feature-box:hover::after,
.why-pillar-card:hover::after {
  transform: rotate(25deg) translateY(100%);
}

/* Floating Badges Levitation */
.hero-floating-card {
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.card-bottom-left {
  animation-delay: -2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .mobile-showcase-grid,
  .estimator-body-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid,
  .industry-showcase-card,
  .partnership-grid,
  .uae-presence-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .industry-content-side {
    padding: 30px;
  }

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

  .nav-menu,
  .nav-phone-link {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .floating-quick-dock {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .services-cards-grid,
  .estimator-cards-row {
    grid-template-columns: 1fr;
  }

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

  .form-field-full {
    grid-column: span 1;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .hero-floating-card {
    display: none;
  }
}
