/* ==========================================================================
   Signature NOX - Core & Header Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & Global Variables
   -------------------------------------------------------------------------- */
:root {
  --bg-primary: #090A0E;
  --bg-header: rgba(9, 10, 14, 0.8);
  --brand-blue: #2882EA;
  --brand-blue-light: #5ba3f5;
  --brand-blue-glow: rgba(40, 130, 234, 0.35);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  
  --font-ar: 'Tajawal', 'Cairo', sans-serif;
  --font-brand: 'Cinzel', 'Montserrat', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Lenis Smooth Scroll Recommended Rules */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

html {
  font-size: 16px;
  background-color: var(--bg-primary);
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  position: relative;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* --------------------------------------------------------------------------
   2. Fast Luxury Preloader (Dark & #2882EA Glow)
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #090A0E;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  filter: blur(0px);
  transform: scale(1);
}

.preloader::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(40, 130, 234, 0.16) 0%, transparent 70%);
  pointer-events: none;
  animation: preloaderGlow 1.2s ease-in-out infinite alternate;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  filter: blur(30px);
  transform: scale(1.05);
  pointer-events: none;
}

.preloader.loaded .preloader-content {
  filter: blur(20px);
  opacity: 0;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 1.1rem;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.preloader-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
  animation: preloaderLogoPulse 1s ease-in-out infinite alternate;
}

.preloader-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-brand);
}

.preloader-title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.preloader-sub {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--brand-blue);
  text-shadow: 0 0 15px rgba(40, 130, 234, 0.8);
}

.preloader-bar-wrap {
  width: 170px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2882EA 0%, #60a5fa 70%, #ffffff 100%);
  border-radius: 9999px;
  box-shadow: 0 0 14px rgba(40, 130, 234, 0.95);
  animation: preloaderFill 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderFill {
  0% {
    width: 0%;
  }
  40% {
    width: 45%;
  }
  75% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}

@keyframes preloaderLogoPulse {
  0% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1.04);
  }
}

@keyframes preloaderGlow {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

/* --------------------------------------------------------------------------
   3. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-12px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.65s,
              filter 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.65s,
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.65s,
              background 0.35s ease,
              padding 0.35s ease,
              border-bottom 0.35s ease;
}

body.hero-animate .header {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.header.scrolled {
  background: var(--bg-header);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(40, 130, 234, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}

.logo-link:hover .header-logo {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: auto; /* Ensures the menu pushes to the far left in RTL */
}

