/* ===== EPOKA GLOBAL – SUBSCRIPTION PAGE STYLESHEET ===== */
/* Depends on: css/style.css for all CSS variables, navbar, footer,
   cert-section, section-title, section-subtitle, reveal-on-scroll,
   hero-trust-bar, .trust-item */

/* ============================================================
   REVEAL ANIMATION START
   (Same pattern as about.css and contact.css)
   ============================================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
}

.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* ============================================================
   REVEAL ANIMATION END
   ============================================================ */

/* ============================================================
   SUBSCRIPTION HERO / PAGE BANNER SECTION START
   (Mirrors about-hero-section and contact-hero-section exactly)
   ============================================================ */
.sub-hero-section {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Full-bleed background image — same as .about-hero-section .hero-bg */
.sub-hero-section .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.7;
    z-index: 0;
}

/* Dark gradient overlay */
.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.sub-hero-container {
    position: relative;
    z-index: 3;
    padding-top: 70px;
    padding-bottom: 80px;
}

.sub-hero-content {
    color: #fff;
    max-width: 700px;
}

.sub-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.sub-hero-content h1 span {
    color: var(--primary);
}

.sub-hero-content p {
    font-family: var(--font-subheading);
    font-size: 19px;
    opacity: 0.82;
    margin-bottom: 22px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb — same as about/contact breadcrumb */
.sub-breadcrumb {
    background: transparent;
    padding: 0;
}

.sub-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}

.sub-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 14px;
}

