/* Premium Our Journey Styles */

.poj-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #EEF5ED;
    padding: 100px 40px;
    box-sizing: border-box;
    overflow: hidden;
    font-family: inherit;
}

.poj-shape {
    position: absolute;
    color: #165A32;
    pointer-events: none;
    z-index: 1;
}

.poj-shape-leaf-1 {
    top: 5%;
    left: -2%;
    width: 250px;
    height: 250px;
    transform: rotate(45deg);
}

.poj-shape-leaf-2 {
    bottom: 5%;
    right: -2%;
    width: 300px;
    height: 300px;
    transform: rotate(-15deg);
}

.poj-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
}

.poj-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column Styling */
.poj-column-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.poj-eyebrow {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #C79A3B;
    margin-bottom: 12px;
}

.poj-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #165A32;
    margin: 0 0 16px 0;
}

.poj-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.poj-divider-line {
    height: 1px;
    width: 40px;
    background-color: #DCE7DA;
}

.poj-divider-dot {
    width: 6px;
    height: 6px;
    background-color: #C79A3B;
    border-radius: 50%;
}

.poj-subtitle {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    color: #233321;
    margin: 0 0 24px 0;
}

.poj-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #667463;
    max-width: 650px;
    margin-bottom: 35px;
}

.poj-intro-text p {
    margin-bottom: 16px;
}

/* CTA Button */
.poj-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #165A32;
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(22, 90, 50, 0.15);
}

.poj-cta-btn:hover {
    background-color: #1E6B3D;
    transform: translateY(-2px);
}

.poj-btn-icon svg {
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
    fill: #FFFFFF;
}

.poj-cta-btn:hover .poj-btn-icon svg {
    transform: translateX(4px);
}

/* Right Column (Timeline & Story Cards) */
.poj-timeline-container {
    position: relative;
    padding-left: 40px;
}

.poj-timeline-active .poj-timeline-line {
    position: absolute;
    left: 8px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: #DCE7DA;
}

.poj-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.poj-card-wrapper {
    position: relative;
}

.poj-timeline-active .poj-timeline-dot {
    position: absolute;
    left: -38px;
    top: 28px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #165A32;
    border: 3px solid #EEF5ED;
    box-shadow: 0 0 0 3px #165A32;
    z-index: 2;
    transition: background-color 0.3s;
}

.poj-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBF7 100%);
    border: 1px solid #DCE7DA;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(22, 90, 50, .06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.poj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(22, 90, 50, .12);
}

.poj-card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(199, 154, 59, 0.1);
    color: #C79A3B;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 1px;
}

.poj-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.poj-card-icon {
    font-size: 24px;
    color: #165A32;
    display: flex;
    align-items: center;
}

.poj-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #165A32;
}

.poj-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #165A32;
    margin: 0;
}

.poj-card-body {
    font-size: 15px;
    line-height: 1.6;
    color: #667463;
}

.poj-card-image-wrap {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.poj-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.poj-card:hover .poj-card-image-wrap img {
    transform: scale(1.06);
}

/* Statistics Row */
.poj-stats-row {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 60px;
    border-top: 1px solid #DCE7DA;
}

.poj-stat-item {
    text-align: center;
}

.poj-stat-number-wrap {
    font-size: 48px;
    font-weight: 700;
    color: #165A32;
    line-height: 1;
    margin-bottom: 8px;
}

.poj-stat-suffix {
    color: #C79A3B;
}

.poj-stat-label {
    font-size: 15px;
    color: #667463;
    margin: 0;
    font-weight: 500;
}

/* Interactive Animations */
.poj-has-animations .poj-column-left > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.poj-has-animations .poj-card-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.poj-has-animations .poj-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Tablet & Mobile responsive */
@media (max-width: 1024px) {
    .poj-container {
        padding: 80px 24px;
    }
    .poj-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .poj-column-left {
        position: relative;
        top: 0;
    }
    .poj-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .poj-container {
        padding: 60px 16px;
    }
    .poj-heading {
        font-size: 36px;
    }
    .poj-stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
