@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-gradient: linear-gradient(135deg, #FF1F71 0%, #FF6044 100%);
  --primary-red: #FF1F71; 
  --primary-orange: #FF1F71;
  --dark-navy: #0F172A;
  --bg-body: #050811;
  --white: #FFFFFF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --card-bg: rgba(15, 23, 42, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 20px 35px -10px rgba(0, 0, 0, 0.6);
}

/* Preloader Removed for Performance */

body {
  font-family: 'Inter', sans-serif !important;
  background: var(--dark-navy) !important;
  color: #ffffff !important;
  min-height: 100vh;
  letter-spacing: -0.2px;
  overflow-x: hidden;
}

/* Global Card & Table Styles */
.card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.auth-card, .floating-glass-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.page {
  background: var(--dark-navy) !important;
}

.page-main {
  background: var(--dark-navy) !important;
}

.page-content {
  background: var(--dark-navy) !important;
}

.card-header, .card-footer {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.table {
  color: #fff !important;
}

.table th {
  border-top: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6) !important;
}

.table td {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  vertical-align: middle !important;
}

.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02) !important;
}

/* Global Form & Selectize Styles */
.form-control, select, textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--primary-red) !important;
  color: #fff !important;
}

.selectize-dropdown, .selectize-dropdown-content {
  background: #0d121f !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.selectize-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #FFFFFF !important;
}

.selectize-dropdown .active {
  background: var(--primary-red) !important;
  color: #FFFFFF !important;
}

.selectize-dropdown .option {
  color: #FFFFFF !important;
  background: transparent !important;
}

/* Fix for any remaining white cards or boxes */
div.card, div.modal-content, .table-responsive {
  background: #0d121f !important;
  color: #fff !important;
}

tr {
  background: transparent !important;
  color: #fff !important;
}

/* Modal Fixes */
.modal-content {
  background: #0d121f !important;
  border: 1px solid rgba(255, 31, 113, 0.3) !important;
  color: #fff !important;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  font-weight: 700;
}

/* Header & Navbar */
.header {
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 10px 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 1000 !important;
  position: relative;
}

.header.top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.header.shrink {
  padding: 10px 0;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-menu {
  background: var(--dark-navy) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
  z-index: 10000 !important;
}

.dropdown-item {
  color: #fff !important;
}

.dropdown-item:hover {
  background: rgba(255, 31, 113, 0.1) !important;
}

.nav-link {
  color: #E2E8F0 !important;
  font-weight: 600;
  padding: 10px 18px !important;
  transition: all 0.3s ease;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--primary-red) !important;
}

/* ======================================
   WORLDOFSMM-STYLE PREMIUM BUTTONS
   ====================================== */

/* Ripple animation keyframe */
@keyframes btn-ripple {
  0% { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(4); opacity: 0; }
}

/* Pulse glow animation */
@keyframes btn-pulse-glow {
  0%, 100% { box-shadow: 0 5px 15px rgba(255, 31, 113, 0.3); }
  50% { box-shadow: 0 5px 30px rgba(255, 31, 113, 0.6), 0 0 60px rgba(255, 31, 113, 0.15); }
}

/* Shimmer sweep animation */
@keyframes btn-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Login Button (Nav) */
.btn-login {
  color: var(--white) !important;
  font-weight: 700;
  margin-right: 15px;
  transition: all 0.3s ease;
  font-size: 15px;
  padding: 10px 20px !important;
  border-radius: 50px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-login::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 31, 113, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-login:hover {
  color: var(--primary-red) !important;
  text-decoration: none;
  border-color: var(--primary-red);
  background: rgba(255, 31, 113, 0.05);
}

.btn-login:hover::after {
  width: 300px;
  height: 300px;
}

/* Signup / Primary CTA Button */
.btn-signup {
  background: var(--primary-gradient);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 14px 36px !important;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255, 31, 113, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.btn-signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.btn-signup:hover::before {
  animation: btn-shimmer 0.8s ease forwards;
}

.btn-signup:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 31, 113, 0.4), 0 0 80px rgba(255, 31, 113, 0.1);
  color: var(--white) !important;
  text-decoration: none;
}