.nav-link {
  color: rgba(243, 244, 246, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link:hover {
  color: var(--brand-blue-light);
  border-color: rgba(40, 130, 234, 0.4);
  background: rgba(40, 130, 234, 0.08);
}

.nav-link.active {
  color: #ffffff;
  border: 1px solid var(--brand-blue);
  background: rgba(40, 130, 234, 0.18);
  box-shadow: 0 0 16px var(--brand-blue-glow);
}

.nav-link-cta {
  background: linear-gradient(135deg, rgba(40, 130, 234, 0.25) 0%, rgba(21, 91, 181, 0.3) 100%);
  border: 1px solid rgba(40, 130, 234, 0.6);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(40, 130, 234, 0.25);
}

.nav-link-cta:hover {
  background: linear-gradient(135deg, #2882EA 0%, #155bb5 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(40, 130, 234, 0.6);
  transform: translateY(-1px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: auto; /* Pushes toggle to the far left on mobile */
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   3. Hero Section (Full Viewport Coverage)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow-x: clip;
  overflow-y: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layer 1 (Background) & Layer 3 (Foreground) */
.hero-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.hero-bg {
  z-index: 1;
  pointer-events: none;
}

.hero-fg {
  z-index: 3;
  pointer-events: none;
  transform: scale(1.22);
  filter: blur(16px);
  opacity: 0;
  transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: transform, filter, opacity;
}

body.hero-animate .hero-fg {
  transform: scale(1);
  filter: blur(0px);
  opacity: 1;
}

/* Layer 2 (Middle Text Layer - English Brand) */
.hero-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.hero-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end; /* Places NOX under SIGNATURE on the right side */
  position: relative;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.8rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: clamp(1px, 0.4vw, 5px);
  text-transform: uppercase;
  color: #f7f7f9;
  white-space: nowrap;
  line-height: 0.9;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8),
               0 0 60px rgba(212, 175, 55, 0.25);
}

.hero-sub {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 3.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: clamp(2px, 0.8vw, 8px);
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: clamp(0.4rem, 1vw, 1.2rem);
  margin-right: clamp(4px, 1vw, 15px);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
               0 0 35px rgba(40, 130, 234, 0.7),
               0 0 10px rgba(40, 130, 234, 0.9);
}

/* Sequential Letter-by-Letter Blur Reveal */
.hero-title .char,
.hero-sub .char {
  display: inline-block;
  margin: 0;
  padding: 0;
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.15) translateY(12px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(0.32s + (var(--char-index) * 0.065s));
  will-change: transform, filter, opacity;
}

body.hero-animate .hero-title .char,
body.hero-animate .hero-sub .char {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1) translateY(0);
}

/* --------------------------------------------------------------------------
   4. Bottom-Left Hero Text & CTA Button
   -------------------------------------------------------------------------- */
.hero-bottom-left {
  position: absolute;
  bottom: clamp(190px, 24vh, 280px);
  left: 5%;
  z-index: 10;
  max-width: 280px;
  text-align: right;
  direction: rtl;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(16px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.95s,
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.95s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.95s;
  will-change: transform, filter, opacity;
}

body.hero-animate .hero-bottom-left {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.hero-brief {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(243, 244, 246, 0.92);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
}

.btn-hero-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #2882EA 0%, #155bb5 100%);
  color: #ffffff;
  font-family: var(--font-ar);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(40, 130, 234, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.btn-hero-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(40, 130, 234, 0.65);
  background: linear-gradient(135deg, #3b92fc 0%, #1a6cd4 100%);
}

.btn-hero-glow:hover::before {
  left: 100%;
}

.btn-hero-glow .btn-icon {
  transition: transform 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   5. Floating Ingredients (im1 & im2)
   -------------------------------------------------------------------------- */
.hero-floating-elem {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  filter: blur(18px);
  transform: scale(0.82);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter, opacity;
}

body.hero-animate .hero-floating-elem {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

/* im1: Center-Left, Slightly Higher */
.elem-im1 {
  top: 25%;
  left: 16%;
  width: clamp(95px, 12vw, 170px);
  transition-delay: 0.5s;
}

/* im2: Center-Right, Raised Higher */
.elem-im2 {
  top: 48%;
  right: 17%;
  width: clamp(105px, 14vw, 190px);
  transition-delay: 0.75s;
}

.floating-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 20px rgba(40, 130, 234, 0.22));
}

.float-anim-1 {
  animation: floatingBob1 6s ease-in-out infinite alternate;
}

.float-anim-2 {
  animation: floatingBob2 7s ease-in-out infinite alternate;
}

@keyframes floatingBob1 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
  100% {
    transform: translateY(6px) rotate(-2.5deg);
  }
}

@keyframes floatingBob2 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(-3.5deg);
  }
  100% {
    transform: translateY(8px) rotate(2.5deg);
  }
}

/* --------------------------------------------------------------------------
   6. Seamless Rocks Divider (fasl.webp - Natural Size on Large Screens)
   -------------------------------------------------------------------------- */
.hero-divider-wrap {
  position: absolute;
  bottom: -220px;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-divider-img {
  width: 100%;
  max-width: 100vw;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  margin: 0;
  padding: 0;
  filter: blur(1px);
  transform: none;
  transition: filter 0.3s ease;
}

/* ==========================================================================
   7. Perfume Details & Fragrance Notes Section (#details)
   ========================================================================== */
.details-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 120px 0 0 0;
  margin-bottom: 0;
  overflow: hidden;
  direction: rtl;
}

/* ----------------- Floating 3D Ingredients in Details Section (im3 & im4 - Above Divider) ----------------- */
.details-floating-elem {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  filter: blur(18px);
  transform: scale(0.82);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
              filter 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  will-change: transform, filter, opacity;
}

.details-section.is-visible .details-floating-elem {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

/* im3: Sandalwood - Top-Right Corner */
.elem-im3 {
  top: 3%;
  right: 2.5%;
  width: clamp(100px, 11vw, 175px);
  transition-delay: 0.35s;
}

/* im4: Patchouli - Top-Left Corner */
.elem-im4 {
  top: 16%;
  left: 3%;
  width: clamp(110px, 12vw, 185px);
  transition-delay: 0.55s;
}

.float-anim-3 {
  animation: floatingBob3 7.5s ease-in-out infinite alternate;
}

.float-anim-4 {
  animation: floatingBob4 8.5s ease-in-out infinite alternate;
}

@keyframes floatingBob3 {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-18px) rotate(4deg) scale(1.03);
  }
  100% {
    transform: translateY(7px) rotate(-3deg) scale(0.98);
  }
}

@keyframes floatingBob4 {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(-5deg) scale(1.04);
  }
  100% {
    transform: translateY(9px) rotate(3deg) scale(0.97);
  }
}

