/* ==========================================================================
   CERTIFICATE VERIFICATION PAGE - DEDICATED STYLES
   Clean, focused styles for document verification
   Version: 2.0 - Enhanced with SEO sections
   ========================================================================== */

/* ========================================
   UTILITY CLASSES
   ======================================== */
.verification-hidden {
    display: none !important;
}

/* ========================================
   PAGE-SPECIFIC BUTTONS
   ======================================== */
.verify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.verify-btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.verify-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    color: #ffffff !important;
}

.verify-btn-outline {
    background: transparent;
    color: #f59e0b !important;
    border: 2px solid #f59e0b;
}

.verify-btn-outline:hover {
    background: #f59e0b;
    color: #ffffff !important;
    transform: translateY(-2px);
}

[data-theme="light"] .verify-btn-outline {
    color: #d97706 !important;
    border-color: #d97706;
}

[data-theme="light"] .verify-btn-outline:hover {
    background: #d97706;
    color: #ffffff !important;
}

/* ========================================
   VERIFICATION FORM SECTION
   ======================================== */
.verification-page .content-wrapper {
    background: var(--ang-bg-primary, #0f172a);
    padding: 60px 0 80px;
}

[data-theme="light"] .verification-page .content-wrapper {
    background: var(--ang-bg-primary, #ffffff);
}

/* Section Title */
.verification-page .section-title {
    margin-bottom: 40px;
}

.verification-page .section-title .title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ang-text-heading, #f1f5f9);
    margin-bottom: 12px;
}

.verification-page .section-title p {
    font-size: 1rem;
    color: var(--ang-text-secondary, #94a3b8);
}

/* ========================================
   DOCUMENT FORM
   ======================================== */
.document-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

[data-theme="light"] .document-form {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.document-form .form-select,
.document-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--ang-text-heading, #f1f5f9);
    transition: all 0.3s ease;
}

.document-form .form-select:focus,
.document-form .form-control:focus {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .document-form .form-select,
[data-theme="light"] .document-form .form-control {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

[data-theme="light"] .document-form .form-select:focus,
[data-theme="light"] .document-form .form-control:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    background: #ffffff;
}

.document-form .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    transition: all 0.3s ease;
}

.document-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

/* ========================================
   VERIFICATION RESULT
   ======================================== */
.verification-result {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    display: none;
}

.verification-result.show {
    display: block;
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verification-result.success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.verification-result.error {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

[data-theme="light"] .verification-result {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .verification-result.success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

[data-theme="light"] .verification-result.error {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.result-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
}

.verification-result.success .result-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.verification-result.error .result-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ang-text-heading, #f1f5f9);
    margin-bottom: 12px;
}

.result-message {
    font-size: 1rem;
    color: var(--ang-text-secondary, #94a3b8);
    margin-bottom: 20px;
}

.result-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

[data-theme="light"] .result-details {
    background: #f8fafc;
}

.result-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-details .detail-row:last-child {
    border-bottom: none;
}

[data-theme="light"] .result-details .detail-row {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.result-details .detail-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ang-text-secondary, #94a3b8);
}

.result-details .detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ang-text-heading, #f1f5f9);
}

/* ========================================
   INFO CARDS
   ======================================== */
.info-cards {
    margin-top: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
}

[data-theme="light"] .info-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .info-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-card-icon i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ang-text-heading, #f1f5f9);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 0.875rem;
    color: var(--ang-text-secondary, #94a3b8);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   WHY VERIFY SECTION
   ======================================== */
.why-verify-section {
    padding: 70px 0;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.03) 0%, transparent 100%);
}

[data-theme="light"] .why-verify-section {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.02) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--ang-text-heading, #f1f5f9);
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}

[data-theme="light"] .section-title {
    color: var(--ang-text-heading, #1e293b);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--ang-text-secondary, #94a3b8);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

[data-theme="light"] .section-desc {
    color: var(--ang-text-secondary, #64748b);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
}

[data-theme="light"] .feature-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-radius: 14px;
    font-size: 1.75rem;
    color: #f59e0b;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.1));
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ang-text-heading, #f1f5f9);
    margin-bottom: 12px;
}

[data-theme="light"] .feature-title {
    color: var(--ang-text-heading, #1e293b);
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--ang-text-secondary, #94a3b8);
    line-height: 1.7;
    margin: 0;
}

[data-theme="light"] .feature-desc {
    color: var(--ang-text-secondary, #64748b);
}

/* ========================================
   VERIFICATION STEPS SECTION
   ======================================== */
.steps-section {
    padding: 60px 0;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
}

.step-card:hover::before {
    height: 6px;
}

[data-theme="light"] .step-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .step-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ang-text-heading, #f1f5f9);
    margin-bottom: 12px;
}

[data-theme="light"] .step-title {
    color: var(--ang-text-heading, #1e293b);
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--ang-text-secondary, #94a3b8);
    line-height: 1.7;
    margin: 0;
}

[data-theme="light"] .step-desc {
    color: var(--ang-text-secondary, #64748b);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 60px 0 70px;
    background: rgba(245, 158, 11, 0.02);
}

[data-theme="light"] .faq-section {
    background: #f8fafc;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 158, 11, 0.3);
}

[data-theme="light"] .faq-item {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .faq-item.active {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] .faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question-text {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ang-text-heading, #f1f5f9);
    flex: 1;
    padding-right: 20px;
}

[data-theme="light"] .faq-question-text {
    color: var(--ang-text-heading, #1e293b);
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 0.875rem;
    color: #f59e0b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: rgba(245, 158, 11, 0.2);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--ang-text-secondary, #94a3b8);
    line-height: 1.7;
}

[data-theme="light"] .faq-answer-content {
    color: var(--ang-text-secondary, #64748b);
}

/* ========================================
   CTA SECTION
   ======================================== */
.verify-cta-section {
    padding: 70px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 18px;
    padding: 50px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="light"] .cta-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.04) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--ang-text-heading, #f1f5f9);
    margin-bottom: 16px;
    line-height: 1.2;
}

[data-theme="light"] .cta-title {
    color: var(--ang-text-heading, #1e293b);
}

.cta-desc {
    font-size: 1.0625rem;
    color: var(--ang-text-secondary, #94a3b8);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="light"] .cta-desc {
    color: var(--ang-text-secondary, #64748b);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .verification-page .content-wrapper {
        padding: 50px 0 70px;
    }
    
    .document-form,
    .verification-result {
        padding: 32px;
    }

    .why-verify-section,
    .steps-section {
        padding: 50px 0;
    }

    .verify-cta-section {
        padding: 50px 0;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card,
    .step-card {
        margin-bottom: 20px;
    }

    .verify-btn {
        padding: 13px 28px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 767px) {
    .verification-page .content-wrapper {
        padding: 40px 0 60px;
    }
    
    .document-form,
    .verification-result {
        padding: 24px;
    }
    
    .info-card {
        padding: 24px;
        margin-bottom: 20px;
    }

    .why-verify-section,
    .steps-section,
    .faq-section {
        padding: 40px 0;
    }

    .verify-cta-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 35px;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .section-desc {
        font-size: 1rem;
        text-align: center;
    }

    .section-tag {
        font-size: 0.8125rem;
        gap: 6px;
    }

    .feature-card,
    .step-card {
        padding: 28px 24px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-title,
    .step-title {
        font-size: 1.0625rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.375rem;
    }

    .cta-box {
        padding: 35px 24px;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .cta-desc {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .verify-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question-text {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-answer-content {
        padding: 0 20px 16px;
        font-size: 0.875rem;
    }

    .verify-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-desc {
        text-align: center;
    }

    .feature-card,
    .step-card {
        padding: 24px 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.375rem;
    }

    .faq-question {
        padding: 14px 18px;
    }

    .faq-question-text {
        font-size: 0.9375rem;
    }

    .verify-btn {
        padding: 11px 20px;
        font-size: 0.8125rem;
    }

    .document-form,
    .verification-result {
        padding: 20px;
    }
}
