/* ═══════════════════════════════════════════════
   Aurista Interiors — Services Page Styles
   ═══════════════════════════════════════════════ */

.services-detail {
  padding: 90px 8%;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.service-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.service-detail-item.reverse {
  direction: rtl;
}
.service-detail-item.reverse > * {
  direction: ltr;
}
.service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}
.service-detail-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.service-detail-content p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
  font-weight: 300;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  padding: 5px 14px;
  border: 1px solid var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .service-detail-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail-item.reverse {
    direction: ltr;
  }
  .service-detail-img img {
    height: 260px;
  }
}
/* ── FOOTER LOGO ── */
.footer-logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: white;
  letter-spacing: 2px;
}

.footer-logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  display: block;
  margin-bottom: 0;
}
