:root { --accent: #BF9145; }
/* Hero */
.services-hero {
  position: relative;
  height: 55vh;
  background: url('images/services-hero.jpg') center/cover no-repeat;
}
.services-hero-overlay {
  background: rgba(0,0,0,0.45);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-hero-content {
  text-align: center;
  color: #fff;
}
.services-hero-content h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
}
.services-hero-content p {
  margin-top: 10px;
  font-size: clamp(16px, 2vw, 20px);
}

/* Ana hizmet alanı */
.services-section {
  background: #fff;
  padding: clamp(50px, 7vw, 90px) 20px;
}
.services-container {
  max-width: 1150px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 40px;
}
.services-title {
  font-size: clamp(26px, 4vw, 36px);
  color: var(--accent);
  font-weight: 800;
}
.services-subtitle {
  font-size: 16px;
  color: #555;
  margin: 6px 0 12px;
}
.services-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

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

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.service-icon img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-content {
  padding: 18px;
  text-align: center;
}
.service-content h3 {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.service-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* CTA */
.services-cta {
  background: var(--accent);
  padding: 40px 20px;
  text-align: center;
}
.services-cta h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}
.cta-btn {
  background: #fff;
  color: var(--accent);
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #f1f1f1;
}

@media (max-width: 768px) {
  .services-hero { height: 40vh; }
}
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.detail-btn {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
}
.detail-btn:hover {
  text-decoration: underline;
}

/* Modal */
.service-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}
.service-modal-content {
  background: #fff;
  padding: 20px;
  max-width: 700px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}
.modal-inner img {
  max-width: 100%;
  border-radius: 8px;
  margin: 14px 0;
}
.modal-inner h3 {
  color: var(--accent);
  margin-bottom: 8px;
}
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

