/* ============================================================
   STORE.CSS — Premium Dark Theme Redesign
   Inspired by tameem.sd — Dark, Modern, Glassmorphism
============================================================ */

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

/* ─── CSS Variables ───────────────────────────────────────── */
:root {
  --bg-primary: #070b14;
  --bg-secondary: #0d1526;
  --bg-card: #111827;
  --bg-card-hover: #161f35;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  --accent-primary: #e8a020;
  --accent-secondary: #f5c842;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-glow: rgba(232, 160, 32, 0.15);

  --text-primary: #f0f4ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(232, 160, 32, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(232, 160, 32, 0.2);
  --shadow-blue: 0 0 40px rgba(59, 130, 246, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Global Reset Override ───────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

p {
  color: var(--text-secondary);
}

a {
  transition: var(--transition);
  text-decoration: none;
}

/* ─── Noise Texture Overlay ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ─── Utility ─────────────────────────────────────────────── */
.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: 150px;
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.header {
  position: relative;
  z-index: 100;
}

.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: var(--transition);
}

.navbar-area.sticky {
  position: fixed;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
  padding: 22px 0;
  transition: var(--transition);
}

.navbar-area.sticky .navbar {
  padding: 14px 0;
}

.navbar-brand img {
  max-width: 160px;
  filter: brightness(1.1);
}

/* Nav Links */
.navbar-nav .nav-item {
  margin-left: 36px;
}

.navbar-nav .nav-item a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: none;
}

.navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: var(--accent-primary);
}

.navbar-nav .nav-item a:hover::after,
.navbar-nav .nav-item a.active::after {
  width: 100%;
}

/* Mobile Nav */
.navbar-toggler .toggler-icon {
  background: rgba(255, 255, 255, 0.8);
}

.navbar-area.sticky .navbar-toggler .toggler-icon {
  background: var(--text-primary);
}

@media (max-width:991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 11, 20, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 20px 24px;
  }

  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 8px;
  }

  .navbar-nav .nav-item a {
    color: var(--text-primary);
  }
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 55%),
    var(--bg-primary);
  overflow: hidden;
}

/* Animated grid lines */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Glowing orbs */
.hero-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 14px;
}

.hero-section .hero-content h1 {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-section .hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 540px;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-primary), #d4880a);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(232, 160, 32, 0.3);
  text-decoration: none;
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 160, 32, 0.45);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}

/* Hero scroll button */
.hero-section .scroll-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  margin-top: 32px;
  transition: var(--transition);
  animation: bounce-down 2s ease-in-out infinite;
}

.hero-section .scroll-bottom:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

@keyframes bounce-down {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.hero-img {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 40px;
}

.hero-img img {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(59, 130, 246, 0.2));
  animation: orb-float 6s ease-in-out infinite;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-secondary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-tag.gold {
  background: rgba(232, 160, 32, 0.1);
  border-color: rgba(232, 160, 32, 0.2);
  color: var(--accent-secondary);
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURE SECTION ────────────────────────────────────── */
.feature-section {
  position: relative;
  background: var(--bg-secondary);
  padding: 100px 0;
}

.feature-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, 0.06), transparent);
  pointer-events: none;
}

.single-feature {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.single-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}

.single-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: var(--shadow-blue);
}

.single-feature:hover::before {
  opacity: 1;
}

.single-feature .icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-blue);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.single-feature:hover .icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.15));
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.25);
  transform: scale(1.05);
}

.single-feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.single-feature p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ─── PACKAGES SECTION ───────────────────────────────────── */
.packages-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-primary);
}

.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 10% 50%, rgba(232, 160, 32, 0.05), transparent),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(139, 92, 246, 0.05), transparent);
  pointer-events: none;
}

/* Package Section Header */
.pkg-section-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.pkg-header-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pkg-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
}

.pkg-step-num i {
  font-size: 26px;
  -webkit-text-fill-color: var(--accent-purple);
  background: none;
}

.pkg-section-header h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
}

.pkg-section-header .title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), transparent);
}

.pkg-section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 6px 0 0 0;
  letter-spacing: 0.3px;
}

.pkg-section-subtitle .text-glow-amber {
  color: var(--accent-secondary);
  font-weight: 600;
}