.btn-signup:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 8px 20px rgba(255, 31, 113, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 240px 0 120px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 31, 113, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(255, 31, 113, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

.hero-title span {
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-red);
  box-shadow: var(--shadow-strong);
  z-index: 3;
}

.icon-1 { top: 10%; left: 15%; }
.icon-2 { top: 20%; right: 10%; }
.icon-3 { bottom: 30%; left: 5%; }
.icon-4 { bottom: 15%; right: 20%; }

.mt-n150 { margin-top: -250px; }

/* Outline White Button (Hero secondary CTA) */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.btn-outline-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-outline-white:hover::before {
  width: 100%;
}

.btn-outline-white:hover {
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
  text-decoration: none;
}

.btn-outline-white:active {
  transform: translateY(-1px);
}

/* Auth Cards & Forms */
.auth-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 31, 113, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 12px !important;
  padding: 14px 20px !important;
  height: auto !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  color: var(--white) !important;
}

.form-control:focus {
  border-color: var(--primary-red) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 15px rgba(255, 31, 113, 0.2) !important;
}

.label-title {
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
}

/* Submit / Form Button */
.btn-submit {
  background: var(--primary-gradient);
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 16px 30px !important;
  font-weight: 700;
  border: none;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(255, 31, 113, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
  cursor: pointer;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.btn-submit:hover::before {
  animation: btn-shimmer 0.8s ease forwards;
}

.btn-submit:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(255, 31, 113, 0.4), 0 0 60px rgba(255, 31, 113, 0.1);
}

.btn-submit:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 20px rgba(255, 31, 113, 0.3);
}

/* Platform Cards */
.platform-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.platform-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-strong);
}

.platform-card h5, .platform-card h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 15px;
}

.platform-card p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.platform-icon {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-red);
  background: rgba(255, 31, 113, 0.08);
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 12px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-card:hover .platform-icon {
  background: var(--primary-gradient);
  color: var(--white);
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 31, 113, 0.2);
}

/* Utils */
.text-pink { color: var(--primary-red) !important; }
.pill { border-radius: 50px !important; }

/* Outline Pink Button (Service Cards) */
.btn-outline-pink {
  border: 2px solid var(--primary-red);
  color: var(--primary-red) !important;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50px;
  padding: 8px 24px;
  position: relative;
  overflow: hidden;
  background: transparent;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 1;
}

.btn-outline-pink::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-gradient);
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-outline-pink:hover::before {
  width: 100%;
}

.btn-outline-pink:hover {
  border-color: transparent;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 31, 113, 0.3);
  text-decoration: none;
}

.btn-outline-pink:active {
  transform: translateY(-1px);
}

/* Animations */
.float-animation {
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

/* Footer Section */
.footer {
  background: var(--dark-navy);
  padding: 100px 0 50px;
  color: #94A3B8;
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.footer-link {
  color: #94A3B8;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-link:hover {
  color: var(--primary-red);
  text-decoration: none;
  transform: translateX(5px);
}

.payment-icons i {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.payment-icons i:hover {
  opacity: 1;
}

.social-icon {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white) !important;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: var(--white) !important;
}

.social-icon.facebook:hover { background: #3b5998; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icon.youtube:hover { background: #ff0000; }

.opacity-5 { opacity: 0.5; }
.opacity-1 { opacity: 0.1; }

/* Services Table Styling */
.card-services {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  margin-bottom: 50px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-services {
  margin-bottom: 0;
  width: 100%;
}

.table-services thead th {
  background: rgba(15, 23, 42, 0.5);
  color: var(--text-muted);
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-services tbody tr {
  transition: all 0.3s ease;
  background: transparent;
}

.table-services tbody tr:hover {
  background: rgba(255, 31, 113, 0.05);
}

.table-services td {
  padding: 25px;
  vertical-align: middle;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
}

.service-name {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.service-id-badge {
  background: rgba(255, 31, 113, 0.15);
  color: var(--primary-red);
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
}

.badge-red {
  background: rgba(255, 31, 113, 0.1);
  color: var(--primary-red);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 11px;
}

.badge-info {
  background: rgba(0, 188, 212, 0.1) !important;
  color: #00bcd4 !important;
  padding: 6px 14px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
}

.badge-secondary {
  background: rgba(148, 163, 184, 0.1) !important;
  color: #94a3b8 !important;
  padding: 6px 14px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
}

/* Details Button (Services table) */
.btn-details {
  background: rgba(255, 31, 113, 0.1);
  color: var(--primary-red) !important;
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(255, 31, 113, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.btn-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-details:hover::before {
  width: 100%;
}

.btn-details:hover {
  color: var(--white) !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 31, 113, 0.3);
}

.btn-details:active {
  transform: translateY(-1px);
}

/* Services Page Layout */
.services-header {
  padding-top: 180px;
  padding-bottom: 100px;
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://worldofsmm.com/assets/images/services_banner.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: -60px;
}

.services-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-body), transparent);
}

.services-header .page-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--white);
  letter-spacing: -1px;
}

.services-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Auth Page Layouts */
.auth-login-form {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background: radial-gradient(circle at top right, rgba(255, 31, 113, 0.08), transparent),
              radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.05), transparent);
}

