/*
Theme Name: Zeever Child
Template: zeever
Version: 1.0.0
*/

/* WhatsApp floating chat button */
.vdm-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vdm-whatsapp-float__button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.vdm-whatsapp-float__button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.vdm-whatsapp-float__button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.vdm-whatsapp-float__label {
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
}

/* Get Quote CTA button */
.vdm-get-quote-btn {
    background: #1e70ea !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    transition: background 0.3s ease !important;
}

.vdm-get-quote-btn:hover {
    background: #1558b8 !important;
}

/* Pricing page */
.vdm-pricing {
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 20px;
}

.vdm-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vdm-pricing__card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vdm-pricing__card:hover {
    transform: translateY(-8px);
    border-color: #1e70ea;
}

.vdm-pricing__card--featured {
    border-color: #1e70ea;
    background: #0d1a2e;
    position: relative;
}

.vdm-pricing__card--featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e70ea;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vdm-pricing__name {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vdm-pricing__price {
    color: #1e70ea;
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.vdm-pricing__price span {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.vdm-pricing__features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.vdm-pricing__features li {
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 15px;
}

.vdm-pricing__features li:last-child {
    border-bottom: none;
}

.vdm-pricing__features li::before {
    content: '✓';
    color: #25D366;
    margin-right: 10px;
    font-weight: 700;
}

.vdm-pricing__cta {
    display: inline-block;
    background: #1e70ea;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.vdm-pricing__cta:hover {
    background: #1558b8;
}

.vdm-pricing__cta--outline {
    background: transparent;
    border: 2px solid #1e70ea;
}

.vdm-pricing__cta--outline:hover {
    background: #1e70ea;
}

@media (max-width: 768px) {
    .vdm-pricing__grid {
        grid-template-columns: 1fr;
    }
    .vdm-whatsapp-float__label {
        display: none;
    }
}
