/* -------------------------------------------------------------------------- */
/* Home Page Process Section CSS                                              */
/* -------------------------------------------------------------------------- */

.process-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(rgba(255, 253, 251, 0.92), rgba(255, 253, 251, 0.92)), url('/public/assets/images/background design 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-top: 1px solid rgba(200, 155, 95, 0.2);
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.process-header-left {
    max-width: 600px;
    text-align: left;
}

.process-header-right {
    text-align: right;
    padding-right: 2rem;
}

.process-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

.script-typography {
    font-family: 'Brush Script MT', 'Great Vibes', cursive; /* Generic fallback for script */
    font-size: 1.8rem;
    color: var(--color-primary);
    line-height: 0.9;
    position: relative;
    transform: rotate(-5deg);
}

.script-heart {
    position: absolute;
    bottom: 10px;
    right: -25px;
}

/* Timeline Flow */
.process-timeline-flow {
    position: relative;
    padding: 2rem 0 0 0;
}

.process-curve-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.process-curve-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.process-cards-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.process-card-col {
    width: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Staggering the cards to match the curve */
.process-card-col.col-1 {
    margin-top: 60px;
}
.process-card-col.col-2 {
    margin-top: 140px;
}
.process-card-col.col-3 {
    margin-top: 0px;
}
.process-card-col.col-4 {
    margin-top: 60px;
}

.process-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(122, 18, 56, 0.3);
    position: relative;
    z-index: 3;
}

/* Glowing effect behind badge */
.process-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(122, 18, 56, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.process-card {
    background-color: #FFFFFF;
    border-radius: 40px 12px 40px 12px;
    border: 1px solid rgba(122, 18, 56, 0.35);
    padding: 2rem 1.5rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(122, 18, 56, 0.04);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(122, 18, 56, 0.08);
    border-color: rgba(122, 18, 56, 0.65);
}

.process-card-icon {
    margin-bottom: 1rem;
}

.process-card-title {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-card-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .script-typography {
        display: none;
    }
}

@media (max-width: 992px) {
    .process-header {
        flex-direction: column;
    }
    .process-header-right {
        margin-top: 2rem;
        text-align: left;
    }
    .process-cards-row {
        flex-wrap: wrap;
        gap: 2rem;
        align-items: stretch;
    }
    .process-card-col {
        width: 45%;
        margin-top: 0 !important;
    }
    .process-curve-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-card-col {
        width: 100%;
    }
}