.site-content {
  padding-top: 80px;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(74, 85, 104, 0.7), rgba(74, 85, 104, 0.8)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 24px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .primary-button {
  background: var(--primary);
  font-size: 18px;
  padding: 18px 36px;
}

.hero-actions .secondary-button {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  backdrop-filter: blur(8px);
}

.hero-actions .secondary-button:hover {
  background: white;
  color: var(--text-primary);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-shapes::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(93, 138, 140, 0.2);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.floating-shapes::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(232, 220, 200, 0.3);
  border-radius: 50%;
  filter: blur(30px);
  animation: float 8s ease-in-out infinite reverse;
}

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

.about-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

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

.about-text-content h2 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text-content p {
  margin-bottom: 24px;
  color: var(--text-secondary);
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

.about-image-content {
  position: relative;
}

.about-image-content img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: var(--border-radius);
}

.services-grid-section {
  background: var(--bg-secondary);
  color: white;
  position: relative;
  overflow: hidden;
}

.services-grid-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 16px;
}

.services-grid-section .lead-text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card-item {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  animation-fill-mode: both;
}

.service-card-item:nth-child(1) { animation-delay: 0.1s; }
.service-card-item:nth-child(2) { animation-delay: 0.2s; }
.service-card-item:nth-child(3) { animation-delay: 0.3s; }
.service-card-item:nth-child(4) { animation-delay: 0.4s; }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  fill: var(--primary);
}

.process-section {
  background: var(--bg-primary);
  position: relative;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-heading);
  position: relative;
  z-index: 2;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--border-color);
  z-index: 1;
}

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

.timeline-content {
  flex: 1;
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.timeline-content h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.timeline-meta {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.author-info h4 {
  color: white;
  margin-bottom: 4px;
  font-size: 16px;
}

.author-location {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.cta-section {
  background: linear-gradient(rgba(112, 128, 144, 0.9), rgba(112, 128, 144, 0.9)), url('images/section3-data-center-server_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: white;
  margin-bottom: 24px;
  font-size: 40px;
}

.cta-section .lead-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.portfolio-item {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

.portfolio-overlay-content {
  color: white;
}

.portfolio-overlay-content h4 {
  color: white;
  margin-bottom: 8px;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.portfolio-location {
  color: var(--text-secondary);
  font-size: 14px;
}

.portfolio-price {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

.contact-section {
  background: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 18px;
}

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

.form-success-message {
  background: #10B981;
  color: white;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  display: none;
}

.form-error-message {
  background: #EF4444;
  color: white;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  display: none;
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.page-title-bar {
  background: linear-gradient(rgba(112, 128, 144, 0.9), rgba(112, 128, 144, 0.9)), url('images/about-tech-team-collaboration_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.page-title-bar h1 {
  color: white;
  margin-bottom: 16px;
  font-size: 48px;
}

.page-title-bar .lead-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-area {
  background: var(--bg-secondary);
  padding: 16px 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.breadcrumb-nav a:hover {
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

.legal-content {
  background: var(--bg-primary);
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .about-content-wrapper,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content .lead-text {
    font-size: 18px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
    justify-content: center;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .timeline-item::after {
    display: none;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .page-title-bar h1 {
    font-size: 36px;
  }
  
  .floating-shapes::before,
  .floating-shapes::after {
    display: none;
  }
}