/* Import military-style fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Apply Luckiest Guy font to headings and key elements */
h1, h2, h3, .section-title, .page-header h1 {
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo, .cta-button, .hero h2, .action-button {
  font-family: 'Luckiest Guy', cursive;
}

/* Base Styles */
:root {
  --purple-ops-primary: 282, 48%, 30%;
  --purple-ops-magenta: 328, 51%, 55%;
  --purple-ops-yellow: 44, 93%, 75%;
  --purple-ops-orange: 36, 95%, 60%;
  --purple-ops-green: 84, 28%, 33%;
  --purple-ops-brown: 15, 17%, 20%;
  --purple-ops-cream: 44, 86%, 90%;

  --text-light: 0, 0%, 100%;
  --text-dark: 282, 50%, 15%;

  /* Updated primary variables */
  --primary: var(--purple-ops-primary);
  --primary-dark: var(--purple-ops-brown);
  --primary-light: var(--purple-ops-cream);
  --secondary: var(--purple-ops-cream);
  --accent: var(--purple-ops-orange);
  --danger: 0, 100%, 50%;
  --success: var(--purple-ops-green);
  --gray-light: 0, 0%, 95%;
  --gray: 0, 0%, 80%;
  --gray-dark: 0, 0%, 20%;
}

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

/* Prevent horizontal overflow on all devices */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Ensure all containers respect viewport width */
.container, .main-nav, .footer-content {
  max-width: 100%;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  background: hsl(var(--purple-ops-cream));
  color: hsl(var(--text-dark));
  text-align: center;
  line-height: 1.6;
}

a {
  color: hsl(var(--purple-ops-primary));
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: hsl(var(--purple-ops-magenta));
}

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

/* Navigation */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: hsl(var(--purple-ops-primary));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  color: hsl(var(--purple-ops-yellow));
  letter-spacing: 1px;
}