/* Dashbord & Inner Pages */
.statistics .card, .row-card .card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
}

.statistics .card::before, .row-card .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.statistics .card:hover, .row-card .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 31, 113, 0.3);
}

.statistics .card:hover::before, .row-card .card:hover::before {
  opacity: 1;
}

.stamp {
  background: rgba(255, 31, 113, 0.1) !important;
  color: var(--primary-red) !important;
  border-radius: 12px !important;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.statistics .card:hover .stamp {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
}

.stamp i {
  color: inherit !important;
}

.number {
  color: var(--white) !important;
  font-weight: 800 !important;
  font-size: 1.5rem;
  letter-spacing: -1px;
}

.statistics .item .text-muted {
  color: #94A3B8 !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Tabs Styling */
.nav-tabs {
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.nav-tabs .nav-link {
  border: none !important;
  color: var(--text-muted) !important;
  position: relative;
  padding: 15px 25px !important;
}

.nav-tabs .nav-link.active {
  background: transparent !important;
  color: var(--primary-red) !important;
}

.nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-gradient);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .hero-section { 
    padding: 160px 0 80px; 
  }
  .hero-title { font-size: 2.8rem; }
  .header { background: var(--dark-navy) !important; padding: 15px 0; }
  .navbar-collapse { background: var(--card-bg); padding: 20px; border-radius: 12px; margin-top: 15px; box-shadow: var(--shadow-strong); border: 1px solid rgba(255, 255, 255, 0.05); }
  .mt-n150 { margin-top: -100px !important; }
  
  /* Floating Icons Mobile Adjustments */
  .floating-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .icon-1 { top: 5%; left: 5%; }
  .icon-2 { top: 15%; right: 2%; } /* Move YouTube further right to avoid face */
  .icon-3 { bottom: 20%; left: 2%; }
  .icon-4 { bottom: 10%; right: 5%; }
}

.text-primary {
  color: var(--primary-red) !important;
}

.order_by.form-control {
  background: var(--card-bg) !important;
  color: var(--white) !important;
  border: 1px solid var(--glass-border) !important;
}

.order_by.form-control:focus {
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 15px rgba(255, 31, 113, 0.2) !important;
}

.order_by.form-control option {
  background: var(--dark-navy) !important;
  color: var(--white) !important;
}

/* btn-details override already handled above */

/* Parallax Tech Luxury Theme Styles */

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  position: relative;
  background: var(--bg-body);
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  z-index: 2;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 31, 113, 0.05);
  line-height: 1;
  transition: all 0.4s ease;
}

.step-card:hover .step-number {
  color: rgba(255, 31, 113, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 31, 113, 0.1);
  color: var(--primary-red);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon {
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.1);
}

