/* ========================
   EMIGRATION SERVICES PAGE STYLES
   ======================== */
.btn {
    border: 2px solid #10b981;
}
.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-color: var(--light-green);
    color: var(--white);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #5cf5bd);
    transform: translateY(-2px);
}
.emigration-hero {
    background: linear-gradient(135deg, #059669 0%, #048459 50%, #5cf5bd 100%);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.emigration-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="emigration" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><path d="M10,10 L20,10 L20,20 L10,20 Z" fill="rgba(255,255,255,0.05)" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23emigration)"/></svg>');
    opacity: 0.3;
}

.emigration-hero .hero-content {
    position: relative;
    z-index: 2;
}

.emigration-hero .hero-features {
    margin-top: 2rem;
}

.emigration-hero .feature-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 10px 25px;
    margin: 8px 15px 8px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.emigration-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.emigration-hero .feature-item i {
    color: #a7f3d0;
    margin-right: 10px;
    font-size: 18px;
}

.emigration-hero .hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.emigration-hero .emigration-visual {
    position: relative;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.emigration-hero .success-badge,
.emigration-hero .experience-badge,
.emigration-hero .clients-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #059669;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(5, 150, 105, 0.2);
    animation: float 3s ease-in-out infinite;
}

.emigration-hero .success-badge {
    top: 30px;
    left: -50px;
    animation-delay: 0s;
}

.emigration-hero .experience-badge {
    top: 180px;
    right: -60px;
    animation-delay: 1s;
}

.emigration-hero .clients-badge {
    bottom: 40px;
    left: 10px;
    animation-delay: 2s;
}

.emigration-hero .success-badge i,
.emigration-hero .experience-badge i,
.emigration-hero .clients-badge i {
    color: #10b981;
    font-size: 20px;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.service-card.featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    transform: scale(1.05);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.service-card .service-icon i {
    font-size: 40px;
    color: white;
}

.service-card h5 {
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.25rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-card .service-features li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 25px;
}

.service-card .service-features li i {
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 14px;
    top: 10px;
}

.service-card .service-price {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    margin-top: 20px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
}

/* Popular Destinations */
.popular-destinations {
    padding: 80px 0;
}

.destination-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.destination-card .destination-flag {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.destination-card .destination-flag i {
    font-size: 35px;
    color: white;
}

.destination-card h6 {
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
}

.destination-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destination-card .destination-stats {
    margin: 20px 0;
}

.destination-card .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.destination-card .stat:last-child {
    border-bottom: none;
}

.destination-card .stat strong {
    color: #374151;
    font-size: 14px;
}

.destination-card .stat span {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

/* Process Steps */
.process-steps {
    padding: 80px 0;
    background: #ffffff;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.step-card .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.step-card .step-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
}

.step-card .step-icon i {
    font-size: 35px;
    color: #10b981;
}

.step-card h6 {
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Consultation Form */
.consultation-form-section {
    padding: 80px 0;
}

.consultation-form .card {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.consultation-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.consultation-form .form-control,
.consultation-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.consultation-form .form-check-input:checked {
    background-color: #10b981;
    border-color: #10b981;
}

.consultation-form .form-check-label {
    font-weight: 500;
    color: #374151;
}

.consultation-form .btn-primary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.consultation-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #ffffff;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.feature-card .feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.feature-card .feature-icon i {
    font-size: 40px;
    color: white;
}

.feature-card h5 {
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.testimonial-card .client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card .client-avatar i {
    font-size: 24px;
    color: white;
}

.testimonial-card .client-details h6 {
    color: #1f2937;
    margin: 0;
    font-weight: 600;
}

.testimonial-card .client-details span {
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-card .testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
}

/* FAQ Section */
.emigration-faq {
    padding: 80px 0;
    background: #ffffff;
}

.emigration-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.emigration-faq .accordion-button {
    background: white;
    color: #1f2937;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    border-radius: 15px;
}

.emigration-faq .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.emigration-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.emigration-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.emigration-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.emigration-faq .accordion-body {
    padding: 30px;
    color: #6b7280;
    line-height: 1.7;
    background: white;
    font-size: 15px;
}

/* Contact Section */
.emigration-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #059669 0%, #048459 50%, #5cf5bd 100%);
    color: white;
}

.emigration-contact-section h3 {
    color: white;
    margin-bottom: 20px;
}

.emigration-contact-section p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-features {
    margin-top: 30px;
}

.contact-feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.contact-feature i {
    font-size: 28px;
    color: #a7f3d0;
}

.contact-feature h6 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.contact-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

.contact-options .contact-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-options .contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-options .contact-info {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .emigration-hero {
        padding: 60px 0 30px;
        text-align: center;
    }
    
    .emigration-hero .hero-image-container {
        height: 350px;
        margin-top: 30px;
    }
    
    .emigration-hero .emigration-visual {
        width: 280px;
        height: 280px;
    }
    
    .emigration-hero .success-badge,
    .emigration-hero .experience-badge,
    .emigration-hero .clients-badge {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 10px;
        display: inline-flex;
    }
    
    .services-overview,
    .popular-destinations,
    .process-steps,
    .consultation-form-section,
    .why-choose-us,
    .success-stories,
    .emigration-contact-section,
    .emigration-faq {
        padding: 60px 0;
    }
    
    .service-card,
    .destination-card,
    .step-card,
    .feature-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .service-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
    
    .contact-buttons .btn {
        margin-bottom: 15px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-card .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-card .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-card .step-icon i {
        font-size: 30px;
    }
}
