
/* ===== REVEAL ANIMATION START ===== */
.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 ===== */








/* ============================================================
   ABOUT HERO / PAGE BANNER SECTION START
   ============================================================ */
.about-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 homepage .hero-bg */
.about-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 */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.10) 100%);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 3;
    padding-top: 70px;
    padding-bottom: 80px;
}

.about-hero-content {
    color: #fff;
    max-width: 700px;
}

.about-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;
}

.about-hero-content h1 span {
    color: var(--primary);
}

.about-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 */
.about-breadcrumb {
    background: transparent;
    padding: 0;
}

.about-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}

.about-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 14px;
}

.about-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

/* Trust bar — inherited from homepage */
.hero-trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 14px 20px;
}

.trust-item {
    color: #fff;
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-item i {
    color: var(--primary);
    font-size: 15px;
}

/* Responsive — hero */
@media (max-width: 991px) {
    .about-hero-section {
        min-height: 380px;
    }

    .about-hero-content h1 {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .hero-trust-bar {
        gap: 28px;
    }

    .trust-item {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .hero-trust-bar {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }
}

@media (max-width: 575px) {
    .about-hero-section {
        min-height: 320px;
    }

    .about-hero-container {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .about-hero-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-trust-bar {
        gap: 10px;
    }

    .trust-item {
        font-size: 13px;
    }
}

/* ============================================================
   ABOUT HERO / PAGE BANNER SECTION END
   ============================================================ */


/* ============================================================
   WHY CHOOSE SECTION START
   (Used for "Who We Are" — same classes as homepage)
   ============================================================ */
.why-choose-section {
    padding: 70px 0;
    position: relative;
    background: #FFF9F4;
}

.why-choose-heading {
    margin-bottom: 48px;
}

/* Left column wrapper */
.why-left-wrap {
    position: relative;
}

/* Bee vector — top-left decoration */
.why-bee-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 200px;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

/* Beekeeper / main photo */
.why-choose-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.why-choose-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* Brand badge overlay */
.brand-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    background: rgba(255, 249, 244, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
    padding: 18px 22px;
    max-width: 72%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.brand-badge h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.why-brand-desc {
    font-family: var(--font-subheading);
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* Right column intro text */
.why-intro-text {
    font-family: var(--font-subheading);
    font-size: 19px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Hex feature rows */
.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.why-hex-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: #533B00;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-hex-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.why-feature h6 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.why-feature p {
    font-family: var(--font-subheading);
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive — who we are */
@media (max-width: 991px) {
    .why-bee-vector {
        top: -14%;
        left: -12%;
        width: 32%;
    }

    .why-choose-img img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .why-bee-vector {
        display: none;
    }

    .why-choose-img img {
        height: 260px;
    }

    .brand-badge {
        max-width: 90%;
        padding: 14px 16px;
    }

    .why-hex-icon {
        width: 50px;
        height: 50px;
    }

    .why-hex-icon img {
        width: 24px;
        height: 24px;
    }

    .why-intro-text {
        font-size: 16px;
    }

    .why-feature p {
        font-size: 15px;
    }
}

/* ============================================================
   WHY CHOOSE SECTION END
   ============================================================ */


/* ============================================================
   STATS SECTION START
   ============================================================ */
.about-stats-section {
    background: var(--secondary);
    padding: 56px 0;
}

.about-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 52px;
    flex: 1;
    min-width: 160px;
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.about-stat-label {
    font-family: var(--font-subheading);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    letter-spacing: 0.3px;
}

.about-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Responsive — stats */
@media (max-width: 768px) {
    .about-stat-divider {
        display: none;
    }

    .about-stat-item {
        padding: 16px 24px;
        min-width: 140px;
    }
}

@media (max-width: 575px) {
    .about-stats-section {
        padding: 40px 0;
    }

    .about-stat-item {
        padding: 14px 18px;
    }
}

/* ============================================================
   STATS SECTION END
   ============================================================ */


/* ============================================================
   OUR STORY SECTION — right-side bee vector START
   ============================================================ */
/* Mirrors .why-bee-vector but anchored top-right */
.about-story-bee-vector {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 200px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 575px) {
    .about-story-bee-vector {
        display: none;
    }
}

/* ============================================================
   OUR STORY SECTION — right-side bee vector END
   ============================================================ */