/* Statistics Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('https://worldofsmm.com/assets/images/stats_bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-body);
}

.accordion-custom .card {
  background: var(--card-bg) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 15px !important;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-custom .card:hover {
  border-color: rgba(255, 31, 113, 0.4) !important;
}

.accordion-custom .card-header {
  padding: 0 !important;
  border: none !important;
}

.accordion-custom .btn-link {
  width: 100%;
  padding: 20px 30px;
  text-align: left;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.accordion-custom .btn-link i {
  font-size: 1rem;
  color: var(--primary-red);
  transition: transform 0.3s ease;
}

.accordion-custom .btn-link:not(.collapsed) {
  background: rgba(255, 31, 113, 0.05);
  color: var(--primary-red) !important;
}

.accordion-custom .btn-link:not(.collapsed) i {
  transform: rotate(180deg);
}

.accordion-custom .card-body {
  padding: 20px 30px 30px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid var(--glass-border);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--primary-gradient);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(255, 31, 113, 0.3);
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 3rem;
  letter-spacing: -1px;
}

.header-line {
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.py-100 { padding: 100px 0; }
.hero-story-container {
  position: relative;
  min-height: 140vh; /* Long container for scroll story */
  background: var(--bg-body);
  overflow: hidden;
}

.story-bg-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url('/assets/images/abstract_luxury_bg.png') no-repeat center center;
  background-size: cover;
  filter: brightness(0.6);
  transform: scale(1.1);
  will-change: transform;
}

.story-overlay-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(135deg, rgba(8, 12, 24, 0.9) 0%, transparent 60%, rgba(200, 20, 50, 0.1) 100%);
  pointer-events: none;
}

.parallax-layer {
  position: relative;
  z-index: 10;
  padding-top: 5vh;
}

.story-title-section {
  text-align: center;
  margin-bottom: 20vh;
  opacity: 1;
  transform: translateY(0);
}

.premium-title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(to right, #fff, #ff1f71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1;
}

.premium-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.parallax-card-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15vh;
}

.floating-glass-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 30px !important;
  padding: 40px !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: float 6s infinite ease-in-out;
}

.floating-glass-card:nth-child(2) {
  animation-delay: -2s;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.order-parallax-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.order-main-card {
  background: rgba(10, 15, 30, 0.9) !important;
  border: 1px solid rgba(255, 31, 113, 0.2) !important;
  border-radius: 40px !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5) !important;
}

.order-main-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 31, 113, 0.3), transparent);
  border-radius: 42px;
  z-index: -1;
  animation: shimmer 4s infinite linear;
}

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

.total_charge_box {
  background: rgba(255, 31, 113, 0.05) !important;
  border: 1px dashed rgba(255, 31, 113, 0.5) !important;
  border-radius: 20px !important;
}

.text-pink {
  color: var(--primary-red) !important;
}

/* Scroll Animation Hooks */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Inherit global styles for order card */
.order-main-card .form-group label {
  color: var(--white) !important;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.order-main-card select option {
  background: #0d121f !important;
  color: #FFFFFF !important;
}

.content-header-title h4 {
  color: #FFFFFF !important;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Selectize Input Specifics */
.selectize-input.items.has-options.full.has-items {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
}

.selectize-input > input {
    color: white !important;
}

/* ======================================
   GLOBAL BOOTSTRAP BUTTON OVERRIDES
   (Worldofsmm Premium Style)
   ====================================== */

/* Base Button Override */
.btn {
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0px);
}

/* Primary Button */
.btn-primary {
  background: var(--primary-gradient) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(255, 31, 113, 0.25) !important;
}

.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(255, 31, 113, 0.4), 0 0 50px rgba(255, 31, 113, 0.1) !important;
  transform: translateY(-3px);
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 3px rgba(255, 31, 113, 0.3) !important;
}

/* Success Button */
.btn-success {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(0, 200, 83, 0.25) !important;
}

.btn-success:hover {
  box-shadow: 0 15px 35px rgba(0, 200, 83, 0.4), 0 0 50px rgba(0, 200, 83, 0.1) !important;
  transform: translateY(-3px);
}

