/* ============================================================
   Rukhsar Advocate OnePage — Theme Styles
   ============================================================ */
/* ---------- CSS Variables ---------- */
:root {
  --bg: #0a0a0a;
  --bg-card: #121212;
  --bg-card-hover: #1a1a1a;
  --gold: hsl(43, 55%, 54%);
  --gold-light: hsl(43, 60%, 65%);
  --gold-dark: hsl(43, 50%, 40%);
  --gold-glow: 0 0 20px hsla(43, 55%, 54%, 0.3), 0 0 40px hsla(43, 55%, 54%, 0.1);
  --text: hsl(40, 10%, 92%);
  --text-muted: hsl(40, 5%, 55%);
  --border: hsl(43, 20%, 20%);
  --input-bg: hsl(0, 0%, 16%);
  --radius: 0.75rem;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
ul { list-style: none; }
/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.gold-separator { width: 5rem; height: 2px; background: var(--gold); margin: 0 auto; }
.section-padding { padding: 5rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 7rem 2rem; } }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title .label { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title h2 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 1.5rem; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--bg); font-weight: 600; font-size: 0.95rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius); border: none; cursor: pointer;
  transition: filter 0.3s, box-shadow 0.3s;
}
.btn-gold:hover { filter: brightness(1.1); box-shadow: var(--gold-glow); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--gold); font-weight: 600; font-size: 0.95rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius); border: 1px solid var(--gold); cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }
/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }
.site-logo { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--gold); letter-spacing: 0.03em; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s; }
.nav-desktop a:hover { color: var(--gold); }
.mobile-toggle { display: flex; background: none; border: none; color: var(--text); cursor: pointer; padding: 0.5rem; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-mobile {
  display: none; flex-direction: column; gap: 1rem;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text-muted); font-size: 1rem; padding: 0.5rem 0; transition: color 0.3s; }
.nav-mobile a:hover { color: var(--gold); }
/* ---------- Hero ---------- */
.hero { padding: 8rem 1rem 5rem; }
@media (min-width: 768px) { .hero { padding: 10rem 2rem 6rem; } }
.hero .container { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .hero .container { grid-template-columns: 1fr 1fr; } }
.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 1rem; }
.hero .tagline { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; }
.hero .cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.stats-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; min-width: 140px; text-align: center;
}
.stat-card .num { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.stat-card .lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.hero-image {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
/* ---------- About ---------- */
.about { background: var(--bg-card); }
.about .container { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about .container { grid-template-columns: 1fr 1fr; } }
.about-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-bullets { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.about-bullets li { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-bullets .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 0.5rem; flex-shrink: 0; }
/* ---------- Practice Areas ---------- */
.practice-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .practice-grid { grid-template-columns: 1fr 1fr; } }
.practice-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: border-color 0.3s;
}
.practice-card:hover { border-color: var(--gold); }
.practice-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.practice-card .desc { color: var(--text-muted); margin-bottom: 1.25rem; }
.practice-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
.practice-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text); }
.practice-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
/* ---------- Credentials ---------- */
.credentials { background: var(--bg-card); }
.cred-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .cred-grid { grid-template-columns: 1fr 1fr; } }
.cred-grid h3 { font-size: 1.4rem; color: var(--gold); margin-bottom: 1.5rem; }
.cred-item { padding: 1.25rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; }
.cred-item strong { display: block; margin-bottom: 0.25rem; }
.cred-item span { color: var(--text-muted); font-size: 0.9rem; }
.track-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.track-item:last-child { border-bottom: none; }
.track-item .icon { width: 40px; height: 40px; border-radius: 50%; background: hsla(43,55%,54%,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
/* ---------- Testimonials ---------- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
@media (min-width: 768px) { .testimonial-slide { min-width: 33.333%; } }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; height: 100%;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { color: var(--text-muted); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-card .author { font-weight: 600; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--gold);
  background: transparent; cursor: pointer; padding: 0; transition: background 0.3s;
}
.slider-dots button.active { background: var(--gold); }
/* ---------- FAQ ---------- */
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text); font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600; text-align: left; padding: 1.25rem 1.5rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-question:hover { color: var(--gold); }
.faq-question .arrow { transition: transform 0.3s; font-size: 1.2rem; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }
/* ---------- Contact ---------- */
.contact { background: var(--bg-card); }
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info .item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info .item .icon { color: var(--gold); font-size: 1.2rem; margin-top: 0.15rem; flex-shrink: 0; }
.contact-info .item strong { display: block; margin-bottom: 0.15rem; }
.contact-info .item a, .contact-info .item span { color: var(--text-muted); font-size: 0.95rem; }
.contact-info .item a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icons a {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: border-color 0.3s, color 0.3s;
}
.social-icons a:hover { border-color: var(--gold); color: var(--gold); }
.contact-form {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem;
}
.contact-form label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; }
.contact-form .field { margin-bottom: 1.25rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; background: var(--input-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.75rem 1rem; color: var(--text); font-size: 0.95rem; font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px hsla(43,55%,54%,0.15); }
.contact-form textarea { resize: none; }
.contact-form .submit-btn { width: 100%; font-size: 1rem; padding: 1rem; }
.contact-form .disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }
/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 3rem 1rem; }
.footer-inner { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; } }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { border-top: 1px solid var(--border); margin-top: 2rem; padding-top: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   Premium Scroll Reveal Animations
   ============================================================ */

/* ---------- Base reveal states ---------- */
.ra-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.ra-reveal.ra-fade-in {
  transform: none;
}
.ra-reveal.ra-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Stagger delays for grouped items ---------- */
.ra-stagger-1 { transition-delay: 0s; }
.ra-stagger-2 { transition-delay: 0.1s; }
.ra-stagger-3 { transition-delay: 0.2s; }
.ra-stagger-4 { transition-delay: 0.3s; }
.ra-stagger-5 { transition-delay: 0.4s; }
.ra-stagger-6 { transition-delay: 0.5s; }

/* ---------- Hero-specific timing ---------- */
#home .ra-reveal { transition-duration: 0.9s; }

/* ---------- Card hover enhancements ---------- */
.softlite-dynamic-card-box {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
}
.softlite-dynamic-card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px hsla(43, 55%, 54%, 0.1);
}

