/* Button Styles - Dark Pill Style */

.btn,
.button-17 {
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: #fff !important;
    background: #1a1a1a !important;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 50px;
    padding: 14px 32px !important;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(26, 26, 26, 0.3);
}

.btn:before,
.button-17:before {
    display: none;
}

.btn:active,
.button-17:active {
    color: #fff;
}

.btn:active:after,
.button-17:active:after {
    background: transparent;
}

.btn:hover,
.button-17:hover {
    background: #2a2a2a !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 26, 26, 0.4);
}

.btn:hover:before,
.button-17:hover:before {
    opacity: 0;
}

.btn:after,
.button-17:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    left: 0;
    top: 0;
    border-radius: 50px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Primary button variant */
.btn-primary {
    background: #1a1a1a !important;
    color: #fff !important;
}

.btn-primary:hover {
    color: #fff;
    background: #2a2a2a !important;
    transform: translateY(-2px);
}

/* Fancy Bordered Button - For CTA buttons */
.btn-fancy {
    position: relative;
    background: #1a1a1a !important;
    color: white !important;
    border: none !important;
    overflow: visible !important;
    height: auto !important;
    padding: 14px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50px !important;
}

.btn-fancy:hover {
    background: #2a2a2a !important;
    transform: translateY(-2px);
}

.btn-fancy svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: none;
}

.btn-fancy .Button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
}

/* Navigation CTA Button - Golden Yellow */
.nav-cta {
    position: relative !important;
    background: #FDD966 !important;
    color: #1a1a1a !important;
    border: none !important;
    overflow: visible !important;
    height: auto !important;
    padding: 0.5rem 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(253, 217, 102, 0.2) !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: #f5d54a !important;
    color: #1a1a1a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(253, 217, 102, 0.3) !important;
}

.nav-cta svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: none;
}

.nav-cta .Button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
}

/* Animated border lines */
.Button-line {
    display: none;
}

.Button-line--outer {
    display: none;
}

.Button-line--inner {
    display: none;
}
