/* ========================================
   HERO BUTTON MOBILE ALIGNMENT FIX
   Fix "Get Started Today" button alignment on mobile
   ======================================== */

/* Hero Button Container - Mobile Alignment */
.hero-button-animate {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
}

@media (max-width: 767px) {
    .hero-button-animate {
        justify-content: center !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
    }
    
    /* Ensure button is centered and full width on mobile */
    .hero-button-animate .btn-premium {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    /* Center hero content wrapper on mobile */
    .home-hero-section .hero-content-wrapper {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Ensure button container takes full width */
    .home-hero-section .hero-content-wrapper .hero-button-animate {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Tablet alignment */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-button-animate {
        justify-content: flex-start !important;
    }
    
    .hero-button-animate .btn-premium {
        min-width: auto !important;
        width: auto !important;
    }
}

/* Desktop - keep left aligned */
@media (min-width: 992px) {
    .hero-button-animate {
        justify-content: flex-start !important;
    }
}

/* Button styling improvements */
.hero-button-animate .btn-premium {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.hero-button-animate .btn-premium span {
    display: inline-block !important;
}

.hero-button-animate .btn-premium svg {
    flex-shrink: 0 !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
}

/* Extra small mobile - ensure button fits */
@media (max-width: 375px) {
    .hero-button-animate .btn-premium {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }
}

