@charset "UTF-8";

/* =========================================
   1. Header (Reused from Portfolio)
   ========================================= */
.page-header-simple {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    padding: 200px 0 80px;
    color: #fff;
    position: relative;
}

.pf-header-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
}

.pf-category-badge {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pf-big-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    color: #fff;
    margin: 0;
    font-family: 'Pretendard', sans-serif;
}

.pf-header-desc {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 5px;
    word-break: keep-all;
}

/* =========================================
   2. Contact Layout (Multi-Step)
   ========================================= */
.contact-wrap {
    max-width: 700px;
    margin: 0 auto;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.step-dot {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.step-dot.active {
    color: var(--accent-color);
    font-weight: 800;
}

.step-dot.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Contact Card */
.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.form-header p {
    color: #888;
    font-size: 16px;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-input,
.c-select,
.c-textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
    outline: none;
    font-family: inherit;
}

.c-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.c-select option {
    background: #111;
    color: #fff;
}

.c-textarea {
    resize: none;
    height: 150px;
}

.c-input:focus,
.c-select:focus,
.c-textarea:focus {
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

/* Buttons */
.btn-group-step {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 40px;
}

.btn-next,
.btn-submit {
    padding: 14px 30px;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-prev {
    padding: 14px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Summary Box */
.summary-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
}

.s-label {
    color: #888;
    font-size: 14px;
}

.s-value {
    color: #fff;
    font-weight: 600;
}

/* =========================================
   3. Responsive
   ========================================= */
@media (max-width: 768px) {
    .pf-header-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pf-big-title {
        font-size: 48px;
    }

    .pf-header-desc {
        text-align: left;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .step-indicator {
        gap: 20px;
        font-size: 12px;
    }
}