/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/hero1-construction-site-modern_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 0 var(--spacing-sm);
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(45deg, #ffffff, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

.hero-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

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

.about-text h2 {
  margin-bottom: var(--spacing-md);
}

.about-text p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

/* Services Grid */
.services-grid-section {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-secondary);
}

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

.service-card-item {
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
  transition: var(--transition);
  text-align: center;
}

.service-card-item:hover {
  transform: translateY(-8px) perspective(1000px) rotateY(3deg);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  fill: var(--accent);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

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

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

/* Features Section */
.features-section {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-primary);
}

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

.feature-item {
  text-align: center;
  padding: var(--spacing-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-md);
  fill: var(--accent);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

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

/* Team Section */
.team-section {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-secondary);
}

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

.team-member-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

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

.team-member-info {
  padding: var(--spacing-md);
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

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

.team-member-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Stats Section */
.stats-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/section3-construction-workers-team_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
}

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

.stat-item {
  text-align: center;
}

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

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

/* CTA Section */
.cta-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(rgba(249, 115, 22, 0.9), rgba(249, 115, 22, 0.8)), url('../images/banner4-construction-site-modern_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* Blog Section */
.blog-section {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-primary);
}

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

.blog-post-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

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

.blog-post-content {
  padding: var(--spacing-md);
}

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

.blog-post-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

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

/* Contact Page */
.contact-hero-section {
  padding: calc(80px + var(--spacing-2xl)) 0 var(--spacing-2xl);
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/feature2-building-under-construction-crane_orig.jpg') center/cover;
  color: white;
  text-align: center;
}

.contact-content-section {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-xl);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-block {
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  margin-top: 4px;
}

.contact-info-content h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

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

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-secondary);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-small);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Testimonials Page */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

/* Page Title Bar */
.page-title-bar {
  padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
  background: var(--primary-dark);
  color: white;
  text-align: center;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-sm);
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Decorative Elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.floating-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -150px;
  animation: float 6s ease-in-out infinite;
}

.floating-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

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