/* Utility Classes & Colors */
.has-white-color {
    color: var(--white) !important;
}

.has-black-color {
    color: #000000 !important;
}

.has-white-background-color {
    background-color: var(--white) !important;
}

.has-black-background-color {
    background-color: #000000 !important;
}

.has-large-font-size {
    font-size: 36px !important;
    line-height: 1.3 !important;
}

.has-medium-font-size {
    font-size: 20px !important;
    line-height: 1.4 !important;
}

.has-small-font-size {
    font-size: 13px !important;
}

/* Micro-Animations & Interactive elements */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.fixed-button {
    background: var(--primary-green);
    position: fixed;
    bottom: 0;
    z-index: 555;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    color: white !important;
    display: none;
    font-weight: 700;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

/* Recaptcha & Chat details hidden default */
.grecaptcha-badge {
    display: none !important;
}

.comments-section {
    display: none !important;
}

/* Blog Content Helpers */
.blog-content a {
    color: #02a0e3;
    font-weight: 500;
    text-decoration: underline;
}

.blog-content p {
    color: #000000;
    font-weight: 400;
    margin-bottom: 20px;
}

.proc-wrap .elementor-icon-box-wrapper {
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 1.5em 1em;
    height: 100%;
}