/* ----------------- Section Header (Fast Sequential Blur Reveal - Above Divider) ----------------- */
.details-header {
  position: relative;
  z-index: 15;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 0 1.5rem;
}

.details-badge,
.details-title,
.details-subtitle {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(18px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.details-section.is-visible .details-badge {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.05s;
}

.details-section.is-visible .details-title {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.15s;
}

.details-section.is-visible .details-subtitle {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.25s;
}

.details-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(40, 130, 234, 0.1);
  border: 1px solid rgba(40, 130, 234, 0.35);
  color: var(--brand-blue-light);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 15px rgba(40, 130, 234, 0.15);
}

.details-title {
  font-family: var(--font-ar);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.details-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(243, 244, 246, 0.75);
}

/* ----------------- Showcase Container (50% / 50% Full-Bleed Split) ----------------- */
.details-showcase {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow: visible;
}

/* ----------------- Stage 2: Hand & Bottle Slide-In from Right Edge (Fast & Crisp) ----------------- */
.details-bottle-side {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: visible;
  opacity: 0;
  filter: blur(20px);
  transform: translateX(140px) scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              filter 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  will-change: opacity, filter, transform;
}

.details-section.is-visible .details-bottle-side {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0) scale(1);
}

.details-bottle-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right center;
  margin: 0;
  padding: 0;
  filter: drop-shadow(-20px 25px 50px rgba(0, 0, 0, 0.95))
          drop-shadow(0 0 28px rgba(40, 130, 234, 0.22));
  transition: transform 0.4s ease;
}

/* ----------------- Stage 3: Progressive Fast Arrow Line Drawing ----------------- */
.details-connectors-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

.details-svg-lines {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connector-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  stroke-width: 2.4;
  filter: drop-shadow(0 0 6px rgba(40, 130, 234, 0.85));
  transition: stroke-dashoffset 0.22s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.08s ease,
              stroke 0.3s ease,
              stroke-width 0.3s ease,
              filter 0.3s ease;
  will-change: stroke-dashoffset, opacity;
}

.connector-line.is-drawn {
  stroke-dashoffset: 0;
  opacity: 1;
}

.connector-line.active-line {
  stroke: #ffffff;
  stroke-width: 3.2;
  filter: drop-shadow(0 0 12px #2882EA);
}

/* ----------------- Stage 4: Ingredient Nodes Rapid Reveal on Arrow Arrival ----------------- */
.details-ingredients-side {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: clamp(2rem, 5vw, 6rem);
  padding-right: clamp(5.5rem, 9vw, 12rem);
}

.ingredients-zigzag-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  position: relative;
}

.ingredient-node {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  opacity: 0;
  filter: blur(14px);
  transform: translateX(-24px) scale(0.85);
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.28s ease,
              transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, filter, transform;
}

/* Zigzag Alignment: Shifted strongly to the left away from the bottle */
.ingredient-node.node-right {
  align-self: flex-start;
  margin-right: 70px;
}

.ingredient-node.node-left {
  align-self: flex-start;
  margin-right: 200px;
}

.ingredient-node.is-revealed {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0) scale(1);
}

/* Circular Orb Badge - Extra Large & Ultra Radiant */
.node-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #080c14;
  border: 2.2px solid rgba(40, 130, 234, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7),
              0 0 22px rgba(40, 130, 234, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.node-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ingredient-node:hover .node-img,
.ingredient-node.is-active .node-img {
  transform: scale(1.15);
}

.node-emoji {
  font-size: 2.75rem;
  line-height: 1;
  transform: translateY(-2px);
  transition: transform 0.35s ease;
}

.node-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 130, 234, 0.55) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Name Label beside Circle */
.node-name {
  font-family: var(--font-ar);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85),
               0 0 12px rgba(40, 130, 234, 0.25);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover & Active Interactions */
.ingredient-node:hover .node-circle,
.ingredient-node.is-active .node-circle {
  transform: scale(1.12) rotate(4deg);
  border-color: #60a5fa;
  box-shadow: 0 10px 30px rgba(40, 130, 234, 0.45),
              0 0 25px rgba(40, 130, 234, 0.5);
}

