

.bcd-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--yellow);
    margin-bottom: 12px;
    display: block;
}
.bcd-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
}
.bcd-section-heading span { color: var(--yellow); }
.bcd-section-sub {
    font-size: 0.9rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 0;
}


/* ============================================
   HERO
   ============================================ */
.bcd-hero {
    background: var(--bg-light-yellow);
    padding: 200px 0 90px;
    position: relative;
    overflow: hidden;
}
.bcd-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,196,12,0.15);
    pointer-events: none;
    animation: bcdPulse 4s ease-in-out infinite;
}
.bcd-pr-1 { width: 520px; height: 520px; top: -160px; left: -80px; animation-delay: 0s; }
.bcd-pr-2 { width: 360px; height: 360px; top: -80px; left: 80px; animation-delay: 1s; }
.bcd-pr-3 { width: 200px; height: 200px; top: 20px; left: 220px; animation-delay: 2s; }
@keyframes bcdPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.15; }
}

.bcd-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
}
.bcd-hero-heading span { color: var(--yellow); }
.bcd-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.85;
    max-width: 490px;
}
.bcd-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.bcd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 5px 14px;
}
.bcd-badge i { color: var(--yellow); font-size: 0.8rem; }

/* Hero Visual */
.bcd-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 60px;
    min-height: 340px;
}

/* Book Showcase Stack */
.bcd-book-showcase {
    position: relative;
    width: 200px;
    height: 280px;
    z-index: 2;
}
.bcd-book {
    position: absolute;
    width: 160px;
    height: 240px;
    border-radius: 4px 10px 10px 4px;
    display: flex;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    animation: bcdBookFloat 4s ease-in-out infinite;
}
.bcd-book-front  { left: 30px; top: 20px; z-index: 3; animation-delay: 0s; }
.bcd-book-mid    { left: 10px; top: 10px; z-index: 2; transform: rotate(-6deg); animation-delay: 0.5s; }
.bcd-book-back   { left: -10px; top: 0;   z-index: 1; transform: rotate(-12deg); animation-delay: 1s; }
@keyframes bcdBookFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.bcd-book-mid { animation-name: bcdBookFloat2; }
.bcd-book-back { animation-name: bcdBookFloat3; }
@keyframes bcdBookFloat2 {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes bcdBookFloat3 {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-10px); }
}

.bcd-book-spine {
    width: 16px;
    background: rgba(0,0,0,0.25);
    border-radius: 4px 0 0 4px;
    flex-shrink: 0;
}
.bcd-book-face {
    flex: 1;
    border-radius: 0 10px 10px 0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bcd-face-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.bcd-face-2 { background: linear-gradient(135deg, #2d1b4e 0%, #512b81 60%, #9b59b6 100%); }
.bcd-face-3 { background: linear-gradient(135deg, #7b0000 0%, #c0392b 60%, #e74c3c 100%); }

.bcd-book-genre {
    font-family: var(--font-body);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.bcd-book-title-mock {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}
.bcd-book-author-mock {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
}
/* Gold accent line on front cover */
.bcd-face-1::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 16px; right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 0 10px 0 0;
}

/* Floating stat cards */
.bcd-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(58,124,146,0.15);
    z-index: 4;
    white-space: nowrap;
    animation: bcdCardFloat 3.5s ease-in-out infinite;
}
.bcd-fc-1 { left: -30px; bottom: 30%; animation-delay: 0s; }
.bcd-fc-2 { right: -20px; top: 20%; animation-delay: 0.7s; }
.bcd-fc-3 { right: 0; bottom: 0; animation-delay: 1.4s; }
@keyframes bcdCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.bcd-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.85rem; flex-shrink: 0;
}
.bcd-fc-num {
    font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 700;
    color: var(--green); line-height: 1;
}
.bcd-fc-lbl { font-size: 0.66rem; color: #999; font-weight: 500; margin-top: 2px; }


/* ============================================
   SERVICES
   ============================================ */
.bcd-services-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.bcd-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.bcd-service-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(255,196,12,0.12);
    transform: translateY(-5px);
}
.bcd-service-featured {
    background: var(--green);
    border-color: var(--green);
}
.bcd-service-featured:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(58,124,146,0.2);
}
.bcd-service-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--yellow);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}
.bcd-service-icon {
    width: 52px; height: 52px;
    background: var(--bg-light-yellow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.bcd-service-featured .bcd-service-icon {
    background: rgba(255,196,12,0.15);
    color: var(--yellow);
}
.bcd-service-card:hover .bcd-service-icon,
.bcd-service-featured:hover .bcd-service-icon {
    background: var(--yellow);
    color: var(--white);
}
.bcd-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}
.bcd-service-featured .bcd-service-title { color: var(--white); }
.bcd-service-desc {
    font-size: 0.85rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.85;
}
.bcd-service-featured .bcd-service-desc { color: rgba(255,255,255,0.72); opacity: 1; }
.bcd-service-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.bcd-service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-paragraph);
}
.bcd-service-featured .bcd-service-list li { color: rgba(255,255,255,0.8); }
.bcd-service-list li i { color: var(--yellow); font-size: 0.7rem; flex-shrink: 0; }


