/* plastic_request.css - 플라스틱 솔루션 소싱/개발 의뢰 페이지 전용 스타일 */

/* Hero Banner */
.request-hero {
    background-image: url('images/request_hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    position: relative;
    color: white;
    margin-bottom: 20px;
}
.request-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 41, 59, 0.7); /* dark overlay for readability */
}
.request-hero-content {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* Sections Container */
.request-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Single Section */
.request-section {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: transparent;
}

/* For alternate section backgrounds if needed */
.request-section-wrapper {
    background-color: transparent;
    padding: 30px 0;
    margin: 0;
}

.request-text {
    flex: 1;
    padding: 10px 30px;
}
.request-text h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}
.request-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.request-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #514D6F; /* Match brand color from calculator */
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.request-btn:hover {
    background-color: #3b3852;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 77, 111, 0.3);
}

.request-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 16 / 10;
    width: 100%;
}
.request-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.request-image:hover img {
    transform: scale(1.05);
}

/* Process Timeline Section */
.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.process-header {
    text-align: center;
    margin-bottom: 60px;
}
.process-header h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}
.process-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Central Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e2e8f0;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Even steps have image on right, text on left */
.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-image, .process-content {
    width: calc(50% - 40px);
}

.process-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: block;
}

.process-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.process-content h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.process-content li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.95rem;
}

.process-content li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #94a3b8;
}

/* The Number Badge */
.process-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-color: #514D6F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 0 4px #fff;
}

/* Info Box */
.process-info-box {
    background-color: #f8f5f5;
    border-radius: 8px;
    padding: 30px;
    margin-top: 60px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.process-info-box .icon {
    font-size: 1.8rem;
}
.process-info-box .text h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}
.process-info-box .text p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .request-hero {
        padding: 60px 30px;
    }
    .request-hero-content {
        font-size: 1.5rem;
    }
    .request-section {
        flex-direction: column;
    }
    .request-section.reverse {
        flex-direction: column-reverse;
    }
    .request-text {
        padding: 20px 0;
    }

    /* Responsive Process Timeline */
    .process-timeline::before {
        left: 20px;
    }
    .process-step, .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .process-image, .process-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    .process-number {
        left: 20px;
        top: 20px;
        transform: translate(-50%, 0);
    }
    .process-info-box {
        flex-direction: column;
        gap: 10px;
    }
}
