.pr-hero {
  position: relative;
  height: 80vh !important;
  min-height: 600px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.pr-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: prZoomBg 25s ease-out infinite alternate;
}

@keyframes prZoomBg {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.pr-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.35) 100%);
  z-index: -1;
}

.pr-hero-content {
  max-width: 900px;
  padding: 0 5%;
  color: var(--color-white);
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: prFadeUp 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.5s;
}

@keyframes prFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.pr-hero-sub {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.pr-hero-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.pr-hero-desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto;
}

.pr-hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: prFadeUp 1.4s ease forwards 1.8s;
}

.pr-hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: prScrollPulse 2.5s ease-in-out infinite;
}

@keyframes prScrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* ==================
   PROCESS — 5 STAGES
   ================== */
.pr-process {
  padding: 10rem 5%;
  background-color: var(--color-white);
}

.pr-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Stage row */
.pr-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--color-border);
}

.pr-stage:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Reversed: image first (right in RTL), content second (left in RTL) */
.pr-stage--reverse {
  direction: ltr;
}

.pr-stage--reverse > * {
  direction: rtl;
}

/* Stage content */
.pr-stage-content {
  display: flex;
  flex-direction: column;
}

.pr-stage-num {
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0.25;
  margin-bottom: 1.5rem;
}

.pr-stage-label {
  margin-bottom: 1.5rem;
}

.pr-stage-phase {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.pr-stage-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-header-solid);
  line-height: 1.3;
  margin: 0;
}

.pr-stage-duration {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  background: var(--color-bg);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  border: 1px solid var(--color-border);
}

.pr-stage-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin: 0;
}

/* Stage image */
.pr-stage-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.pr-stage-image:hover {
  transform: scale(1.015);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.pr-stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pr-stage-image:hover img {
  transform: scale(1.05);
}

/* ==================
   FAQ SECTION
   ================== */
.pr-faq {
  padding: 8rem 5%;
  background-color: var(--color-bg);
  position: relative;
}

.pr-faq::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 155, 114, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pr-faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.pr-faq-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.pr-faq-title {
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-header-solid);
  line-height: 1.25;
}

/* FAQ list */
.pr-faq-list {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* FAQ item */
.pr-faq-item {
  border-bottom: 1px solid var(--color-border);
  transition: border-color 0.3s ease;
}

.pr-faq-item.active {
  border-bottom-color: var(--color-accent);
}

/* Question button */
.pr-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-header-solid);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.pr-faq-question:hover {
  color: var(--color-accent);
}

.pr-faq-item.active .pr-faq-question {
  color: var(--color-accent);
}

/* FAQ icon (animated plus) */
.pr-faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pr-faq-line {
  position: absolute;
  background-color: var(--color-header-solid);
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.pr-faq-line-h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.pr-faq-line-v {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.pr-faq-item.active .pr-faq-line {
  background-color: var(--color-accent);
}

.pr-faq-item.active .pr-faq-line-v {
  transform: translateX(-50%) rotate(90deg);
}

/* Answer panel */
.pr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1),
              padding 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 0 0 0;
}

.pr-faq-item.active .pr-faq-answer {
  max-height: 300px;
  padding: 0 0 1.5rem 0;
}

.pr-faq-answer p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 1024px) {
  .pr-hero-title {
    font-size: 3.8rem;
  }

  .pr-hero-desc {
    font-size: 1.3rem;
  }

  .pr-stage {
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
  }

  .pr-stage-title {
    font-size: 1.7rem;
  }

  .pr-stage-image {
    height: 340px;
  }

  .pr-faq-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .pr-hero-title {
    font-size: 2.8rem;
  }

  .pr-hero-desc {
    font-size: 1.1rem;
  }

  .pr-hero-sub {
    font-size: 0.8rem;
    letter-spacing: 4px;
  }

  .pr-process {
    padding: 6rem 4%;
  }

  .pr-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }

  .pr-stage--reverse {
    direction: rtl;
  }

  .pr-stage--reverse > * {
    direction: rtl;
  }

  .pr-stage-num {
    font-size: 4rem;
    margin-bottom: 1rem;
  }

  .pr-stage-title {
    font-size: 1.5rem;
  }

  .pr-stage-image {
    height: 280px;
    order: -1;
  }

  .pr-stage--reverse .pr-stage-image {
    order: -1;
  }

  .pr-stage-duration {
    font-size: 0.8rem;
  }

  .pr-stage-desc {
    font-size: 1rem;
  }

  .pr-faq {
    padding: 5rem 4%;
  }

  .pr-faq-title {
    font-size: 2rem;
  }

  .pr-faq-header {
    margin-bottom: 2.5rem;
  }

  .pr-faq-question {
    font-size: 1rem;
    padding: 1.2rem 0;
  }
}

@media (max-width: 480px) {
  .pr-hero-title {
    font-size: 2.2rem;
  }

  .pr-hero-desc {
    font-size: 1rem;
  }

  .pr-stage-image {
    height: 220px;
  }

  .pr-faq-question {
    font-size: 0.95rem;
  }
}