.ingredient-node:hover .node-glow,
.ingredient-node.is-active .node-glow {
  opacity: 1;
}

.ingredient-node:hover .node-emoji,
.ingredient-node.is-active .node-emoji {
  transform: scale(1.15);
}

.ingredient-node:hover .node-name,
.ingredient-node.is-active .node-name {
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(40, 130, 234, 0.6);
  transform: translateX(-4px);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(40, 130, 234, 0.12);
  border: 1px solid rgba(40, 130, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ingredient-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: rgba(40, 130, 234, 0.25);
}

.card-text {
  flex: 1;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.card-name {
  font-family: var(--font-ar);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-blue-light);
  background: rgba(40, 130, 234, 0.14);
  border: 1px solid rgba(40, 130, 234, 0.25);
  padding: 2px 8px;
  border-radius: 9999px;
  white-space: nowrap;
}

.card-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(243, 244, 246, 0.7);
  margin: 0;
}

/* Animations */
@keyframes hotspotWave {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes bottleGlowPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* ==========================================================================
   8. Luxury CTA Section (Background: bak.webp & Right Content)
   ========================================================================== */
.cta-section {
  position: relative;
  z-index: 10;
  background-color: var(--bg-primary);
  background-image: url('../images/bak.webp');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-height: clamp(560px, 65vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  direction: rtl;
  border-top: 1px solid rgba(40, 130, 234, 0.18);
  border-bottom: 1px solid rgba(40, 130, 234, 0.18);
}

.cta-ambient-glow {
  display: none;
}

.cta-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns content on the right side in RTL */
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ----------------- Right Content Side ----------------- */
.cta-content-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(40, 130, 234, 0.14);
  border: 1px solid rgba(40, 130, 234, 0.45);
  color: var(--brand-blue-light);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 0 15px rgba(40, 130, 234, 0.2);
  backdrop-filter: blur(8px);
}

.cta-title {
  font-family: var(--font-ar);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 0 30px rgba(40, 130, 234, 0.35);
}

.cta-title .cta-brand-highlight {
  background: linear-gradient(135deg, #70b4ff 0%, #2882EA 55%, #1860c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  margin: 0 4px;
  filter: none;
  text-shadow: none;
}

.cta-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(243, 244, 246, 0.88);
  margin-bottom: 28px;
  max-width: 540px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.cta-btn-wrap {
  margin-bottom: 18px;
}

.btn-cta-main {
  padding: 11px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(40, 130, 234, 0.45);
  border-radius: 12px;
}

.cta-trust-minimal {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(243, 244, 246, 0.85);
  font-size: 0.84rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.cta-trust-minimal span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Sequential Blur Reveal for CTA Content */
.cta-title,
.cta-desc,
.cta-btn-wrap,
.cta-trust-minimal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.cta-section.is-visible .cta-title {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.15s;
}

.cta-section.is-visible .cta-desc {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.35s;
}

.cta-section.is-visible .cta-btn-wrap {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.55s;
}

.cta-section.is-visible .cta-trust-minimal {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.75s;
}

@keyframes ctaGlowPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

/* ==========================================================================
   9. Perfume Features Section (#features)
   ========================================================================== */
.features-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  direction: rtl;
}

.features-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(40, 130, 234, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.features-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 0 120px 0;
  position: relative;
  z-index: 2;
}

/* ----------------- Section Header ----------------- */
.features-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(40, 130, 234, 0.1);
  border: 1px solid rgba(40, 130, 234, 0.35);
  color: var(--brand-blue-light);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 15px rgba(40, 130, 234, 0.15);
}

.features-title {
  font-family: var(--font-ar);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.35;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.features-brand-name {
  background: linear-gradient(135deg, #70b4ff 0%, #2882EA 55%, #1860c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  margin: 0 4px;
  filter: none;
  text-shadow: none;
}

.features-subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(243, 244, 246, 0.78);
  margin: 0;
}

.features-badge,
.features-title,
.features-subtitle {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.features-section.is-visible .features-badge {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.05s;
}

.features-section.is-visible .features-title {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.15s;
}

.features-section.is-visible .features-subtitle {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* ----------------- Features Track (Horizontal 4-Step Flow in RTL) ----------------- */
.features-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

/* ----------------- Luxury Feature Card ----------------- */
.feature-card {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(14, 17, 23, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(40, 130, 234, 0.22);
  border-radius: 18px;
  padding: 18px 16px;
  position: relative;
  text-align: right;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75),
              0 0 20px rgba(40, 130, 234, 0.06);
  opacity: 0;
  filter: blur(16px);
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  will-change: opacity, filter, transform;
}

.features-section.is-visible .feature-card[data-step="1"] {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

.features-section.is-visible .feature-card[data-step="2"] {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
  transition-delay: 0.85s;
}

.features-section.is-visible .feature-card[data-step="3"] {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
  transition-delay: 1.55s;
}

.features-section.is-visible .feature-card[data-step="4"] {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
  transition-delay: 2.25s;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(40, 130, 234, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9),
              0 0 35px rgba(40, 130, 234, 0.22);
}

.card-step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-en);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--brand-blue-light);
  background: rgba(40, 130, 234, 0.12);
  border: 1px solid rgba(40, 130, 234, 0.3);
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.feature-card-content {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(40, 130, 234, 0.2) 0%, rgba(9, 10, 14, 0.7) 100%);
  border: 1px solid rgba(40, 130, 234, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  box-shadow: 0 0 18px rgba(40, 130, 234, 0.22);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  flex-shrink: 0;
}

.feature-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 0 25px rgba(40, 130, 234, 0.5);
  border-color: rgba(40, 130, 234, 0.7);
}

.card-icon {
  font-size: 1.22rem;
  line-height: 1;
  color: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card[data-step="1"] .card-icon i {
  color: #ffb800;
  filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.45));
}

.feature-card[data-step="2"] .card-icon i {
  color: #5ca7ff;
  filter: drop-shadow(0 0 8px rgba(40, 130, 234, 0.55));
}

.feature-card[data-step="3"] .card-icon i {
  color: #2ecc71;
  filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.45));
}

