/* Hero Sections */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

/* About Section */
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-content-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
}

.team-section {
  padding: var(--spacing-xxl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.team-member-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
}

.team-member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--spacing-sm);
}

.team-member-card h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.team-member-card .role {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

/* Services Grid */
.services-grid-section {
  padding: var(--spacing-xxl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-feature-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-feature-card:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-8px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
}

.service-feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
}

.service-feature-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.service-feature-card .description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

/* Statistics Section */
.stats-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/section3-data-center-server_orig.jpg') center/cover;
  color: white;
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.stat-item {
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xxl) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-info {
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: var(--bg-primary);
  border-radius: 8px;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-sm);
  fill: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/banner4-modern-office-technology_orig.jpg') center/cover;
  color: white;
  text-align: center;
  padding: var(--spacing-xxl) 0;
}

.cta-section h2 {
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* Blog Section */
.blog-section {
  padding: var(--spacing-xxl) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.blog-post-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
}

.blog-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post-excerpt {
  padding: var(--spacing-lg);
}

.blog-post-excerpt h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.blog-post-excerpt .date {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.blog-post-excerpt p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

/* Floating decoration elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  filter: blur(40px);
  pointer-events: none;
}

.floating-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.floating-shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table-row {
    grid-template-columns: 1fr;
  }
}