:root {
    --lnh-primary-color: #395542;
    --lnh-white: #ffffff;
    --lnh-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    --lnh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.arcontactus-widget.right {
    right: 20px !important;
}

.arcontactus-widget {
    position: fixed;
    bottom: 20px;
    z-index: 99999;
}

.arcontactus-message-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--lnh-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--lnh-shadow);
    position: relative;
    z-index: 10;
    transition: var(--lnh-transition);
}

.arcontactus-message-button:hover {
    transform: scale(1.1);
}

.arcontactus-message-button .static {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lnh-transition);
}

.lnh-rotating-icons {
    position: relative;
    width: 30px;
    height: 30px;
}

.lnh-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lnh-icon svg {
    width: 100%;
    height: 100%;
}

.lnh-icon.active {
    opacity: 1;
}

.arcontactus-message-button .arcontactus-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    transition: var(--lnh-transition);
}

.arcontactus-widget.open .arcontactus-message-button .static {
    transform: scale(0);
}

.arcontactus-widget.open .arcontactus-message-button .arcontactus-close {
    transform: translate(-50%, -50%) scale(1);
}

/* Pulsation */
.pulsation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--lnh-primary-color);
    opacity: 0.6;
    z-index: -1;
    animation: lnh-pulsation 2s infinite;
}

.pulsation:nth-child(2) {
    animation-delay: 1s;
}

@keyframes lnh-pulsation {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Messengers Block */
.messangers-block {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--lnh-shadow);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--lnh-transition);
}

.arcontactus-widget.open .messangers-block {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.arcu-menu-header {
    background-color: var(--lnh-primary-color);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.arcu-header-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.messangers-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.messangers-list li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.messangers-list li a:hover {
    background: #f5f5f5;
}

.messangers-list li span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
}

.messangers-list li span svg {
    width: 20px;
}

.arcu-item-title {
    font-weight: 600;
    font-size: 14px;
}

.arcu-item-subtitle {
    font-size: 12px;
    color: #888;
}

/* Callback Form */
.callback-countdown-block {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    padding: 40px 20px 20px;
    box-shadow: var(--lnh-shadow);
    display: none;
    /* Controlled by JS */
    z-index: 20;
}

.callback-countdown-block-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: var(--lnh-primary-color);
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.arcu-form-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

.arcu-form-button button {
    width: 100%;
    padding: 12px;
    background: var(--lnh-primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.callback-countdown-block-timer,
.callback-countdown-block-sorry {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.callback-countdown-block-timer_timer {
    font-size: 32px;
    font-weight: bold;
    color: var(--lnh-primary-color);
    margin-top: 10px;
}