/* Backlog Accounting CSS */

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes blaFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes blaFloatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -15px); }
}

@keyframes blaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes blaShimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes blaFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blaScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes blaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bla-hero-section {
    position: relative;
    background: linear-gradient(120deg, #ff6b35 0%, #ff9554 45%, #fff4f0 100%);
    overflow: hidden;
}

.bla-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 107, 53, 0.92) 0%, rgba(255, 149, 84, 0.85) 45%, rgba(255, 244, 240, 0.75) 100%);
    z-index: 0;
}

.bla-hero-content {
    padding: 165px 0 90px;
    z-index: 1;
}

.bla-hero-pill {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: blaScaleIn 0.6s ease;
    transition: all 0.3s ease;
}

.bla-hero-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bla-hero-title {
    color: #ffffff;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    animation: blaFadeInUp 0.8s ease 0.2s both;
}

.bla-hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    max-width: 540px;
    animation: blaFadeInUp 0.8s ease 0.4s both;
}

.bla-hero-image {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
    animation: blaFloat 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.bla-hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.bla-hero-image-inner {
    min-height: 300px;
    border-radius: 22px;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    gap: 10px;
    padding: 20px;
}

.bla-hero-image-inner i {
    font-size: 64px;
    animation: blaBounce 2s ease-in-out infinite;
}

.bla-hero-graffiti {
    position: absolute;
    bottom: 14%;
    left: 6%;
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    transform: rotate(10deg);
    z-index: 1;
    animation: blaFloatSlow 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.bla-hero-graffiti:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(-5deg) scale(1.1);
}

.bla-hero-graffiti::before,
.bla-hero-graffiti::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.bla-hero-graffiti::before {
    width: 18px;
    height: 18px;
    top: 20px;
    right: 20px;
}

.bla-hero-graffiti::after {
    width: 64px;
    height: 2px;
    bottom: 26px;
    left: 16px;
    transform: rotate(-12deg);
}

.bla-section-pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: blaScaleIn 0.6s ease;
    transition: all 0.3s ease;
}

.bla-section-pill:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.bla-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.bla-checklist li {
    padding-left: 30px;
    position: relative;
    color: #444;
    font-weight: 500;
    animation: blaFadeInUp 0.6s ease both;
    transition: all 0.3s ease;
}

.bla-checklist li:nth-child(1) { animation-delay: 0.1s; }
.bla-checklist li:nth-child(2) { animation-delay: 0.2s; }
.bla-checklist li:nth-child(3) { animation-delay: 0.3s; }
.bla-checklist li:nth-child(4) { animation-delay: 0.4s; }
.bla-checklist li:nth-child(5) { animation-delay: 0.5s; }
.bla-checklist li:nth-child(6) { animation-delay: 0.6s; }

.bla-checklist li:hover {
    transform: translateX(8px);
    color: var(--primary);
}

.bla-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}

.bla-image-placeholder {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 24px;
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
    transition: all 0.4s ease;
}

.bla-image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(255, 107, 53, 0.22);
    border-color: rgba(255, 107, 53, 0.4);
}

.bla-image-placeholder.bla-image-alt {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 244, 240, 0.95) 100%);
}

.bla-image-content {
    min-height: 280px;
    border-radius: 18px;
    border: 2px dashed rgba(255, 107, 53, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #666;
    text-align: center;
    padding: 16px;
}

.bla-image-content i {
    font-size: 54px;
    color: var(--primary);
    animation: blaPulse 3s ease-in-out infinite;
}

.bla-process-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 107, 53, 0.18);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bla-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bla-process-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.bla-process-card:hover::before {
    opacity: 1;
}

.bla-process-number {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.bla-process-card:hover .bla-process-number {
    background: var(--primary);
    color: #fff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.bla-benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 107, 53, 0.16);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bla-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.bla-benefit-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 24px 50px rgba(255, 107, 53, 0.22);
    border-color: rgba(255, 107, 53, 0.4);
}

.bla-benefit-card:hover::before {
    left: 100%;
}

.bla-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.18);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.bla-benefit-card:hover .bla-benefit-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.bla-problem-list {
    display: grid;
    gap: 12px;
}

.bla-problem-item {
    background: #fff;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #3c3c3c;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.bla-problem-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.02);
}

.bla-problem-item i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.bla-problem-item:hover i {
    transform: scale(1.3);
}

.bla-faq-item {
    border: 1px solid rgba(255, 107, 53, 0.16);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.bla-faq-item:hover {
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.18);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.35);
}

.bla-faq-item .accordion-button {
    background: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bla-faq-item .accordion-button:hover {
    background: rgba(255, 107, 53, 0.04);
}

.bla-faq-item .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: none;
}

.bla-cta-card {
    background: linear-gradient(120deg, #ff6b35 0%, #ff8f4f 100%);
    box-shadow: 0 24px 60px rgba(255, 107, 53, 0.28);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bla-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(255, 107, 53, 0.38);
}

.bla-cta-card::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    animation: blaPulse 4s ease-in-out infinite;
}

.bla-cta-card .btn {
    transition: all 0.3s ease;
}

.bla-cta-card .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991.98px) {
    .bla-hero-content {
        padding: 140px 0 70px;
    }

    .bla-hero-graffiti {
        width: 110px;
        height: 110px;
        bottom: 8%;
    }
}

@media (max-width: 767.98px) {
    .bla-hero-title {
        font-size: 2.1rem;
    }

    .bla-hero-image-inner {
        min-height: 220px;
    }
}
/* ============================================
   BUTTON ENHANCEMENTS
   ============================================ */

.bla-hero-section .btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bla-hero-section .btn-primary {
    animation: blaFadeInUp 0.8s ease 0.5s both;
}

.bla-hero-section .btn-outline-light {
    animation: blaFadeInUp 0.8s ease 0.6s both;
}

.bla-hero-section .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bla-hero-section .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Animation Stagger */
.bla-process-card:nth-child(1) { animation: blaFadeInUp 0.6s ease 0.1s both; }
.bla-process-card:nth-child(2) { animation: blaFadeInUp 0.6s ease 0.2s both; }
.bla-process-card:nth-child(3) { animation: blaFadeInUp 0.6s ease 0.3s both; }
.bla-process-card:nth-child(4) { animation: blaFadeInUp 0.6s ease 0.4s both; }
.bla-process-card:nth-child(5) { animation: blaFadeInUp 0.6s ease 0.5s both; }

.bla-benefit-card:nth-child(1) { animation: blaScaleIn 0.6s ease 0.1s both; }
.bla-benefit-card:nth-child(2) { animation: blaScaleIn 0.6s ease 0.2s both; }
.bla-benefit-card:nth-child(3) { animation: blaScaleIn 0.6s ease 0.3s both; }
.bla-benefit-card:nth-child(4) { animation: blaScaleIn 0.6s ease 0.4s both; }
.bla-benefit-card:nth-child(5) { animation: blaScaleIn 0.6s ease 0.5s both; }
.bla-benefit-card:nth-child(6) { animation: blaScaleIn 0.6s ease 0.6s both; }