/* Cyclone Hosting V5 - Pricing Hover Effects
   Load this file AFTER your pricing CSS files.
*/

.v5-plans .v5-plan-card{
    transition:
        transform .30s ease,
        border-color .30s ease,
        box-shadow .30s ease,
        background .30s ease !important;
    will-change:transform;
}

/* Blue cards: Economy + Ultimate */
.v5-plans .v5-plan-card:not(.featured):hover{
    transform:translateY(-12px) !important;
    border-color:rgba(34,211,238,.72) !important;
    box-shadow:
        0 0 34px rgba(34,211,238,.28),
        0 28px 75px rgba(0,0,0,.42),
        inset 0 1px 0 rgba(255,255,255,.12) !important;
}

/* Blue card buttons */
.v5-plans .v5-plan-card:not(.featured) .v5-plan-btn{
    transition:
        border-color .30s ease,
        box-shadow .30s ease,
        background .30s ease,
        color .30s ease !important;
}

.v5-plans .v5-plan-card:not(.featured):hover .v5-plan-btn{
    border-color:rgba(34,211,238,.75) !important;
    box-shadow:
        0 0 24px rgba(34,211,238,.30),
        inset 0 1px 0 rgba(255,255,255,.10) !important;
    background:rgba(34,211,238,.10) !important;
}

/* Featured Deluxe card */
.v5-plans .v5-plan-card.featured:hover{
    transform:translateY(-30px) scale(1.035) !important;
    border-color:rgba(255,216,77,1) !important;
    box-shadow:
        0 0 38px rgba(255,216,77,.42),
        0 38px 105px rgba(0,0,0,.58),
        inset 0 1px 0 rgba(255,255,255,.16) !important;
}

/* Featured Deluxe button */
.v5-plans .v5-plan-card.featured .v5-plan-btn{
    transition:
        transform .30s ease,
        box-shadow .30s ease,
        filter .30s ease !important;
}

.v5-plans .v5-plan-card.featured:hover .v5-plan-btn{
    transform:translateY(-2px) !important;
    filter:saturate(1.12) brightness(1.04) !important;
    box-shadow:
        0 0 42px rgba(255,216,77,.55),
        0 12px 28px rgba(0,0,0,.25) !important;
}

/* Icon hover polish */
.v5-plans .v5-plan-card .v5-plan-icon{
    transition:
        transform .30s ease,
        box-shadow .30s ease,
        border-color .30s ease !important;
}

.v5-plans .v5-plan-card:hover .v5-plan-icon{
    transform:translateY(-3px) scale(1.06) !important;
}

/* Mobile/tablet: keep hover subtle so cards don't jump too much */
@media(max-width:1100px){
    .v5-plans .v5-plan-card:not(.featured):hover,
    .v5-plans .v5-plan-card.featured:hover{
        transform:translateY(-8px) !important;
    }
}

@media(max-width:760px){
    .v5-plans .v5-plan-card:not(.featured):hover,
    .v5-plans .v5-plan-card.featured:hover{
        transform:none !important;
    }
}
