.elementor-738 .elementor-element.elementor-element-22c543e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-738 .elementor-element.elementor-element-44954a0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-738:not(.elementor-motion-effects-element-type-background), body.elementor-page-738 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}@media(min-width:768px){.elementor-738 .elementor-element.elementor-element-44954a0{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-0b5f8a5 *//* ===== PHONE CONTAINER ===== */
#phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#phone-frame {
    width: 360px;
    height: 700px;
    background: #f0f0f0;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid #111;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Arial', sans-serif;
}

/* ===== HEADER ===== */
#phone-header {
    background: #075E54;
    padding: 14px;
    display: flex;
    align-items: center;
    color: white;
    height: 60px;
}

#header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: url('https://i.imgur.com/1XqQqQ2.png') center/cover;
    border: 2px solid white;
}

.chat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.chat-name {
    font-size: 15px;
    font-weight: bold;
}

.chat-status {
    font-size: 12px;
    opacity: 0.8;
}

#header-right {
    margin-left: auto;
    font-size: 22px;
    cursor: pointer;
}

/* ===== CHAT WINDOW ===== */
#chat-window {
    flex: 1;
    padding: 10px;
    background: #e5ddd5;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== MESSAGE BUBBLES ===== */
.message {
    max-width: 75%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
}

.bot-message {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.user-message {
    background: #d2f8c5;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

/* ===== INPUT BAR ===== */
#chat-input-bar {
    display: flex;
    background: #fff;
    padding: 8px;
    border-top: 1px solid #ccc;
}

#user-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 20px;
    background: #f0f0f0;
    font-size: 14px;
}

#send-btn {
    width: 45px;
    height: 45px;
    border: none;
    margin-left: 8px;
    border-radius: 50%;
    background: #128C7E;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#send-btn:hover {
    background: #0d7367;
}

/* ===== BUTTON-STYLE OPTIONS ===== */
.chat-option {
    background: #ececec;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
}

.chat-option:hover {
    background: #dcdcdc;
}/* End custom CSS */