/* Our Process Page Styles */

/* Shared Label Style */
.process-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--lightgreen);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Hero Section */
.process-hero {
  background: linear-gradient(135deg, rgba(52, 78, 65, 0.92), rgba(0, 0, 0, 0.85)),
    url('../assets/images/VAs.webp');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 10px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-hero-overlay {
  text-align: center;
  padding: 200px 60px 100px 60px;
  max-width: 750px;
}

.process-hero .process-label {
  color: var(--pastelgreen);
}

.process-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: processFadeUp 1s ease;
}

.process-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.7;
  animation: processFadeUp 1.3s ease;
}

@keyframes processFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline Section */
.process-timeline-section {
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-timeline-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 10px;
}

.process-timeline-header p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #666;
}

/* Individual Process Steps */
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step-reverse {
  direction: rtl;
}

.process-step-reverse > * {
  direction: ltr;
}

.process-step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(88, 129, 87, 0.15);
  line-height: 1;
  margin-bottom: 10px;
}

.process-step-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.process-step-content p {
  font-size: 1rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.process-checklist {
  list-style: none;
  padding: 0;
}

.process-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #444;
  padding: 6px 0;
}

.process-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--lightgreen);
  flex-shrink: 0;
}

.process-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-box {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--lightgreen), var(--darkgreen));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(88, 129, 87, 0.25);
  transition: transform 0.3s ease;
}

.process-icon-box:hover {
  transform: scale(1.05) rotate(3deg);
}

.process-icon-box svg {
  width: 55px;
  height: 55px;
  color: white;
}

/* Benefits Section */
.process-benefits-section {
  background: linear-gradient(130deg, var(--black), var(--darkgreen));
  padding: 80px;
  margin: 0 1rem;
  border-radius: 10px;
}

.process-benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-benefits-header .process-label {
  color: var(--pastelgreen);
}

.process-benefits-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.process-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-benefit-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.process-benefit-card:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-5px);
}

.process-benefit-card svg {
  width: 36px;
  height: 36px;
  color: var(--pastelgreen);
  margin-bottom: 15px;
}

.process-benefit-card:hover svg {
  color: var(--lightgreen);
}

.process-benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.process-benefit-card:hover h3 {
  color: var(--darkgreen);
}

.process-benefit-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.process-benefit-card:hover p {
  color: #555;
}

/* FAQ Section */
.process-faq-section {
  padding: 80px;
}

.process-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.process-faq-container h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--darkgreen);
  text-align: center;
  margin-bottom: 30px;
}

/* CTA Section */
.process-cta-section {
  padding: 60px 80px 80px 80px;
  text-align: center;
}

.process-cta-container {
  max-width: 650px;
  margin: 0 auto;
}

.process-cta-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 12px;
}

.process-cta-container p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.process-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.process-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 28px;
  background: var(--lightgreen);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.process-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(88, 129, 87, 0.4);
}

.process-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 28px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
}

.process-cta-secondary:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 1135px) {
  .process-hero-overlay {
    padding: 180px 40px 80px 40px;
  }

  .process-hero h1 {
    font-size: 2.8rem;
  }

  .process-timeline-section {
    padding: 60px 40px;
  }

  .process-benefits-section {
    padding: 60px 40px;
  }

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

  .process-faq-section {
    padding: 60px 40px;
  }

  .process-cta-section {
    padding: 40px;
  }
}

@media screen and (max-width: 850px) {
  .process-hero h1 {
    font-size: 2.2rem;
  }

  .process-timeline-header h2 {
    font-size: 2rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-step-reverse {
    direction: ltr;
  }

  .process-step-visual {
    order: -1;
  }

  .process-icon-box {
    width: 110px;
    height: 110px;
  }

  .process-icon-box svg {
    width: 42px;
    height: 42px;
  }

  .process-benefits-header h2 {
    font-size: 2rem;
  }

  .process-cta-container h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 560px) {
  .process-hero-overlay {
    padding: 150px 20px 60px 20px;
  }

  .process-hero h1 {
    font-size: 1.8rem;
  }

  .process-hero p {
    font-size: 1rem;
  }

  .process-timeline-section {
    padding: 40px 20px;
  }

  .process-step-number {
    font-size: 2.5rem;
  }

  .process-step-content h3 {
    font-size: 1.3rem;
  }

  .process-benefits-section {
    padding: 40px 20px;
  }

  .process-benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-faq-section {
    padding: 40px 20px;
  }

  .process-faq-container h2 {
    font-size: 1.5rem;
  }

  .process-cta-section {
    padding: 40px 20px;
  }

  .process-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 400px) {
  .process-hero h1 {
    font-size: 1.5rem;
  }

  .process-hero-overlay {
    padding: 130px 15px 50px 15px;
  }

  .process-icon-box {
    width: 90px;
    height: 90px;
  }

  .process-icon-box svg {
    width: 35px;
    height: 35px;
  }
}
