/* ========================================
   ACCOUNTING & BOOKKEEPING PAGE - CUSTOM
   ======================================== */

body {
    background-color: #fffcfa;
    background-image:
        radial-gradient(circle at 10% 18%, rgba(255, 107, 53, 0.05) 0, transparent 32%),
        radial-gradient(circle at 88% 76%, rgba(233, 60, 5, 0.05) 0, transparent 30%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: repeating-linear-gradient(
        105deg,
        rgba(255, 107, 53, 0.03) 0 2px,
        transparent 2px 78px
    );
    animation: abkBgDrift 28s linear infinite;
}

@keyframes abkBgDrift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(1.2%, -1.5%, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes abkFloatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes abkPulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.08); }
}

@keyframes abkGlowShift {
    0%, 100% { transform: scale(1) translateX(0); opacity: 0.55; }
    50% { transform: scale(1.08) translateX(1.5%); opacity: 0.85; }
}

.abk-hero-section {
    position: relative;
    min-height: 88vh;
    padding: 180px 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(125deg, #f58f64 0%, #ea6e3b 45%, #d74f1e 100%);
}

.abk-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.28) 0, transparent 48%),
        linear-gradient(115deg, rgba(26, 34, 48, 0.26) 0, transparent 52%);
    z-index: 1;
}

.abk-ledger-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.07) 0 1px,
        transparent 1px 34px
    );
}

.abk-floating-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
    z-index: 2;
    animation: abkPulse 4s ease-in-out infinite;
}

.abk-dot-1 { top: 23%; left: 8%; }
.abk-dot-2 { top: 62%; left: 87%; animation-delay: 1s; }
.abk-dot-3 { top: 36%; left: 76%; animation-delay: 1.8s; }

.abk-hero-content {
    position: relative;
    z-index: 3;
}

.abk-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.abk-hero-title {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.abk-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.12rem;
    line-height: 1.75;
}

.abk-hero-btn {
    box-shadow: 0 12px 34px rgba(21, 16, 13, 0.22);
}

.abk-hero-art-card {
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 22px;
    padding: 28px 24px;
    backdrop-filter: blur(8px);
    animation: abkFloatY 5.6s ease-in-out infinite;
}

.abk-art-topline {
    height: 8px;
    width: 38%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.abk-art-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    min-height: 98px;
    margin-bottom: 18px;
}

.abk-art-bars span {
    width: 20%;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58));
    animation: abkPulse 3.8s ease-in-out infinite;
}

.abk-art-bars span:nth-child(1) { height: 48px; }
.abk-art-bars span:nth-child(2) { height: 78px; animation-delay: 0.5s; }
.abk-art-bars span:nth-child(3) { height: 62px; animation-delay: 1.1s; }
.abk-art-bars span:nth-child(4) { height: 92px; animation-delay: 1.7s; }

.abk-art-ledger {
    border-top: 1px dashed rgba(255, 255, 255, 0.5);
    padding-top: 14px;
}

.abk-art-ledger div {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 0.95rem;
    padding: 4px 0;
}

.abk-faq-art-wrapper {
    position: relative;
    padding: 20px;
}

.abk-faq-art-card {
    position: relative;
    min-height: 420px;
    border-radius: 18px;
    background:
        linear-gradient(150deg, rgba(255, 107, 53, 0.14) 0%, rgba(255, 255, 255, 0.95) 55%, rgba(233, 60, 5, 0.09) 100%);
    border: 2px dashed rgba(255, 107, 53, 0.35);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(255, 107, 53, 0.18);
}

.abk-faq-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        rgba(233, 60, 5, 0.07) 0 1px,
        transparent 1px 30px
    );
}

.abk-faq-grid {
    position: absolute;
    inset: 80px 18px 22px 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.abk-faq-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 107, 53, 0.32);
    font-weight: 600;
    color: #a03d17;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    animation: abkFloatY 6.5s ease-in-out infinite;
}

.abk-faq-grid span:nth-child(2) { animation-delay: 0.8s; }
.abk-faq-grid span:nth-child(3) { animation-delay: 1.4s; }
.abk-faq-grid span:nth-child(4) { animation-delay: 2s; }

.abk-faq-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: linear-gradient(135deg, #ff6b35, #e93c05);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(255, 107, 53, 0.35);
}

.abk-faq-floating-card {
    position: absolute;
    right: 26px;
    bottom: 24px;
    z-index: 3;
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.abk-faq-floating-card .icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #e93c05);
    color: #fff;
}

.abk-faq-floating-card h6 {
    margin: 0;
    color: #1d1d1d;
}

.abk-faq-floating-card small {
    color: #677581;
}

.abk-faq-spray {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.abk-faq-spray-1 {
    width: 120px;
    height: 120px;
    top: -10px;
    right: -12px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0, transparent 72%);
}

.abk-faq-spray-2 {
    width: 100px;
    height: 100px;
    bottom: -6px;
    left: -4px;
    background: radial-gradient(circle, rgba(233, 60, 5, 0.18) 0, transparent 70%);
}

/* Remove image dependency in why choose section for this page */
.why-choose-bg-image {
    background-image:
        linear-gradient(130deg, rgba(14, 26, 44, 0.92), rgba(20, 36, 60, 0.82)),
        radial-gradient(circle at 12% 18%, rgba(255, 107, 53, 0.34) 0, transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(233, 60, 5, 0.24) 0, transparent 38%) !important;
    animation: abkGlowShift 9s ease-in-out infinite;
}

.why-choose-overlay {
    background:
        radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.12) 0, transparent 32%),
        repeating-linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.05) 0 1px,
            transparent 1px 15px
        ) !important;
}

@media (max-width: 991px) {
    .abk-hero-section {
        padding: 150px 0 80px;
        min-height: auto;
    }

    .abk-hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .abk-hero-section {
        padding: 130px 0 65px;
    }

    .abk-hero-title {
        font-size: 2rem;
    }

    .abk-hero-subtitle {
        font-size: 1rem;
    }

    .abk-hero-art-card {
        padding: 20px 16px;
    }

    .abk-faq-art-card {
        min-height: 360px;
    }
}
