/* CTA Buttons Styles */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cta-btn svg {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Orange Primary Button */
.cta-btn-orange {
    background-color: var(--cta-orange);
    color: white;
    border-color: var(--cta-orange);
}

.cta-btn-orange:hover {
    background-color: var(--cta-orange-hover);
    color: white;
    border-color: var(--cta-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 0, 0.3);
}

/* Orange Outline Button */
.cta-btn-outline {
    background-color: transparent;
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

.cta-btn-outline:hover {
    background-color: var(--cta-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 0, 0.2);
}

/* Shine animation effect */
.cta-btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    transition: all 0.6s;
    z-index: 1;
}

.cta-btn:hover::before {
    left: calc(100% + 100px);
}

/* Mobile responsive styles */
@media (max-width: 991.98px) {
    .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
        gap: 6px;
    }
    
    .cta-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 575.98px) {
    .cta-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .cta-btn span {
        display: none;
    }
    
    .cta-btn::after {
        content: attr(data-mobile-text);
    }
}

/* Mobile header CTA styles */
.mobile-cta-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--dark-50);
}

@media (min-width: 992px) {
    .mobile-cta-buttons {
        display: none;
    }
}