/* ============================================
   GENRES
   ============================================ */
.bcd-genres-section {
    padding: 90px 0;
    background: var(--white);
}
.bcd-genre-card {
    background: var(--bg-light-yellow);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: default;
}
.bcd-genre-card:hover {
    border-color: var(--yellow);
    background: var(--yellow);
    box-shadow: 0 8px 24px rgba(255,196,12,0.2);
    transform: translateY(-4px);
}
.bcd-genre-icon {
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 10px;
    transition: all 0.3s;
}
.bcd-genre-card:hover .bcd-genre-icon { color: var(--white); }
.bcd-genre-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    transition: color 0.3s;
}
.bcd-genre-card:hover .bcd-genre-name { color: var(--white); }


/* ============================================
   PROCESS
   ============================================ */
.bcd-process-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.bcd-process-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}
.bcd-process-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255,196,12,0.1);
    transform: translateY(-5px);
}
.bcd-process-featured {
    background: var(--green);
    border-color: var(--green);
}
.bcd-process-featured:hover { border-color: var(--yellow); }
.bcd-process-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(255,196,12,0.12);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
}
.bcd-process-featured .bcd-process-num { color: rgba(255,255,255,0.1); }
.bcd-process-icon {
    width: 60px; height: 60px;
    background: var(--bg-light-yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.3rem;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}
.bcd-process-featured .bcd-process-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.bcd-process-card:hover .bcd-process-icon {
    background: var(--yellow);
    color: var(--white);
}
.bcd-process-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}
.bcd-process-featured .bcd-process-title { color: var(--white); }
.bcd-process-desc {
    font-size: 0.83rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    opacity: 0.82;
    margin: 0;
}
.bcd-process-featured .bcd-process-desc { color: rgba(255,255,255,0.7); opacity: 1; }


/* ============================================
   WHY CHOOSE US
   ============================================ */
