.main-content-area {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.8)), url('../images/hero1-construction-site-modern_orig.jpg') center/cover fixed;
  overflow: hidden;
}

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

.hero-title {
  font-size: var(--type-hero);
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: var(--type-h3);
  color: var(--accent-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.1);
  filter: blur(2px);
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 70%;
  animation-delay: 4s;
}

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

.services-preview-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.section-title h2 {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.service-quick-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.service-quick-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(233, 69, 96, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-quick-item:hover::after {
  transform: translateX(100%);
}

.about-preview-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(22, 33, 62, 0.9), rgba(22, 33, 62, 0.9)), url('../images/about-construction-team-portrait_orig.jpg') center/cover fixed;
}

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

.about-text-content h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.about-text-content p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
}

.stat-label {
  color: #fff;
  font-weight: 500;
  margin-top: 0.5rem;
}

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

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

.testimonial-item {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  transform: perspective(1000px) rotateY(3deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -1rem;
  left: -1rem;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.author-location {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.cta-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(233, 69, 96, 0.9), rgba(233, 69, 96, 0.9)), url('../images/banner4-construction-site-modern_orig.jpg') center/cover;
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  color: #fff;
  font-size: var(--type-h1);
  margin-bottom: 2rem;
}

.cta-content p {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.emergency-banner {
  background: var(--accent);
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.page-hero-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('../images/feature2-building-under-construction-crane_orig.jpg') center/cover;
  text-align: center;
  color: #fff;
}

.page-hero-title {
  font-size: var(--type-h1);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.services-detailed-grid {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.service-detail-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.service-info h3 {
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

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

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

.team-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 2rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

.team-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.quote-form-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.form-step {
  margin-bottom: 3rem;
}

.form-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-number {
  background: var(--accent);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-text {
  color: var(--text-primary);
  font-weight: 500;
}

.map-container {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stagger-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation:nth-child(5) { transition-delay: 0.5s; }

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
  }

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

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

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

  .main-content-area {
    margin-top: 70px;
  }
}