/* Aadhaar Biometric Alert — Hero */
.aab-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;
}
.aab-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.aab-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);
}
.aab-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;
}
.aab-search-hero-badge i { font-size: 11px; }
.aab-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.aab-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.aab-search-hero-desc a {
    color: #ffe0cc;
    text-decoration: underline;
    font-weight: 500;
}
.aab-search-hero-desc a:hover {
    color: #fff5f0;
    text-decoration: none;
}

/* Checklist Card */
.aab-checklist-card {
    padding: 24px;
    border-radius: 0 0 20px 20px !important;
}
.aab-checklist-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}
.aab-checklist-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.5;
}
.aab-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aab-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background 0.2s, border-color 0.2s;
}
.aab-checklist li.aab-checked {
    background: #fff5f0;
    border-color: #ffd4c2;
}
.aab-checklist li label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    width: 100%;
}
.aab-checklist li input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #ff6725;
}
.aab-checklist li .aab-check-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}
.aab-checklist li .aab-check-text span {
    font-size: 13px;
    color: #6b7280;
}
.aab-progress-bar {
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    margin-top: 16px;
    overflow: hidden;
}
.aab-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6725, #ff8f5c);
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
}
.aab-progress-text {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    text-align: right;
}

/* Step Cards */
.aab-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.aab-step-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.aab-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,103,37,0.10);
}
.aab-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff5f0;
    color: #ff6725;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}
.aab-step-icon {
    font-size: 28px;
    color: #ff6725;
    margin-bottom: 10px;
}
.aab-step-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}
.aab-step-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}
.aab-step-arrow {
    display: none;
}

/* Info Cards Grid */
.aab-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.aab-info-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.aab-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.aab-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: 12px;
}
.aab-info-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}
.aab-info-card-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Alert Status Badges */
.aab-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 8px;
}
.aab-status-locked {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.aab-status-unlocked {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.aab-status-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

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

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

/* How-To Section */
.aab-howto-section {
    margin-top: 10px;
}
.aab-howto-method {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.aab-howto-method-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.aab-howto-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: howto-step;
}
.aab-howto-steps li {
    counter-increment: howto-step;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}
.aab-howto-steps li::before {
    content: counter(howto-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #fff5f0;
    color: #ff6725;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

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