/* ---- HERO ---- */
.bi-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f5e9 50%, #fff8e1 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.bi-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(58,124,146,0.12);
    animation: biPulse 4s ease-in-out infinite;
    pointer-events: none;
}
.bi-pr-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.bi-pr-2 { width: 600px; height: 600px; top: -200px; right: -200px; animation-delay: 1s; }
.bi-pr-3 { width: 800px; height: 800px; top: -300px; right: -300px; animation-delay: 2s; }
@keyframes biPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.04); opacity: 0.2; }
}

.bi-tag {
    display: inline-block;
    background: var(--bg-light-yellow);
    color: var(--dark-yellow);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.bi-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}
.bi-hero-heading span { color: var(--yellow); }
.bi-hero-sub {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 520px;
}
.bi-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.bi-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1.5px solid rgba(58,124,146,0.15);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    box-shadow: var(--shadow-sm);
}
.bi-badge i { color: var(--yellow); }

/* Hero visual */
.bi-hero-visual { position: relative; display: flex; justify-content: center; }

/* Canvas card */
.bi-canvas-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(2,27,94,0.13);
    overflow: hidden;
    width: 100%;
    max-width: 460px;
}
.bi-canvas-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}
.bi-canvas-dots { display: flex; gap: 6px; }
.bi-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.bi-dot-red    { background: #ff5f57; }
.bi-dot-yellow { background: #febc2e; }
.bi-dot-green  { background: #28c840; }
.bi-canvas-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    flex: 1;
    text-align: center;
}
.bi-canvas-status {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 5px;
}
.bi-rec-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #28c840;
    animation: biRecBlink 1.2s ease-in-out infinite;
    display: inline-block;
}
@keyframes biRecBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}
.bi-canvas-body { padding: 14px 16px 10px; }
.bi-svg-art { width: 100%; border-radius: 8px; display: block; }
.bi-palette-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 10px;
    background: #f9f9f9;
    border-radius: 8px;
}
.bi-color-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.bi-palette-label {
    font-size: 0.7rem;
    color: #999;
    font-weight: 600;
    margin-left: auto;
}
.bi-canvas-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-top: 1px solid #eee;
    background: #fafafa;
    font-size: 0.75rem;
    color: #777;
    font-weight: 500;
}
.bi-canvas-artist { color: var(--green); font-weight: 600; }

/* Float cards */
.bi-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(2,27,94,0.13);
    white-space: nowrap;
    animation: biFloat 3.5s ease-in-out infinite;
}
.bi-fc-1 { left: -20px; top: 30%; animation-delay: 0s; }
.bi-fc-2 { right: -20px; top: 15%; animation-delay: 0.8s; }
.bi-fc-3 { right: -10px; bottom: 12%; animation-delay: 1.6s; }
@keyframes biFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.bi-fc-icon {
    width: 34px; height: 34px;
    background: var(--bg-light-yellow);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.bi-fc-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.bi-fc-lbl { font-size: 0.65rem; color: #999; font-weight: 500; margin-top: 2px; }

/* ---- SERVICES SECTION ---- */
.bi-services-section {
    padding: var(--section-py) 0;
    background: var(--bg-light-green);
}
.bi-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--green);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.25;
}
.bi-section-heading span { color: var(--yellow); }
.bi-section-sub {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
.bi-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    height: 100%;
    border: 1.5px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.bi-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--mango-yellow));
    transform: scaleX(0);
    transition: var(--transition);
}
.bi-service-card:hover {
    border-color: rgba(255,196,12,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.bi-service-card:hover::before { transform: scaleX(1); }
.bi-service-featured {
    background: var(--green);
    border-color: transparent;
}
.bi-service-featured::before { transform: scaleX(1); }
.bi-service-featured .bi-service-icon  { background: rgba(255,196,12,0.2); color: var(--yellow); }
.bi-service-featured .bi-service-title { color: var(--white); }
.bi-service-featured .bi-service-desc  { color: rgba(255,255,255,0.78); }
.bi-service-featured .bi-service-list li { color: rgba(255,255,255,0.85); }
.bi-service-featured .bi-service-list li i { color: var(--yellow); }
.bi-service-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.bi-service-icon {
    width: 54px; height: 54px;
    background: var(--bg-light-yellow);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: 16px;
    transition: var(--transition);
}
.bi-service-card:not(.bi-service-featured):hover .bi-service-icon {
    background: var(--yellow);
    color: var(--white);
}
.bi-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}
.bi-service-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 14px;
}
.bi-service-list {
    list-style: none;
    padding: 0; margin: 0;
}
.bi-service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}
.bi-service-list li i { color: var(--yellow); font-size: 0.7rem; flex-shrink: 0; }