.logo img {
  height: 100px;
  margin-right: 10px;
  filter: 
    drop-shadow(0 0 5px #ff00ff) 
    drop-shadow(0 0 10px #00ffff) 
    drop-shadow(0 0 15px #ffff00) 
    drop-shadow(0 0 20px #ff0080) 
    drop-shadow(0 0 25px #8000ff);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .main-title {
  font-size: 1.5rem;
  margin: 0;
}

.logo-text .subtitle {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}

.nav-links a {
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover, .nav-links a.active {
  color: hsl(var(--purple-ops-yellow));
  border-bottom: 2px solid hsl(var(--purple-ops-yellow));
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.dropdown-toggle:hover {
  color: hsl(var(--purple-ops-yellow));
  border-bottom: 2px solid hsl(var(--purple-ops-yellow));
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: hsl(var(--text-dark));
  text-decoration: none;
  border-bottom: none;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.dropdown-menu a:hover {
  background-color: hsl(var(--purple-ops-cream));
  color: hsl(var(--purple-ops-primary));
  border-bottom: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when active */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Header */
header {
  background-color: hsl(var(--purple-ops-primary));
  color: hsl(var(--purple-ops-yellow));
  padding: 3rem 1rem;
  text-align: center;
}

header h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: hsl(var(--purple-ops-yellow));
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

header p {
  font-size: 1.2rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.page-header {
  background-color: hsl(var(--purple-ops-primary));
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header.radial-background {
  background-image: url('../images/background%20image%20radial%20explosion.png');
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
}

.page-header.radial-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-header > * {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: hsl(var(--purple-ops-yellow));
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-header p {
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Hero Section */
.hero {
  position: relative;
  height: auto;
  min-height: 800px;
  overflow: visible;
}

.hero.radial-background {
  background-image: url('../images/background%20image%20radial%20explosion.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Hero Section Enhancements */
.hero-section {
  background: radial-gradient(circle at center, #3e0068 0%, #1a0033 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  background: url('/static/images/floating-candy.svg') repeat;
  opacity: 0.06;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  animation: floatCandy 60s linear infinite;
  z-index: 0;
}

@keyframes floatCandy {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

.hero-section h1, .hero-section p {
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px #000;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem 4rem;
  min-height: 800px;
}

.hero h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero .cta-button {
  margin-bottom: 4rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

/* Buttons */
.cta-button, .action-button, .cta-primary {
  display: inline-block;
  background-color: #FBBF24;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.action-button.secondary {
  background-color: transparent;
  color: #4B0082;
  border: 2px solid #4B0082;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.action-button.secondary:hover {
  background-color: #4B0082;
  color: #FFD700;
}

/* Mission Statement - Universal radial background */
.mission-statement {
  padding: 5rem 1rem;
  background-image: url('../images/background%20image%20radial%20explosion.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  z-index: 2;
}

.mission-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.mission-statement > * {
  position: relative;
  z-index: 2;
}

/* Force radial background on all mission-statement instances */
.mission-statement,
.about-section .mission-statement,
.hero.mission-statement,
section.mission-statement,
div.mission-statement {
  background-image: url('../images/background%20image%20radial%20explosion.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-color: transparent !important;
}

.mission-icon {
  font-size: 4rem;
  color: hsl(var(--purple-ops-magenta));
  margin-bottom: 1.5rem;
}

.mission-statement h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
  color: #FBBF24;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 10px;
  display: inline-block;
}

.mission-statement p {
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #CBC3E3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 10px;
  font-weight: 600;
}

/* Featured Products */
.featured-products {
  padding: 5rem 1rem;
  background-color: hsl(var(--purple-ops-cream));
  position: relative;
  z-index: 2;
}

.featured-products h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: hsl(var(--purple-ops-magenta));
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  border-color: hsl(var(--purple-ops-magenta));
}

.product-card h3,
.product-card h4 {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.product-card p {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.product-card .price-tag {
  color: hsl(var(--text-dark));
  text-shadow: none;
}

.product-icon {
  font-size: 3.5rem;
  color: hsl(var(--purple-ops-magenta));
  margin-bottom: 1.5rem;
}

.product-card h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #FBBF24;
  letter-spacing: 1px;
  text-shadow: 
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0 0 8px rgba(0, 0, 0, 0.8);
}

.product-card p {
  color: #CBC3E3;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.product-link {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4B0082, #663399);
  color: #FFD700;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  border: 2px solid #FFD700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75, 0, 130, 0.3);
}

.product-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.product-link:hover {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #4B0082;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.product-link:hover i {
  transform: translateX(5px);
}

/* Price tags */
.price-tag {
  background: linear-gradient(135deg, hsl(var(--purple-ops-orange)), hsl(var(--purple-ops-yellow)));
  color: hsl(var(--text-dark));
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  margin: 1.5rem 0;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Additional options section */
.additional-options {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.additional-options h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #C95FFF;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

.option-card,
.feature-card,
.benefit-item {
  background: rgba(0, 0, 0, 0.15);     /* Subtle background contrast */
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.8); /* Black outline around sections */
}

.option-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.option-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.option-card i {
  font-size: 2.5rem;
  color: #C95FFF;
  margin-bottom: 1rem;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.option-card h5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #FBBF24;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.option-card p {
  color: #F3E8FF;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Contact info styling */
.contact-info {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-icon {
  font-size: 2rem;
  color: #C95FFF !important; /* Purple icon */
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* Black outline around icon */
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.info-text {
  text-align: center;
}

.info-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--text-dark));
}

.info-text p {
  color: hsl(var(--gray-dark));
}

/* Simplified contact info */
.contact-info-simple {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-info-simple p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-info-simple strong {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-info-simple a {
  color: #C95FFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.contact-info-simple a:hover {
  color: #E67BFF;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0 0 5px #C95FFF;
}

/* CTA Section */
.cta-section {
  padding: 5rem 1rem;
  background-color: transparent;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-section p {
  color: #F3E8FF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Founding Partner Program Section - Better Readability */
.launch-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.launch-benefits-grid .benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.launch-benefits-grid .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.launch-benefits-grid .benefit-card h4 {
  color: #FFD700;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.launch-benefits-grid .benefit-card p {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.launch-benefits-grid .benefit-icon i {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: #CBC3E3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* About Page Styles - New Modern Layout */
.about-section,
.values-section,
.team-section {
  padding: 60px 20px;
  background: transparent;
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
  min-height: auto;
}

/* Ensure consistent section spacing for detail pages */
.about-page-background .values-section:last-of-type {
  margin-bottom: 2rem;
}

.about-page-background .team-section:last-of-type {
  margin-bottom: 2rem;
}

.section-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #D8BFD8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
}

.about-section p {
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  color: #CBC3E3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.values-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.value-card,
.team-member {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.value-card:hover,
.team-member:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.value-card h3,
.team-member h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: hsl(var(--purple-ops-yellow));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-card p,
.team-member p {
  color: #CBC3E3;
  line-height: 1.6;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About page specific background setup */
.about-page-background {
  background-image: url('../images/background%20image%20radial%20explosion.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}

.about-page-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.about-page-background > * {
  position: relative;
  z-index: 2;
}

.about-page-background .page-header {
  background-color: transparent;
  background-image: none;
}

.about-page-background .page-header::before {
  display: none;
}

/* Fix mobile menu z-index on about page and trial page */
.about-page-background .nav-links,
.trial-page-background .nav-links {
  z-index: 1003 !important;
}

.about-page-background .main-nav,
.trial-page-background .main-nav {
  position: relative;
  z-index: 1002;
}

/* Ensure mobile menu button is clickable on background pages */
.about-page-background .mobile-menu-btn,
.trial-page-background .mobile-menu-btn {
  position: relative;
  z-index: 1004;
  cursor: pointer;
}

/* Make sure nav links are visible and clickable on mobile */
@media (max-width: 768px) {
  .about-page-background .nav-links.active,
  .trial-page-background .nav-links.active {
    display: flex !important;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }

  .about-page-background .nav-links a,
  .trial-page-background .nav-links a {
    color: hsl(var(--text-dark)) !important;
  }
}

/* Products Section */
.products-section {
  padding: 4rem 1rem;
  background: transparent;
}

.products-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.products-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FBBF24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.products-intro p {
  font-size: 1.1rem;
  color: #CBC3E3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

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

.product-badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 10;
  pointer-events: none;
}

.badge {
  padding: 0.35rem 0.7rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: transform 0.3s ease;
  white-space: nowrap;
  pointer-events: auto;
}

.badge:hover {
  transform: scale(1.05) rotate(0deg) !important;
}

.badge:nth-child(1) {
  position: relative;
  transform: rotate(-5deg);
  margin-right: 5px;
}

.badge:nth-child(2) {
  position: relative;
  transform: rotate(3deg);
  margin-right: -2px;
}

.badge:nth-child(3) {
  position: relative;
  transform: rotate(-8deg);
  margin-right: 8px;
}

.badge:nth-child(4) {
  position: relative;
  transform: rotate(4deg);
  margin-right: -3px;
}

.badge.trending {
  background: linear-gradient(135deg, hsl(var(--purple-ops-orange)), hsl(var(--purple-ops-yellow)));
  color: hsl(var(--text-dark));
}

.badge.approved {
  background: linear-gradient(135deg, hsl(var(--purple-ops-green)), hsl(var(--purple-ops-primary)));
  color: white;
}

.badge.maintenance {
  background: linear-gradient(135deg, hsl(var(--purple-ops-primary)), hsl(var(--purple-ops-magenta)));
  color: white;
}

.badge.scalable {
  background: linear-gradient(135deg, hsl(var(--purple-ops-yellow)), hsl(var(--purple-ops-orange)));
  color: hsl(var(--text-dark));
}

.badge.business {
  background: linear-gradient(135deg, hsl(var(--purple-ops-magenta)), hsl(var(--purple-ops-primary)));
  color: white;
}

.product-features {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.product-features h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.machine-specs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.machine-specs p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.machine-placeholder {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  text-align: center;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.product-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-features li i {
  color: hsl(var(--purple-ops-yellow));
  margin-right: 0.5rem;
}

.candy-category {
  background: rgba(255, 255, 255, 0.2);
  color: hsl(var(--purple-ops-yellow));
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.machines-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.machines-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.machines-section > p {
  font-size: 1.1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

.machine-card {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.machine-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.machine-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.machine-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
}

.machine-specs {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.machine-specs h4 {
  color: hsl(var(--purple-ops-yellow));
  margin-bottom: 0.8rem;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.spec-grid {
  display: grid;
  gap: 0.5rem;
}

.spec-item {
  color: white;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.spec-item strong {
  color: hsl(var(--purple-ops-yellow));
}

.candy-products-section {
  margin-top: 2rem;
}

.candy-products-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.candy-products-section > p {
  font-size: 1.1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

.capsule-products-section,
.sticker-products-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.capsule-products-section h2,
.sticker-products-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.capsule-products-section > p,
.sticker-products-section > p {
  font-size: 1.1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

.business-plans-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.business-plans-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.business-plans-section > p {
  font-size: 1.1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

.product-action {
  margin-top: 1.5rem;
  text-align: center;
}

.special-operations {
  margin-top: 4rem;
}

.special-operations h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: hsl(var(--primary));
  text-align: center;
}

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

.operation-card {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
}

.operation-card h4 {
  color: #C95FFF;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
  font-size: 1rem;
}

.operation-card p,
.operation-card li {
  color: #CBC3E3;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
  font-weight: 500;
  font-size: 1rem;
}

.product-card p,
.product-card li {
  color: #f4f4f4;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
}

.operation-icon {
  font-size: 2.5rem;
  color: #ffdd57;
  text-shadow: 1px 1px 3px #000;
  margin-bottom: 1rem;
}

.fa-star {
  color: #d4aaff;
  text-shadow: 1px 1px 2px #000;
}

.operation-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--text-dark));
}

/* Best for section */
.best-for {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.best-for h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.best-for p {
  color: white;
  font-weight: 500;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.best-for i {
  color: hsl(var(--primary));
  margin-right: 0.5rem;
}

/* Service pricing and details */
.service-price {
  background-color: hsl(var(--accent));
  color: white;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin: 1rem 0;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Service Plan Add-on Section */
.service-plan-addon {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  padding: 3rem;
  margin: 3rem 0;
  border: 2px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-plan-addon h3 {
  text-align: center;
  color: hsl(var(--purple-ops-primary));
  margin-bottom: 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.addon-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.addon-icon {
  font-size: 3rem;
  color: hsl(var(--purple-ops-orange));
  flex-shrink: 0;
}

.addon-content h4 {
  color: hsl(var(--purple-ops-primary));
  margin-bottom: 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.addon-content p {
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.addon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.addon-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.addon-feature i {
  color: #4B0082;
  font-size: 1rem;
}

.addon-feature span {
  color: #333;
  font-size: 1rem;
}

.addon-price {
  background: linear-gradient(135deg, hsl(var(--purple-ops-orange)), hsl(var(--purple-ops-yellow)));
  color: hsl(var(--text-dark));
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  margin: 1.5rem 0;
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.addon-note {
  font-style: italic;
  color: #666;
  font-size: 1rem;
  margin-bottom: 0 !important;
}

.service-total {
  background-color: #4B0082;
  color: #FFD700;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  margin: 0.5rem 0;
  display: inline-block;
  font-size: 0.9rem;
}

.service-includes {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  Implementing the requested CSS changes for service includes styling for visibility.```text
  padding: 1rem;
  margin-top: 1rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-includes h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.service-includes li {
  padding: 0.2rem 0;
  color: white;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Testimonials */
.testimonials {
  padding: 4rem 1rem;
  text-align: center;
}

.testimonials h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  padding: 1rem;
  display: none;
}

.testimonial-quote {
  position: relative;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #e6d0ff 0%, #f0e6ff 100%);
  color: #2e004f;
  border-radius: 10px;
  margin: 1rem 0 1.5rem;
  box-shadow: 0 0 10px rgba(150, 80, 255, 0.4);
}

.testimonial-quote i.fa-quote-left {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #9640ff;
  font-size: 1.5rem;
  opacity: 0.7;
}

.testimonial-quote i.fa-quote-right {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #9640ff;
  font-size: 1.5rem;
  opacity: 0.7;
}

.testimonial-quote {
  position: relative;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.2), rgba(255, 68, 170, 0.2), rgba(108, 250, 255, 0.2), rgba(255, 170, 255, 0.2));
  background-size: 400% 400%;
  animation: splatterShift 15s ease infinite;
  border-radius: 10px;
  margin: 1rem 0 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  font-size: 1.1rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.testimonial-quote:hover {
  color: #ffffff;
}

@keyframes splatterShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.testimonial-quote p {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.testimonial-quote p:hover {
  color: #ffffff !important;
}

.testimonial-author {
  color: #fff;
  font-style: italic;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
}

.contact-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.contact-intro h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FBBF24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
}

.contact-intro p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
  text-align: center;
}

.info-icon {
  font-size: 2rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}

.info-text h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: white;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.info-text p {
  color: white;
  line-height: 1.6;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-text p a {
  color: #C95FFF !important; /* Purple link */
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* Black outline around text */
  text-decoration: none;
  font-weight: 600;
}

.info-text p a:hover {
  color: #E67BFF !important; /* Lighter purple on hover */
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Social Media Links Styling */
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4B0082, #663399);
  color: #FFD700;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, #663399, #4B0082);
}

.social-icons a.social-coming-soon {
  opacity: 0.4;
  cursor: not-allowed;
  background: linear-gradient(135deg, #666, #999);
  border-color: #999;
  color: #ccc;
}

.social-icons a.social-coming-soon:hover {
  transform: none;
  box-shadow: none;
  background: linear-gradient(135deg, #666, #999);
}

.contact-form-container h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: white;
  text-align: left;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.required {
  color: hsl(var(--danger));
}

input, textarea, select {
  width: 100%;
  padding: 1rem;
  border: 2px solid hsl(var(--gray));
  border-radius: 8px;
  font-size: 1rem;
  color: hsl(var(--text-dark));
  background-color: white;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px rgba(115, 60, 96, 0.1);
}

input.error, textarea.error {
  border-color: hsl(var(--danger));
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.8rem;
}

.submit-button {
  display: inline-block;
  background-color: #FBBF24;
  color: #000;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.submit-button i {
  margin-left: 0.8rem;
}

.submit-button:hover {
  background-color: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 1rem;
  background: transparent;
}

.faq-section h3 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15) !important;
}

.faq-item:last-child {
  background: rgba(255, 255, 255, 0.1) !important;
}

.faq-item:last-child:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  color: white;
  margin: 0;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.toggle-icon {
  color: hsl(var(--purple-ops-yellow));
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.faq-answer {
  padding: 0 2rem 2rem;
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Success Section */
.success-section {
  padding: 4rem 1rem;
}

.success-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: #4B0082;
  margin-bottom: 1rem;
}

.success-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
}

.success-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.next-steps {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.next-steps h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  text-align: center;
}

.status-timeline {
  margin-top: 2rem;
}

.status-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.status-item.active {
  opacity: 1;
}

.status-icon {
  width: 40px;
  height: 40px;
  background-color: hsl(var(--gray-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: hsl(var(--gray-dark));
}

.status-item.active .status-icon {
  background-color: hsl(var(--primary));
  color: white;
}

.status-text {
  flex: 1;
}

.status-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--text-dark));
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Recommendation Section */
.recommendation-section {
  padding: 4rem 1rem;
  background-color: hsl(var(--secondary));
}

.recommendation-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  text-align: center;
}

.recommendation-section > p {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.recommendation-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.recommendation-card:hover {
  transform: translateY(-5px);
}

.recommendation-icon {
  font-size: 2.5rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.recommendation-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--text-dark));
}

.recommendation-card p {
  margin-bottom: 1.5rem;
  color: hsl(var(--gray-dark));
}

.recommendation-link {
  color: hsl(var(--primary));
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.recommendation-link i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.recommendation-link:hover i {
  transform: translateX(5px);
}

/* Team Page Cartel Grid */
.cartel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cartel-member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  overflow: visible;
  position: relative;
  margin-top: 20px;
}

.cartel-avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(135deg, hsl(var(--purple-ops-primary)), hsl(var(--purple-ops-accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cartel-avatar i {
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cartel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* Specific image styling for team members */
.candy-commander-image,
.informant-nikki-image,
.candy-enforcer-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.cartel-member:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.cartel-avatar {
  font-size: 3rem;
  color: hsl(var(--purple-ops-primary));
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  height: 280px;
}

.character-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: 25% 25%;
  border-radius: 50%;
  border: 4px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  image-rendering: crisp_edges;
}

.character-image-small {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

/* Character Images - Main/Large Versions (All Same Size) */
.candy-commander-image,
.informant-nikki-image,
.candy-enforcer-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}

/* Character images in product cards (about page) */
.product-card .character-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

/* Individual Character Image Styles - Large Versions */
.candy-commander-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 5px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

.informant-nikki-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  border: 5px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

.candy-enforcer-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  border: 5px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

/* Individual Character Image Styles - Small Versions (About Page Team) */
.candy-commander-image-small {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 8px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

.informant-nikki-image-small {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  border: 4px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

.candy-enforcer-image-small {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
  border: 4px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

/* Captain Analytics - Specific sizing and positioning */
.captain-analytics-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 8px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

.captain-analytics-image-small {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 8px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

/* Lieutenant Logistics - Specific sizing and positioning */
.lieutenant-logistics-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 50%;
  border: 8px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

.lieutenant-logistics-image-small {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 50%;
  border: 8px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

/* Sergeant Sweet - Specific sizing and positioning */
.sergeant-sweets-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
  border: 8px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

.sergeant-sweets-image-small {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
  border: 8px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto;
}

/* Team member images in about page command structure - fallback for generic styling */
.team-member img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid hsl(var(--purple-ops-primary));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  image-rendering: crisp_edges;
  display: block;
  margin: 0 auto 1rem auto;
}

/* Contact page specific styling for Informant Nikki - no circle */
.contact-info .informant-nikki-image-small {
  border-radius: 0;
  border: none;
  box-shadow: none;
  width: 160px;
  height: auto;
  max-width: 160px;
}

.cartel-member h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--purple-ops-yellow));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cartel-member .role {
  font-size: 1rem;
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.cartel-member p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.badge-informant {
  background-color: hsl(var(--purple-ops-yellow));
  color: hsl(var(--text-dark));
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Section Mission */
.section-mission {
  background-color: hsl(var(--purple-ops-primary));
  color: hsl(var(--purple-ops-cream));
  padding: 4rem 1rem;
  text-align: center;
}

.section-mission h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Host Machine CTA Section */
.host-machine-cta {
  background-color: hsl(var(--purple-ops-primary));
  background-image: url('../images/background%20image%20radial%20explosion.png');
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
  color: hsl(var(--purple-ops-cream));
  padding: 7rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.host-machine-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.host-machine-cta > * {
  position: relative;
  z-index: 2;
}

.host-machine-cta h3 {
  font-family: 'Orbitron', monospace;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.host-machine-cta p {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.host-machine-cta .cta-button {
  font-size: 1.3rem;
  padding: 1.2rem 3.5rem;
  background-color: hsl(var(--purple-ops-orange));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.host-machine-cta .cta-button:hover {
  background-color: hsl(var(--purple-ops-yellow));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Purple Ops Enhanced Box Effects - Applied Site-wide */
.card, .option-card, .step-card, .benefit-card, .contact-method, 
.service-card, .plan-card, .feature-card, .blog-card, .team-card,
.about-card, .machine-card, .product-card, .info-card, .support-card {
  background: rgba(255, 215, 0, 0.1) !important;
  border: 2px solid #FFD700 !important;
  border-radius: 15px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2) !important;
}

.card:hover, .option-card:hover, .step-card:hover, .benefit-card:hover, 
.contact-method:hover, .service-card:hover, .plan-card:hover, 
.feature-card:hover, .blog-card:hover, .team-card:hover,
.about-card:hover, .machine-card:hover, .product-card:hover, 
.info-card:hover, .support-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4) !important;
  background: rgba(255, 215, 0, 0.15) !important;
}

/* Enhanced Sections with Purple Ops Glow */
.about-section, .service-section, .features-section, .pricing-section,
.blog-section, .team-section, .contact-section, .products-section,
.machines-section, .business-section, .hero-section {
  padding: 40px 20px !important;
}

.section-container, .container {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  margin: 20px auto;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

/* Enhanced Buttons */
.cta-button, .action-button, .submit-button, .btn-primary, .apply-btn {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
  color: #4B0082 !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 15px 30px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
  font-family: 'Luckiest Guy', cursive !important;
}

.cta-button:hover, .action-button:hover, .submit-button:hover, 
.btn-primary:hover, .apply-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6) !important;
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%) !important;
}

/* Enhanced Form Elements */
.form-group input, .form-group textarea, .form-group select,
.contact-form input, .contact-form textarea, .contact-form select {
  border: 2px solid #FFD700 !important;
  border-radius: 8px !important;
  background: rgba(255, 215, 0, 0.1) !important;
  color: #FFD700 !important;
  padding: 12px 15px !important;
  transition: all 0.3s ease !important;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: #FFA500 !important;
  background: rgba(255, 215, 0, 0.15) !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3) !important;
  outline: none !important;
}

/* Enhanced Text Colors */
.section-title, h1, h2, h3, h4 {
  color: #FFD700 !important;
  font-family: 'Luckiest Guy', cursive !important;
}

.section-description, .card p, .info-text {
  color: #FFA500 !important;
}

/* Enhanced Icons */
.mission-icon, .section-icon, .card-icon, .feature-icon {
  color: #FFD700 !important;
  font-size: 3rem !important;
  margin-bottom: 20px !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3) !important;
}

/* Enhanced Grid Layouts */
.grid, .features-grid, .services-grid, .team-grid, .products-grid,
.machines-grid, .blog-grid, .plans-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 30px !important;
  margin: 30px 0 !important;
}

/* Enhanced Page Headers */
.page-header {
  background: rgba(255, 215, 0, 0.1) !important;
  border: 2px solid #FFD700 !important;
  border-radius: 15px !important;
  padding: 40px 20px !important;
  margin-bottom: 40px !important;
  text-align: center !important;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2) !important;
}

/* Error Section */
.error-section {
  padding: 6rem 1rem;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1;
  margin-bottom: 1rem;
}

.error-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary-dark));
}

.error-content p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--gray-dark));
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Flash Messages */
.flash-messages {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;  max-width: 400px;
}

.flash-message {
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.flash-message.success {
  background-color: #4B0082;
  color: #FFD700;
}

.flash-message.error {
  background-color: hsl(var(--danger));
  color: white;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links li {
    margin: 0.5rem 0;
    width: 100%;
  }

  /* Mobile dropdown styles */
  .nav-links .nav-dropdown {
    width: 100%;
  }

  .nav-links .dropdown-toggle {
    color: hsl(var(--purple-ops-primary));
    text-shadow: none;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .nav-links .dropdown-toggle:hover {
    color: hsl(var(--purple-ops-magenta));
    background-color: hsl(var(--gray-light));
    border-bottom: none;
  }

  .nav-links .dropdown-menu {
    position: static;
    background-color: hsl(var(--gray-light));
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    display: none;
  }

  .nav-links .dropdown-menu.show {
    display: block !important;
  }

  .nav-links .dropdown-menu a {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    color: hsl(var(--purple-ops-primary));
    background-color: transparent;
  }

  .nav-links .dropdown-menu a:hover {
    background-color: white;
    color: hsl(var(--purple-ops-magenta));
  }

  .nav-links a {
    color: hsl(var(--purple-ops-primary));
    text-shadow: none;
    padding: 0.75rem 1rem;
    text-align: center;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-links a:hover, .nav-links a.active {
    color: hsl(var(--purple-ops-magenta));
    background-color: hsl(var(--gray-light));
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    padding: 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 45px;
  }

  .hero h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .hero .overlay {
    padding: 1rem;
    text-align: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .page-header {
    padding: 2rem 1rem;
  }

  .host-machine-cta h3 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .host-machine-cta p {
    font-size: 1.3rem;
  }

  .host-machine-cta {
    padding: 4rem 1rem;
  }
}

/* Candy Image Size Override - Set to 220px and 190px mobile */
.candy-image {
  position: relative;
  height: 220px !important;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.candy-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: 6px;
}

/* Specific cropping for individual candy images */
.candy-image img[src*="CottonCandy.WEBP"] {
  object-position: center 30%;
}

.candy-image img[src*="CottonCandyBubbleGum.WEBP"] {
  object-position: center 25%;
}

.candy-image img[src*="DubbleBubbleBubbleGum.WEBP"] {
  object-position: center 35%;
}

.candy-image img[src*="ohbaby.WEBP"] {
  object-position: center 40%;
}

.candy-image img[src*="BonzCandy.WEBP"] {
  object-position: center 30%;
}

.candy-image img[src*="BananaramaCandy.WEBP"] {
  object-position: center 35%;
}

.candy-image img[src*="rascalsimage.jpg"] {
  object-position: center 60%;
}

@media (max-width: 768px) {
  .candy-image {
    height: 190px !important;
  }
}

/* Enhanced Candy Text Styling - Make Text Larger and More Readable */
.candy-info h3 {
  font-size: 1.8rem !important;
  font-weight: bold !important;
  color: #FFD700 !important;
  margin-bottom: 1rem !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.candy-description {
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  color: #FFA500 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) !important;
}

.candy-stats {
  font-size: 1rem !important;
}

.candy-stats .stat {
  margin-bottom: 0.5rem !important;
  font-size: 1rem !important;
}

.candy-stats .label {
  font-weight: bold !important;
  color: #FFD700 !important;
}

.candy-stats .value {
  color: #FFA500 !important;
  font-weight: 600 !important;
}

/* Candy Preview Box - Shows only candy without background */
.candy-preview-only {
  background: transparent !important;
  padding: 20px !important;
}

.candy-preview-only img {
  object-fit: contain !important;
  background: transparent !important;
}



/* Testimonials Styles */
.testimonials-section {
  padding: 3rem 0;
}

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

.testimonial-card {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.testimonial-card.featured {
  border: 3px solid #00FF00;
  background: rgba(0, 255, 0, 0.1);
  transform: scale(1.02);
}

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

.host-info h3 {
  color: #FFD700;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.host-info p {
  color: #FFA500;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.earnings {
  text-align: right;
}

.earnings .amount {
  display: block;
  color: #00FF00;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
  margin-bottom: 0.5rem;
}

.earnings .label {
  color: #FFA500;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-content blockquote {
  color: #FFA500;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.7;
  border-left: 4px solid #FFD700;
  padding-left: 1.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.results {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  color: #FFA500;
  font-size: 1.1rem;
  font-weight: 500;
}

.result-item:last-child {
  margin-bottom: 0;
}

.result-item strong {
  color: #FFD700;
  font-weight: bold;
}

.success-stats {
  text-align: center;
  margin: 4rem 0;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 3rem 2rem;
}

.success-stats h2 {
  color: #FFD700;
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00FF00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  margin-bottom: 1rem;
}

.stat-label {
  color: #FFA500;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonial-notice {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: center;
}

.testimonial-notice h3 {
  color: #FFD700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.testimonial-notice p {
  color: #FFA500;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-section {
  text-align: center;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 4rem 2rem;
}

.cta-section h2 {
  color: #FFD700;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-section p {
  color: #FFA500;
  margin-bottom: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button.mega {
  font-size: 1.4rem;
  padding: 1.5rem 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .earnings {
    text-align: left;
  }
  
  .success-stats h2 {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
  
  .testimonial-notice h3 {
    font-size: 2rem;
  }
  
  .testimonial-notice p {
    font-size: 1.2rem;
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
  }
  
  .cta-section p {
    font-size: 1.3rem;
  }
}

/* FAQ Styles */
.faq-section {
  padding: 3rem 0;
}

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

.faq-category {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 2rem;
}

.faq-category h2 {
  color: #FFD700;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 1rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item h3 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.faq-item p {
  color: #FFA500;
  line-height: 1.6;
  font-size: 1rem;
}

.still-have-questions {
  text-align: center;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 3rem 2rem;
}

.still-have-questions h2 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.still-have-questions p {
  color: #FFA500;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.cta-button.secondary:hover {
  background: #FFD700;
  color: #000;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faq-category {
    padding: 1.5rem;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile Touch Interactions */
.candy-card.touch-active {
  transform: scale(0.98);
  transition: transform 0.15s ease;
}

.touch-pressed {
  transform: scale(0.95);
  opacity: 0.8;
  transition: all 0.1s ease;
}

/* Candy Voting Styles */
.candy-voting {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center;
}

.voting-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.vote-btn {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-btn:hover:not(:disabled) {
  background: #FFD700;
  color: #000;
  transform: scale(1.1);
}

.vote-btn.voted {
  background: #00FF00;
  border-color: #00FF00;
  color: #000;
}

.vote-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.vote-count {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD700;
  min-width: 60px;
}

.voting-label {
  color: #FFA500;
  font-size: 0.9rem;
}

.vote-confirmation {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 255, 0, 0.9);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 1000;
  animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  20%, 80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Popularity Badges */
.popularity-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
}

.popularity-badge.rank-1 {
  background: linear-gradient(45deg, #FFD700, #FFA500);
}

.popularity-badge.rank-2 {
  background: linear-gradient(45deg, #C0C0C0, #A9A9A9);
}

.popularity-badge.rank-3 {
  background: linear-gradient(45deg, #CD7F32, #B8860B);
}

/* Refresh Indicator */
.refresh-indicator {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 215, 0, 0.9);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  z-index: 1000;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .candy-voting {
    padding: 0.8rem;
  }
  
  .vote-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .voting-buttons {
    gap: 0.8rem;
  }
  
  .vote-count {
    font-size: 1.3rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .cta-button, .vote-btn, .candy-card {
    min-height: 44px;
    min-width: 44px;
  }
  
  .nav-links a {
    padding: 1rem;
  }
}

/* GPS Location Finder Styles */
.location-error {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid #FF6B6B;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #FF6B6B;
}

.location-error i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.manual-location-input {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.manual-location-input h3 {
  color: #FFD700;
  margin-bottom: 1rem;
}

.location-input-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.location-input-group input {
  padding: 0.8rem;
  border: 2px solid #FFD700;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
  min-width: 300px;
}

.user-location-display {
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid #00FF00;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.location-indicator {
  color: #00FF00;
}

.location-indicator i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.accuracy {
  font-size: 0.9rem;
  color: #FFA500;
  margin-top: 0.5rem;
}

.nearby-machines-results {
  margin: 2rem 0;
}

.nearby-machines-results h3 {
  color: #FFD700;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.machines-list {
  display: grid;
  gap: 1rem;
}

.machine-result-card {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.machine-result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.machine-info h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.machine-info .address {
  color: #FFA500;
  margin-bottom: 0.5rem;
}

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

.machine-stats span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

.distance {
  color: #00FF00;
  border: 1px solid #00FF00;
}

.earnings {
  color: #FFD700;
  border: 1px solid #FFD700;
}

.direction-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.direction-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

.machine-info-window {
  min-width: 200px;
  text-align: center;
}

.machine-info-window h4 {
  color: #8a2be2;
  margin-bottom: 0.5rem;
}

.machine-info-window p {
  margin-bottom: 0.5rem;
  color: #333;
}

@media (max-width: 768px) {
  .location-input-group {
    flex-direction: column;
  }
  
  .location-input-group input {
    min-width: 100%;
  }
  
  .machine-result-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .machine-stats {
    justify-content: center;
  }
}

/* Real-time Inventory Checker Styles */
.inventory-checker {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.inventory-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 1rem;
}

.inventory-header h3 {
  color: #FFD700;
  margin: 0;
  font-size: 1.5rem;
}

.last-updated {
  color: #FFA500;
  font-size: 0.9rem;
}

.location-inventory-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.location-inventory-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

.location-header h4 {
  color: #FFD700;
  margin: 0;
  font-size: 1.3rem;
}

.location-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.total-items {
  color: #00FF00;
  background: rgba(0, 255, 0, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  border: 1px solid #00FF00;
}

.low-stock-alert {
  color: #FF6B6B;
  background: rgba(255, 107, 107, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  border: 1px solid #FF6B6B;
  animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.candy-inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.candy-inventory-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  border-left: 4px solid #FFD700;
}

.candy-inventory-item.good {
  border-left-color: #00FF00;
}

.candy-inventory-item.medium {
  border-left-color: #FFA500;
}

.candy-inventory-item.low {
  border-left-color: #FF6B6B;
}

.candy-name {
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stock-info {
  margin-bottom: 0.5rem;
}

.stock-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.stock-fill {
  height: 100%;
  background: linear-gradient(to right, #00FF00, #FFD700);
  transition: width 0.3s ease;
}

.candy-inventory-item.medium .stock-fill {
  background: linear-gradient(to right, #FFA500, #FFD700);
}

.candy-inventory-item.low .stock-fill {
  background: linear-gradient(to right, #FF6B6B, #FFA500);
}

.stock-text {
  color: #FFA500;
  font-size: 0.9rem;
  text-align: center;
}

.status-indicator {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.status-indicator.good {
  color: #00FF00;
}

.status-indicator.medium {
  color: #FFA500;
}

.status-indicator.low {
  color: #FF6B6B;
}

.inventory-error {
  background: rgba(255, 107, 107, 0.1);
  border: 2px solid #FF6B6B;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  color: #FF6B6B;
}

.inventory-error i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.retry-btn {
  background: #FF6B6B;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.retry-btn:hover {
  background: #FF5252;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .inventory-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .location-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .location-stats {
    justify-content: center;
  }
  
  .candy-inventory-grid {
    grid-template-columns: 1fr;
  }
}

/* Host Application Wizard Styles */
.wizard-section {
  padding: 3rem 0;
}

.wizard-progress {
  margin-bottom: 3rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #FFD700, #00FF00);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.step.active, .step.completed {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFA500;
  font-weight: bold;
  margin-bottom: 0.5rem;
  border: 2px solid transparent;
}

.step.active .step-number {
  background: #FFD700;
  color: #000;
  border-color: #FFD700;
}

.step.completed .step-number {
  background: #00FF00;
  color: #000;
  border-color: #00FF00;
}

.step-label {
  color: #FFA500;
  font-size: 0.9rem;
  text-align: center;
}

.wizard-form {
  max-width: 800px;
  margin: 0 auto;
}

.wizard-step {
  display: none;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 2rem;
}

.wizard-step.active {
  display: block;
}

.wizard-step h3 {
  color: #FFD700;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #FFD700;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00FF00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-prev, .btn-next, .btn-submit {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-prev {
  background: rgba(255, 255, 255, 0.2);
  color: #FFD700;
  border: 2px solid #FFD700;
}

.btn-next, .btn-submit {
  background: linear-gradient(45deg, #FFD700, #00FF00);
  color: #000;
}

.btn-prev:hover {
  background: #FFD700;
  color: #000;
}

.btn-next:hover, .btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.application-summary {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.application-summary h4 {
  color: #FFD700;
  margin-bottom: 1rem;
}

.summary-item {
  margin-bottom: 0.5rem;
  color: #FFA500;
  font-size: 1.1rem;
  line-height: 1.5;
}

.terms-agreement {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: #FFA500;
  line-height: 1.6;
  font-size: 1.1rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.wizard-success {
  text-align: center;
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid #00FF00;
  border-radius: 15px;
  padding: 3rem;
}

.success-content i {
  font-size: 4rem;
  color: #00FF00;
  margin-bottom: 1rem;
}

.success-content h3 {
  color: #00FF00;
  margin-bottom: 1rem;
}

.success-content p {
  color: #FFA500;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.next-steps {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}

.next-steps h4 {
  color: #FFD700;
  margin-bottom: 1rem;
}

.next-steps ul {
  color: #FFA500;
  list-style: none;
  padding: 0;
}

.next-steps li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.5;
}

.next-steps li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00FF00;
  font-weight: bold;
}



@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .wizard-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-prev, .btn-next, .btn-submit {
    width: 100%;
  }
}

/* Newsletter Signup Styles */
.newsletter-section {
  padding: 3rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.newsletter-benefits h3 {
  color: #FFD700;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: bold;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.benefit-item i {
  color: #FFD700;
  font-size: 2rem;
  margin-top: 0.5rem;
}

.benefit-text h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.benefit-text p {
  color: #FFA500;
  line-height: 1.6;
  font-size: 1.1rem;
}

.signup-form-container {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 2rem;
}

.newsletter-form h3 {
  color: #FFD700;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.newsletter-form .form-group {
  margin-bottom: 1.5rem;
}

.newsletter-form label {
  display: block;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #FFD700;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #FFA500;
  font-size: 1.1rem;
  line-height: 1.5;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin-right: 0.8rem;
}

.subscribe-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #FFD700, #00FF00);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.subscribe-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.privacy-notice {
  text-align: center;
  color: #FFA500;
  font-size: 1.1rem;
  line-height: 1.6;
}

.privacy-notice a {
  color: #FFD700;
  text-decoration: underline;
}

.newsletter-success {
  text-align: center;
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid #00FF00;
  border-radius: 15px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.newsletter-success i {
  font-size: 4rem;
  color: #00FF00;
  margin-bottom: 1rem;
}

.newsletter-success h3 {
  color: #00FF00;
  margin-bottom: 1rem;
}

.newsletter-success p {
  color: #FFA500;
  margin-bottom: 2rem;
}

.welcome-bonus {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.welcome-bonus h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.welcome-bonus p {
  color: #FFA500;
  margin-bottom: 0;
}

.recent-newsletters {
  margin-top: 4rem;
}

.recent-newsletters h3 {
  color: #FFD700;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.newsletter-previews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.preview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.preview-date {
  color: #FFA500;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.preview-card h4 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.preview-card p {
  color: #FFA500;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Loyalty Program Styles */
.loyalty-section {
  padding: 3rem 0;
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00FF00;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #FFA500;
  font-size: 1.3rem;
  font-weight: bold;
}

.how-it-works h3 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.step-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #FFD700, #00FF00);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step-card h4 {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.step-card p {
  color: #FFA500;
  line-height: 1.6;
  font-size: 1.1rem;
}

.earning-opportunities h3,
.membership-tiers h3,
.rewards-catalog h3,
.seasonal-promotions h3 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

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

.earning-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.earning-card:hover {
  transform: translateY(-2px);
  border-color: #FFD700;
}

.earning-icon {
  color: #FFD700;
  font-size: 2.5rem;
}

.earning-info h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.points-value {
  color: #00FF00;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.earning-info p {
  color: #FFA500;
  font-size: 1.1rem;
  line-height: 1.5;
}

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

.tier-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid;
  transition: transform 0.3s ease;
}

.tier-card:hover {
  transform: scale(1.02);
}

.tier-card.bronze {
  border-color: #CD7F32;
}

.tier-card.silver {
  border-color: #C0C0C0;
}

.tier-card.gold {
  border-color: #FFD700;
}

.tier-header h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.tier-requirement {
  color: #FFA500;
  margin-bottom: 1.5rem;
}

.tier-benefits ul {
  list-style: none;
  padding: 0;
}

.tier-benefits li {
  color: #FFA500;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.5;
}

.tier-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00FF00;
  font-weight: bold;
}

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

.reward-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.reward-item:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.reward-image i {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 1rem;
}

.reward-item h4 {
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.points-cost {
  color: #00FF00;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reward-item p {
  color: #FFA500;
  font-size: 1.1rem;
  line-height: 1.5;
}

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

.promotion-card {
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid;
}

.promotion-card.active {
  background: rgba(0, 255, 0, 0.1);
  border-color: #00FF00;
}

.promotion-card.upcoming {
  background: rgba(255, 215, 0, 0.1);
  border-color: #FFD700;
}

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

.promotion-header h4 {
  color: #FFD700;
  margin: 0;
}

.promotion-period {
  color: #FFA500;
  font-size: 1.1rem;
  font-weight: bold;
}

.promotion-details p {
  color: #FFA500;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.promotion-bonus {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #00FF00;
  color: #000;
  border-radius: 20px;
  font-weight: bold;
}

.loyalty-signup {
  text-align: center;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 3rem;
}

.signup-cta h3 {
  color: #FFD700;
  margin-bottom: 1rem;
}

.signup-cta p {
  color: #FFA500;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-previews {
    grid-template-columns: 1fr;
  }
  
  .earning-grid {
    grid-template-columns: 1fr;
  }
  
  .tiers-grid {
    grid-template-columns: 1fr;
  }
  
  .rewards-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
  }
  
  .signup-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 700px;
    padding-bottom: 4rem;
  }

  .hero .overlay {
    padding: 2rem 1rem 6rem;
    min-height: 700px;
    justify-content: flex-start;
    padding-top: 3rem;
  }

  .hero .cta-button {
    margin-bottom: 3rem;
    margin-top: 2rem;
    width: calc(100% - 2rem);
    max-width: 300px;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }

  .hero h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .mission-statement h3,
  .featured-products h3 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .host-machine-cta h3 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin: 0.5rem auto;
    display: block;
    max-width: 250px;
  }

  /* Fix small mobile viewport issues */
  .container {
    padding: 0 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Fix small mobile text overflow */
  h1, h2, h3, h4 {
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Fix small mobile card spacing */
  .product-card, .operation-card {
    margin: 1rem 0;
    padding: 1.5rem 1rem;
  }

  /* Fix small mobile form elements */
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.8rem;
  }

  /* Fix small mobile navigation */
  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 50px;
  }

  /* Fix small mobile grid gaps */
  .product-grid, .cartel-grid, .values-grid {
    gap: 1rem;
    margin: 1rem 0;
  }
}

/* Trial page background styling */
.trial-page-background {
  background-image: url('../images/background%20image%20radial%20explosion.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}

.trial-page-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.trial-page-background > * {
  position: relative;
  z-index: 2;
}

.trial-page-background .page-header {
  background-color: transparent;
  background-image: none;
}

.trial-page-background .page-header::before {
  display: none;
}

.trial-page-background h2,
.trial-page-background h3,
.trial-page-background h4,
.trial-page-background p,
.trial-page-background li {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Override section backgrounds for radial background pages */
.mission-statement {
    position: relative;
}

/* Additional icon styling for cartel avatars */
.cartel-avatar i {
  font-size: 3rem;
  color: #C95FFF !important; /* Purple icon */
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* Black outline around icon */
}

/* Unify Background Theme - Products Page */
.products-section,
.host-machine-cta,
.testimonials,
.cta-section {
  background-image: url('../images/background%20image%20radial%20explosion.png');
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
  position: relative;
  color: white;
}

.products-section::before,
.host-machine-cta::before,
.testimonials::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.products-section > *,
.host-machine-cta > *,
.testimonials > *,
.cta-section > * {
  position: relative;
  z-index: 2;
}

/* Enhance Icon Visibility */
.product-card .product-icon,
.operation-card .operation-icon {
  color: #b84bff; /* candy purple */
  text-shadow: 0 0 2px #000; /* black outline */
  font-size: 1.8rem;
}

/* Match CTA Button Styling */
.cta-button {
  background-color: #ffba00;
  color: #222;
  font-weight: bold;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: inherit;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #e0a500;
}

/* Section Header Consistency */
h2,
.special-operations h3,
.testimonials h3 {
  font-family: inherit;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 1.5rem;
}

.products-intro h2 {
  color: #FBBF24;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Testimonials Enhancements */
.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-left: 4px solid #ffba00;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.testimonial p {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.testimonial-author p {
  color: #ffba00;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Enhanced Icon Contrast */
.product-card .fas,
.operation-card .fas,
.product-badge i,
.operation-icon i,
.testimonial .fas {
  color: #b84bff;
  text-shadow: 0 0 2px #000;
}

/* Section Spacing Consistency */
.products-section,
.special-operations,
.testimonials,
.host-machine-cta,
.cta-section {
  margin-bottom: 3rem;
}

/* Product Features Enhanced Contrast */
.product-features h4,
.best-for h4 {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.product-features li,
.best-for p {
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.product-features li i,
.best-for i,
.fa-check {
  color: #d4aaff;
  text-shadow: 1px 1px 2px #000;
}

/* Remove conflicting white backgrounds */
.products-section .product-features,
.products-section .best-for {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

/* Additional icon styling for cartel avatars */
.cartel-avatar i {
  font-size: 3rem;
  color: #C95FFF !important; /* Purple icon */
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* Black outline around icon */
}
/* Footer Styles */
footer {
  background-color: hsl(var(--purple-ops-primary));
  color: white;
  padding: 3rem 1rem 1rem;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  height: 250px;
  width: auto;
  border: none;
  outline: none;
  filter: 
    drop-shadow(0 0 5px #ff00ff) 
    drop-shadow(0 0 10px #00ffff) 
    drop-shadow(0 0 15px #ffff00) 
    drop-shadow(0 0 20px #ff0080) 
    drop-shadow(0 0 25px #8000ff);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.footer-logo h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  margin: 0;
  color: hsl(var(--purple-ops-yellow));
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons a {
  color: hsl(var(--purple-ops-yellow));
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-bottom a {
  color: hsl(var(--purple-ops-yellow));
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    height: 200px;
    border: none;
    outline: none;
    filter: 
      drop-shadow(0 0 5px #ff00ff) 
      drop-shadow(0 0 10px #00ffff) 
      drop-shadow(0 0 15px #ffff00) 
      drop-shadow(0 0 20px #ff0080) 
      drop-shadow(0 0 25px #8000ff);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .footer-logo h3 {
    font-size: 1.2rem;
  }
}

/* CSS adjustments for contrast and button consistency in the special operations section */
.special-operations h3,
.special-operations h4,
.special-operations p,
.special-operations li {
  color: #f4f4f4;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
  font-weight: 500;
}

.fa-star {
  color: #d4aaff; /* Light purple */
  text-shadow: 1px 1px 2px #000;
}

.operation-card .cta-button,
.special-operations .cta-button,
.special-operations .service-price {
  background-color: #ffbb00;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
}
/* Adding a subtle border to the special operations cards */
.special-operations .operation-card {
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
}

/* Increasing logo image size in both main navigation and mobile navigation */
.logo img {
  height: 100px;
}

@media (max-width: 768px) {
  .logo img {
    height: 75px;
    filter: 
      drop-shadow(0 0 5px #ff00ff) 
      drop-shadow(0 0 10px #00ffff) 
      drop-shadow(0 0 15px #ffff00) 
      drop-shadow(0 0 20px #ff0080) 
      drop-shadow(0 0 25px #8000ff);
  }

  /* Fix mobile card alignment */
  .product-card, .operation-card, .recommendation-card {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  /* Fix mobile form alignment */
  .contact-form-container, .contact-info {
    margin: 1rem 0;
    padding: 2rem 1rem;
  }

  /* Fix mobile grid overflow */
  .product-grid, .cartel-grid, .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
  }

  /* Fix mobile text alignment */
  .page-header, .hero, .mission-statement {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Fix mobile button overflow */
  .cta-button, .submit-button, .product-link {
    width: 100%;
    max-width: 280px;
    margin: 1rem auto;
    display: block;
    text-align: center;
    box-sizing: border-box;
  }

  /* Fix mobile image sizing */
  .mission-icon img, .product-icon img {
    width: 200px;
    height: 200px;
    max-width: 100%;
  }

  /* Fix mobile navigation spacing */
  .main-nav {
    padding: 0.75rem 1rem;
  }

  /* Fix mobile footer alignment */
  .footer-content {
    padding: 2rem 1rem;
  }

  /* Fix mobile table overflow */
  .requests-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Earnings Disclaimer Styling */
.earnings-disclaimer {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.earnings-disclaimer p {
  color: white;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Business Owner Login Section */
.business-owner-login {
  background: rgba(75, 0, 130, 0.1);
  border: 2px solid #4B0082;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
}

.business-owner-login h3 {
  color: #4B0082;
  margin-bottom: 15px;
}

.business-owner-login p {
  margin-bottom: 20px;
  color: #333;
}

.business-owner-login .cta-button {
  background: linear-gradient(135deg, #4B0082, #8A2BE2);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.business-owner-login .cta-button:hover {
  background: linear-gradient(135deg, #8A2BE2, #4B0082);
  transform: translateY(-2px);
}

/* Portal Selection Styles */
.portal-types {
  margin: 30px 0;
}

.portal-info {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
  height: 100%;
}

.portal-info.customer-portal {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}

.portal-info.admin-portal {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.portal-info h3 {
  margin-bottom: 15px;
  font-weight: bold;
}

.portal-info.customer-portal h3 {
  color: #28a745;
}

.portal-info.admin-portal h3 {
  color: #dc3545;
}

.portal-info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.portal-info li {
  padding: 5px 0;
  color: #333;
}

.portal-info li:before {
  content: "✓ ";
  font-weight: bold;
  margin-right: 5px;
}

.portal-info.customer-portal li:before {
  color: #28a745;
}

.portal-info.admin-portal li:before {
  color: #dc3545;
}

/* Dropdown divider */
.dropdown-divider {
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 8px 0;
  border: none;
}
}