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

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 22px;
  color: #f8f8f8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(245, 230, 208, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

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

.how-we-work-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  background: linear-gradient(45deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 42px;
  margin-bottom: 15px;
}

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

.work-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.work-step {
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.work-step:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.work-step h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 22px;
}

.work-step p {
  color: #666;
  line-height: 1.6;
}

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

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

.feature-item {
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 28px;
}

.feature-item h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-item p {
  color: #666;
  line-height: 1.7;
}

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

.calculator-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.calculator-wrapper {
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.calculator-input {
  margin-bottom: 30px;
}

.calculator-input label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.calculator-input input,
.calculator-input select {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  color: var(--text-dark);
}

.calculator-result {
  background: var(--accent);
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
}

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

.portfolio-item {
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.portfolio-before,
.portfolio-after {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.portfolio-before {
  left: 0;
}

.portfolio-after {
  right: 0;
}

.portfolio-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.portfolio-info {
  padding: 25px;
  color: var(--text-dark);
}

.portfolio-info h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.portfolio-price {
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.contact-info {
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
}

.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
  max-width: 300px;
  z-index: 1000;
  animation: bounce 2s infinite;
}

.chat-widget h5 {
  margin-bottom: 10px;
  color: white;
}

.chat-widget p {
  font-size: 14px;
  margin-bottom: 15px;
  color: white;
}

.chat-widget button {
  background: white;
  color: var(--accent);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.local-districts {
  background: var(--bg-secondary);
  padding: 60px 0;
  text-align: center;
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.district-item {
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.district-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .work-steps,
  .features-grid,
  .services-grid,
  .portfolio-grid,
  .team-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-wrapper {
    margin: 0 20px;
    padding: 30px;
  }
  
  .chat-widget {
    right: 15px;
    bottom: 20px;
    max-width: 250px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .districts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .section-spacer {
    padding: 40px 0;
  }
  
  .calculator-wrapper,
  .contact-form {
    margin: 0 10px;
    padding: 20px;
  }
}