/* Get Started Button Widget – Frontend Styles */

.gsb-wrapper {
    display: block;
}

.gsb-btn-wrapper {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

/* Main label */
.gsb-btn-main {
    display: inline-block;
    background-color: #1a2fd4;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 28px;
    border-radius: 6px 0 0 6px;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

/* Connector bridge */
.gsb-btn-connector {
    display: inline-block;
    width: 10px;
    height: 52px;
    background-color: #1a2fd4;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

/* Notch circles */
.gsb-btn-connector::before,
.gsb-btn-connector::after {
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #1a9be0; /* override via Elementor control */
    border-radius: 50%;
}
.gsb-btn-connector::before { top: -5px; }
.gsb-btn-connector::after  { bottom: -5px; }

/* Icon box */
.gsb-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: #1730e8;
    border-radius: 0 6px 6px 0;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    color: #ffffff;
}

.gsb-btn-icon svg {
    display: block;
    stroke: currentColor;
}

.gsb-btn-icon i {
    font-size: 18px;
    color: currentColor;
}

/* Chevron icon */
.gsb-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #ffffff;
}

/* Plus icon */
.gsb-plus {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.gsb-plus::before,
.gsb-plus::after {
    content: '';
    position: absolute;
    background: #ffffff;
    border-radius: 2px;
}
.gsb-plus::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}
.gsb-plus::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

/* Hover states */
.gsb-btn-wrapper:hover .gsb-btn-main {
    background-color: #2540f5;
}
.gsb-btn-wrapper:hover .gsb-btn-connector {
    background-color: #2540f5;
}
.gsb-btn-wrapper:hover .gsb-btn-icon {
    background-color: #2540f5;
}

/* Alignment utility */
.gsb-wrapper[style*="text-align: center"] .gsb-btn-wrapper,
.gsb-wrapper[style*="text-align: right"]  .gsb-btn-wrapper {
    display: inline-flex;
}
