﻿.pricing-card {
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-5px);
    }

.ribbon {
    top: 20px;
    right: -10px;
    border-radius: 3px;
}

.save-badge {
    top: 20px;
    right: -10px;
    border-radius: 3px;
}

.price {
    color: #2c3e50;
}

.pricing-features li {
    color: #555;
}

.btn-outline-primary:hover {
    transform: scale(1.02);
}

.btn-primary:hover, .btn-success:hover {
    transform: scale(1.02);
}

/* Contact Section Styles */
.contact-box {
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #eee;
}

    .contact-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--bs-primary);
    }

.contact-icon {
    font-size: 2rem;
    color: var(--bs-primary);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.hover-card {
    transition: all 0.3s ease;
}

    .hover-card:hover {
        transform: translateY(-10px);
    }

/* Footer Styles */
.footer {
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
    }

.footer-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.developer-link {
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

    .developer-link:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-2px);
    }

.developer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.developer-name {
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer .row > div {
        text-align: center !important;
        margin-bottom: 10px;
    }

        .footer .row > div:last-child {
            margin-bottom: 0;
        }

    .developer-link {
        margin: 10px auto;
        display: inline-block;
    }
}
