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

:root {
  --primary-color: #5865f2;
  --secondary-color: #4f46e5;
  --dark-bg: #1a1a1a;
  --darker-bg: #111111;
  --card-bg: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --accent: #00d4aa;
  --danger: #ed4245;
  --warning: #faa61a;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #4fc3f7, transparent),
    radial-gradient(2px 2px at 40px 70px, #29b6f6, transparent),
    radial-gradient(1px 1px at 90px 40px, #03a9f4, transparent),
    radial-gradient(1px 1px at 130px 80px, #0288d1, transparent),
    radial-gradient(2px 2px at 160px 30px, #4fc3f7, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: stars 20s linear infinite;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 25px 25px, #81d4fa, transparent),
    radial-gradient(1px 1px at 50px 100px, #4fc3f7, transparent),
    radial-gradient(1px 1px at 125px 30px, #29b6f6, transparent),
    radial-gradient(1px 1px at 190px 90px, #03a9f4, transparent);
  background-repeat: repeat;
  background-size: 250px 150px;
  animation: stars 30s linear infinite reverse;
  z-index: -2;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo-image {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: contain;
  background-color: transparent;
  padding: 2px;
  flex-shrink: 0;
}

.nav-logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.nav-logo h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-logo span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Enhanced Navigation Button Styles */
.nav-menu li {
  position: relative;
  animation: navButtonEntrance 0.8s ease forwards;
  opacity: 0;
  transform: translateY(-20px);
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }
.nav-menu li:nth-child(6) { animation-delay: 0.6s; }

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(41, 182, 246, 0.1) 100%);
  border: 1px solid rgba(79, 195, 247, 0.2);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  animation: navButtonGlow 3s ease-in-out infinite;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  animation: navButtonShimmer 2s linear infinite;
}

.nav-menu a:hover {
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-color: var(--primary-color);
  box-shadow: 
    0 8px 25px rgba(88, 101, 242, 0.4),
    0 0 20px rgba(79, 195, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover::before {
  left: 100%;
}

.nav-menu a:active {
  transform: translateY(-1px) scale(1.02);
}

@keyframes navButtonEntrance {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

/* Starfield Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #4fc3f7, transparent),
    radial-gradient(2px 2px at 40px 70px, #29b6f6, transparent),
    radial-gradient(1px 1px at 90px 40px, #03a9f4, transparent),
    radial-gradient(1px 1px at 130px 80px, #0288d1, transparent),
    radial-gradient(2px 2px at 160px 30px, #4fc3f7, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: stars 20s linear infinite;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 25px 25px, #81d4fa, transparent),
    radial-gradient(1px 1px at 50px 100px, #4fc3f7, transparent),
    radial-gradient(1px 1px at 125px 30px, #29b6f6, transparent),
    radial-gradient(1px 1px at 190px 90px, #03a9f4, transparent);
  background-repeat: repeat;
  background-size: 250px 150px;
  animation: stars 30s linear infinite reverse;
  z-index: 1;
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #4fc3f7, transparent);
  border-radius: 50%;
  box-shadow: 0 0 6px #4fc3f7;
  animation: shootingStar 3s linear infinite;
  z-index: 1;
}

.shooting-star::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, #4fc3f7, transparent);
  transform: translateY(-50%);
}

.shooting-star:nth-child(1) {
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.shooting-star:nth-child(2) {
  top: 30%;
  left: -100px;
  animation-delay: 2s;
}

.shooting-star:nth-child(3) {
  top: 60%;
  left: -100px;
  animation-delay: 4s;
}

/* Twinkling Stars */
.twinkling-star {
  position: absolute;
  background: #4fc3f7;
  border-radius: 50%;
  animation: twinkle 2s linear infinite;
  z-index: 1;
}

.twinkling-star:nth-child(1) {
  top: 15%;
  left: 10%;
  width: 3px;
  height: 3px;
  animation-delay: 0s;
}

.twinkling-star:nth-child(2) {
  top: 25%;
  right: 15%;
  width: 2px;
  height: 2px;
  animation-delay: 0.5s;
}

.twinkling-star:nth-child(3) {
  top: 70%;
  left: 20%;
  width: 1px;
  height: 1px;
  animation-delay: 1s;
}

.twinkling-star:nth-child(4) {
  top: 40%;
  right: 25%;
  width: 2px;
  height: 2px;
  animation-delay: 1.5s;
}

.twinkling-star:nth-child(5) {
  top: 80%;
  right: 10%;
  width: 3px;
  height: 3px;
  animation-delay: 2s;
}

/* Nebula Effect */
.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: nebulaDrift 25s ease-in-out infinite;
  z-index: 1;
}

.nebula:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #4fc3f7 0%, transparent 70%);
  animation-delay: 0s;
}

.nebula:nth-child(2) {
  bottom: 30%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #29b6f6 0%, transparent 70%);
  animation-delay: 5s;
}

.nebula:nth-child(3) {
  top: 60%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #03a9f4 0%, transparent 70%);
  animation-delay: 10s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleWave 5s ease-in-out infinite, heroTitleBounce 3s ease-in-out infinite;
}

.hero p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: rgba(17, 17, 17, 0.7);
  position: relative;
  backdrop-filter: blur(5px);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 15% 25%, #4fc3f7, transparent),
    radial-gradient(2px 2px at 85% 75%, #29b6f6, transparent),
    radial-gradient(1px 1px at 45% 10%, #03a9f4, transparent);
  background-size: 300px 200px;
  animation: stars 25s linear infinite;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.services h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(88, 101, 242, 0.1);
}

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

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

/* About Section */
.about {
  padding: 100px 0;
  background: rgba(26, 26, 26, 0.8);
  position: relative;
  backdrop-filter: blur(5px);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 25% 15%, #29b6f6, transparent),
    radial-gradient(1px 1px at 75% 85%, #4fc3f7, transparent),
    radial-gradient(1px 1px at 10% 65%, #03a9f4, transparent);
  background-size: 250px 180px;
  animation: stars 35s linear infinite reverse;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  width: 100%;
  padding: 3rem;
  background: rgba(42, 42, 42, 0.8);
  border-radius: 25px;
  border: 2px solid rgba(79, 195, 247, 0.4);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.about-text:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(79, 195, 247, 0.3);
  border-color: var(--primary-color);
}

.about-text h2 {
  font-size: 4rem;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent));
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 20px;
  border: 2px solid rgba(79, 195, 247, 0.3);
  transition: all 0.3s ease;
  min-width: 180px;
  flex: 1;
  max-width: 250px;
}

.stat:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.3);
  background: rgba(0, 212, 170, 0.1);
}

.stat h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(0, 212, 170, 0.4);
}

.stat p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 3rem;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(79, 195, 247, 0.3);
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: imageRotate 8s linear infinite;
}

.image-placeholder:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(79, 195, 247, 0.5);
}

.image-placeholder i {
  font-size: 8rem;
  color: white;
  z-index: 2;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

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

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

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: rgba(26, 26, 26, 0.9);
  position: relative;
  backdrop-filter: blur(5px);
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30% 20%, #4fc3f7, transparent),
    radial-gradient(1px 1px at 70% 60%, #29b6f6, transparent),
    radial-gradient(2px 2px at 15% 80%, #03a9f4, transparent);
  background-size: 280px 160px;
  animation: stars 22s linear infinite;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.pricing h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(88, 101, 242, 0.1);
  position: relative;
}

.service-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-logo .logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover .service-logo .logo-image {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.lowest-price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c853, #4caf50);
  color: white;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
  animation: priceGlow 2s ease-in-out infinite alternate;
  white-space: nowrap;
  z-index: 10;
}

/* Mega Pack Styles */
.pricing-card.mega-pack {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 2px solid #ff6b35;
  transform: scale(1.05);
  position: relative;
  overflow: hidden;
}

.pricing-card.mega-pack::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  animation: megaPackShine 3s infinite;
}

@keyframes megaPackShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.mega-pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  animation: megaPackGlow 2s ease-in-out infinite alternate;
  white-space: nowrap;
  z-index: 10;
}

@keyframes megaPackGlow {
  0% {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateX(-50%) scale(1);
  }
  100% {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    transform: translateX(-50%) scale(1.05);
  }
}

.pricing-card.mega-pack .price {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.price-savings {
  display: block;
  font-size: 0.9rem;
  color: #00c853;
  font-weight: normal;
  margin-top: 5px;
}

.pack-contents {
  text-align: left;
  margin: 1.5rem 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.pack-contents h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.1rem;
}

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

.pack-list li {
  padding: 0.3rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.pack-list li:last-child {
  border-bottom: none;
}

.pack-value {
  text-align: center;
  margin: 1rem 0;
  padding: 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
}

.original-value {
  display: block;
  color: #888;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.pack-discount {
  display: block;
  color: #00c853;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.mega-pack-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: megaPackPulse 3s ease-in-out infinite;
}

@keyframes megaPackPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.mega-pack-btn:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: scale(1.05);
}

@keyframes priceGlow {
  0% {
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    transform: translateX(-50%) scale(1);
  }
  100% {
    box-shadow: 0 6px 25px rgba(0, 200, 83, 0.5);
    transform: translateX(-50%) scale(1.02);
  }
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card li:before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  margin-right: 10px;
}

.buy-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Cart Button Styles */
.cart-nav-button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.cart-count {
  background: linear-gradient(135deg, #ed4245, #c13584);
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  animation: cartPulse 2s infinite;
  box-shadow: 0 2px 8px rgba(237, 66, 69, 0.3);
}

.cart-count.hidden {
  display: none;
}

@keyframes cartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Cart Modal Styles */
.empty-cart {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-secondary);
}

.empty-cart i {
  font-size: 4rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.empty-cart p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cart-items {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 2rem;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.cart-items[style*="display: none"] {
  display: none !important;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--darker-bg);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(88, 101, 242, 0.1);
  transition: all 0.3s ease;
}

.cart-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.cart-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  color: var(--text-primary);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  border-radius: 25px;
  padding: 0.3rem;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.quantity-btn:disabled {
  background: var(--text-secondary);
  cursor: not-allowed;
  transform: none;
}

.quantity-display {
  color: var(--text-primary);
  font-weight: bold;
  min-width: 30px;
  text-align: center;
  font-size: 1rem;
}

.remove-item-btn {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-item-btn:hover {
  background: rgba(237, 66, 69, 0.1);
  transform: scale(1.1);
}

.cart-summary {
  border-top: 2px solid rgba(88, 101, 242, 0.3);
  padding-top: 2rem;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.cart-summary[style*="display: none"] {
  display: none !important;
}

.cart-total {
  background: var(--darker-bg);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.total-row.final-total {
  border-top: 2px solid var(--primary-color);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.2rem;
}

.total-row.final-total span {
  color: var(--text-primary);
}

.cart-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.clear-cart-btn,
.checkout-cart-btn {
  flex: 1;
  min-width: 200px;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.clear-cart-btn {
  background: rgba(237, 66, 69, 0.1);
  color: var(--danger);
  border: 1px solid var(--danger);
}

.clear-cart-btn:hover {
  background: var(--danger);
  color: white;
  transform: translateY(-2px);
}

.checkout-cart-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.checkout-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.close-cart {
  color: var(--text-secondary);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.close-cart:hover {
  color: var(--text-primary);
}

/* Success Animation */
.cart-success {
  position: fixed;
  top: 160px;
  right: 30px;
  background: linear-gradient(135deg, #00d084, #00b874);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 208, 132, 0.3);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.cart-success.show {
  transform: translateX(0);
}

.cart-success i {
  font-size: 1.2rem;
}

/* Quantity Selector Styles */
.special-quantity {
  border: 2px solid var(--accent);
  position: relative;
  overflow: visible;
}

.special-quantity::before {
  content: '🔥 Nuovo!';
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent), #00b894);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

/* Out of Stock Styles */
.pricing-card.out-of-stock {
  background: rgba(42, 42, 42, 0.5);
  border-color: #666;
  opacity: 0.7;
  position: relative;
}

.pricing-card.out-of-stock::before {
  display: none;
}

.out-of-stock-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ed4245, #c13584);
  color: white;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(237, 66, 69, 0.3);
  white-space: nowrap;
  z-index: 10;
}

.pricing-card.out-of-stock .price {
  color: #888;
  text-decoration: line-through;
}

.pricing-card.out-of-stock ul li {
  color: #666;
}

.quantity-selector.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.quantity-selector.disabled .quantity-decrease,
.quantity-selector.disabled .quantity-increase,
.quantity-selector.disabled .preset-btn {
  background: #666;
  cursor: not-allowed;
}

.quantity-selector.disabled .quantity-input {
  background: #333;
  color: #666;
}

.total-price-display.disabled {
  opacity: 0.5;
  background: rgba(102, 102, 102, 0.1);
  border-color: rgba(102, 102, 102, 0.3);
}

.out-of-stock-btn {
  background: linear-gradient(135deg, #666, #555) !important;
  color: #ccc !important;
  cursor: not-allowed !important;
  opacity: 0.7;
}

.out-of-stock-btn:hover {
  transform: none !important;
  box-shadow: none !important;
}

.restock-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(237, 66, 69, 0.1);
  border: 1px solid rgba(237, 66, 69, 0.3);
  border-radius: 8px;
  text-align: center;
}

.restock-info p {
  margin: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.restock-info p:first-child {
  color: #ed4245;
  font-weight: bold;
}

.restock-info i {
  color: #ed4245;
  margin-right: 0.5rem;
}

.price-unit {
  font-size: 1.2rem;
  opacity: 0.8;
}

.quantity-selector {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.duration-selector {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.duration-selector label {
  display: block;
  color: var(--text-primary);
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.duration-options {
  display: flex;
  gap: 0.5rem;
}

.duration-btn {
  flex: 1;
  padding: 0.8rem 1rem;
  background: var(--card-bg);
  border: 2px solid rgba(79, 195, 247, 0.3);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.duration-btn:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 170, 0.1);
  transform: translateY(-2px);
}

.duration-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.quantity-selector label {
  display: block;
  color: var(--text-primary);
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;em;
}

.quantity-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
  background: var(--darker-bg);
  border-radius: 8px;
  padding: 2px;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.quantity-decrease,
.quantity-increase {
  background: var(--accent);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-decrease:hover,
.quantity-increase:hover {
  background: #00b894;
  transform: scale(1.1);
}

.quantity-decrease:active,
.quantity-increase:active {
  transform: scale(0.95);
}

.quantity-input {
  flex: 1;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0 10px;
  min-width: 60px;
}

.quantity-input:focus {
  outline: none;
}

.quantity-presets {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.preset-btn {
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 170, 0.4);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.preset-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.preset-btn.active {
  background: var(--accent);
  color: white;
}

.total-price-display {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent);
  margin: 1rem 0;
  padding: 0.8rem;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.add-to-cart-quantity-btn {
  width: 100%;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--accent), #00b894);
  position: relative;
  overflow: hidden;
}

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

.add-to-cart-quantity-btn:hover::before {
  left: 100%;
}

.add-to-cart-quantity-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

/* No Refund Warning */
.no-refund-warning {
  position: fixed;
  top: 220px;
  right: 30px;
  background: linear-gradient(135deg, #ed4245, #c13584);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(237, 66, 69, 0.4);
  z-index: 3001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
  max-width: 350px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: warningPulse 2s infinite;
}

.no-refund-warning.show {
  transform: translateX(0);
}

.no-refund-warning i {
  font-size: 2rem;
  color: #ffd700;
  animation: warningShake 1s infinite;
}

.warning-content {
  flex: 1;
}

.warning-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #ffd700;
}

.warning-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

@keyframes warningPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(237, 66, 69, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(237, 66, 69, 0.7), 0 0 20px rgba(237, 66, 69, 0.3);
  }
}

@keyframes warningShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* Responsive Cart Styles */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cart-item-controls {
    width: 100%;
    justify-content: space-between;
  }

  .cart-actions {
    flex-direction: column;
  }

  .clear-cart-btn,
  .checkout-cart-btn {
    min-width: auto;
    width: 100%;
  }

  .cart-success {
    right: 10px;
    left: 10px;
    top: 80px;
  }

  .no-refund-warning {
    right: 10px;
    left: 10px;
    top: 180px;
    max-width: none;
    padding: 1rem;
  }

  .no-refund-warning i {
    font-size: 1.5rem;
  }

  .warning-content strong {
    font-size: 1rem;
  }

  .warning-content p {
    font-size: 0.9rem;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--card-bg);
  margin: 2% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close {
  color: var(--text-secondary);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.close:hover {
  color: var(--text-primary);
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: 2rem;
}

.order-summary {
  background: var(--darker-bg);
  padding: 1.5rem;
  border-radius: 10px;
  height: fit-content;
}

.order-summary h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.order-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--primary-color);
  color: var(--text-primary);
  font-size: 1.2rem;
}

.payment-form h3 {
  color: var(--text-primary);
  margin: 1.5rem 0 1rem 0;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.payment-form input {
  padding: 15px;
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 10px;
  background: var(--darker-bg);
  color: var(--text-primary);
  font-size: 1rem;
}

.payment-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.payment-method-selection {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--darker-bg);
  border: 2px solid rgba(88, 101, 242, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--primary-color);
}

.payment-method input[type="radio"] {
  width: 20px;
  height: 20px;
}

.payment-method span {
  color: var(--text-primary);
  font-weight: bold;
}

.payment-method input[type="radio"]:checked + span {
  color: var(--primary-color);
}

.payment-section {
  margin: 1rem 0;
}

#stripe-card-element {
  padding: 15px;
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 10px;
  background: var(--darker-bg);
}

.stripe-errors {
  color: var(--danger);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.payment-method-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: bold;
}

.payment-method-info i {
  color: var(--primary-color);
}

.payment-security {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  margin: 1rem 0;
  font-size: 0.9rem;
}

.payment-security i {
  color: var(--accent);
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  z-index: 1000;
  position: relative;
}

.checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: linear-gradient(45deg, #666, #888);
}

.checkout-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background: rgba(26, 26, 26, 0.8);
  position: relative;
  backdrop-filter: blur(5px);
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 20% 30%, #81d4fa, transparent),
    radial-gradient(2px 2px at 80% 20%, #4fc3f7, transparent),
    radial-gradient(1px 1px at 50% 70%, #29b6f6, transparent);
  background-size: 320px 220px;
  animation: stars 28s linear infinite reverse;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.reviews h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.review-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(88, 101, 242, 0.1);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.reviewer-info h4 {
  color: var(--text-primary);
  margin: 0;
  font-size: 1.1rem;
}

.stars {
  color: #ffd700;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.review-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.review-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-service {
  background: rgba(88, 101, 242, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid rgba(88, 101, 242, 0.1);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Review Form Styles */
.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-form label {
  color: var(--text-primary);
  font-weight: bold;
}

.review-form input,
.review-form textarea {
  padding: 15px;
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 10px;
  background: var(--darker-bg);
  color: var(--text-primary);
  font-size: 1rem;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.star-rating {
  display: flex;
  gap: 0.5rem;
  font-size: 2rem;
  margin: 0.5rem 0;
}

.star {
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star:hover,
.star.active {
  color: #ffd700;
}

.close-review {
  color: var(--text-secondary);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.close-review:hover {
  color: var(--text-primary);
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: rgba(26, 26, 26, 0.7);
  position: relative;
  backdrop-filter: blur(5px);
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 35% 25%, #29b6f6, transparent),
    radial-gradient(1px 1px at 65% 75%, #4fc3f7, transparent),
    radial-gradient(1px 1px at 90% 45%, #03a9f4, transparent),
    radial-gradient(2px 2px at 10% 55%, #81d4fa, transparent);
  background-size: 300px 180px;
  animation: stars 32s linear infinite;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.portfolio h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.portfolio-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.portfolio-item {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(88, 101, 242, 0.1);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(88, 101, 242, 0.2);
}

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  text-align: center;
  color: white;
}

.portfolio-info h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.portfolio-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.portfolio-tech span {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.portfolio-details {
  padding: 1.5rem;
}

.portfolio-details h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.portfolio-details p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.portfolio-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.portfolio-stats span {
  background: rgba(88, 101, 242, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.portfolio-cta {
  text-align: center;
  padding: 3rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid rgba(88, 101, 242, 0.1);
}

.portfolio-cta h3 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.portfolio-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-item {
    margin: 0 1rem;
  }

  .portfolio h2 {
    font-size: 2.5rem;
  }

  .portfolio-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .portfolio-cta {
    margin: 0 1rem;
    padding: 2rem 1rem;
  }

  .portfolio-cta h3 {
    font-size: 1.5rem;
  }
}

/* Footer */
.footer {
  background: rgba(17, 17, 17, 0.9);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(79, 195, 247, 0.3);
  position: relative;
  backdrop-filter: blur(5px);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 25% 40%, #4fc3f7, transparent),
    radial-gradient(1px 1px at 75% 60%, #29b6f6, transparent),
    radial-gradient(2px 2px at 50% 20%, #03a9f4, transparent);
  background-size: 200px 150px;
  animation: stars 40s linear infinite reverse;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  animation: footerBrandShine 4s linear infinite;
}

.footer-brand span {
  color: var(--primary-color);
}

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

.footer-links h4,
.footer-contact h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  color: var(--text-secondary);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes stars {
  from { transform: translateX(0); }
  to { transform: translateX(-200px); }
}

@keyframes shootingStar {
  0% {
    transform: translateX(-100px) translateY(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 100px)) translateY(-200px);
    opacity: 0;
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0 0 10px #4fc3f7;
  }
}

@keyframes nebulaDrift {
  0%, 100% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
    opacity: 0.2;
  }
  25% {
    transform: translateX(20px) translateY(-10px) rotate(90deg);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-10px) translateY(15px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: translateX(15px) translateY(5px) rotate(270deg);
    opacity: 0.5;
  }
}

@keyframes supportPulse {
  0% { box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3); }
  50% { box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6), 0 0 0 10px rgba(88, 101, 242, 0.1); }
  100% { box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3); }
}

/* Global Stellar Effects */
.global-shooting-star {
  position: fixed;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #4fc3f7, transparent);
  border-radius: 50%;
  box-shadow: 0 0 8px #4fc3f7;
  animation: shootingStar 4s linear infinite;
  z-index: -1;
  pointer-events: none;
}

.global-shooting-star::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #4fc3f7, transparent);
  transform: translateY(-50%);
}

.global-shooting-1 {
  top: 15%;
  left: -100px;
  animation-delay: 0s;
}

.global-shooting-2 {
  top: 45%;
  left: -100px;
  animation-delay: 3s;
}

.global-shooting-3 {
  top: 75%;
  left: -100px;
  animation-delay: 6s;
}

.global-shooting-4 {
  top: 25%;
  left: -100px;
  animation-delay: 9s;
}

.global-twinkling-star {
  position: fixed;
  background: #4fc3f7;
  border-radius: 50%;
  animation: twinkle 3s linear infinite;
  z-index: -1;
  pointer-events: none;
}

.global-twinkle-1 {
  top: 10%;
  left: 5%;
  width: 3px;
  height: 3px;
  animation-delay: 0s;
}

.global-twinkle-2 {
  top: 20%;
  right: 10%;
  width: 2px;
  height: 2px;
  animation-delay: 1s;
}

.global-twinkle-3 {
  top: 60%;
  left: 15%;
  width: 1px;
  height: 1px;
  animation-delay: 2s;
}

.global-twinkle-4 {
  top: 80%;
  right: 20%;
  width: 2px;
  height: 2px;
  animation-delay: 0.5s;
}

.global-twinkle-5 {
  top: 35%;
  left: 60%;
  width: 3px;
  height: 3px;
  animation-delay: 1.5s;
}

.global-twinkle-6 {
  top: 90%;
  right: 50%;
  width: 1px;
  height: 1px;
  animation-delay: 2.5s;
}

.global-nebula {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.2;
  animation: nebulaDrift 30s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.global-nebula-1 {
  top: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #4fc3f7 0%, transparent 70%);
  animation-delay: 0s;
}

.global-nebula-2 {
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #29b6f6 0%, transparent 70%);
  animation-delay: 10s;
}

.global-nebula-3 {
  top: 50%;
  left: 70%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #03a9f4 0%, transparent 70%);
  animation-delay: 20s;
}

/* Holiday Banner Styles */
.holiday-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
  background-size: 300% 300%;
  animation: holidayGradient 3s ease infinite;
  z-index: 4000;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  height: 80px;
}

.holiday-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.holiday-emoji {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

.holiday-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.holiday-text strong {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
}

.holiday-text span {
  font-size: 1rem;
  opacity: 0.9;
}

.holiday-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.holiday-close:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Holiday Discount Badges */
.holiday-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  animation: pulse 2s infinite;
  z-index: 10;
}

/* Original Price Strikethrough */
.original-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-right: 0.5rem;
  opacity: 0.7;
}

/* Holiday Animations */
@keyframes holidayGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes holidaySparkle {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Navbar positioning without holiday banner */
body {
  padding-top: 0;
}

.navbar {
  top: 0;
}

.hero {
  padding-top: 80px; /* Solo navbar */
}

/* Responsive Holiday Banner */
@media (max-width: 768px) {
  .holiday-banner {
    padding: 0.8rem;
    height: 70px;
  }

  .holiday-banner-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .holiday-emoji {
    font-size: 1.5rem;
  }

  .holiday-text strong {
    font-size: 1.1rem;
  }

  .holiday-text span {
    font-size: 0.9rem;
  }

  .holiday-close {
    position: absolute;
    right: 10px;
    top: 10px;
    transform: none;
  }

  .holiday-badge {
    top: -5px;
    right: -5px;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }

  .cart-success {
    top: 130px;
  }

  body.has-holiday-banner .navbar {
    top: 70px;
  }

  body.has-holiday-banner .hero {
    padding-top: 70px;
  }
}

/* Adjustments for the holiday banner */
/* If the banner is present, push the navbar down */
body.has-holiday-banner .navbar {
  top: 80px; /* Adjust this value based on the banner height */
}

/* If the banner is present, adjust hero padding */
body.has-holiday-banner .hero {
  padding-top: 80px; /* Adjust this value based on the banner height */
}


/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--darker-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services h2,
  .about-text h2,
  .contact h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 0 1rem;
  }

  .about-text {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .about-image {
    margin-bottom: 2rem;
  }

  .image-placeholder {
    width: 200px;
    height: 200px;
  }

  .image-placeholder i {
    font-size: 5rem;
  }

  .stats {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .stat {
    padding: 1.5rem;
    min-width: 200px;
    max-width: 300px;
  }

  .stat h3 {
    font-size: 2.5rem;
  }

  .stat p {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

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

  .form-group {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 5% auto;
    padding: 1rem;
    width: 95%;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .review-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .star-rating {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 0 20px;
  }

  .services,
  .about,
  .contact {
    padding: 50px 0;
  }
}

/* Support Widget Styles */
.support-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
}

.support-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
  border: none;
  min-width: 60px;
  justify-content: center;
}

.support-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(88, 101, 242, 0.4);
}

.support-button i {
  font-size: 1.2rem;
}

.support-text {
  font-size: 1rem;
  white-space: nowrap;
}

.support-button.pulse {
  animation: supportPulse 2s infinite;
}

@keyframes supportPulse {
  0% { box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3); }
  50% { box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6), 0 0 0 10px rgba(88, 101, 242, 0.1); }
  100% { box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3); }
}

/* Support Chat Modal */
.support-chat-modal .modal-content {
  max-width: 400px;
  width: 90%;
  height: 600px;
  max-height: 80vh;
  position: fixed;
  bottom: 100px;
  right: 30px;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chat-modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.support-avatar {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.support-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.support-status {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.support-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00d084;
  border-radius: 50%;
  display: inline-block;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-clear-btn {
  background: rgba(237, 66, 69, 0.2);
  border: 1px solid rgba(237, 66, 69, 0.5);
  color: #ed4245;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.admin-clear-btn:hover {
  background: #ed4245;
  color: white;
  transform: scale(1.1);
}

.close-chat {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-chat:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: var(--darker-bg);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.support-message .message-avatar {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.user-message .message-avatar {
  background: var(--card-bg);
  color: var(--text-primary);
  order: 2;
}

.user-message {
  flex-direction: row-reverse;
}

.message-content {
  background: var(--card-bg);
  padding: 12px 15px;
  border-radius: 18px;
  max-width: 250px;
  word-wrap: break-word;
}

.user-message .message-content {
  background: var(--primary-color);
  color: white;
}

.message-content p {
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.message-content p:last-of-type {
  margin-bottom: 0;
}

.message-time {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 5px;
}

.quick-actions {
  padding: 15px 20px;
  background: var(--card-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.quick-action-btn {
  background: rgba(88, 101, 242, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(88, 101, 242, 0.3);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.quick-action-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

.chat-input-area {
  background: var(--card-bg);
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.chat-input-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

#chat-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 25px;
  background: var(--darker-bg);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}

#chat-input:focus {
  border-color: var(--primary-color);
}

.send-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.send-button:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.send-button:disabled {
  background: var(--text-secondary);
  cursor: not-allowed;
  transform: none;
}

.chat-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  justify-content: center;
}

.chat-info i {
  color: var(--accent);
}

/* Responsive Support Widget */
@media (max-width: 768px) {
  .support-widget {
    bottom: 20px;
    right: 20px;
  }

  .support-button {
    padding: 12px 16px;
  }

  .support-text {
    display: none;
  }

  .support-chat-modal .modal-content {
    bottom: 80px;
    right: 20px;
    left: 20px;
    width: auto;
    max-width: none;
    height: 500px;
  }

  .quick-actions {
    flex-direction: column;
  }

  .quick-action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .support-chat-modal .modal-content {
    bottom: 80px;
    right: 10px;
    left: 10px;
    height: 450px;
  }

  .chat-messages {
    padding: 15px;
  }

  .message-content {
    max-width: 200px;
  }
}

/* Delivery Instructions Modal */
.delivery-modal-content {
  max-width: 700px !important;
  background: linear-gradient(135deg, var(--card-bg) 0%, #2c2f36 100%);
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 60px rgba(88, 101, 242, 0.3);
}

.delivery-header {
  text-align: center;
  padding: 1rem 0 2rem 0;
  border-bottom: 2px solid rgba(88, 101, 242, 0.3);
  margin-bottom: 2rem;
}

.delivery-logo {
  margin-bottom: 1rem;
}

.success-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00d084, #00b874);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.success-badge i {
  font-size: 1.5rem;
}

.product-info {
  background: var(--darker-bg);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
}

.product-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.product-name {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.instructions-section h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.instruction-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.discord-btn {
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.delivery-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(88, 101, 242, 0.3);
}

.support-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.support-info h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
  .delivery-modal-content {
    margin: 5% auto;
    max-width: 95%;
    padding: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    align-self: center;
  }

  .discord-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--dark-bg);
}

/*Navbar Animations*/
@keyframes navLogoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes navLogoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(79, 195, 247, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(79, 195, 247, 0.8));
  }
}

@keyframes navButtonGlow {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.2);
  }
  50% {
    box-shadow: 0 5px 25px rgba(79, 195, 247, 0.4), 0 0 15px rgba(79, 195, 247, 0.3);
  }
}

@keyframes navButtonShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}