/* ══════════════════════════════════
   SERVICE SECTIONS
══════════════════════════════════ */
.srv-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.srv-section:last-of-type {
  border-bottom: none;
}

.srv-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.srv-2col.reverse {
  direction: rtl;
}

.srv-2col.reverse > * {
  direction: ltr;
}

.srv-visual {
  height: 400px;
  overflow: hidden;
  background: var(--s2);
  position: relative;
  border: 1px solid var(--border);
}

.srv-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srv-visual .overlay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}

.srv-number-big {
  font-family: var(--fd);
  font-size: 130px;
  line-height: 1;
  color: rgba(255, 255, 255, .03);
  position: absolute;
  top: 0;
  right: 0;
}

/* ══════════════════════════════════
   PROCESS STEPS
══════════════════════════════════ */
.process-sec {
  padding: 80px 0;
  background: var(--s1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 24px;
  color: var(--yellow);
  margin: 0 auto 16px;
}

.step h4 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════════
   PACKAGES SECTION
══════════════════════════════════ */
.pkg-sec {
  padding: 80px 0;
  background: var(--bg);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pkg-card {
  background: var(--s1);
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
  transition: var(--tr);
}

.pkg-card:hover {
  border-color: rgba(227, 30, 36, .3);
  transform: translateY(-4px);
}

.pkg-card.featured {
  border-color: var(--yellow);
  background: var(--s2);
}

.pkg-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--bg);
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}

.pkg-name {
  font-family: var(--fd);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.pkg-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pkg-price {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--yellow);
  margin-bottom: 24px;
}

.pkg-ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.pkg-ul li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pkg-ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════
   FAQ SECTION
══════════════════════════════════ */
.faq-sec {
  padding: 80px 0;
  background: var(--s1);
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--s2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: rgba(227, 30, 36, .3);
}

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: color .2s;
  -webkit-user-select: none;
  user-select: none;
}

.faq-q:hover {
  color: var(--yellow);
}

.faq-item.open .faq-q {
  color: var(--yellow);
}

.faq-icon {
  font-size: 20px;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--red);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .srv-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .srv-2col.reverse {
    direction: ltr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

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