.pkg-section-subtitle .text-glow-purple {
  color: #a78bfa;
  font-weight: 600;
}

/* Package Cards */
.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-purple));
  opacity: 0;
  transition: var(--transition);
}

.pack-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

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

.pack-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.pack-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
  margin: 0;
  border-radius: 0;
  filter: none;
}

.pack-card:hover .card-img {
  transform: scale(1.06);
}

.pack-card .card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 11, 20, 0.8), transparent);
}

.pack-card .card-header-custom {
  padding: 20px 20px 14px;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.pack-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.pack-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  display: block;
}

/* Shopping Button */
.shoping-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.25) !important;
  color: var(--accent-secondary) !important;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.shoping-btn:hover,
.shoping-btn.added {
  background: var(--accent-primary) !important;
  border-color: var(--accent-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.35);
  transform: scale(1.08);
}

.pack-card .card-body {
  padding: 0 20px 16px;
  flex: 1;
}

.pack-card .card-body ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pack-card .card-body ol li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.pack-card .card-body ol li::before {
  content: '✓';
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-card .card-body ol li:last-child {
  border-bottom: none;
}

.pack-card .card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pack-card .card-body ul li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pack-card .card-body ul li::before {
  content: '→';
  color: var(--accent-primary);
  flex-shrink: 0;
}

.card-footer-custom {
  margin-top: auto;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-secondary);
  letter-spacing: -0.5px;
}

.pack-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 100% 50%, rgba(139, 92, 246, 0.06), transparent);
  pointer-events: none;
}

.about-img {
  position: relative;
}

.about-img img.w-100 {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-img .shape {
  position: absolute;
  z-index: -1;
}

.about-img .shape-1 {
  top: -20px;
  left: -20px;
}

.about-img .shape-2 {
  bottom: -20px;
  right: -20px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Feature list in about */
.about-content .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-content .list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.about-content .list li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 12px;
}

.about-content .list li:hover {
  border-color: var(--border-accent);
  background: rgba(232, 160, 32, 0.05);
}

/* ─── TECHNOLOGY SECTION ─────────────────────────────────── */
.feature-extended-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.feature-extended-wrapper {
  width: 100%;
}

.single-feature-extended {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 24px;
}

.single-feature-extended:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.single-feature-extended .icon {
  font-size: 44px;
  color: var(--accent-primary);
  margin-bottom: 16px;
  transition: var(--transition);
}

.single-feature-extended:hover .icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(232, 160, 32, 0.4));
}

.single-feature-extended h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ─── CART BUTTON ────────────────────────────────────────── */
.cart-btn {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), #d4880a);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232, 160, 32, 0.45);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.cart-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 48px rgba(232, 160, 32, 0.6);
  color: #fff;
}

.cartItemsNo {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 1000;
  background: none;
  border: none;
  box-shadow: none;
  color: rgba(232, 160, 32, 0.12);
  font-size: 80px;
  font-weight: 900;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -4px;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 112px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 998;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.scroll-top:hover {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

/* ─── MODAL ──────────────────────────────────────────────── */
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 28px;
}

.modal-title {
  color: var(--text-primary);
  font-weight: 700;
}

.btn-close {
  filter: invert(1) brightness(0.7);
}

.modal-body {
  padding: 28px;
}

.modal-footer {
  border-top: 1px solid var(--border-color);
  padding: 16px 28px;
}

/* Modal table */
.modal-body .table {
  color: var(--text-primary);
}

.modal-body .table th {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color) !important;
  padding-bottom: 12px;
}

.modal-body .table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 14px 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.modal-body .table caption h5 {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.modal-body .table caption h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-secondary);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

/* Form Inputs */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 15px;
  padding: 14px 16px;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.12) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

.form-control::placeholder {
  color: var(--text-muted) !important;
}

.form-floating label {
  color: var(--text-muted) !important;
  font-size: 14px;
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Order Info header */
.modal-body h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Modal buttons */
.modal-footer .btn-secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.modal-footer .btn-secondary:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
}

.modal-footer .btn-success,
label[for="sendOrder"].btn-success {
  background: linear-gradient(135deg, var(--accent-primary), #d4880a) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.3);
  cursor: pointer;
}

.modal-footer .btn-success:hover,
label[for="sendOrder"].btn-success:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(232, 160, 32, 0.45) !important;
}