.feature-card[data-step="4"] .card-icon i {
  color: #2882EA;
  filter: drop-shadow(0 0 8px rgba(40, 130, 234, 0.55));
}

.card-text-body {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.card-title {
  font-family: var(--font-ar);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.3;
  padding-left: 26px;
}

.card-desc {
  font-size: 0.81rem;
  line-height: 1.5;
  color: rgba(243, 244, 246, 0.75);
  margin: 0;
}

/* ----------------- Connecting SVG Laser Arrows ----------------- */
.feature-connector {
  flex: 0 0 clamp(32px, 3.8vw, 60px);
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 4px;
  opacity: 1;
}

.feature-arrow-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arrow-path {
  stroke: #2882EA;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.75s cubic-bezier(0.25, 1, 0.5, 1),
              stroke 0.3s ease,
              filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(40, 130, 234, 0.8));
}

.features-section.is-visible .path-1 {
  stroke-dashoffset: 0;
  transition-delay: 0.25s;
}

.features-section.is-visible .path-2 {
  stroke-dashoffset: 0;
  transition-delay: 0.95s;
}

.features-section.is-visible .path-3 {
  stroke-dashoffset: 0;
  transition-delay: 1.65s;
}

/* ==========================================================================
   10. Customer Reviews & Testimonials Section (#reviews)
   ========================================================================== */
.testimonials-section {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  direction: rtl;
}

.testimonials-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(40, 130, 234, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.testimonials-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0 20px 0;
  position: relative;
  z-index: 2;
}

/* ----------------- Section Header ----------------- */
.testimonials-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 20px auto;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(40, 130, 234, 0.1);
  border: 1px solid rgba(40, 130, 234, 0.35);
  color: var(--brand-blue-light);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 15px rgba(40, 130, 234, 0.15);
}