.bcd-why-section {
    padding: 90px 0;
    background: var(--white);
}
.bcd-why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.bcd-why-item { display: flex; gap: 16px; align-items: flex-start; }
.bcd-why-icon {
    width: 46px; height: 46px;
    background: var(--bg-light-yellow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.bcd-why-item:hover .bcd-why-icon { background: var(--yellow); color: var(--white); }
.bcd-why-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 5px;
}
.bcd-why-desc {
    font-size: 0.83rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    opacity: 0.82;
    margin: 0;
}
.bcd-testimonial-stack { display: flex; flex-direction: column; gap: 18px; }
.bcd-testi-card {
    background: var(--bg-light-green);
    border-radius: 16px;
    padding: 24px 26px;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
}
.bcd-testi-card:hover {
    box-shadow: 0 10px 30px rgba(58,124,146,0.08);
    transform: translateY(-3px);
}
.bcd-testi-featured { background: var(--green); border-color: var(--green); }
.bcd-testi-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.bcd-testi-text {
    font-size: 0.86rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
    opacity: 0.85;
}
.bcd-testi-featured .bcd-testi-text { color: rgba(255,255,255,0.8); opacity: 1; }
.bcd-testi-author { display: flex; align-items: center; gap: 12px; }
.bcd-testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bcd-testi-name { font-weight: 600; font-size: 0.86rem; color: var(--green); line-height: 1; }
.bcd-testi-featured .bcd-testi-name { color: var(--white); }
.bcd-testi-role { font-size: 0.74rem; color: #999; margin-top: 3px; }
.bcd-testi-featured .bcd-testi-role { color: rgba(255,255,255,0.5); }


/* ============================================
   PRICING
   ============================================ */
.bcd-pricing-section {
    padding: 90px 0;
    background: var(--bg-light-yellow);
}
.bcd-price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1.5px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.bcd-price-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 16px 40px rgba(255,196,12,0.12);
    transform: translateY(-5px);
}
.bcd-price-featured {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-8px);
}
.bcd-price-featured:hover {
    border-color: var(--yellow);
    transform: translateY(-14px);
    box-shadow: 0 20px 50px rgba(58,124,146,0.25);
}
.bcd-price-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
}
.bcd-price-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 12px;
    margin-top: 14px;
}
.bcd-price-featured .bcd-price-tag { color: rgba(255,255,255,0.55); }
.bcd-price-val {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}
.bcd-price-featured .bcd-price-val { color: var(--white); }
.bcd-price-val span { font-size: 2.8rem; }
.bcd-price-note { font-size: 0.78rem; color: #999; margin-bottom: 24px; }
.bcd-price-featured .bcd-price-note { color: rgba(255,255,255,0.45); }
.bcd-price-list {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.bcd-price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-paragraph);
    font-weight: 500;
}
.bcd-price-featured .bcd-price-list li { color: rgba(255,255,255,0.8); }
.bcd-price-list li i { font-size: 0.7rem; color: var(--yellow); flex-shrink: 0; }
.bcd-price-list li i.fa-xmark { color: rgba(0,0,0,0.25); }
.bcd-price-featured .bcd-price-list li i.fa-xmark { color: rgba(255,255,255,0.2); }
.bcd-price-list-off { opacity: 0.45; }
.bcd-pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.86rem;
    color: var(--text-paragraph);
    opacity: 0.7;
}
.bcd-pricing-note a { color: var(--green); font-weight: 600; text-decoration: underline; }
.bcd-pricing-note i { color: var(--yellow); margin-right: 4px; }


/* ============================================
   FAQ
   ============================================ */
.bcd-faq-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.bcd-accordion { display: flex; flex-direction: column; gap: 14px; }
.bcd-acc-item {
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: var(--white);
}
.bcd-acc-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    padding: 18px 22px;
    box-shadow: none !important;
}
.bcd-acc-btn:not(.collapsed) {
    background: var(--green);
    color: var(--white);
}
.bcd-acc-btn:not(.collapsed)::after { filter: brightness(0) invert(1); }
.bcd-acc-body {
    font-size: 0.87rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    padding: 16px 22px 20px;
    opacity: 0.85;
    border-top: 1px solid var(--border-color);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .bcd-hero { padding: 120px 0 60px; }
    .bcd-fc-1, .bcd-fc-2, .bcd-fc-3 { display: none; }
    .bcd-price-featured { transform: none; }
    .bcd-price-featured:hover { transform: translateY(-5px); }
}
@media (max-width: 767.98px) {
    .bcd-services-section,
    .bcd-genres-section,
    .bcd-process-section,
    .bcd-why-section,
    .bcd-pricing-section,
    .bcd-faq-section { padding: 60px 0; }
    .bcd-book-showcase { transform: scale(0.9); }
}
