/* Navigation Dark Theme */
.navbar-dark {
    background-color: #1a1a1a !important;
    border: none !important;
}

.navbar-dark .navbar-brand {
    color: white !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white !important;
}

.navbar-dark .btn-primary {
    background-color: var(--theme-color-500);
    border-color: var(--theme-color-500);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section.hero-dark {
    background: #1a1a1a;
    color: white;
}

.hero-section {
    background: linear-gradient(135deg, rgba(var(--theme-color-300-rgb), 0.5) 0%, rgba(var(--theme-color-500-rgb), 0.5) 100%);
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 60px 0 144px;
    position: relative;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-dark .hero-title b {
    font-weight: bold;
    color: var(--theme-color-300);
}

.hero-title b {
    font-weight: bold;
    color: var(--theme-color-700);
}
[data-bs-theme="dark"] .hero-title b {
    color: var(--theme-color-300);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 800px;
}

.cta-button {
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(32,201,151,0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32,201,151,0.4);
}

.hero-trust-indicators {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--custom-body-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--bs-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--bs-secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-body-bg);
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--theme-color-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--theme-color-600);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--bs-secondary-color);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bs-body-bg);
}

.testimonial-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--bs-body-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--bs-body-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--bs-secondary-color);
}

.social-proof-stats {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--bs-border-color);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-color-600);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--bs-secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: rgba(var(--bs-body-bg-rgb), 0.4);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bs-body-bg);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid var(--bs-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--theme-color-500);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-color-500);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 300;
    color: var(--bs-primary);
}

.pricing-period {
    color: var(--bs-secondary-color);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    
    display: flex;
    align-items: center;
    text-align: left;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .bi-emoji-neutral-fill {
    color: var(--bs-warning);
    margin-right: 0.75rem;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='5' height='5'><circle cx='2.5' cy='2.5' r='2.5' fill='black'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.pricing-features .bi-check-circle-fill {
    color: var(--bs-primary);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pricing-features .bi-x-circle-fill {
    color: var(--bs-danger);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pricing-info-tooltip {
    --bs-tooltip-max-width: 250px;
    font-size: 13px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--theme-color-500) 0%, var(--theme-color-600) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-white {
    background: white;
    color: var(--theme-color-600);
    border: none;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button-white:hover,
.cta-button-white:active {
    background: white !important;
    color: black !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-trust-indicators {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-trust-indicators span {
    white-space: nowrap;
}

/* Navigation */
.navbar {
    background-color: var(--bs-body-bg);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }


    .features-section,
    .pricing-section,
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .social-proof-stats {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1.5rem 0;
}

.footer h5 {
    color: var(--theme-color-400);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer a:hover {
    color: var(--theme-color-400);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.95rem;
}