.testimonials-title {
  font-family: var(--font-ar);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.35;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.testimonials-title .title-highlight {
  background: linear-gradient(135deg, #70b4ff 0%, #2882EA 55%, #1860c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  margin: 0 4px;
  filter: none;
  text-shadow: none;
}

.testimonials-subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(243, 244, 246, 0.78);
  margin-bottom: 24px;
}

/* Trust Summary Pill */
.trust-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: rgba(14, 17, 23, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(40, 130, 234, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(40, 130, 234, 0.12);
  margin-top: 10px;
}

/* Sequential Blur Reveal for Testimonials Section */
.testimonials-badge,
.testimonials-title,
.testimonials-subtitle,
.trust-summary-pill,
.reviews-marquee-wrapper {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.testimonials-section.is-visible .testimonials-badge {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.1s;
}

.testimonials-section.is-visible .testimonials-title {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.25s;
}

.testimonials-section.is-visible .testimonials-subtitle {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.4s;
}

.testimonials-section.is-visible .trust-summary-pill {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.55s;
}

.testimonials-section.is-visible .reviews-marquee-wrapper {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
  transition-delay: 0.75s;
}

.trust-rating-score {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.score-number {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}

.score-out-of {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: rgba(243, 244, 246, 0.55);
}

.trust-stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ffb800;
  font-size: 0.78rem;
}

.trust-stars-row i {
  color: #ffb800;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
}

.trust-divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(40, 130, 234, 0.6);
}

.trust-count-text {
  font-size: 0.88rem;
  color: rgba(243, 244, 246, 0.85);
}

.trust-count-text strong {
  color: var(--brand-blue-light);
  font-family: var(--font-en);
  letter-spacing: 0.5px;
}

/* ----------------- Continuous Infinite Film-Strip Marquee ----------------- */
.reviews-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 35px 0 110px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  cursor: grab;
}

.reviews-marquee-wrapper:active {
  cursor: grabbing;
}

.reviews-marquee-track {
  display: flex;
  width: max-content;
  user-select: none;
}

.reviews-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-left: 24px;
  flex-shrink: 0;
  animation: reviewsFilmStrip 46s linear infinite;
  will-change: transform;
}

.reviews-marquee-wrapper:hover .reviews-marquee-group {
  animation-play-state: paused;
}

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

/* ----------------- Luxury Review Card ----------------- */
.review-card {
  width: 380px;
  background: rgba(14, 17, 23, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(40, 130, 234, 0.2);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7),
              0 0 20px rgba(40, 130, 234, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  flex-shrink: 0;
}

.review-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(40, 130, 234, 0.55);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.85),
              0 0 35px rgba(40, 130, 234, 0.2);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(40, 130, 234, 0.25) 0%, rgba(9, 10, 14, 0.9) 100%);
  border: 1.5px solid rgba(40, 130, 234, 0.45);
  color: #ffffff;
  font-family: var(--font-ar);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(40, 130, 234, 0.3);
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-family: var(--font-ar);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px 0;
  line-height: 1.2;
}

.reviewer-location {
  font-size: 0.78rem;
  color: rgba(243, 244, 246, 0.6);
  display: block;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ffb800;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-bottom: 0;
}

.review-stars i {
  color: #ffb800;
  text-shadow: 0 0 6px rgba(255, 184, 0, 0.35);
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(243, 244, 246, 0.8);
  margin: 0;
  flex-grow: 1;
}

/* ==========================================================================
   11. Luxury 4-Column Footer
   ========================================================================== */
.luxury-footer {
  position: relative;
  z-index: 10;
  background: #06070a;
  border-top: 1px solid rgba(40, 130, 234, 0.18);
  padding: 85px 0 35px 0;
  direction: rtl;
  overflow: hidden;
}

.footer-bg-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.footer-bg-glow.glow-top {
  top: -100px;
  right: 20%;
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(40, 130, 234, 0.08) 0%, transparent 70%);
}

.footer-bg-glow.glow-bottom-left {
  bottom: -50px;
  left: 10%;
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(40, 130, 234, 0.06) 0%, transparent 70%);
}

.luxury-footer .footer-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* 4 Columns Grid */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.footer-brand-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(243, 244, 246, 0.7);
  margin-bottom: 22px;
  max-width: 340px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(14, 17, 23, 0.8);
  border: 1px solid rgba(40, 130, 234, 0.25);
  color: var(--brand-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  background: #2882EA;
  border-color: #5ca7ff;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(40, 130, 234, 0.45);
}

