@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}
.gradient-heading {
    background: linear-gradient(145deg, #eeebc2 0%, #f2c578 100%);
}
.gradient-primary {
    background: linear-gradient(135deg, #f0a817 0%, #dd8e06 100%);
}
.gradient-brown {
    background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
}
.curve-bottom {
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pricing-card-clickable {
    cursor: pointer;
}
.pricing-card-clickable:hover {
    transform: translateY(-10px);
}

/* Slider Styles */
.slider-container {
    overflow: hidden;
    position: relative;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}
.slider-item {
    flex: 0 0 100%;
    padding: 0 0.5rem;
}
@media (min-width: 768px) {
    .slider-item {
        flex: 0 0 50%;
    }
}
@media (min-width: 1024px) {
    .slider-item {
        flex: 0 0 33.333%;
    }
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    color: #8b4513;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.slider-nav:hover {
    background: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.slider-nav.prev {
    left: 10px;
}
.slider-nav.next {
    right: 10px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dot.active {
    background: #f59e0b;
    width: 32px;
    border-radius: 6px;
}
@keyframes bounce-synchronized {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.bounce-synchronized {
    animation: bounce-synchronized 1.5s ease-in-out infinite;
}