/* Danger Button */
.btn-danger {
  background: linear-gradient(135deg, #ff1744 0%, #ff5252 100%) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(255, 23, 68, 0.25) !important;
}

.btn-danger:hover {
  box-shadow: 0 15px 35px rgba(255, 23, 68, 0.4), 0 0 50px rgba(255, 23, 68, 0.1) !important;
  transform: translateY(-3px);
}

/* Warning Button */
.btn-warning {
  background: linear-gradient(135deg, #ff9100 0%, #ffab40 100%) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(255, 145, 0, 0.25) !important;
}

.btn-warning:hover {
  box-shadow: 0 15px 35px rgba(255, 145, 0, 0.4), 0 0 50px rgba(255, 145, 0, 0.1) !important;
  transform: translateY(-3px);
}

/* Info Button */
.btn-info {
  background: linear-gradient(135deg, #00b0ff 0%, #40c4ff 100%) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(0, 176, 255, 0.25) !important;
}

.btn-info:hover {
  box-shadow: 0 15px 35px rgba(0, 176, 255, 0.4), 0 0 50px rgba(0, 176, 255, 0.1) !important;
  transform: translateY(-3px);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, #455a64 0%, #607d8b 100%) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(69, 90, 100, 0.25) !important;
}

.btn-secondary:hover {
  box-shadow: 0 15px 35px rgba(69, 90, 100, 0.4) !important;
  transform: translateY(-3px);
}

/* Dark Button */
.btn-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
  border: none !important;
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.btn-dark:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-3px);
}

/* Outline Button Variants */
.btn-outline-primary {
  border: 2px solid var(--primary-red) !important;
  color: var(--primary-red) !important;
  background: transparent !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-outline-primary:hover {
  background: var(--primary-gradient) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  box-shadow: 0 10px 25px rgba(255, 31, 113, 0.3) !important;
  transform: translateY(-3px);
}

.btn-outline-danger {
  border: 2px solid #ff1744 !important;
  color: #ff1744 !important;
  background: transparent !important;
}

.btn-outline-danger:hover {
  background: linear-gradient(135deg, #ff1744 0%, #ff5252 100%) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  box-shadow: 0 10px 25px rgba(255, 23, 68, 0.3) !important;
  transform: translateY(-3px);
}

.btn-outline-success {
  border: 2px solid #00c853 !important;
  color: #00c853 !important;
  background: transparent !important;
}

.btn-outline-success:hover {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3) !important;
  transform: translateY(-3px);
}

/* White CTA Button (for gradient CTA boxes) */
.btn-white, .btn-cta-white {
  background: var(--white) !important;
  color: var(--primary-red) !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  padding: 16px 40px !important;
  font-size: 16px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-white:hover, .btn-cta-white:hover {
  transform: translateY(-5px) scale(1.03) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
  color: var(--primary-red) !important;
  text-decoration: none;
}

.btn-white:active, .btn-cta-white:active {
  transform: translateY(-1px) scale(0.99) !important;
}

/* Button Size Overrides */
.btn-lg {
  padding: 14px 34px !important;
  font-size: 16px !important;
}

.btn-sm {
  padding: 6px 18px !important;
  font-size: 13px !important;
}

.btn-xs {
  padding: 4px 14px !important;
  font-size: 11px !important;
}

/* Pagination Buttons */
.page-link {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  transition: all 0.3s ease !important;
  border-radius: 10px !important;
  margin: 0 3px;
}

.page-link:hover {
  background: var(--primary-gradient) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 31, 113, 0.3) !important;
}

.page-item.active .page-link {
    background: var(--primary-gradient) !important;
    border-color: transparent !important;
    box-shadow: 0 5px 15px rgba(255, 31, 113, 0.3) !important;
}

/* Status Badge - Nexus Premium Style */
.badge-status-nexus {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

/* ======================================
   MOBILE RESPONSIVE OPTIMIZATIONS
   ====================================== */
@media (max-width: 991px) {
  /* Fix Status Tabs Scroll */
  .page-options.overflow-auto {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 12px !important;
    margin-bottom: 15px !important;
  }

  .order_btn_group {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    padding-left: 5px !important;
  }

  .order_btn_group .nav-link {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
}

/* Specific Card Layout for Order Logs on Mobile */
@media (max-width: 767px) {
  .table-services {
    border: none !important;
  }
  .table-services thead {
    display: none !important;
  }
  .table-services, .table-services tbody, .table-services tr, .table-services td {
    display: block !important;
    width: 100% !important;
  }
  .table-services tr {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    margin-bottom: 25px !important;
    padding: 15px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
  }
  .table-services td {
    padding: 10px 0 !important;
    border-top: none !important;
    color: var(--text-main) !important;
  }
}