/* Hero Section */
.hero {
  height: 80vh; /* Reduced from 100vh */
  min-height: 500px; /* Reduced from 600px */
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.pexels.com/photos/6693661/pexels-photo-6693661.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  margin-top: -80px; /* Compensate for the header padding */
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-out;
}

.hero-content .tagline {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-content .btn {
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

/* Introduction Section */
.intro {
  padding: 80px 0;
  background-color: var(--white);
}

.intro p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.7;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background-color: var(--light-color);
  background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url('https://images.pexels.com/photos/7681091/pexels-photo-7681091.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 40px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 15px;
  min-height: 75px;
}

.service-card .btn, .service-card a.btn {
  display: inline-block;
  width: auto;
  min-width: 120px;
  margin: 0 auto 0 auto;
  margin-top: auto;
}

.services-btn-container {
  text-align: center;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url('https://images.pexels.com/photos/7567434/pexels-photo-7567434.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
}

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

.feature {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(243, 156, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.feature p {
  color: var(--text-color);
  font-size: 15px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
  background-image: linear-gradient(rgba(243, 156, 18, 0.92), rgba(243, 156, 18, 0.92)), url('https://images.pexels.com/photos/7688336/pexels-photo-7688336.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
}

.contact-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: var(--transition);
}

.contact-option:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact-option i {
  font-size: 40px;
  margin-bottom: 10px;
}

.contact-option span {
  font-weight: 500;
}

.contact-cta {
  text-align: center;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    height: 70vh; /* Reduced for mobile */
    padding: 140px 0 80px; /* Adjusted padding */
  }

  .hero-content h1 {
    font-size: 40px;
  }

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

  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-options {
    gap: 15px;
  }

  .contact-option {
    width: 150px;
    height: 150px;
  }
}

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

  .hero-content .tagline {
    font-size: 18px;
  }

  .contact-option {
    width: 130px;
    height: 130px;
  }

  .contact-option i {
    font-size: 30px;
  }
}