/* ========================================
   BC Gate - Enhanced Component Styles
   Additional styles for new components
   ======================================== */

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 3rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 168, 107, 0.1);
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-text {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(0, 168, 107, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 107, 0.2);
    transition: all 0.3s ease;
}

.trust-text:hover {
    background: rgba(0, 168, 107, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.2);
}

/* Dashboard Preview */
.dashboard-preview-container {
    position: relative;
    z-index: 10;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 168, 107, 0.15);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    padding: 1rem;
    color: white;
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: white;
    color: var(--primary-green);
}

.dashboard-content {
    padding: 1.5rem;
    min-height: 200px;
}

/* Contact Preview Styles */
.contact-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.1);
    border: 1px solid rgba(0, 168, 107, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card .contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.2);
    border-color: var(--primary-green);
}

/* Service Cards Enhancement */
.service-icon {
    position: relative;
    overflow: hidden;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.service-card:hover .icon-bg {
    opacity: 0.1;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.feature-checkmark {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1em;
}

.service-cta {
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Process Steps Enhancement */
.step-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--secondary-green);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.3;
    margin-left: auto;
    flex-shrink: 0;
}

.process-timeline {
    margin-top: 3rem;
    text-align: center;
}

.timeline-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin: 1rem 0;
    overflow: hidden;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
    width: 0;
    border-radius: 2px;
}

.timeline-estimate {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-grid.single-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-grid.single-pricing .pricing-card {
    max-width: 400px;
    width: 100%;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.price-period {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* CTA Section Enhancement */
.cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem auto;
    max-width: 100%;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    opacity: 0.9;
    text-align: center;
    min-width: 180px;
}

.cta-feature i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    border-color: white;
}

.cta-trust {
    margin-top: 3rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
}

.trust-logo i {
    font-size: 1.2rem;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.cta-shape.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-shape.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation: float 10s ease-in-out infinite;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(0, 168, 107, 0.1);
}

.faq-question {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-900);
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Get Started Modal */
.get-started-form {
    padding: 0;
}

.form-step {
    display: none;
    animation: stepSlideIn 0.3s ease-out;
}

.form-step.active {
    display: block;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: var(--gray-50);
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.form-progress {
    margin-top: 1rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 33.33%;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 168, 107, 0.05));
    border-radius: 50%;
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation: float 8s ease-in-out infinite;
}

.bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -5%;
    animation: float 10s ease-in-out infinite reverse;
}

.bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 168, 107, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.floating-card:hover .card-glow {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dashboard-preview {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-icon {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .step-features {
        justify-content: center;
    }
}

/* Animation improvements for mobile */
@media (max-width: 768px) {
    .floating-card {
        position: relative;
        animation: none !important;
        transform: none !important;
        margin-bottom: 1rem;
    }
    
    .bg-shape {
        display: none;
    }
    
    .cta-shape {
        display: none;
    }
}
