/* This CSS file adds visual enhancements to make sections more attractive */

/* Add animations for cards and featured elements */
.why-card, .feature, .step {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover, .feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced icons */
.icon, .feature-icon, .step-icon {
    transition: all 0.3s ease;
}

.why-card:hover .icon, 
.feature:hover .feature-icon, 
.step:hover .step-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Process step enhancements */
.steps {
    position: relative;
}

.step {
    position: relative;
    z-index: 2;
}

.step:hover .step-number {
    background-color: var(--dark-color);
    transform: scale(1.1);
}

.step:hover h3 {
    color: var(--primary-color);
}

/* Enhanced app links */
.app-link {
    display: inline-block;
    padding: 8px 0;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.app-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.app-link:hover:after {
    width: 100%;
}

.app-link i {
    transition: transform 0.3s ease;
}

.app-link:hover i {
    transform: translateX(5px);
}

/* Testimonial enhancements */
.testimonial {
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-left: 5px solid var(--primary-color);
}

.quote {
    position: relative;
    z-index: 1;
}

.quote::before {
    transition: all 0.3s ease;
}

.testimonial:hover .quote::before {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Section header subtitle */
.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text-color);
    max-width: 700px;
    margin: -15px auto 40px;
}

/* Enhanced buttons */
.btn-primary, .btn-small {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:after, .btn-small:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-primary:hover:after, .btn-small:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-card:hover, .feature:hover {
        transform: translateY(-10px);
    }
}
