/* Services Section Styles */
.services {
  background-color: var(--bg-color);
  padding: 80px 0;
}

.services .section-header {
  margin-bottom: 50px;
}

.services-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 35, 50, 0.95), transparent);
  padding: 30px;
  color: #fff;
  transform: translateY(60%);
  transition: transform 0.3s ease;
}

.service-card:hover .service-overlay {
  transform: translateY(0);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #d19a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-icon i {
  font-size: 24px;
  color: #fff;
}

.service-overlay h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-overlay p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.service-card:hover .service-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.service-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #d19a00;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
}

.service-card:hover .service-btn {
  opacity: 1;
  transform: translateY(0);
}

.service-btn:hover {
  background: #fff;
  color: #d19a00;
}

/* Services Info Styles */
.services-info {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-header {
  margin-bottom: 25px;
}

.info-header h3 {
  color: #002332;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-header p {
  color: #666;
  font-size: 1rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #002332;
  font-size: 1.1rem;
}

.services-list li i {
  color: #d19a00;
  margin-left: 15px;
  font-size: 1.2rem;
}

.main-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #d19a00;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.main-btn:hover {
  background: #002332;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-card {
    height: 250px;
  }

  .service-overlay {
    padding: 20px;
  }

  .service-overlay h3 {
    font-size: 1.2rem;
  }

  .info-header h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .services-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 220px;
  }
}
