/* services.css - Services page specific styles */

/* Services Hero */
.services-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}

.service-section {
  margin-bottom: 3rem;
}

/* Services Heading */
.services-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #198754;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
  position: relative;
}

.services-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #198754, #28a745);
  margin: 1rem auto;
  border-radius: 2px;
}

.services-subtext {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #495057;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

/* Service Detail Rows */
.service-section img {
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-section h2 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-section p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-section ul {
  padding-left: 1.5rem;
  color: #495057;
}

.service-section ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0.5rem;
}

/* Fade Animations */
.fade-in-left, .fade-in-right {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Service Cards Grid */
.services-section .row {
  margin-top: 2rem;
}

.services-section .col .p-4 {
  height: 100%;
  transition: all 0.3s ease;
  cursor: default;
}

.services-section .col .p-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-section .col .p-4:hover i {
  transform: scale(1.1);
  color: #dc3545;
}

.services-section i {
  transition: all 0.3s ease;
}

/* CTA Section for Services */
.bg-light.py-5 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hover Effects */
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

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

/* Text Brand Colors */
.text-brand-red {
  color: #dc3545;
  font-weight: bold;
}

.text-brand-green {
  color: #198754;
  font-weight: bold;
}

.text-brand-mixed {
  color: #28a745;
  font-weight: 600;
}

/* Logo Text Animation */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-text {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeZoom 1s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-heading {
    font-size: 2rem;
  }
  
  .services-subtext {
    font-size: 1.1rem;
  }
  
  .service-section {
    text-align: center;
  }
  
  .service-section ul {
    list-style-position: inside;
    text-align: left;
    display: inline-block;
  }
  
  .flex-md-row-reverse {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .services-heading {
    font-size: 1.75rem;
  }
  
  .services-subtext {
    font-size: 1rem;
    padding: 0 1rem;
  }
}