/* Main Content Area */
.main-content {
  padding-top: 100px;
  min-height: 100vh;
}

/* Hero Sections */
.banner-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(40, 54, 24, 0.6),
    rgba(40, 54, 24, 0.4)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.banner-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.home-hero {
  background: linear-gradient(
    rgba(40, 54, 24, 0.5),
    rgba(40, 54, 24, 0.3)
  ), url('../images/hero1-modern-office-technology_orig.jpg') center/cover;
}

/* Section Styles */
.content-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.content-section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  animation-delay: var(--delay, 0s);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.feature-content h4 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(40, 54, 24, 0.15);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(221, 161, 94, 0.1) 0%,
    transparent 50%,
    rgba(188, 108, 37, 0.1) 100%
  );
  pointer-events: none;
}

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

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member-info h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    rgba(40, 54, 24, 0.9),
    rgba(40, 54, 24, 0.7)
  ), url('../images/section3-data-center-server_orig.jpg') center/cover;
  color: white;
  text-align: center;
  background-attachment: fixed;
}

.cta-content h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Interactive Elements */
.sap-flow-simulator {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.temperature-slider {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
}

.temperature-slider input[type="range"] {
  width: 100%;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  outline: none;
}

.sap-diagram {
  width: 300px;
  height: 200px;
  margin: 2rem auto;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Timeline */
.timeline-container {
  position: relative;
  margin: 3rem 0;
  overflow-x: auto;
  padding: 2rem 0;
}

.timeline-track {
  display: flex;
  gap: 3rem;
  min-width: 800px;
  padding-bottom: 2rem;
}

.timeline-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 200px;
  text-align: center;
  position: relative;
  transition: none;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(40, 54, 24, 0.15);
}

.timeline-year {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Testimonial */
.client-testimonial {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.testimonial-title {
  color: var(--accent);
  font-size: 0.95rem;
}

/* Page Title Bar */
.page-title-bar {
  background: var(--bg-secondary);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
}

.page-title-bar h1 {
  margin-bottom: 0.5rem;
}

.breadcrumb-area {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.breadcrumb-area a {
  color: var(--accent);
  text-decoration: none;
}

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

/* Responsive */
@media (max-width: 768px) {
  .main-content {
    padding-top: 80px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.25rem;
  }
  
  .content-section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
}