/* Hero Card Styles */
.hero-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Quick Links (Sitelinks) Styles */
.quick-links-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

.quick-link-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

/* FAQ (People Also Ask) Styles */
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.accordion-button {
    color: #fff !important;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--bs-primary) !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Service Card Styles */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Related Topics (Related Searches) Styles */
.related-topics-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
}

.related-topic-card {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.related-topic-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

/* CTA Card Styles */
.cta-card {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-card {
        margin-top: 60px !important;
    }
    
    .quick-link-card,
    .related-topic-card {
        padding: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.reviews-section-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
}