.ph-search-hero {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    padding: 32px 28px 22px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}
.ph-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.ph-search-hero-decoration::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.ph-search-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.ph-search-hero-badge i {
    margin-right: 5px;
}
.ph-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.ph-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.ph-search-hero-desc a {
    color: #ffe0b2;
    text-decoration: underline;
    font-weight: 500;
}
.ph-search-hero-desc a:hover {
    color: #fff;
    text-decoration: none;
}
.ph-search-hero + .ph-search-card {
    border-radius: 0 0 20px 20px !important;
}
.ph-search-card {
    padding: 24px;
}

.ph-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 10px 0 20px;
}
.ph-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    opacity: 0.35;
    transition: all 0.4s;
}
.ph-step.active {
    opacity: 1;
}
.ph-step.done {
    opacity: 1;
}
.ph-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 8px;
    transition: all 0.4s;
}
.ph-step.active .ph-step-icon {
    background: #ff6725;
    color: #fff;
    animation: ph-pulse 1.5s infinite;
}
.ph-step.done .ph-step-icon {
    background: #e65100;
    color: #fff;
}
.ph-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    transition: color 0.4s;
}
.ph-step.active .ph-step-label {
    color: #ff6725;
}
.ph-step.done .ph-step-label {
    color: #e65100;
}
.ph-step-line {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 6px;
    margin-bottom: 28px;
    transition: background 0.4s;
}
.ph-step-line.done {
    background: #e65100;
}
@keyframes ph-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,103,37,0.3); }
    50% { box-shadow: 0 0 0 10px rgba(255,103,37,0); }
}

.ph-result-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}
.ph-result-header {
    background: linear-gradient(135deg, #fff3e0 0%, #fff8e1 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.ph-result-section {
    margin-bottom: 20px;
}
.ph-result-section h6 {
    font-size: 14px;
    font-weight: 700;
    color: #e65100;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fff3e0;
}
.ph-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.ph-data-item {
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.ph-data-item .ph-data-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}
.ph-data-item .ph-data-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    word-break: break-word;
}
.ph-prohibited-badge {
    display: inline-block;
    background: #fbe9e7;
    color: #c62828;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #ffcdd2;
}

.ph-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.ph-faq-item.open {
    border-color: #ff6725;
}
.ph-faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fafafa;
}
.ph-faq-question i {
    transition: transform 0.3s;
    color: #ff6725;
}
.ph-faq-item.open .ph-faq-question i {
    transform: rotate(180deg);
}
.ph-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
.ph-faq-item.open .ph-faq-answer {
    padding: 0 20px 16px;
    max-height: 500px;
}

@media (max-width: 576px) {
    .ph-step { min-width: 60px; }
    .ph-step-icon { width: 38px; height: 38px; font-size: 14px; }
    .ph-step-label { font-size: 10px; }
    .ph-step-line { width: 20px; }
    .ph-data-grid { grid-template-columns: 1fr; }
}
