* {
    --darkblue: #1A5579;
    --green: #3E827A;
    --darkgreen: #286358;
}

.btn,
#gform_submit_button_2.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 15px;
    border-radius: 50px;
    color: #FFF;
    text-align: center;
    font-family: 'Voltaire', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    box-sizing: border-box;
    border: 0;
}

#gform_submit_button_2.button {
    background: linear-gradient(90deg, #EE7B3E 0%, #F3B174 100%) !important;
    box-shadow: 0 4px 15px rgba(238, 123, 62, 0.3) !important;
}

.btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-icon-rotate {
    transform: scaleX(-1);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(90deg, #EE7B3E 0%, #F3B174 100%);
    box-shadow: 0 4px 15px rgba(238, 123, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 123, 62, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button (Outlined) */
.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1A5579;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(95, 179, 163, 0.3);
}

.btn-secondary:hover img,
.btn-outline img {
    filter: invert(1);
}

.btn-surprise img {
    filter: unset !important
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-tertiary {
    background: var(--green);
    color: #fff;
}

.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(95, 179, 163, 0.3);
}

.btn-outline {
    background: #fff;
    color: #3E827A;
    border: 2px solid #3E827A;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(95, 179, 163, 0.3);
}

/* Responsive button scaling */
.btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 1400px) {
    .btn {
        font-size: 18px;
        padding: 12px 12px;
        min-width: auto;
        gap: 8px;
    }

    .btn-icon,
    .btn-icon-rotate {
        width: 20px;
        height: 20px;
    }
}