:root {
  /* E-sports Color Palette - 5 primary colors + shades */
  --primary-electric: #08f1ff;
  --primary-neon: #60fa1a;
  --primary-purple: #7526e4;
  --primary-orange: #f63a00;
  --primary-pink: #ef00a4;
  
  /* Light shades */
  --electric-light: #49e7e4;
  --neon-light: #74ff4a;
  --purple-light: #9c58d8;
  --orange-light: #ff8158;
  --pink-light: #ff77be;
  
  /* Dark shades */
  --electric-dark: #12b4ca;
  --neon-dark: #47b913;
  --purple-dark: #711e96;
  --orange-dark: #dc7202;
  --pink-dark: #c61b63;
  
  /* Neutral colors */
  --bg-dark: #0a0a0a;
  --bg-secondary: #151414;
  --text-light: #ffffff;
  --text-secondary: #b4b4b4;
  --text-accent: #f0f0f0;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-electric);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../TEC_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.hero-text {
  color: var(--text-light);
}

.hero-title {
  color: var(--primary-electric);
  text-shadow: 0 0 20px rgba(8, 255, 246, 0.30);
    padding-top: 125px;
}

.hero-accent {
  color: var(--primary-neon);
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-purple);
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-orange);
  bottom: 20%;
  left: 15%;
  animation-delay: -4s;
}

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

/* Section Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  color: var(--primary-electric);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-neon);
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 215, 238, 0.20);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(20, 213, 233, 0.20);
}

.card-title {
  color: var(--primary-electric);
}

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

/* Services */
.service-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-neon);
}

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

.service-features li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-neon);
  margin-right: 0.5rem;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--primary-electric);
  margin: 0 auto 1rem;
  display: block;
  object-fit: cover;
}

.team-name {
  color: var(--primary-electric);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-neon);
  font-size: 0.9rem;
}

/* Reviews */
.review-card {
  border-left: 4px solid var(--primary-neon);
  background: var(--bg-secondary);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-author {
  color: var(--primary-electric);
  font-weight: 600;
  margin-top: 1rem;
}

/* FAQ */
.faq-card {
  margin-bottom: 1rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(100, 40, 205, 0.30);
}

.faq-question {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Contact Form */
.form-control {
  background: var(--bg-secondary);
  border: 1px solid rgba(9, 233, 220, 0.30);
  color: var(--text-light);
  border-radius: 8px;
}

.form-control:focus {
  background: var(--bg-secondary);
  border-color: var(--primary-electric);
  box-shadow: 0 0 0 0.25rem rgba(0, 205, 255, 0.25);
  color: var(--text-light);
}

.form-control::placeholder {
  color: var(--text-secondary);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-electric), var(--primary-neon));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 244, 255, 0.40);
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 255, 240, 0.10);
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-electric);
}

/* Footer - High contrast colors only, no gradients */
.footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--primary-electric);
  padding: 3rem 0 1rem;
  color: var(--text-light);
}

.footer h5 {
  color: var(--primary-electric);
  margin-bottom: 1rem;
}

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

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

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary-neon);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  bottom: -1rem;
  width: 2px;
  background: rgba(64, 230, 36, 0.30);
}

.timeline-item:last-child::after {
  display: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
