:root {
  --primary: #2c235a;
  --accent: #c9a34d;
  --bg: #f9f6f1;
  --text: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== MOBILE NAVBAR iOS FIX ===== */

.navbar {
  background: #fff;
  padding: 12px 0;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 86px; /* balanced on mobile */
  width: auto;
   background: transparent !important;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  
}

/* iOS BUTTON FIX */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;          /* FIX */
  padding: 0 18px;       /* FIX */
  line-height: 1;        /* FIX */
  border-radius: 21px;
  white-space: nowrap;
}
.nav-link,
.nav-actions a {
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav-link:focus,
.nav-link:active,
.nav-link:hover {
  text-decoration: none !important;
}

/* Mobile safety */
@media (max-width: 768px) {
  .nav-link {
    display: none; /* hide text links on mobile */
  }
}
.hero-actions a,
.hero-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  line-height: 1;
}



.hero {
  padding: 80px 0;
  background: linear-gradient(to right, #2c235a, #3b2f7a);
  color: white;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}

.hero-actions {
  margin-top: 25px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  margin-left: 10px;
}

.section {
  padding: 70px 0;
}

.section.light {
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
/* ===== PREMIUM ASTRO SECTION ===== */


/* ===== HOW IT WORKS – ULTRA PREMIUM ===== */

.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(44,35,90,0.08);
  transition: all 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 75px rgba(44,35,90,0.15);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.step-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== WHY CHOOSE – ENTERPRISE TRUST ===== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-card {
  background: linear-gradient(180deg, #ffffff, #f8f6f0);
  padding: 36px 30px;
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}

.trust-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--primary);
}

.trust-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  margin: 10px 0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
}
.customer-stories-section {
            padding: 80px 20px;
            position: relative;
            background:white;
        }

        .customer-stories-section .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 200, 220, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(200, 180, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .customer-stories-section .cs-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .customer-stories-section .cs-live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #666;
            margin-bottom: 20px;
            background: white;
            padding: 6px 14px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .customer-stories-section .cs-live-dot {
            width: 8px;
            height: 8px;
            background: #4CAF50;
            border-radius: 50%;
            animation: cs-pulse 2s infinite;
        }

        @keyframes cs-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.9); }
        }

        .customer-stories-section .cs-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #333;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .customer-stories-section .cs-underline {
            width: 80px;
            height: 3px;
            background: #2196F3;
            margin: 0 auto 20px;
        }

        .customer-stories-section .cs-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .customer-stories-section .cs-progress-bars {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .customer-stories-section .cs-progress-bar {
            width: 100px;
            height: 3px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 2px;
            overflow: hidden;
        }

        .customer-stories-section .cs-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #2196F3, #42A5F5);
            width: 0%;
            transition: width 0.1s linear;
        }

        .customer-stories-section .cs-progress-bar.active .cs-progress-fill {
            animation: cs-progress 5s linear forwards;
        }

        @keyframes cs-progress {
            to { width: 100%; }
        }

        .customer-stories-section .cs-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .customer-stories-section .cs-wrapper {
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .customer-stories-section .cs-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .customer-stories-section .cs-card {
            min-width: calc(33.333% - 20px);
            margin: 0 10px;
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .customer-stories-section .cs-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .customer-stories-section .cs-card.paused::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(33, 150, 243, 0.05);
            border-radius: 20px;
            pointer-events: none;
        }

        .customer-stories-section .cs-user-img-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            position: relative;
            animation: cs-float 3s ease-in-out infinite;
        }

        @keyframes cs-float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .customer-stories-section .cs-user-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .customer-stories-section .cs-stars {
            margin-bottom: 15px;
            font-size: 20px;
            color: #FFD700;
        }

        .customer-stories-section .cs-user-name {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .customer-stories-section .cs-user-designation {
            font-size: 14px;
            color: #888;
            margin-bottom: 20px;
        }

        .customer-stories-section .cs-text {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
            min-height: 120px;
        }

        .customer-stories-section .cs-typewriter-word {
            display: inline;
            opacity: 0;
            animation: cs-fadeInWord 0.3s forwards;
        }

        .customer-stories-section .cs-emotional-word {
            color: #2196F3;
            font-weight: 600;
        }

        @keyframes cs-fadeInWord {
            to { opacity: 1; }
        }

        .customer-stories-section .cs-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 1px solid #ddd;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #666;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .customer-stories-section .cs-btn:hover {
            background: #2196F3;
            color: white;
            border-color: #2196F3;
            transform: translateY(-50%) scale(1.1);
        }

        .customer-stories-section .cs-btn.left {
            left: 0;
        }

        .customer-stories-section .cs-btn.right {
            right: 0;
        }

        @media (max-width: 968px) {
            .customer-stories-section .cs-card {
                min-width: calc(50% - 20px);
            }
        }

       @media (max-width: 640px) {

    .customer-stories-section {
        padding: 50px 12px;
    }

    .customer-stories-section .cs-header h2 {
        font-size: 26px;
        letter-spacing: 0.5px;
    }

    .customer-stories-section .cs-header p {
        font-size: 14px;
    }

    .customer-stories-section .cs-container {
        padding: 0 20px;
    }

    .customer-stories-section .cs-card {
        min-width: 100%;
        margin: 0 6px;
        padding: 28px 20px;
    }

    .customer-stories-section .cs-user-img-container {
        width: 80px;
        height: 80px;
    }

    .customer-stories-section .cs-text {
        font-size: 14px;
        min-height: auto;
    }

    /* Smaller arrows */
    .customer-stories-section .cs-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
@media (max-width: 640px) {
    .customer-stories-section .cs-progress-bar {
        width: 50px;
    }
}

       /* iOS smooth scrolling */
.customer-stories-section {
  -webkit-overflow-scrolling: touch;
}

/* iOS text compact + no zoom */
.cs-text {
  font-size: 12.5px;          /* ⬅️ chhota text */
  line-height: 1.3;           /* ⬅️ tight lines */
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* ⬅️ max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile / iOS specific */
@media (max-width: 768px) {

  .cs-card {
    padding: 12px;            /* ⬅️ card chhota */
  }

  .cs-user-img-container {
    width: 36px;              /* ⬅️ smaller avatar */
    height: 36px;
    animation: none;
  }

  .cs-card:hover {
    transform: none;
  }
}


.right-astro-why {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.trust-meter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.trust-meter {
  width: 200px;
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.trust-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  width: 70%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}

.trust-meter-text {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.trust-percentage {
  color: #2563eb;
  font-weight: 700;
}

.section-heading {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #1f2937;
  margin-bottom: 60px;
}

.section-heading::after {
  content: 'Astrology?';
  color: #2563eb;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.unlock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 3;
  pointer-events: none;
}

.card.unlocked .unlock-overlay {
  opacity: 0;
}

.unlock-text {
  font-size: 16px;
  color: #2563eb;
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: #2563eb;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card:hover .icon-wrapper {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.card-icon {
  width: 28px;
  height: 28px;
  color: #2563eb;
  transition: color 0.3s ease;
}

.card:hover .card-icon {
  color: #ffffff;
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #2563eb;
}

.card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 12px 0;
}

.card-contrast {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
  margin: 0;
  opacity: 0.8;
}

.assurance-strip {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.assurance-strip:hover {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.assurance-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.assurance-text {
  font-size: 15px;
  color: #1e40af;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.assurance-hover {
  position: absolute;
  font-size: 15px;
  color: #1e40af;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.assurance-strip:hover .assurance-text {
  opacity: 0;
}

.assurance-strip:hover .assurance-hover {
  opacity: 1;
}

.emotional-hook {
  text-align: center;
  font-size: 18px;
  color: #6b7280;
  font-style: italic;
  font-weight: 500;
  padding: 20px;
  position: relative;
}

.emotional-hook::before,
.emotional-hook::after {
  content: '"';
  color: #2563eb;
  font-size: 32px;
  font-weight: 700;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .right-astro-why {
    padding: 60px 16px;
  }

  .section-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 24px;
  }

  .card-inner {
    flex-direction: column;
    gap: 16px;
  }

  .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .card-icon {
    width: 24px;
    height: 24px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }

  .trust-meter-container {
    flex-direction: column;
    gap: 8px;
  }

  .trust-meter {
    width: 100%;
    max-width: 250px;
  }

  .assurance-strip {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .emotional-hook {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 28px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }

  .emotional-hook {
    font-size: 15px;
  }
}

/* ===== TESTIMONIALS – PREMIUM BRAND ===== */



.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

.testimonial-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}


.online { background: #d4f4e3; }
.offline { background: #f4d4d4; }

.full {
  width: 100%;
  margin-top: 10px;
}


.ra-footer {
      background: linear-gradient(135deg, #1a1447 0%, #2d1b69 50%, #1a1447 100%);
      position: relative;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
    }

    .ra-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(75, 0, 130, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .ra-footer::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.5), transparent);
    }

    .ra-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    .ra-footer-main {
      padding: 80px 0 50px;
    }

    .ra-footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    /* Brand Section */
    .ra-brand-col {
      max-width: 380px;
    }

    .ra-brand-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .ra-footer-logo {
      height: 56px;
      width: 56px;
      object-fit: contain;
      filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.3));
      transition: transform 0.3s ease;
    }

    .ra-footer-logo:hover {
      transform: scale(1.1) rotate(5deg);
    }

    .ra-footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      background: linear-gradient(135deg, #fff 0%, #e0c3fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0;
    }

    .ra-footer-desc {
      color: #b8b8d1;
      line-height: 1.7;
      font-size: 14.5px;
      margin-bottom: 24px;
    }

    .ra-newsletter {
      margin-top: 24px;
    }

    .ra-newsletter-title {
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ra-newsletter-form {
      display: flex;
      gap: 8px;
    }

    .ra-newsletter-input {
      flex: 1;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: #fff;
      font-size: 14px;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }

    .ra-newsletter-input:focus {
      outline: none;
      border-color: rgba(138, 43, 226, 0.5);
      background: rgba(255, 255, 255, 0.08);
    }

    .ra-newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .ra-newsletter-btn {
      padding: 12px 24px;
      background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
      border: none;
      border-radius: 8px;
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
      font-family: 'Inter', sans-serif;
    }

    .ra-newsletter-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
    }

    /* Footer Columns */
    .ra-footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 24px;
      position: relative;
      display: inline-block;
    }

    .ra-footer-col h4::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #8b5cf6, transparent);
    }

    .ra-footer-col a,
    .ra-trust-list li {
      color: #b8b8d1;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      font-size: 14.5px;
      transition: all 0.3s ease;
      position: relative;
      padding-left: 20px;
    }

    .ra-footer-col a::before {
      content: '→';
      position: absolute;
      left: 0;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
      color: #8b5cf6;
    }

    .ra-footer-col a:hover {
      color: #fff;
      transform: translateX(5px);
    }

    .ra-footer-col a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    /* Social Links */
    .ra-social-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ra-social-links a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 16px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
      padding-left: 16px;
    }

    .ra-social-links a::before {
      content: none;
    }

    .ra-social-links a:hover {
      background: rgba(138, 43, 226, 0.1);
      border-color: rgba(138, 43, 226, 0.3);
      transform: translateX(0) translateY(-2px);
    }

    .ra-social-icon {
      font-size: 18px;
    }

    /* Trust List */
    .ra-trust-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .ra-trust-list li {
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 8px;
      border-left: 3px solid rgba(138, 43, 226, 0.4);
      margin-bottom: 12px;
      padding-left: 16px;
    }

    .ra-trust-list li::before {
      content: none;
    }

    .ra-trust-icon {
      font-size: 18px;
      filter: grayscale(0);
    }

    /* Stats Section */
    .ra-footer-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      padding: 40px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      margin-bottom: 50px;
    }

    .ra-stat-item {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }

    .ra-stat-item:hover {
      background: rgba(138, 43, 226, 0.05);
      border-color: rgba(138, 43, 226, 0.2);
      transform: translateY(-5px);
    }

    .ra-stat-number {
      font-size: 32px;
      font-weight: 700;
      background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 8px;
    }

    .ra-stat-label {
      color: #b8b8d1;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Footer Bottom */
    .ra-footer-bottom {
      padding: 30px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ra-copyright {
      color: #8e8ea9;
      font-size: 14px;
      margin: 0;
    }

    .ra-copyright strong {
      color: #fff;
      font-weight: 600;
    }

    .ra-footer-badges {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .ra-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      font-size: 12px;
      color: #b8b8d1;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ra-badge-icon {
      font-size: 14px;
    }

    /* Scroll to top button */
    .ra-scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
      transition: all 0.3s ease;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
    }

    .ra-scroll-top.ra-visible {
      opacity: 1;
      pointer-events: all;
    }

    .ra-scroll-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(138, 43, 226, 0.6);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .ra-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }

      .ra-brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
      }
    }

    @media (max-width: 640px) {
      .ra-footer-main {
        padding: 60px 0 40px;
      }

      .ra-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .ra-footer-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .ra-newsletter-form {
        flex-direction: column;
      }

      .ra-newsletter-btn {
        width: 100%;
      }

      .ra-footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .ra-footer-badges {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

