
/* ===== CERTIFICATE ATTESTATION PAGE STYLES ===== */
.certificate-hero {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #1e40af 35%, 
        #3b82f6 70%, 
        #60a5fa 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.certificate-hero .hero-content h1 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.certificate-hero .hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

.certificate-hero .hero-features {
    margin: 2rem 0;
}

.certificate-hero .feature-item {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 500;
}

.certificate-hero .feature-item i {
    color: #60a5fa;
    font-size: 1.2rem;
    width: 25px;
}

.certificate-hero .hero-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

/* Attestation Visual Elements */
.attestation-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-badge,
.countries-badge,
.processing-badge {
    position: absolute;
    background: var(--white);
    color: var(--primary-black);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.document-badge {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.countries-badge {
    top: 10%;
    right: 40%;
    animation-delay: 1s;
    color: var(--white);
}

.processing-badge {
    top: 40%;
    left: 5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--white);
}

.document-badge i,
.countries-badge i,
.processing-badge i {
    font-size: 1.5rem;
}

.document-badge div,
.countries-badge div,
.processing-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.document-badge span,
.countries-badge span,
.processing-badge span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Document Type Cards */
.document-type-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.document-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.document-type-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.1));
}

.document-type-card .document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.document-type-card .document-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.document-type-card h5 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.document-type-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.document-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.document-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.document-list li i {
    color: #10b981;
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.processing-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
}

.processing-time i {
    font-size: 1rem;
}

/* Process Steps */
.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
}

.process-step .step-icon i {
    color: #3b82f6;
    font-size: 2rem;
}

.process-step h6 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Country Cards */
.country-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.country-card .country-flag {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.country-card .country-flag i {
    color: var(--white);
    font-size: 1.5rem;
}

.country-card h5 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.country-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.country-features {
    margin-bottom: 1.5rem;
}

.country-features .feature {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.country-features .feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.country-features strong {
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
}

.country-features span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.1));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h5 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.plan-price .currency {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

.plan-price .amount {
    color: #3b82f6;
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price .duration {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.plan-features li i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 0.9rem;
}

/* Document Checklist */
.document-checklist {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    height: 100%;
    transition: var(--transition);
}

.document-checklist:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.document-checklist h5 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.document-checklist h5 i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checklist li i {
    color: #3b82f6;
    margin-right: 1rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Attestation Form */
.attestation-form-section {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(147, 197, 253, 0.08) 100%);
}

.attestation-form .card {
    border: none;
    border-radius: 25px;
    overflow: hidden;
}

.attestation-form .form-label {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.attestation-form .form-control,
.attestation-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.attestation-form .form-control:focus,
.attestation-form .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.attestation-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.attestation-form .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.attestation-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.attestation-form .btn-primary {
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    transition: var(--transition);
}

.attestation-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Cost Calculator */
.cost-calculator {
    background: rgba(59, 130, 246, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.cost-calculator h6 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.cost-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cost-item.total {
    font-weight: 600;
    color: var(--primary-black);
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

.cost-item span:first-child {
    color: var(--text-gray);
}

.cost-item span:last-child {
    color: #3b82f6;
    font-weight: 600;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-top: 4px solid #1d4ed8;
}

/* Contact Section */
.certificate-contact-section {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #1e40af 35%, 
        #3b82f6 70%, 
        #60a5fa 100%);
    color: var(--white);
}

.certificate-contact-section h3 {
    color: var(--white);
    font-weight: 600;
}

.certificate-contact-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-feature i {
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.3rem;
}

.contact-feature h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-options .btn {
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-options .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.certificate-faq .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.certificate-faq .accordion-button {
    background: var(--white);
    color: var(--primary-black);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    border-radius: 15px 15px 0 0;
    font-size: 1.3rem;
}

.certificate-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: var(--white);
}

.certificate-faq .accordion-button:focus {
    box-shadow: none;
    border-color: #3b82f6;
}

.certificate-faq .accordion-body {
    padding: 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive Styles for Certificate Attestation */
@media (max-width: 992px) {
    .certificate-hero .hero-image-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .document-badge,
    .countries-badge,
    .processing-badge {
        position: static;
        margin: 1rem auto;
        animation: none;
        max-width: 200px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .attestation-form .btn-primary {
        width: 100%;
    }
    
    .contact-options .btn {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .certificate-hero {
        text-align: center;
    }
    
    .certificate-hero .hero-content {
        margin-bottom: 2rem;
    }
    
    .document-type-card,
    .process-step,
    .country-card,
    .pricing-card,
    .document-checklist {
        margin-bottom: 2rem;
    }
    
    .attestation-form .card-body {
        padding: 2rem 1.5rem;
    }
    
    .process-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .process-step .step-icon {
        width: 60px;
        height: 60px;
        margin: 1.5rem auto 1rem;
    }
    
    .process-step .step-icon i {
        font-size: 1.5rem;
    }
    
    .plan-price .amount {
        font-size: 2rem;
    }
    
    .cost-calculator {
        margin-top: 1.5rem;
    }
}