/* ---------- Button micro-interactions ---------- */
.elementor-button {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease,
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              filter 0.3s ease !important;
}
.elementor-button:hover {
  transform: translateY(-2px);
}
.elementor-button:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

/* ---------- Hero image reveal ---------- */
.ra-img-reveal {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
              transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.ra-img-reveal.ra-visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- FAQ smooth animation ---------- */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- Sticky Navbar ---------- */
.elementor-element-2de1395 {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header.ra-scrolled,
.elementor-element-2de1395.ra-scrolled {
  background: rgba(10, 10, 10, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

/* ---------- Gold separator animation ---------- */
.ra-separator {
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.ra-separator.ra-visible {
  width: 5rem;
}

/* ---------- Counter number animation ---------- */
.ra-counter-animated {
  display: inline-block;
}

/* ============================================================
   Premium Animation Enhancements
   ============================================================ */

/* ---------- Scroll Progress Bar ---------- */
.ra-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
  pointer-events: none;
}

/* ---------- Gold Shimmer on Section Titles ---------- */
.section-title h2,
.hero h1 {
  background: linear-gradient(
    120deg,
    var(--text) 0%,
    var(--text) 40%,
    var(--gold-light) 50%,
    var(--text) 60%,
    var(--text) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ra-shimmer 6s ease-in-out infinite;
}
@keyframes ra-shimmer {
  0%, 100% { background-position: 200% center; }
  50% { background-position: -200% center; }
}

/* ---------- Multi-direction reveals ---------- */
.ra-reveal.ra-from-left {
  transform: translateX(-40px);
}
.ra-reveal.ra-from-right {
  transform: translateX(40px);
}
.ra-reveal.ra-from-left.ra-visible,
.ra-reveal.ra-from-right.ra-visible {
  transform: none;
}
.ra-reveal.ra-scale-in {
  transform: scale(0.92);
}
.ra-reveal.ra-scale-in.ra-visible {
  transform: none;
}

/* ---------- Glow cursor follower ---------- */
.ra-glow-cursor {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(43, 55%, 54%, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: left, top;
}

/* ---------- Animated gradient border on cards ---------- */
.practice-card,
.testimonial-card,
.cred-item {
  position: relative;
  overflow: hidden;
}
.practice-card::before,
.testimonial-card::before,
.cred-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.practice-card:hover::before,
.testimonial-card:hover::before,
.cred-item:hover::before {
  left: 100%;
}

/* ---------- Premium card tilt & glow ---------- */
.practice-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s,
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.practice-card:hover {
  transform: translateY(-6px) perspective(600px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 30px hsla(43, 55%, 54%, 0.08);
}

/* ---------- Magnetic button effect placeholder ---------- */
.btn-gold,
.btn-outline {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.3s,
              box-shadow 0.3s,
              background 0.3s,
              color 0.3s;
}
.btn-gold::after,
.btn-outline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: hsla(43, 55%, 54%, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn-gold:hover::after,
.btn-outline:hover::after {
  width: 300px;
  height: 300px;
}

/* ---------- Social icons pulse ---------- */
.social-icons a {
  transition: border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.social-icons a:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px hsla(43, 55%, 54%, 0.25);
}

/* ---------- Stat card shine sweep ---------- */
.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, hsla(43, 55%, 54%, 0.07), transparent);
  animation: ra-shine-sweep 4s ease-in-out infinite;
}
@keyframes ra-shine-sweep {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* ---------- Floating subtle animation for hero image ---------- */
.hero-image {
  animation: ra-float 6s ease-in-out infinite;
}
@keyframes ra-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- FAQ item enhanced hover ---------- */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
  transform: translateX(4px);
}
.faq-item.open {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
              inset 3px 0 0 var(--gold);
}

/* ---------- Contact form field focus glow ---------- */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsla(43, 55%, 54%, 0.15),
              0 0 20px hsla(43, 55%, 54%, 0.08);
  transform: scale(1.01);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Footer links stagger ---------- */
.footer-links a {
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* ---------- Testimonial card hover ---------- */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}

/* ---------- Nav link underline animation ---------- */
.nav-desktop a {
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-desktop a:hover::after {
  width: 100%;
}

/* ---------- Logo subtle glow ---------- */
.site-logo {
  transition: text-shadow 0.3s;
}
.site-logo:hover {
  text-shadow: 0 0 20px hsla(43, 55%, 54%, 0.4);
}

/* ---------- Section divider lines ---------- */
.gold-separator,
.ra-separator {
  position: relative;
}
.ra-separator.ra-visible::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: ra-dot-pulse 2s ease-in-out infinite;
}
@keyframes ra-dot-pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.5); }
}

/* ---------- Smooth page entrance ---------- */
@keyframes ra-page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
body {
  animation: ra-page-fade-in 0.8s ease-out;
}

/* ---------- Credential item hover ---------- */
.cred-item {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s,
              box-shadow 0.3s;
}
.cred-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ---------- Track item icon spin ---------- */
.track-item .icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s;
}
.track-item:hover .icon {
  transform: rotate(360deg);
  background: hsla(43, 55%, 54%, 0.2);
}

/* ---------- Slider dots enhanced ---------- */
.slider-dots button {
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.slider-dots button:hover {
  transform: scale(1.3);
}
.slider-dots button.active {
  box-shadow: 0 0 8px hsla(43, 55%, 54%, 0.4);
  transform: scale(1.2);
}

/* ---------- Subtle background grain texture ---------- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ra-reveal,
  .ra-img-reveal,
  .ra-separator {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    width: auto !important;
  }
  .softlite-dynamic-card-box,
  .elementor-button,
  .faq-item {
    transition-duration: 0.01ms !important;
  }
  .softlite-dynamic-card-box:hover {
    transform: none;
  }
  .hero-image,
  .stat-card::after,
  .section-title h2,
  .hero h1,
  .ra-separator.ra-visible::after,
  body {
    animation: none !important;
  }
  body::before {
    display: none;
  }
  .ra-glow-cursor {
    display: none;
  }
}