/* ============================================================
   Tharwa — About Us Inner Page Stylesheet
   ============================================================ */



/* ============================================================
   INNER HEADER — solid (no transparent gradient)
   ============================================================ */
.inner-header {
    position: relative !important;
    background: #fff !important;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(26, 24, 20, 0.06);
}

.inner-header .container {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}


/* ============================================================
   INNER BANNER
   ============================================================ */
.inner-banner {
    position: relative;
    background: url('../images/hero-refinery.webp') center center / cover no-repeat;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(31, 42, 68, 0.88) 0%,
            rgba(31, 42, 68, 0.65) 55%,
            rgba(31, 42, 68, 0.25) 100%);
    z-index: 1;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
}

.inner-banner-content {
    max-width: 560px;
}

/* Breadcrumb */
.inner-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0.4rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.inner-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.inner-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-gold);
}

.inner-breadcrumb .breadcrumb-item.active {
    color: var(--color-gold);
}

.inner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
    content: "›";
}

/* Decorative rule */
.inner-banner-rule {
    width: 48px;
    height: 3px;
    background: linear-gradient(135deg, #f5d78e 0%, #c76f04 100%);
    margin-bottom: 0.75rem;
    position: relative;
}

.inner-banner-rule::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--color-gold);
}

/* Title */
.inner-banner-title {
    font-family: var(--font-display, 'Georgia', serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

/* Sub label */
.inner-banner-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0;
}

/* ============================================================
   CONTENT LAYOUT
   ============================================================ */
.inner-content-section {
    padding: 3rem 0 4rem;
}


/* ============================================================
   PAGE SECTIONS — each top-level section
   ============================================================ */
.page-section {
    padding: 4rem 0;
    background: var(--color-sand);
}

.page-section--alt {
    background: #f0ede8;
}

/* Content section */
.content-section {
    margin-bottom: 0.5rem;
}

.content-section p,
.page-section>.container-xxl>p {
    font-size: 15px;
    color: rgba(31, 42, 68, 0.82);
    line-height: 1.75;
}

/* Section header */
.content-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.content-section-rule {
    width: 4px;
    height: 36px;
    background: linear-gradient(180deg, #f5d78e 0%, #c76f04 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.content-section-title {
    font-family: var(--font-display, 'Georgia', serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    letter-spacing: -0.01em;
}

/* ── Divider ── */
.content-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2.5rem 0;
}

.content-divider span:first-child,
.content-divider span:last-child {
    display: block;
    height: 1px;
    flex: 1;
    background: var(--color-border);
}

.divider-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ============================================================
   COMPANY OVERVIEW — STATS
   ============================================================ */
.overview-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.overview-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 0.75rem;
    background: var(--color-sand);
    border-top: 3px solid;
    border-image: linear-gradient(135deg, #f5d78e 0%, #c76f04 100%) 1;
    box-shadow: 0 2px 12px rgba(26, 24, 20, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.overview-stat:hover {
    box-shadow: 0 6px 24px rgba(26, 24, 20, 0.12);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-display, 'Georgia', serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
    background: linear-gradient(135deg, #5a3e00 0%, #c76f04 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-top: 0.35rem;
    opacity: 0.75;
}

/* ============================================================
   MISSION — Full-width background image section
   ============================================================ */
.mission-bg-section {
    position: relative;
    background: url('../images/hero-refinery.webp') center center / cover no-repeat;
    margin: 0 calc(-1 * var(--bs-gutter-x, 0px));
    overflow: hidden;
}

.mission-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(10, 15, 30, 0.92) 0%,
            rgba(20, 28, 55, 0.85) 50%,
            rgba(10, 15, 30, 0.92) 100%);
    z-index: 1;
}

.mission-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

/* Section label with side rules */
.mission-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.mission-label-rule {
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.mission-label-rule:last-child {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.mission-label-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* Quote block */
.mission-quote-wrap {
    margin-bottom: 2.5rem;
}

.mission-quote-mark {
    font-size: 5rem;
    line-height: 0.7;
    color: var(--color-gold);
    opacity: 0.6;
    font-family: 'Georgia', serif;
    font-weight: 700;
    display: block;
    user-select: none;
}

.mission-quote-mark--close {
    line-height: 1.4;
}

.mission-statement {
    font-family: var(--font-display, 'Georgia', serif);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.9;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    margin: 0.5rem 0;
    text-align: center;
}

/* Values — single row of 4 */
.mission-values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.mission-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.4rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(210, 164, 85, 0.25);
    border-top: 2px solid var(--color-gold);
    backdrop-filter: blur(4px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.mission-value:hover {
    background: rgba(210, 164, 85, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.mission-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(210, 164, 85, 0.15);
    border: 1px solid rgba(210, 164, 85, 0.4);
    border-radius: 50%;
    color: var(--color-gold);
}


/* ============================================================
   LEADERSHIP — Two-column grid
   ============================================================ */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.leader-card {
    display: grid;
    flex-direction: row;
    grid-template-columns: 150px 2.5fr;
    align-items: center;
    gap: 1.75rem;
    background: var(--color-sand);
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(26, 24, 20, 0.07);
    border-top: 3px solid;
    border-image: linear-gradient(135deg, #f5d78e 0%, #c76f04 100%) 1;
    transition: box-shadow 0.25s, transform 0.25s;
}

.leader-card:hover {
    box-shadow: 0 8px 32px rgba(26, 24, 20, 0.12);
    transform: translateY(-3px);
}

/* Left column: avatar */
.leader-col-left {
    flex-shrink: 0;
    width: 90px;
}

.leader-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    box-shadow: inset 0 0 0 2px rgba(210, 164, 85, 0.4);
}

.leader-name {
    font-family: var(--font-display, 'Georgia', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.15rem;
}

.leader-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

/* Right column: details */
.leader-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-bio {
    font-size: 14px;
    color: rgba(31, 42, 68, 0.78);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   POLICIES — Three-column grid
   ============================================================ */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.policy-card {
    background: var(--color-sand);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-top: 3px solid;
    border-image: linear-gradient(135deg, #f5d78e 0%, #c76f04 100%) 1;
    box-shadow: 0 2px 12px rgba(26, 24, 20, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.policy-card:hover {
    box-shadow: 0 6px 28px rgba(26, 24, 20, 0.11);
    transform: translateY(-3px);
}

.policy-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.policy-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-navy);
    border-radius: 4px;
    color: var(--color-gold);
}

.policy-title {
    font-family: var(--font-body, sans-serif);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.policy-body {
    font-size: 13.5px;
    color: rgba(31, 42, 68, 0.78);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    flex: 1;
}

.policy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.policy-link:hover {
    color: var(--color-navy);
    border-color: var(--color-navy);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .inner-main {
        padding: 0;
    }

    .overview-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-values-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .inner-banner {
        min-height: 200px;
    }

    .inner-banner-title {
        font-size: 1.8rem;
    }

    .overview-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-values-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-inner {
        padding: 3rem 1.25rem 2rem;
    }

    .leader-card {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }

    .leader-col-left {
        width: auto;
        margin: auto;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner-top {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .overview-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-values-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-content-section {
        padding: 1.5rem 0 2.5rem;
    }


}