/* ============================================================
   ELITE MARKETING — SERVICES PAGE CSS
   ============================================================ */

/* ─── SERVICE BLOCK ─── */
.service-block {
  padding: var(--space-16) 0;
  position: relative;
}

.service-block + .service-block {
  border-top: var(--border-subtle);
}

.service-block--alt {
  background: var(--color-bg-2);
}

.service-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.service-block--alt .service-block__grid {
  direction: rtl;
}

.service-block--alt .service-block__content,
.service-block--alt .service-block__visual {
  direction: ltr;
}

.service-block__content {}

.service-block__deliverables {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-block__deliverable {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gray-1);
}

.service-block__deliverable::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  flex-shrink: 0;
}

.service-block__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

/* Service visual panel */
.service-block__visual {
  position: relative;
}

.service-panel {
  background: var(--color-bg-2);
  border: var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.service-block--alt .service-panel {
  background: var(--color-bg);
}

.service-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.service-panel__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-panel__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  animation: pulse 2s ease-in-out infinite;
}

.service-panel__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-panel__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease-out-expo);
}

.service-panel__item:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.15);
}

.service-panel__item-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.service-panel__item-text {
  font-size: var(--text-sm);
  color: var(--color-gray-1);
  font-weight: 500;
}

.service-panel__item-badge {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
}

/* ─── PROCESS ─── */
.process-section {
  background: var(--color-bg-2);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg,
    var(--color-gold-dim),
    var(--color-gold),
    var(--color-gold-dim));
  opacity: 0.3;
  pointer-events: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
  transition: all var(--dur-base) var(--ease-out-expo);
  flex-shrink: 0;
}

.process-step:hover .process-step__number {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 24px rgba(201,168,76,0.15);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-2);
  line-height: 1.6;
}

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .service-block__grid,
  .service-block--alt .service-block__grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-block__visual { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}