/* Cart field (table quantity inputs) */
.cart-field {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

/* Success/Error modal result */
.modal-pages {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

.bg-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 30% at 50% 0%, rgba(232, 160, 32, 0.04), transparent);
  pointer-events: none;
}

.footer .widget-wrapper {
  padding-bottom: 48px;
}

.footer-widget h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-widget .desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-widget .logo img {
  max-height: 80px;
  filter: brightness(1.1);
}

.footer-widget .logo {
  margin-bottom: 20px;
}

.footer-widget .links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget .links li {
  margin-bottom: 10px;
}

.footer-widget .links li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-widget .links li a::before {
  content: '→';
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-widget .links li a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-widget .links li a:hover::before {
  color: var(--accent-primary);
}

/* Social icons */
.footer-widget .socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget .socials li a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: var(--transition);
}

.footer-widget .socials li a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.3);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ─── SECTION DIVIDERS ───────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section .hero-content h1 {
    font-size: 44px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-img {
    padding-top: 20px;
  }

  .step-indicator {
    padding-right: 0;
    margin-bottom: 32px;
  }

  .step-num {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .hero-stats {
    gap: 24px;
  }

  .about-content .list {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    justify-content: center;
    width: 100%;
  }

  .pkg-section-title h3 {
    font-size: 22px;
  }

  .packages-section {
    padding: 60px 0;
  }

  .feature-section,
  .about-section,
  .feature-extended-section {
    padding: 60px 0;
  }
}

/* ─── WOW / Animations ───────────────────────────────────── */
.fadeInUp {
  animation-name: fadeInUpCustom;
}

@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow pulse on card hover */
@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: var(--shadow-glow);
  }

  50% {
    box-shadow: 0 0 60px rgba(232, 160, 32, 0.3), var(--shadow-md);
  }
}

/* ─── CAROUSEL SYSTEM ────────────────────────────────────── */
.carousel-container-custom {
  position: relative;
  width: 100%;
  padding: 0 10px;
}

.carousel-track-custom {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 24px;
  width: 100%;
  scrollbar-width: none;
  /* Firefox */
}

.carousel-track-custom::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.carousel-item-custom {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* Specific item widths per section */
#features .carousel-item-custom {
  width: 290px;
}

.packages-section .carousel-item-custom {
  width: 310px;
}

#graphics .carousel-item-custom {
  width: 540px;
}

#why .carousel-item-custom {
  width: 260px;
}

/* Adjust item widths on smaller viewports */
@media (max-width: 991px) {
  #graphics .carousel-item-custom {
    width: 440px;
  }
}

@media (max-width: 576px) {
  #features .carousel-item-custom {
    width: 260px;
  }

  .packages-section .carousel-item-custom {
    width: 270px;
  }

  #graphics .carousel-item-custom {
    width: 290px;
  }

  #why .carousel-item-custom {
    width: 220px;
  }
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(13, 21, 38, 0.85);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  font-size: 16px;
}

.carousel-nav-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(232, 160, 32, 0.45);
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn.prev-btn {
  left: -20px;
}

.carousel-nav-btn.next-btn {
  right: -20px;
}

/* Navigation button wrapper positioning overrides for packages layout since they are inside col-lg-10 */
.packages-section .carousel-container-custom {
  padding: 0;
}

.packages-section .carousel-nav-btn.prev-btn {
  left: -23px;
}

.packages-section .carousel-nav-btn.next-btn {
  right: -23px;
}

/* Fading states for navigation buttons handled by JS */
.carousel-nav-btn.disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide navigation buttons on touch screens where swipe is native */
@media (hover: none) {
  .carousel-nav-btn {
    display: none !important;
  }
}

/* Shopping Button Toggle States styled dynamically */
.shoping-btn.btn-success {
  background: rgba(16, 185, 129, 0.15) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  color: #10b981 !important;
}

.shoping-btn.btn-success:hover {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.shoping-btn.btn-danger {
  background: rgba(239, 68, 68, 0.15) !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
  color: #ef4444 !important;
}

.shoping-btn.btn-danger:hover {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
}