.workflow__process {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: var(--dark);
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0 0 10vh 0;
}
.workflow-process::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 111, 187, 0.1) 0%, rgba(44, 111, 187, 0) 70%);
    z-index: 0;
}
.workflow-process::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0) 70%);
    z-index: 0;
}
.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}
.process-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    display: inline-block;
}
.process-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.process-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.step-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.step-card.active {
    transform: translateY(0);
    opacity: 1;
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.step-header {
    display: flex;
    align-items: center;
    padding: 1.8rem 1.8rem 1.2rem;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    color: white;
}
.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1.2rem;
    flex-shrink: 0;
}
.step-number {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}
.step-name {
    font-size: 1.4rem;
    font-weight: 700;
}
.step-content {
    padding: 1.8rem;
}
.step-description {
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.step-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.step-features li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}
.step-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--accent);
    font-weight: bold;
}
.step-duration {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}
.contact-info {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}
.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
}
.contact-item i {
    color: var(--accent);
    font-size: 1.2rem;
}
.step-card:nth-child(1) .step-header {
    background: linear-gradient(120deg, #2c6fbb, #3a86ff);
}
.step-card:nth-child(2) .step-header {
    background: linear-gradient(120deg, #4a7bd9, #5e8de6);
}
.step-card:nth-child(3) .step-header {
    background: linear-gradient(120deg, #5e8de6, #7a9eeb);
}
.step-card:nth-child(4) .step-header {
    background: linear-gradient(120deg, #7a9eeb, #95afee);
}
.step-card:nth-child(5) .step-header {
    background: linear-gradient(120deg, #95afee, #b0c4f1);
}
.floating-element {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}
.floating-element.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid var(--accent);
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
}
.floating-element.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--primary);
    bottom: 15%;
    right: 8%;
    animation: float 18s infinite ease-in-out;
    animation-delay: 2s;
}
.floating-element.square {
    width: 80px;
    height: 80px;
    border: 6px solid var(--secondary);
    top: 30%;
    right: 10%;
    transform: rotate(25deg);
    animation: float 12s infinite ease-in-out;
    animation-delay: 1s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}
@media (max-width: 1024px) {
  .workflow-process {
    padding: 4rem 1.5rem;
  }
  .process-title {
    font-size: 2.2rem;
  }
  .step-card {
    min-width: 280px;
    max-width: 320px;
  }
  .process-steps {
    padding: 2vh;
  }
}
@media (max-width: 768px) {
  .workflow-process {
    padding: 3rem 1rem;
  }
  .process-title {
    font-size: 2rem;
  }
  .process-subtitle {
    font-size: 1rem;
  }
  .step-card {
    min-width: 100%;
    max-width: 100%;
  }
  .contact-details {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .workflow-process {
    padding: 2rem 1rem;
  }
  .process-steps {
    padding: 2vh;
  }
  .process-title {
    font-size: 1.6rem;
    padding: 1vh;
  }
  .process-subtitle {
    font-size: 0.95rem;
    padding: 2vh;
  }
  .step-features li {
    font-size: 0.9rem;
  }
  .step-duration {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  .floating-element {
    display: none;
  }
  .contact-item {
    font-size: 1rem;
  }
}
