.en-919-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 480px;
    max-width: calc(100vw - 40px);
    background-color: #f2f2f4;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    font-family: 'Roboto', sans-serif;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    overflow: hidden;
}

.en-919-container.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.en-919-container.is-hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.en-919-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #182b5e;
    opacity: 0.5;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.en-919-close:hover {
    opacity: 1;
}

.en-919-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 140px;
}

.en-919-left-col {
    flex-shrink: 0;
    /* Width controlled via Elementor style tab */
    display: flex;
    align-items: flex-end; /* Push image to bottom */
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.en-919-logo-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    object-position: bottom left;
    display: block;
}

.en-919-right-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* padding controlled via Elementor */
}

.en-919-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #5b7193;
    width: 100%;
    /* margin-bottom controlled via Elementor */
}

.en-919-headline {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #182b5e;
    line-height: 1.3;
    width: 100%;
    /* margin-bottom controlled via Elementor */
}

.en-919-btn-wrap {
    width: 100%;
    /* margin-top controlled via Elementor */
}

.en-919-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}

/* Text style (underline) */
.en-919-btn.is-text-style {
    color: #182b5e;
    padding: 0 0 4px 0;
    border-bottom: 2px solid #94c038; /* default fallback, overridden by Elementor */
    background: transparent;
}

.en-919-btn.is-text-style:hover {
    opacity: 0.8;
}

/* Solid style */
.en-919-btn.is-solid-style {
    background-color: #182b5e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
}

.en-919-btn.is-solid-style:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .en-919-container {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(100%);
    }
    
    .en-919-container.is-visible {
        transform: translateY(0);
    }
}