/* =====================
   STICKY NAV
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* NAV CONTENT */
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* LOGO */
.site-logo {
  height: 70px;
  width: auto;
  border-radius: 8px;
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  .site-logo {
    height: 48px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-logo {
    height: 56px;
  }
}

.hero-offset {
  margin-top: 71px; /* nav yüksekliği */
}

/* BUTTON */
.nav-contact-btn {
  margin-right: 16px;
  border: 1px solid #550D30;
  padding: 8px 16px;
  border-radius: 6px;
  color: #550D30;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-contact-btn:hover {
  background-color: #550D30;
  color: #ffffff;
}

/* =====================
   SERVICE CARDS
===================== */
.service-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
  padding: 0.8rem 0.8rem 2rem 0.8rem; 
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.service-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.nav-inner{
    align-items: center;
   padding: 0;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background-color: #550D30;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.service-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.service-image--top {
  border-radius: 1rem 1rem 0 0;
  margin: -2rem -2rem 1rem -2rem;
}

.service-image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  margin-bottom: 1rem;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .service-image-wrapper {
    height: 150px;
  }
}