/* ===== CUSTOM NEON SIGN E-COMMERCE TEMPLATE ===== */
/* Bootstrap 5 Compatible - NO OVERRIDES */

/* Color Palette - Exactly 5 Primary Colors + Shades */
:root {
  /* Primary Neon Colors */
  --neon-electric-blue: #0038ee;
  --neon-hot-pink: #ff092a;
  --neon-lime-green: #02e74ef1;
  --neon-purple: #eb09f3;
  --neon-orange: #eb9d0b;
  
  /* Light Shades */
  --neon-electric-blue-light: rgba(10, 240, 255, 0.30);
  --neon-hot-pink-light: rgba(248, 12, 115, 0.30);
  --neon-lime-green-light: rgba(27, 255, 17, 0.30);
  --neon-purple-light: rgba(188, 0, 255, 0.30);
  --neon-orange-light: rgba(255, 129, 0, 0.30);
  
  /* Dark Shades */
  --neon-electric-blue-dark: #07a8ba;
  --neon-hot-pink-dark: #b60f58;
  --neon-lime-green-dark: #1ae213;
  --neon-purple-dark: #a200e3;
  --neon-orange-dark: #e34c0b;
  
  /* Additional Colors */
  --dark-bg: #3b3b3b;
  --darker-bg: #050505;
  --gradient-primary: linear-gradient(135deg, var(--neon-electric-blue), var(--neon-purple));
  --gradient-secondary: linear-gradient(135deg, var(--neon-hot-pink), var(--neon-orange));
}

/* Typography - Conservative Sizing */
body {
  font-family: 'Arial', sans-serif;
  background-color: var(--dark-bg);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Conservative Header Sizing */
.navbar-brand {
  font-size: 1.36rem;
  font-weight: 600;
  color: var(--neon-electric-blue);
  text-shadow: 0 0 11px var(--neon-electric-blue-light);
}

h1 {
  font-size: 2.60rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.58rem;
  font-weight: 500;
  margin-bottom: 0.68rem;
}

h4 {
  font-size: 1.34rem;
  font-weight: 500;
  margin-bottom: 0.67rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Neon Glow Effects */
.neon-glow-blue {
  color: var(--neon-electric-blue);
  text-shadow: 0 0 5px var(--neon-electric-blue-light), 0 0 10px var(--neon-electric-blue-light);
}

.neon-glow-pink {
  color: var(--neon-hot-pink);
  text-shadow: 0 0 5px var(--neon-hot-pink-light), 0 0 10px var(--neon-hot-pink-light);
}

.neon-glow-green {
  color: var(--neon-lime-green);
  text-shadow: 0 0 5px var(--neon-lime-green-light), 0 0 10px var(--neon-lime-green-light);
}

.neon-glow-purple {
  color: var(--neon-purple);
  text-shadow: 0 0 5px var(--neon-purple-light), 0 0 10px var(--neon-purple-light);
}

.neon-glow-orange {
  color: var(--neon-orange);
  text-shadow: 0 0 5px var(--neon-orange-light), 0 0 10px var(--neon-orange-light);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, var(--neon-electric-blue-light) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, var(--neon-hot-pink-light) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, var(--neon-purple-light) 0%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  background: var(--gradient-secondary);
  animation: float 8s ease-in-out infinite reverse;
}

/* Card Enhancements */
.neon-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--neon-electric-blue-dark);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.neon-card:hover {
  border-color: var(--neon-electric-blue);
  box-shadow: 0 0 24px var(--neon-electric-blue-light);
  transform: translateY(-5px);
}

.service-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--neon-purple-dark);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 29px var(--neon-purple-light);
  transform: translateY(-8px);
}

.price-badge {
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border-radius: 21px;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-top: 1rem;
}

/* Form Styles */
.form-control {
  background: rgba(9, 9, 9, 0.80);
  border: 1px solid var(--neon-electric-blue-dark);
  color: white;
  border-radius: 6px;
}

.form-control:focus {
  background: rgba(3, 3, 3, 0.90);
  border-color: var(--neon-electric-blue);
  box-shadow: 0 0 10px var(--neon-electric-blue-light);
  color: white;
}

.form-control::placeholder {
  color: #989898;
}

.btn-neon {
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background: var(--gradient-secondary);
  box-shadow: 0 0 17px var(--neon-hot-pink-light);
  transform: translateY(-2px);
  color: white;
}

/* Navigation */
.navbar {
  background: rgba(5, 5, 5, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neon-electric-blue-dark);
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--neon-electric-blue);
}

/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--neon-electric-blue-dark);
  color: #b4a8a9;
}

.footer a {
  color: var(--neon-electric-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--neon-hot-pink);
}

/* Team Member Cards */
.team-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--neon-lime-green-dark);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--neon-lime-green);
  box-shadow: 0 0 23px var(--neon-lime-green-light);
}

.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--neon-lime-green-dark);
}

/* FAQ Cards */
.faq-card {
  background: rgba(12, 12, 12, 0.8);
  border: 1px solid var(--neon-orange-dark);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 0 25px var(--neon-orange-light);
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--neon-hot-pink-dark);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--neon-hot-pink);
  box-shadow: 0 0 20px var(--neon-hot-pink-light);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Accessibility - Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .shape-1,
  .shape-2 {
    animation: none;
  }
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

/* Process Steps */
.process-step {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--neon-lime-green-dark);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  border-color: var(--neon-lime-green);
  box-shadow: 0 0 16px var(--neon-lime-green-light);
}

.step-number {
  background: var(--gradient-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

/* Price Plan Cards */
.price-plan-card {
  background: rgba(8, 8, 8, 0.9);
  border: 2px solid var(--neon-purple-dark);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-plan-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 33px var(--neon-purple-light);
  transform: translateY(-10px);
}

.price-plan-card.featured {
  border-color: var(--neon-hot-pink);
  box-shadow: 0 0 20px var(--neon-hot-pink-light);
}

.price-plan-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-secondary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.84rem;
  font-weight: 600;
}

.price-display {
  font-size: 3rem;
  font-weight: 700;
  color: var(--neon-electric-blue);
  margin: 1rem 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li:last-child {
  border-bottom: none;
}

/* Breadcrumb Styling */
.breadcrumb-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--neon-electric-blue-dark);
}

/* 5-Item Layout Enhancements */
.row.justify-content-center > [class*="col-"] {
  display: flex;
  align-items: stretch;
}

.row.justify-content-center > [class*="col-"] > * {
  width: 100%;
}

/* Ensure equal height cards in 5-item layouts */
.row.justify-content-center .neon-card,
.row.justify-content-center .service-card,
.row.justify-content-center .team-card,
.row.justify-content-center .process-step,
.row.justify-content-center .price-plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.row.justify-content-center .team-card > div:last-child {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Review cards equal height fix */
.row.justify-content-center .review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
