/* Specifications Section Styles */
.specifications {
  padding: 80px 0;
  background-color: #162238;
}

.specifications .section-heading h2 {
  color: #fff;
}

.specifications .section-heading h2 em {
  color: #f5a425;
}

.spec-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.spec-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

.specifications-list {
  padding-left: 30px;
}

.spec-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid #f5a425;
}

.spec-item:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transform: translateX(5px);
}

.spec-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f5a425, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.spec-icon i {
  font-size: 24px;
  color: white;
}

.spec-content h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.spec-content p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Service Icon Styles */
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: linear-gradient(135deg, #f5a425, #ff6b35);
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 80px;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Contact Section Styles */
.contact-info {
  padding: 20px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f5a425, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: white;
}

.contact-content h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.contact-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f5a425, #ff6b35);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 16px;
}

.contact-button:hover {
  background: linear-gradient(135deg, #ff6b35, #f5a425);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 164, 37, 0.4);
}

.contact-button i {
  font-size: 16px;
}

/* Map styling to match contact info height */
#map {
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

#map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
}

/* Ensure both columns have same height */
.contact .row {
  display: flex;
  align-items: stretch;
}

.contact .col-md-6 {
  display: flex;
  flex-direction: column;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Responsive Design */
@media (max-width: 768px) {
  .specifications {
    padding: 60px 0;
  }
  
  .specifications-list {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .spec-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .spec-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .spec-icon i {
    font-size: 20px;
  }
  
  .spec-content h4 {
    font-size: 16px;
  }
  
  .spec-content p {
    font-size: 14px;
  }
  
  .service-icon {
    height: 150px;
  }
  
  .service-icon i {
    font-size: 60px;
  }
  
  .contact-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .contact-icon i {
    font-size: 20px;
  }
  
  .contact-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .spec-item {
    flex-direction: column;
    text-align: center;
  }
  
  .spec-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
