/* SEO Landing Page Styles */

/* Step numbers styling */
.step-number .badge {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Accordion styling */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #dee2e6;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Landing page navigation */
#landingNavbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

#landingNavbar .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
}

/* Footer styling */
.footer-logo-container {
    border: 2px solid white;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    justify-content: flex-start;
    text-align: left;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.footer-links a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-links {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 0.25rem 0.5rem;
    }
}

/* Hero section adjustments for navigation */
.hero-carousel {
    margin-top: 76px; /* Account for fixed navbar */
}

/* Feature cards hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Pricing cards */
.card.border-primary {
    border-width: 2px !important;
}

/* CTA section improvements */
.bg-primary .btn-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-carousel {
        margin-top: 66px;
    }
    
    .step-number .badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* SEO-friendly text styling */
.seo-text {
    line-height: 1.6;
    color: #6c757d;
}

.seo-heading {
    font-weight: 600;
    color: #212529;
}

/* Schema markup helper classes */
.schema-item {
    display: none; /* Hidden but accessible to screen readers */
}

/* Performance optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
} 