/* Inam Land Check — Telangana */
/* Prefix: ilc- | Theme: #FF6725 orange */

/* -- Hero Section -- */
.ilc-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;
}
.ilc-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.ilc-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);
}
.ilc-search-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ilc-search-hero-badge i { font-size: 11px; }
.ilc-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.ilc-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.ilc-search-hero-desc a {
    color: #ffe0cc;
    text-decoration: underline;
    font-weight: 500;
}
.ilc-search-hero-desc a:hover {
    color: #fff5f0;
    text-decoration: none;
}
.ilc-search-hero + .ilc-search-card {
    border-radius: 0 0 20px 20px !important;
}
.ilc-search-card {
    padding: 24px;
}

/* -- Checker Result Area -- */
.ilc-result-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 24px;
    margin-top: 8px;
}
.ilc-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.ilc-status-badge.ilc-safe {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.ilc-status-badge.ilc-verify {
    background: #fefce8;
    color: #854d0e;
    border: 1px solid #fde68a;
}
.ilc-status-badge.ilc-high-risk {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
}
.ilc-status-badge.ilc-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.ilc-status-badge.ilc-investigate {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}
.ilc-result-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.ilc-result-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}
.ilc-steps-heading {
    font-size: 15px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 14px;
}
.ilc-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: ilc-step;
}
.ilc-step-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}
.ilc-step-list li:last-child { border-bottom: none; }
.ilc-step-list li::before {
    counter-increment: ilc-step;
    content: counter(ilc-step);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff6725;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* -- Info Cards Grid -- */
.ilc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 10px;
}
.ilc-info-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 22px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ilc-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,103,37,0.1);
}
.ilc-info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FF6725;
    margin-bottom: 14px;
}
.ilc-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}
.ilc-info-card p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* -- Reference Table -- */
.ilc-ref-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}
.ilc-ref-table thead th {
    background: #ff6725;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    white-space: nowrap;
}
.ilc-ref-table tbody td {
    padding: 11px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    vertical-align: top;
}
.ilc-ref-table tbody tr:last-child td { border-bottom: none; }
.ilc-ref-table tbody tr:hover { background: #fff5f0; }

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

/* -- Responsive -- */
@media (max-width: 767px) {
    .ilc-search-hero { padding: 22px 18px 18px; border-radius: 16px 16px 0 0; }
    .ilc-search-hero-title { font-size: 20px; }
    .ilc-info-grid { grid-template-columns: 1fr; }
    .ilc-ref-table { font-size: 12px; }
    .ilc-ref-table thead th,
    .ilc-ref-table tbody td { padding: 8px 10px; }
    .ilc-result-title { font-size: 17px; }
}
