.pricing-box {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.glow-button {
    background: transparent;
    border: 7px solid #8EA58C;
    color: #8EA58C;
    padding: 0px 0px;
    border-radius: 17px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    cursor: pointer;
}
.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    filter: brightness(1.1);
}
.pulse-button {
    background: #8EA58C;
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    border: none;
    font-weight: bold;
    animation: pulse 5s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}
.image-zoom-effect {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.image-zoom-effect img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.image-zoom-effect:hover img {
    transform: scale(1.1);
}

.image-zoom-effect::after {
    content: 'View Gallery';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.image-zoom-effect:hover::after {
    opacity: 1;
}
.tilt-effect {
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tilt-effect:hover {
    transform: rotate(2deg) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.floating-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.floating-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover::before {
    opacity: 1;
}
.touch-friendly {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
}

/* Desktop hover effect */
@media (min-width: 768px) {
    .touch-friendly:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile tap effect */
@media (max-width: 767px) {
    .touch-friendly:active {
        transform: scale(0.95);
        background: #e9ecef;
    }
}
.bounce-effect {
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.particles-bg {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    padding: 50px;
    border-radius: 15px;
}

.particles-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, #ff6b6b 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, #4ecdc4 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, #45b7d1 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 75px 75px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}
.is-style-with-price {
    color: #344C3D !important;
    background-color: #836852 !important;
}