/* Column Titles */
.footer-col-title {
  font-family: var(--font-ar);
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(to left, #2882EA, transparent);
  border-radius: 2px;
}

/* Quick Links List */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list li a {
  color: rgba(243, 244, 246, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.link-arrow {
  color: var(--brand-blue-light);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.footer-nav-list li a:hover {
  color: #ffffff;
  transform: translateX(-4px);
}

.footer-nav-list li a:hover .link-arrow {
  transform: translateX(-4px);
}

/* Customer Care List */
.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(243, 244, 246, 0.78);
}

.info-icon {
  font-size: 0.95rem;
  color: var(--brand-blue-light);
  flex-shrink: 0;
  width: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Contact Column */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(243, 244, 246, 0.75);
  line-height: 1.5;
}

.contact-icon {
  font-size: 0.95rem;
  color: var(--brand-blue-light);
  flex-shrink: 0;
  width: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.footer-whatsapp-btn i {
  font-size: 1.15rem;
}

.footer-whatsapp-btn:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.copyright-text {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.copyright-text strong {
  color: rgba(243, 244, 246, 0.9);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 17, 23, 0.8);
  border: 1px solid rgba(40, 130, 234, 0.25);
  color: rgba(243, 244, 246, 0.85);
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top-btn i {
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover {
  background: rgba(40, 130, 234, 0.15);
  border-color: rgba(40, 130, 234, 0.6);
  color: var(--brand-blue-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(40, 130, 234, 0.2);
}

.back-to-top-btn:hover i {
  transform: translateY(-2px);
}

/* ==========================================================================
   13. Luxury Checkout Popup Modal (#orderModal)
   ========================================================================== */
.order-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 8, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  direction: rtl;
  text-align: right;
}

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

.order-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 530px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: linear-gradient(165deg, rgba(16, 20, 29, 0.98) 0%, rgba(9, 11, 16, 0.99) 100%);
  border: 1.5px solid rgba(40, 130, 234, 0.45);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95),
              0 0 35px rgba(40, 130, 234, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: scale(0.94) translateY(18px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.order-modal-dialog::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.modal-bg-glow.glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(40, 130, 234, 0.35) 0%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 1;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.modal-close-btn:hover {
  background: #2882EA;
  color: #ffffff;
  border-color: #5ca7ff;
  transform: rotate(90deg) scale(1.08);
}

.modal-body {
  padding: 1.5rem 1.6rem 1.3rem;
  position: relative;
  z-index: 2;
}

/* Modal Header */
.modal-header-box {
  text-align: center;
  margin-bottom: 0.85rem;
  padding: 0 1.5rem;
}

.modal-title {
  font-family: var(--font-ar);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.modal-brand-highlight {
  font-family: var(--font-en);
  background: linear-gradient(135deg, #70b4ff 0%, #2882EA 50%, #5ca7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.modal-subtitle {
  font-size: 0.76rem;
  color: rgba(243, 244, 246, 0.72);
  margin: 0;
}

/* Package Options Grid */
.pkg-form-group {
  margin-bottom: 0.75rem !important;
}

.package-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.package-card {
  position: relative;
  cursor: pointer;
}

.package-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.55rem 0.35rem 0.45rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.package-card.active .package-card-inner,
.package-card:hover .package-card-inner {
  border-color: var(--brand-blue-light);
  background: linear-gradient(145deg, rgba(40, 130, 234, 0.25) 0%, rgba(14, 17, 23, 0.9) 100%);
  box-shadow: 0 4px 14px rgba(40, 130, 234, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pkg-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.pkg-price {
  font-family: var(--font-ar);
  font-size: 0.96rem;
  font-weight: 900;
  color: #ffb800;
  margin-bottom: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.pkg-note {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(243, 244, 246, 0.75);
  margin-top: 1px;
}

.pkg-note.free-shipping {
  color: #25D366;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(37, 211, 102, 0.35);
}

.pkg-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  background: rgba(40, 130, 234, 0.18);
  color: var(--brand-blue-light);
  border-radius: 50px;
  border: 1px solid rgba(40, 130, 234, 0.4);
  line-height: 1.2;
  white-space: nowrap;
}

.pkg-badge.save {
  background: rgba(37, 211, 102, 0.18);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.45);
}

.pkg-badge.gift {
  background: linear-gradient(135deg, rgba(40, 130, 234, 0.35), rgba(255, 184, 0, 0.25));
  color: #ffde7a;
  border-color: rgba(255, 184, 0, 0.55);
  font-weight: 800;
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.2);
}

.package-card.pkg-gift-deal.active .package-card-inner,
.package-card.pkg-gift-deal:hover .package-card-inner {
  border-color: #ffb800;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Form Styles */
.form-group {
  margin-bottom: 0.65rem;
  position: relative;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.form-label i {
  color: var(--brand-blue-light);
  margin-left: 0.25rem;
  font-size: 0.74rem;
}

.required-star {
  color: #ff4d6d;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .input-icon {
  position: absolute;
  right: 0.85rem;
  color: rgba(40, 130, 234, 0.75);
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 2;
}

.form-input {
  width: 100%;
  height: 38px;
  padding: 0.45rem 2.2rem 0.45rem 0.75rem;
  background: rgba(10, 13, 19, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.84rem;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-blue-light);
  background: rgba(14, 18, 26, 0.95);
  box-shadow: 0 0 12px rgba(40, 130, 234, 0.35);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
  height: 38px;
}

.phone-prefix-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  background: rgba(22, 28, 38, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-left: none;
  border-radius: 0 10px 10px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  direction: ltr;
}

.phone-input {
  border-radius: 10px 0 0 10px !important;
  padding: 0.45rem 0.75rem !important;
  text-align: left;
  direction: ltr;
}

.form-select {
  padding-left: 1.8rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235ca7ff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.65rem center;
  background-size: 16px;
}

.form-select option {
  background: #0d1117;
  color: #ffffff;
}

.field-error-msg {
  display: none;
  font-size: 0.7rem;
  color: #ff4d6d;
  margin-top: 0.2rem;
  padding-right: 0.2rem;
}

.form-group.has-error .form-input {
  border-color: #ff4d6d !important;
  box-shadow: 0 0 8px rgba(255, 77, 109, 0.35) !important;
}

.form-group.has-error .field-error-msg {
  display: block;
}

/* Gift Wrapping Option inside Modal */
.gift-wrapping-option-wrap {
  margin-top: 0.65rem;
  margin-bottom: 0.25rem;
  width: 100%;
}

.gift-wrapping-label {
  display: block;
  cursor: pointer;
  user-select: none;
}

.gift-wrapping-checkbox {
  display: none;
}

.gift-wrapping-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.52rem 0.9rem;
  background: rgba(14, 18, 26, 0.65);
  border: 1px dashed rgba(40, 130, 234, 0.45);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.gift-box-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.custom-checkbox-indicator {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(40, 130, 234, 0.6);
  background: rgba(10, 13, 19, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  transition: all 0.25s ease;
}

.gift-wrapping-checkbox:checked + .gift-wrapping-box .custom-checkbox-indicator {
  background: #2882EA;
  border-color: #5ca7ff;
  color: #ffffff;
}

.gift-wrapping-checkbox:checked + .gift-wrapping-box {
  background: rgba(40, 130, 234, 0.15);
  border-style: solid;
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 16px rgba(40, 130, 234, 0.25);
}

.gift-main-icon {
  font-size: 1.15rem;
  color: #ffb800;
  transition: transform 0.3s ease;
}

.gift-wrapping-checkbox:checked + .gift-wrapping-box .gift-main-icon {
  transform: scale(1.15) rotate(-8deg);
}

.gift-text-group {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.gift-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.gift-sub {
  font-size: 0.68rem;
  color: rgba(243, 244, 246, 0.65);
  line-height: 1.2;
}

.gift-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #2882EA, #1557a6);
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(92, 167, 255, 0.5);
  white-space: nowrap;
}

/* Submit Button */
.form-submit-row {
  margin-top: 0.85rem;
  margin-bottom: 0.55rem;
}

.btn-modal-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.6rem;
  background: linear-gradient(135deg, #5ca7ff 0%, #2882EA 60%, #1557a6 100%);
  border: 1px solid #70b4ff;
  border-radius: 50px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(40, 130, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(40, 130, 234, 0.6);
}

.submit-spinner {
  display: none;
  font-size: 1rem;
}

.btn-modal-submit.is-loading .submit-spinner {
  display: inline-block;
}

.btn-modal-submit.is-loading .submit-text {
  display: none;
}

/* Trust Footer */
.modal-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(243, 244, 246, 0.65);
  text-align: center;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.modal-trust-footer i {
  color: var(--brand-blue-light);
  margin-left: 0.2rem;
}

.trust-dot {
  color: rgba(40, 130, 234, 0.5);
}

/* Success Container */
.modal-success-container {
  text-align: center;
  padding: 0.8rem 0.5rem;
}

.success-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(18, 140, 126, 0.35) 100%);
  border: 2px solid #25D366;
  color: #25D366;
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.success-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.success-message {
  font-size: 0.85rem;
  color: rgba(243, 244, 246, 0.85);
  margin-bottom: 0.95rem;
  line-height: 1.5;
}

.brand-text {
  color: var(--brand-blue-light);
  font-family: var(--font-en);
}

.success-details-card {
  background: rgba(14, 18, 26, 0.8);
  border: 1px solid rgba(40, 130, 234, 0.35);
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
  margin-bottom: 0.95rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.detail-label {
  color: rgba(243, 244, 246, 0.65);
}

.detail-val {
  color: #ffffff;
  font-weight: 700;
}

.success-note {
  font-size: 0.78rem;
  color: var(--brand-blue-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.success-action-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.btn-whatsapp-followup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}

.btn-whatsapp-followup:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.btn-close-success {
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-close-success:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
