/* Animation Styles */
.animate-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Navigation Active State */
.navbar a.active,
.footer-links a.active,
.cta-button.active {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Improved Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Improved Tab Button Styles */
.tab-button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: rgba(240, 185, 11, 0.1);
}

.tab-button:active {
    transform: translateY(1px);
}

/* Improved Payment Link Button */
.payment-link-button {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.payment-link-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.payment-link-button:hover::after {
    transform: translateX(0);
}

/* Improved FAQ Interaction */
.faq-question {
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Improved Footer Link Styles */
.footer-links a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}