/* ---- PROCESS SECTION ---- */
.bi-process-section {
    padding: var(--section-py) 0;
    background: var(--white);
}
.bi-process-track { position: relative; }
.bi-process-line {
    display: none;
}
.bi-process-card {
    text-align: center;
    padding: 34px 22px;
    background: var(--bg-light-green);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
    height: 100%;
}
.bi-process-card:hover {
    background: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.bi-process-card:hover .bi-process-num,
.bi-process-card:hover .bi-process-title,
.bi-process-card:hover .bi-process-desc { color: rgba(255,255,255,0.85); }
.bi-process-card:hover .bi-process-icon { background: var(--yellow); color: var(--white); }
.bi-process-featured { background: var(--green); }
.bi-process-featured .bi-process-num,
.bi-process-featured .bi-process-title,
.bi-process-featured .bi-process-desc { color: rgba(255,255,255,0.85); }
.bi-process-featured .bi-process-icon { background: var(--yellow); color: var(--white); }
.bi-process-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(58,124,146,0.08);
    line-height: 1;
    margin-bottom: -10px;
    transition: var(--transition);
}
.bi-process-icon {
    width: 58px; height: 58px;
    background: var(--bg-light-yellow);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--yellow);
    margin: 0 auto 14px;
    transition: var(--transition);
}
.bi-process-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
    transition: var(--transition);
}
.bi-process-desc {
    font-size: 0.83rem;
    color: #666;
    line-height: 1.7;
    transition: var(--transition);
}

/* ---- WHY CHOOSE US ---- */
.bi-why-section {
    padding: var(--section-py) 0;
    background: var(--bg-light-green);
}
.bi-why-features { margin-top: 28px; }
.bi-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.bi-why-icon {
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--yellow);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.bi-why-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 4px;
}
.bi-why-desc { font-size: 0.84rem; color: #666; line-height: 1.65; margin: 0; }

/* Testimonial stack */
.bi-testimonial-stack { display: flex; flex-direction: column; gap: 18px; }
.bi-testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: var(--transition);
}
.bi-testi-card:hover { border-left-color: var(--yellow); box-shadow: var(--shadow-md); }
.bi-testi-featured {
    background: var(--green);
    border-left-color: var(--yellow);
}
.bi-testi-featured .bi-testi-stars { color: var(--yellow); }
.bi-testi-featured .bi-testi-text  { color: rgba(255,255,255,0.88); }
.bi-testi-featured .bi-testi-name  { color: var(--white); }
.bi-testi-featured .bi-testi-role  { color: rgba(255,255,255,0.6); }
.bi-testi-stars { font-size: 1rem; color: var(--yellow); margin-bottom: 10px; }
.bi-testi-text  { font-size: 0.86rem; color: #555; line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.bi-testi-author { display: flex; align-items: center; gap: 12px; }
.bi-testi-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bi-testi-name { font-weight: 600; font-size: 0.88rem; color: var(--green); }
.bi-testi-role { font-size: 0.75rem; color: #999; }

/* ---- PRICING ---- */
.bi-pricing-section {
    padding: var(--section-py) 0;
    background: var(--white);
}
.bi-price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1.5px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    height: 100%;
}
.bi-price-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.bi-price-featured {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.bi-price-featured:hover { transform: translateY(-12px); }
.bi-price-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}
.bi-price-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--yellow);
    margin-bottom: 10px;
}
.bi-price-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px;
}
.bi-price-featured .bi-price-val,
.bi-price-featured .bi-price-tag { color: var(--white); }
.bi-price-val span { font-size: 2.2rem; }
.bi-price-note {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}
.bi-price-featured .bi-price-note { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }
.bi-price-list { list-style: none; padding: 0; margin: 0 0 24px; }
.bi-price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: #555;
    margin-bottom: 10px;
}
.bi-price-featured .bi-price-list li { color: rgba(255,255,255,0.85); }
.bi-price-list li i { color: var(--yellow); font-size: 0.75rem; flex-shrink: 0; }
.bi-price-list-off { opacity: 0.45; }
.bi-price-list-off i { color: #aaa !important; }
.bi-pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #777;
}
.bi-pricing-note a { color: var(--green); font-weight: 600; }
.bi-pricing-note a:hover { color: var(--yellow); }

/* ---- FAQ ---- */
.bi-faq-section { padding: var(--section-py) 0; background: var(--bg-light-green); }
.bi-acc-item {
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.bi-acc-btn {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    color: var(--green) !important;
    background: var(--white) !important;
    padding: 18px 22px !important;
    box-shadow: none !important;
}
.bi-acc-btn:not(.collapsed) {
    background: var(--green) !important;
    color: var(--white) !important;
}
.bi-acc-body {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.8;
    padding: 16px 22px 20px;
    background: var(--white);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
    .bi-hero { padding: 130px 0 60px; }
    .bi-fc-1, .bi-fc-2, .bi-fc-3 { display: none; }
}
@media (max-width: 767.98px) {
    .bi-hero { padding: 110px 0 40px; }
    .bi-hero-heading { font-size: 2.2rem; }
    .bi-canvas-card { max-width: 100%; }
}