/* Hero Sections */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%);
  background-size: 20px 20px;
  animation: scan-bg 10s linear infinite;
  opacity: 0.3;
}

@keyframes scan-bg {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 20px 20px, -20px 20px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--hud-color), var(--hud-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* About Section */
.about-section {
  background: var(--bg-secondary);
  position: relative;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  position: relative;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid var(--hud-border);
  filter: sepia(20%) hue-rotate(180deg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--hud-border);
  background: var(--hud-bg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--hud-accent);
  font-family: var(--font-heading);
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services-section {
  background: var(--bg-primary);
  position: relative;
}

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

.service-card-item {
  position: relative;
  overflow: hidden;
}

.service-card-item::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--hud-color);
  border-right: 2px solid var(--hud-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-item:hover::after {
  opacity: 1;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 1px solid var(--hud-border);
  filter: sepia(30%) hue-rotate(180deg) brightness(0.8);
  transition: filter 0.3s ease;
}

.service-card-item:hover .service-image {
  filter: sepia(30%) hue-rotate(180deg) brightness(1);
}

/* Pricing Section */
.pricing-section {
  background: var(--bg-secondary);
  position: relative;
}

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

.pricing-table-card {
  text-align: center;
  position: relative;
}

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

.pricing-table-card.featured::before {
  background: var(--hud-accent);
}

.pricing-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hud-border);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--hud-color);
  font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('images/banner4-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  position: relative;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--hud-border);
  background: var(--hud-bg);
}

.contact-icon {
  width: 40px;
  height: 40px;
  color: var(--hud-color);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--hud-color);
}

.contact-details p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Team Section */
.team-section {
  background: var(--bg-primary);
  position: relative;
}

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

.team-member-card {
  text-align: center;
  position: relative;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--hud-color);
  filter: sepia(20%) hue-rotate(180deg);
  transition: all 0.3s ease;
}

.team-member-card:hover .team-photo {
  border-color: var(--hud-accent);
  filter: sepia(20%) hue-rotate(180deg) brightness(1.2);
}

.member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--hud-color);
}

.member-role {
  color: var(--hud-accent);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.member-bio {
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-secondary);
  position: relative;
}

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

.testimonial-card {
  position: relative;
  padding-top: 3rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--hud-color);
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: serif;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--hud-color);
  object-fit: cover;
}

.author-info h5 {
  margin: 0;
  color: var(--hud-color);
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-primary);
  position: relative;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hud-border);
  aspect-ratio: 4/3;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  filter: sepia(30%) hue-rotate(180deg) brightness(0.8);
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.1);
  filter: sepia(30%) hue-rotate(180deg) brightness(1);
}

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

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

.gallery-title {
  color: var(--hud-color);
  font-weight: 600;
  text-align: center;
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('images/section3-data-center-server_orig.jpg') center/cover;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

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

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--hud-color), var(--hud-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Page Title Bar */
.page-title-bar {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('images/feature2-software-development-team_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--hud-color), var(--hud-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-area {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 0;
  border-bottom: 1px solid var(--hud-border);
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--hud-color);
}

.breadcrumb-separator {
  color: var(--hud-color);
}

.breadcrumb .current {
  color: var(--hud-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .main-navigation .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table-card.featured {
    transform: none;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-actions {
    align-self: stretch;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .service-card-item,
  .team-member-card,
  .pricing-table-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}