.da-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;
}
.da-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.da-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);
}
.da-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;
}
.da-search-hero-badge i { margin-right: 5px; }
.da-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.da-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.da-search-hero-desc a {
    color: #ffd4c2;
    text-decoration: underline;
    font-weight: 500;
}
.da-search-hero-desc a:hover { color: #fff; text-decoration: none; }
.da-search-hero + .da-search-card { border-radius: 0 0 20px 20px !important; }
.da-search-card { padding: 24px; }

.da-result-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}
.da-result-header {
    background: linear-gradient(135deg, #fff3ed 0%, #fff3ed 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.da-result-section { margin-bottom: 20px; }
.da-result-section h6 {
    font-size: 14px;
    font-weight: 700;
    color: #e55a1b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fff3ed;
}
.da-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.da-info-item {
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}
.da-info-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: #e55a1b;
    margin-bottom: 6px;
    border: none;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}
.da-info-item p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}
.da-guidance-card {
    background: #fff3ed;
    border: 1px solid #ffd6c2;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.da-guidance-card h5 {
    color: #e55a1b;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.da-guidance-card ol {
    padding-left: 20px;
    margin: 0;
}
.da-guidance-card ol li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}
.da-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.da-doc-list li {
    padding: 10px 14px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    border: 1px solid #f0f0f0;
}
.da-doc-list li i { color: #e55a1b; margin-right: 8px; }
.da-jurisdiction-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.da-jurisdiction-table thead th {
    background: #fff3ed;
    color: #e55a1b;
    font-weight: 700;
    padding: 12px 14px;
    text-align: left;
    font-size: 13px;
}
.da-jurisdiction-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

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

.da-results-actions .btn {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
}

#tool-article h2 { color: #e55a1b; font-size: 22px; font-weight: 700; margin-bottom: 18px; }
#tool-article h3 { color: #333; font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
#tool-article p { font-size: 15px; color: #444; line-height: 1.7; }
#tool-article ul, #tool-article ol { padding-left: 22px; }
#tool-article li { font-size: 14px; color: #444; margin-bottom: 6px; line-height: 1.6; }

@media (max-width: 576px) {
    .da-search-hero-title { font-size: 20px; }
    .da-info-grid { grid-template-columns: 1fr; }
    .da-jurisdiction-table { font-size: 12px; }
    .da-jurisdiction-table thead th, .da-jurisdiction-table tbody td { padding: 8px 10px; }
}

@media print {
    .dashboard-side-menu, .dashboard-header, .da-search-hero, .da-search-card,
    .related-tool-card, #tool-article, .da-faq-item, footer, nav, .breadcrumb,
    .da-results-actions { display: none !important; }
    .da-result-card { box-shadow: none !important; border: 1px solid #ddd; }
    .da-result-card::before {
        content: 'DTCP Layout Approval Check — Source: tg.verified.realestate';
        display: block;
        font-size: 12px;
        color: #666;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }
}
