/* TUNGA HUKUK - Services Page Styles
 * Created: April 25, 2025
 */

/* Page Header */
.page-header {
  position: relative;
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.page-header-pattern {
  background-image: url('../images/gokturk-pattern.png');
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header h1 {
  position: relative;
  z-index: 1;
  font-family: 'GokturkFont', 'Roboto', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 1rem;
  color: #ccc;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  padding: 0 10px;
  color: #ccc;
}

.breadcrumb-item a {
  color: var(--turkuaz);
}

.breadcrumb-item.active {
  color: var(--white);
}

/* Services Section */
.services-page {
  position: relative;
}

.section-title p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  transition: var(--transition);
}

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

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

.service-img {
  position: relative;
  overflow: hidden;
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 139, 139, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-content p {
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--turkuaz);
  font-weight: 500;
  transition: var(--transition);
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--gold);
}

.read-more:hover i {
  transform: translateX(5px);
}

.no-data {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px;
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .service-content h3 {
    font-size: 1.2rem;
  }
}
