/* Homepage Specific */
.hero-section {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.8)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-section h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .hero-subtitle {
  font-size: 24px;
  margin-bottom: 2rem;
  color: #ECF0F1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  padding: 16px 32px;
  border: var(--border-width) solid #fff;
  box-shadow: 5px 5px 0px #fff;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero-cta-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #fff;
}

/* Mission Section */
.mission-section {
  background: var(--bg-primary);
  padding: 4rem 0;
  border-bottom: var(--border-width) solid #000;
}

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

/* Core Promises Grid */
.core-promises-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

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

.promise-card {
  background: var(--bg-card);
  border: var(--border-width) solid #000;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.promise-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px #000;
}

.promise-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  fill: var(--accent);
  stroke: #000;
  stroke-width: 2;
}

/* Trust Indicators */
.trust-indicators-section {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
}

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

.trust-stat {
  padding: 1rem;
  border: var(--border-width) solid #fff;
}

.trust-stat .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.trust-stat .stat-label {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Testimonial Section */
.testimonial-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.testimonial-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: var(--border-width) solid #000;
  box-shadow: var(--shadow-primary);
  padding: 3rem;
}

.testimonial-quote {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent);
}

/* Services Page */
.services-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.8)), url('images/feature2-software-development-team_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 8rem 0 4rem;
  color: #fff;
  text-align: center;
}

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

.process-timeline {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

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

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -1rem;
  width: 2rem;
  height: 3px;
  background: var(--accent);
  border: 1px solid #000;
}

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

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #fff;
  border: var(--border-width) solid #000;
  border-radius: 50%;
  line-height: 54px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 1rem;
}

/* About Page */
.about-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.8)), url('images/about-tech-team-collaboration_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 8rem 0 4rem;
  color: #fff;
  text-align: center;
}

.team-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

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

.team-member-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: var(--border-width) solid #000;
  margin-bottom: 1rem;
}

.member-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
}

.member-contact a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

/* Industries Page */
.industries-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.8)), url('images/section3-data-center-server_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 8rem 0 4rem;
  color: #fff;
  text-align: center;
}

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

.industry-card {
  background: var(--bg-card);
  border: var(--border-width) solid #000;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px #000;
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  fill: var(--accent);
  stroke: #000;
  stroke-width: 1;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.8)), url('images/banner4-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 8rem 0 4rem;
  color: #fff;
  text-align: center;
}

.contact-content-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.contact-info-card {
  background: var(--bg-card);
  border: var(--border-width) solid #000;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-info-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info-card p {
  margin-bottom: 0.5rem;
}

.map-container {
  width: 100%;
  height: 300px;
  border: var(--border-width) solid #000;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Form Success Message */
.form-success-message {
  background: var(--accent);
  color: #fff;
  padding: 1rem;
  border: var(--border-width) solid #000;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-success-message.visible {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 4rem;
    min-height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-section .hero-subtitle {
    font-size: 18px;
  }
  
  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
  }
  
  .timeline-step::after {
    display: none;
  }
  
  .testimonial-quote {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-cta-button {
    font-size: 16px;
    padding: 12px 24px;
  }
  
  .promises-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
  }
}