.sub-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive — hero */
@media (max-width: 991px) {
    .sub-hero-section {
        min-height: 380px;
    }

    .sub-hero-content h1 {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .sub-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    /* hero-trust-bar responsive handled by style.css */
}

@media (max-width: 575px) {
    .sub-hero-section {
        min-height: 320px;
    }

    .sub-hero-container {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .sub-hero-content h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .sub-hero-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }
}

/* ============================================================
   SUBSCRIPTION HERO / PAGE BANNER SECTION END
   ============================================================ */

/* ============================================================
   WHY JOIN HONEY CLUB SECTION START
   ============================================================ */
.sub-why-section {
    background: var(--bg-light);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

/* Left honey vector — absolute bottom-left */
.sub-why-left-vector {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: auto;
    height: 220px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

/* Right leaf vector — absolute top-right */
.sub-why-right-vector {
    position: absolute;
    top: -10px;
    right: -10px;
    width: auto;
    height: 220px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.sub-why-heading {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.sub-why-cards-row {
    position: relative;
    z-index: 1;
}

/* Benefit card — no border, just white bg with shadow on hover */
.sub-why-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 36px 20px 28px;
    text-align: center;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
    height: 100%;
}

.sub-why-card:hover {
    box-shadow: 0 8px 32px var(--shadow);
    transform: translateY(-4px);
}

/* Hexagon-shaped background for icon */
.sub-why-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3e2;
    /* CSS clip-path hexagon */
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    position: relative;
}

.sub-why-icon-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.sub-why-label {
    font-family: var(--font-subheading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .sub-why-section {
        padding: 60px 0 50px;
    }

    .sub-why-card {
        padding: 24px 14px 20px;
    }

    .sub-why-icon-wrap {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .sub-why-icon-wrap img {
        width: 34px;
        height: 34px;
    }

    .sub-why-label {
        font-size: 13px;
    }

    .sub-why-left-vector,
    .sub-why-right-vector {
        height: 130px;
    }
}

/* ============================================================
   WHY JOIN HONEY CLUB SECTION END
   ============================================================ */

/* ============================================================
   PRICING PLANS SECTION START
   ============================================================ */

/* Section bg: pure white, overflow hidden for decorative images */
.sub-plans-section {
    background: #ffffff;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Right leaf vector — top right corner */
.sub-plans-right-leaf {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 220px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

/* Left honey dipper / honey bowl — bottom left corner */
.sub-plans-left-honey {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: 280px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}

.sub-plans-heading {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

/* Outer wrapper that holds the decorative left image + cards row */
.sub-plans-outer {
    position: relative;
}

/* Decorative honey dipper / product image — absolute left (legacy, hidden) */
.sub-plans-left-img {
    display: none;
}

.sub-plans-row {
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* Base plan card */
.sub-plan-card {
    background: #fff9f4;
    /* border: 1.5px solid var(--border); */
    border-radius: var(--radius-lg);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: box-shadow 0.3s;
}

.sub-plan-card:hover {
    box-shadow: 0 8px 32px var(--shadow);
}

/* Featured / Most Popular card */
.sub-plan-featured {
    border: 2px solid var(--secondary);
    background: white;
    box-shadow: 0 8px 40px rgba(33, 56, 38, 0.14);
}

/* "Most Popular" badge */
.sub-plan-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #ffffff;
    font-family: var(--font-subheading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 20px;
    border-radius: 10px;
    white-space: nowrap;
}

/* Plan header */
.sub-plan-header {
    margin-bottom: 24px;
    padding-top: 10px;
}

.sub-plan-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.sub-plan-qty {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Feature checklist */
.sub-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.sub-plan-features li {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-mid);
    padding: 8px 0;
    border-bottom: 1px solid #f5ead0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-plan-features li:last-child {
    border-bottom: none;
}

.sub-plan-features li .bi {
    color: var(--secondary);
    font-size: 15px;
    flex-shrink: 0;
}

/* Plan CTA button — outline style */
.sub-plan-btn {
    width: 100%;
    padding: 12px 20px;
    font-family: var(--font-subheading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    margin-top: auto;
}

.sub-plan-btn:hover {
    background: var(--secondary);
    color: #ffffff;
}

/* Featured card CTA — filled green */
.sub-plan-btn-featured {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
}

.sub-plan-btn-featured:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

@media (max-width: 991px) {
    .sub-plans-right-leaf {
        height: 160px;
    }

    .sub-plans-left-honey {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .sub-plans-section {
        padding: 60px 0 70px;
    }

    .sub-plan-card {
        padding: 30px 24px 26px;
    }

    .sub-plans-left-honey {
        height: 150px;
        opacity: 0.75;
    }

    .sub-plans-right-leaf {
        height: 130px;
    }
}

@media (max-width: 575px) {
    .sub-plans-left-honey {
        height: 110px;
    }

    .sub-plans-right-leaf {
        height: 100px;
    }
}

/* ============================================================
   PRICING PLANS SECTION END
   ============================================================ */

/* ============================================================
   HOW HONEY CLUB WORKS SECTION START
   ============================================================ */
.sub-how-section {
    background: var(--bg-light);
    padding: 80px 0 70px;
}

.sub-how-heading {
    margin-bottom: 48px;
}

.sub-how-row {
    align-items: stretch;
}

/* Step card */
.sub-how-card {
    /* background: var(--white); */
    /* border: 1px solid var(--border); */
    border-radius: var(--radius-lg);
    padding: 36px 20px 28px;
    text-align: center;
    height: 100%;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
}

.sub-how-card:hover {
    /* box-shadow: 0 8px 32px var(--shadow); */
    transform: translateY(-4px);
}

.sub-how-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 15px;
}

.sub-how-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Step number label e.g. "01" */
.sub-how-step-num {
    font-family: var(--font-subheading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sub-how-label {
    font-family: var(--font-subheading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .sub-how-section {
        padding: 60px 0 50px;
    }

    .sub-how-card {
        padding: 22px 14px 20px;
    }

    .sub-how-icon-wrap {
        width: 54px;
        height: 54px;
    }

    .sub-how-label {
        font-size: 13px;
    }
}

/* ============================================================
   HOW HONEY CLUB WORKS SECTION END
   ============================================================ */

/* ============================================================
   FAQ SECTION START
   (Mirrors contact.css .contact-faq-section pattern)
   ============================================================ */
.sub-faq-section {
    padding: 70px 0;
    background: #fff9f4;
    position: relative;
}

/* Bee vector — top right, same as contact-faq-bee-vector */
.sub-faq-bee-vector {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 200px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.sub-faq-heading {
    margin-bottom: 48px;
}

.sub-faq-row {
    align-items: start;
}

/* FAQ item card */
.sub-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.sub-faq-item:hover {
    box-shadow: 0 4px 16px var(--shadow);
}

/* Question button */
.sub-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-subheading);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    transition: color 0.2s;
}

.sub-faq-question:hover {
    color: var(--secondary);
}

/* Chevron icon */
.sub-faq-icon {
    flex-shrink: 0;
    font-size: 15px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

/* Rotate chevron when open */
.sub-faq-item.faq-open .sub-faq-icon {
    transform: rotate(180deg);
}

/* Answer panel — hidden by default */
.sub-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.3s ease;
    padding: 0 20px;
}

/* Answer panel open state */
.sub-faq-item.faq-open .sub-faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.sub-faq-answer p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .sub-faq-section {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .sub-faq-bee-vector {
        display: none;
    }
}

/* ============================================================
   FAQ SECTION END
   ============================================================ */

/* ============================================================
   CTA SECTION START
   ============================================================ */
/* .sub-cta-section {
  background: var(--bg-light);
  padding: 60px 0 80px;
}


.sub-cta-card {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.sub-cta-full-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .sub-cta-section {
    padding: 40px 0 60px;
  }
} */

/* ============================================================
   CTA SECTION END
   ============================================================ */

/* ============================================================
   CTA SECTION START
   ============================================================ */
.sub-cta-section {
    background: var(--bg-light);
    padding: 60px 0 80px;
}

/* CTA card — relative for overlay text */
.sub-cta-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

/* Background image */
.sub-cta-bg-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    min-height: 220px;
    object-fit: cover;
}

/* Text overlay — left side */
.sub-cta-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 0 0 52px;
    max-width: 52%;
    line-height: 1.4;
}

.sub-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 10px;
    /* line-height: 1.2; */
}

.sub-plan-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 12px 0 0;
    line-height: 1;
}

.sub-plan-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
}

.sub-cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-mid);
    margin-bottom: 22px;
    line-height: 1.5;
}

/* CTA button — dark green filled */
.sub-cta-btn {
    display: inline-block;
    background: var(--secondary);
    color: #ffffff;
    font-family: var(--font-subheading);
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.25s;
    margin-bottom: 22px;
    white-space: nowrap;
}

.sub-cta-btn:hover {
    background: var(--secondary-hover);
    color: #ffffff;
}

/* Badges row */
.sub-cta-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sub-cta-badge {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.2vw, 13.5px);
    color: var(--text-mid);
    display: flex;
    font-weight: 500;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.sub-cta-badge .bi {
    font-size: 14px;
    color: var(--text-light);
}

.sub-cta-divider {
    width: 1px;
    height: 16px;
    background: #c8b07a;
    display: inline-block;
}

/* Responsive */
@media (max-width: 991px) {
    .sub-cta-content {
        padding-left: 36px;
        max-width: 58%;
    }
}

@media (max-width: 767px) {
    .sub-cta-content {
        padding-left: 28px;
        max-width: 65%;
    }

    .sub-cta-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .sub-cta-section {
        padding: 40px 0 60px;
    }

    .sub-cta-content {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 24px 20px;
        background: rgba(255, 253, 247, 0.92);
        border-radius: 0 0 20px 20px;
    }

    .sub-cta-bg-img {
        border-radius: 20px 20px 0 0;
    }

    .sub-cta-divider {
        display: none;
    }

    .sub-cta-badges {
        gap: 8px;
    }
}

/* ============================================================
   CTA SECTION END
   ============================================================ */
