/* ================================
   DESIGN PROCESS HERO (ENHANCED)
================================ */

.process-hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    180deg,
    #2f4457 0%,
    #2a3e51 100%
  ),url("images/project-historic.jpg");
  color: #ffffff;
  overflow: hidden;
}

.process-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.process-hero-inner {
  position: relative;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
  z-index: 2;
}

/* Eyebrow */
.process-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #e0b84c;
  text-transform: uppercase;
}

/* Title */
.process-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Subtitle */
.process-subtitle {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
}

/* CTA Buttons */
.process-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: #e0b84c;
  color: #1f2f3c;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: #f0c75e;
  transform: translateY(-2px);
}

.btn-primary .arrow {
  transition: transform 0.25s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .process-hero {
    min-height: 65vh;
  }

  .process-title {
    font-size: 34px;
  }

  .process-subtitle {
    font-size: 15px;
  }

  .process-hero-actions {
    gap: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* ================================
   PROCESS BENEFITS SECTION
================================ */

.process-benefits {
  background: #f7f8fa;
  padding: 120px 24px;
}

.process-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.section-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #e0b84c;
  text-transform: uppercase;
}

/* Title */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #243746;
  margin-bottom: 20px;
}

/* Subtitle */
.section-subtitle {
  max-width: 640px;
  margin: 0 auto 64px;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7c8a;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Cards */
.benefit-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 26px;
  border-radius: 50%;
  background: rgba(224, 184, 76, 0.15);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #243746;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7c8a;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-benefits {
    padding: 80px 20px;
  }
}


/* =====================================================
   PROCESS BREAKDOWN – SECTION WRAPPER
===================================================== */
.process-breakdown-section {
  padding: 120px 0;
  background: #f7f9fb;
}

.process-breakdown-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   HEADER
===================================================== */
.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
  color: #24384d;
  margin-bottom: 12px;
}

.process-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: #6b7c8f;
}

/* =====================================================
   LAYOUT
===================================================== */
.process-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* =====================================================
   LEFT STEPS
===================================================== */
.proce-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proce-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid #e6edf3;
  transition: all 0.35s ease;
}

.proce-step:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.proce-step.active {
  background: #f18728;
  color: #ffffff;
  border-color: #f18728;
}

.proce-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f18728;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proce-step.active .process-step-number {
  background: #ffffff;
  color: #f18728;
}

.proce-step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.proce-step-content span {
  display: block;
  font-size: 13px;
  opacity: 0.75;
}

/* =====================================================
   RIGHT PANEL
===================================================== */
.process-content {
  position: relative;
}

.process-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  display: none;
}

.process-panel.active {
  display: block;
}

/* =====================================================
   PANEL TEXT
===================================================== */
.process-panel h5 {
  font-size: 13px;
  font-weight: 600;
  color: #f18728;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.process-panel h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  color: #24384d;
  margin-bottom: 18px;
}

.process-panel p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7c8f;
  margin-bottom: 32px;
}

/* =====================================================
   PANEL GRID (KEY + DELIVERABLES)
===================================================== */
.process-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.process-panel-grid h4 {
  font-size: 16px;
  font-weight: 600;
  color: #24384d;
  margin-bottom: 12px;
}

.process-panel-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-panel-grid li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7c8f;
  margin-bottom: 10px;
}

.process-panel-grid li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-size: 12px;
}

/* =====================================================
   DURATION
===================================================== */
.process-duration {
  font-size: 14px;
  font-weight: 600;
  color: #24384d;
}

.process-duration span {
  color: #f18728;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .process-step {
    min-width: 240px;
  }
}

@media (max-width: 600px) {
  .process-header h2 {
    font-size: 36px;
  }

  .process-panel {
    padding: 32px;
  }

  .process-panel-grid {
    grid-template-columns: 1fr;
  }
}
