/* =========================================================
   NOVA CONSTRUCTION — OUR PROCESS PAGE
   FILE: css/process.css
========================================================= */


/* =========================
   HERO
========================= */

.process-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.78)),
    url('../images/process/process-hero.jpg') center center / cover no-repeat;

  padding: 140px 0;
}

.process-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.75)
    );

  z-index: 1;
}

.process-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.process-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 150px);
  line-height: 0.95;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 24px;
}

.process-hero p {
  max-width: 760px;
  margin: 0 auto 36px;

  font-size: 18px;
  line-height: 1.9;
  font-weight: 300;

  color: rgba(255,255,255,0.82);
}


/* =========================
   INTRO
========================= */

.process-intro {
  background: #0d0d0d;
}

.process-intro .split-grid {
  align-items: center;
}

.process-intro h2 {
  color: #ffffff;
}

.process-intro p {
  color: rgba(255,255,255,0.72);
}


/* =========================
   TIMELINE SECTION
========================= */

.process-timeline-section {
  position: relative;
  background: #111111;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* vertical line */

.timeline::before {
  content: "";

  position: absolute;
  top: 0;
  left: 45px;

  width: 2px;
  height: 100%;

  background:
    linear-gradient(
      to bottom,
      rgba(212,175,55,0),
      rgba(212,175,55,0.9),
      rgba(212,175,55,0)
    );
}

.timeline-item {
  position: relative;

  display: grid;
  grid-template-columns: 120px 1fr;

  gap: 40px;

  margin-bottom: 90px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: relative;
  z-index: 2;

  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #d4af37,
      #f1d98b
    );

  color: #000000;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;

  box-shadow:
    0 10px 30px rgba(212,175,55,0.25);
}

.timeline-content {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 50px;

  backdrop-filter: blur(8px);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);

  border-color: rgba(212,175,55,0.45);

  box-shadow:
    0 18px 50px rgba(0,0,0,0.45);
}

.timeline-label {
  display: inline-block;

  margin-bottom: 16px;

  color: #d4af37;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.timeline-content h3 {
  color: #ffffff;

  font-size: 36px;
  line-height: 1.2;

  margin-bottom: 18px;
}

.timeline-content p {
  color: rgba(255,255,255,0.72);

  font-size: 16px;
  line-height: 1.9;

  margin-bottom: 28px;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-content ul li {
  position: relative;

  padding-left: 28px;
  margin-bottom: 14px;

  color: rgba(255,255,255,0.82);

  font-size: 15px;
  line-height: 1.6;
}

.timeline-content ul li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 10px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #d4af37;
}


/* =========================
   DIFFERENCE SECTION
========================= */

.process-difference {
  background: #0b0b0b;
}

.center-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.center-title h2 {
  color: #ffffff;
}

.center-title p {
  color: rgba(255,255,255,0.72);

  line-height: 1.9;
  margin-top: 22px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.difference-card {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 42px 34px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.difference-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212,175,55,0.4);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.35);
}

.difference-card h3 {
  color: #ffffff;

  font-size: 24px;
  line-height: 1.3;

  margin-bottom: 18px;
}

.difference-card p {
  color: rgba(255,255,255,0.70);

  line-height: 1.8;
}


/* =========================
   QUOTE SECTION
========================= */

.process-quote-section {
  position: relative;

  padding: 180px 0;

  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
    url('../images/process/process-quote.jpg') center center / cover no-repeat;

  overflow: hidden;
}

.process-quote-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.75)
    );
}

.process-quote-content {
  position: relative;
  z-index: 2;

  text-align: center;
  max-width: 1000px;
}

.process-quote-content h2 {
  color: #ffffff;

  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.2;

  font-weight: 600;
}


/* =========================
   CTA
========================= */

.process-cta {
  background: #0d0d0d;
}

.process-cta .btn {
  margin-top: 32px;
}


/* =========================
   BUTTON IMPROVEMENTS
========================= */

.btn-gold {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 100px;

  background:
    linear-gradient(
      135deg,
      #d4af37,
      #f1d98b
    );

  color: #000000;

  font-weight: 700;
  letter-spacing: 0.5px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(212,175,55,0.35);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 900px) {

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 70px;
  }

  .timeline-number {
    width: 64px;
    height: 64px;

    font-size: 24px;
  }

  .timeline-content {
    padding: 38px;
  }

}

@media (max-width: 768px) {

  .process-hero {
    min-height: 80vh;
    padding: 120px 0;
  }

  .process-hero h1 {
    font-size: clamp(64px, 16vw, 100px);
  }

  .process-hero p {
    font-size: 16px;
    line-height: 1.8;
  }

  .timeline-content h3 {
    font-size: 28px;
  }

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

  .process-quote-section {
    padding: 120px 0;
  }

  .process-quote-content h2 {
    font-size: 42px;
  }

}

@media (max-width: 540px) {

  .timeline-content {
    padding: 30px;
  }

  .timeline-content h3 {
    font-size: 24px;
  }

  .timeline-content p,
  .timeline-content ul li {
    font-size: 14px;
  }

  .btn-gold {
    width: 100%;
  }

}