/* ================================================================
   OPERATIONS PAGE — Premium Corporate Stylesheet
   ================================================================ */

/* --- Design Tokens --- */
:root {
    --ops-green: #043222;
    --ops-green-rgb: 4, 50, 34;
    --ops-accent: #3aa64e;
    --ops-accent-rgb: 58, 166, 78;
    --ops-dark: #1a1a1a;
    --ops-text: #4a4a4a;
    --ops-text-light: #717171;
    --ops-bg: #ffffff;
    --ops-bg-soft: #f8faf9;
    --ops-bg-muted: #f1f5f3;
    --ops-border: #e4ebe7;
    --ops-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --ops-shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --ops-shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --ops-shadow-glow: 0 8px 32px rgba(4, 50, 34, 0.12);
    --ops-radius: 16px;
    --ops-radius-sm: 10px;
    --ops-radius-lg: 24px;
    --ops-container: 1280px;
    --ops-section-pad: 120px;
    --ops-font: 'Plus Jakarta Sans', sans-serif;
    --ops-heading-font: 'Roboto Condensed', sans-serif;
}

/* --- Scroll Progress Bar --- */
.ops-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--ops-green), var(--ops-accent));
    z-index: 99999;
    transition: width 0.1s linear;
}

/* --- Sticky Section Nav --- */
.ops-section-nav {
    position: fixed;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ops-section-nav.visible {
    opacity: 1;
}
.ops-section-nav__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(4, 50, 34, 0.15);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.ops-section-nav__dot:hover,
.ops-section-nav__dot.active {
    background: var(--ops-green);
    border-color: var(--ops-green);
    transform: scale(1.3);
}
.ops-section-nav__dot::after {
    content: attr(data-label);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ops-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: var(--ops-font);
}
.ops-section-nav__dot:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .ops-section-nav {
        display: none;
    }
}

/* --- Utility: Container --- */
.ops-container {
    max-width: var(--ops-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility: Section Spacing --- */
.ops-section {
    padding: var(--ops-section-pad) 0;
    position: relative;
    overflow: hidden;
}

/* --- Utility: Section Title --- */
.ops-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ops-heading-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ops-accent);
    margin-bottom: 16px;
}
.ops-section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--ops-accent);
    border-radius: 2px;
}
.ops-section-heading {
    font-family: var(--ops-heading-font);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ops-dark);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}
.ops-section-heading--center {
    text-align: center;
}
.ops-section-subtext {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ops-text);
    max-width: 620px;
    margin: 0;
}
.ops-section-subtext--center {
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .ops-section { padding: 80px 0; }
    .ops-section-heading { font-size: 38px; }
}
@media (max-width: 575px) {
    .ops-section { padding: 60px 0; }
    .ops-section-heading { font-size: 30px; }
    .ops-section-subtext { font-size: 16px; }
}

/* --- Scroll Reveal Animations --- */
.ops-reveal {
    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);
}
.ops-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.ops-reveal-delay-1 { transition-delay: 0.1s; }
.ops-reveal-delay-2 { transition-delay: 0.2s; }
.ops-reveal-delay-3 { transition-delay: 0.3s; }
.ops-reveal-delay-4 { transition-delay: 0.4s; }
.ops-reveal-delay-5 { transition-delay: 0.5s; }
.ops-reveal-delay-6 { transition-delay: 0.6s; }

/* ================================================================
   SECTION 1 — HERO
   ================================================================ */
.ops-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--ops-bg);
    overflow: hidden;
    padding: 140px 0 100px;
}
/* Animated background grid lines */
.ops-hero__bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.ops-hero__bg-lines::before,
.ops-hero__bg-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(4,50,34,0.03), transparent);
    animation: heroLineDrift 12s ease-in-out infinite;
}
.ops-hero__bg-lines::before {
    width: 1px;
    height: 200%;
    top: -50%;
    left: 20%;
    animation-delay: 0s;
}
.ops-hero__bg-lines::after {
    width: 1px;
    height: 200%;
    top: -50%;
    left: 55%;
    animation-delay: 4s;
}
.ops-hero__bg-line {
    position: absolute;
    width: 1px;
    height: 200%;
    top: -50%;
    background: linear-gradient(180deg, transparent, rgba(4,50,34,0.04), transparent);
    animation: heroLineDrift 15s ease-in-out infinite;
}
.ops-hero__bg-line:nth-child(1) { left: 35%; animation-delay: 2s; }
.ops-hero__bg-line:nth-child(2) { left: 70%; animation-delay: 6s; }
.ops-hero__bg-line:nth-child(3) { left: 85%; animation-delay: 8s; }

@keyframes heroLineDrift {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(30px); opacity: 1; }
}

/* Subtle gradient orb */
.ops-hero__orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58,166,78,0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: orbPulse 8s ease-in-out infinite;
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.ops-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ops-hero__content {
    max-width: 580px;
}
.ops-hero__title {
    font-family: var(--ops-heading-font);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.08;
    color: var(--ops-dark);
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}
.ops-hero__title span {
    color: var(--ops-accent);
}
.ops-hero__text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--ops-text);
    margin: 0 0 40px 0;
}
.ops-hero__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.ops-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--ops-heading-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 36px;
    border-radius: var(--ops-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}
.ops-btn--primary {
    background: var(--ops-green);
    color: #fff;
    border-color: var(--ops-green);
}
.ops-btn--primary:hover {
    background: var(--ops-accent);
    border-color: var(--ops-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(58, 166, 78, 0.25);
}
.ops-btn--secondary {
    background: transparent;
    color: var(--ops-green);
    border-color: var(--ops-border);
}
.ops-btn--secondary:hover {
    border-color: var(--ops-green);
    color: var(--ops-green);
    transform: translateY(-3px);
    box-shadow: var(--ops-shadow-md);
}
.ops-btn--white {
    background: #fff;
    color: var(--ops-green);
    border-color: #fff;
}
.ops-btn--white:hover {
    background: var(--ops-accent);
    color: #fff;
    border-color: var(--ops-accent);
    transform: translateY(-3px);
}
.ops-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.ops-btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Illustration */
.ops-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ops-hero__illustration {
    width: 100%;
    max-width: 560px;
    position: relative;
}
.ops-hero__illustration svg {
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .ops-hero { min-height: auto; padding: 120px 0 80px; }
    .ops-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .ops-hero__title { font-size: 42px; }
    .ops-hero__visual { order: -1; }
    .ops-hero__illustration { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 575px) {
    .ops-hero__title { font-size: 34px; }
    .ops-hero__text { font-size: 16px; }
    .ops-hero__btns { flex-direction: column; }
    .ops-btn { width: 100%; justify-content: center; }
}

/* ================================================================
   SECTION 2 — OPERATIONAL MODEL (Process Flow)
   ================================================================ */
.ops-process {
    background: var(--ops-bg-soft);
}
.ops-process__header {
    text-align: center;
    margin-bottom: 64px;
}
.ops-process__flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    position: relative;
    padding: 20px 0;
}
/* The connecting line */
.ops-process__flow::before {
    content: '';
    position: absolute;
    top: 68px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--ops-border), var(--ops-accent), var(--ops-border));
    z-index: 0;
    border-radius: 2px;
}
/* Animated pulse on the connecting line */
.ops-process__flow::after {
    content: '';
    position: absolute;
    top: 66px;
    left: 8%;
    width: 40px;
    height: 7px;
    background: var(--ops-accent);
    border-radius: 4px;
    z-index: 1;
    animation: flowPulse 4s ease-in-out infinite;
    box-shadow: 0 0 16px rgba(58, 166, 78, 0.4);
}
@keyframes flowPulse {
    0% { left: 8%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(92% - 40px); opacity: 0; }
}

.ops-process__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 12px;
}
.ops-process__step-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--ops-bg);
    border: 3px solid var(--ops-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.ops-process__step-circle i,
.ops-process__step-circle .ops-icon {
    font-size: 32px;
    color: var(--ops-green);
    transition: all 0.3s ease;
}
.ops-process__step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ops-accent);
    color: #fff;
    font-family: var(--ops-heading-font);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(58,166,78,0.3);
}
.ops-process__step-title {
    font-family: var(--ops-heading-font);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ops-dark);
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}
.ops-process__step-desc {
    font-size: 14px;
    color: var(--ops-text-light);
    line-height: 1.5;
    margin: 0;
}

.ops-process__step:hover .ops-process__step-circle {
    border-color: var(--ops-accent);
    transform: scale(1.1);
    box-shadow: var(--ops-shadow-glow);
}
.ops-process__step:hover .ops-process__step-circle i,
.ops-process__step:hover .ops-process__step-circle .ops-icon {
    color: var(--ops-accent);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .ops-process__flow {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding-left: 48px;
    }
    .ops-process__flow::before {
        top: 0;
        bottom: 0;
        left: 48px;
        right: auto;
        width: 3px;
        height: auto;
    }
    .ops-process__flow::after {
        top: 0;
        left: 46px;
        width: 7px;
        height: 40px;
        animation: flowPulseMobile 4s ease-in-out infinite;
    }
    @keyframes flowPulseMobile {
        0% { top: 0; opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { top: calc(100% - 40px); opacity: 0; }
    }
    .ops-process__step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 20px 0;
    }
    .ops-process__step-circle {
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        margin: 0;
    }
    .ops-process__step-circle i,
    .ops-process__step-circle .ops-icon {
        font-size: 24px;
    }
    .ops-process__step-num {
        width: 22px;
        height: 22px;
        font-size: 10px;
        top: -4px;
        right: -4px;
    }
}

/* ================================================================
   SECTION 3 — OPERATIONS PILLARS
   ================================================================ */
.ops-pillars {
    background: var(--ops-bg);
}
.ops-pillars__header {
    text-align: center;
    margin-bottom: 64px;
}
.ops-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
}
.ops-pillar-card {
    background: var(--ops-bg-soft);
    border: 1px solid var(--ops-border);
    border-radius: var(--ops-radius-lg);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
/* Bento Spans */
.ops-pillar-card--wide {
    grid-column: span 2;
}
.ops-pillar-card--tall {
    grid-row: span 2;
}

.ops-pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(58, 166, 78, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ops-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ops-shadow-lg);
    border-color: rgba(58, 166, 78, 0.2);
    background: #fff;
}
.ops-pillar-card:hover::before {
    opacity: 1;
}

.ops-pillar-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: var(--ops-shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--ops-border);
}
.ops-pillar-card__icon i {
    font-size: 24px;
    color: var(--ops-green);
    transition: transform 0.4s ease;
}

.ops-pillar-card:hover .ops-pillar-card__icon {
    background: var(--ops-green);
    transform: scale(1.05) rotate(-5deg);
}
.ops-pillar-card:hover .ops-pillar-card__icon i {
    color: #fff;
    transform: scale(1.1);
}

.ops-pillar-card__title {
    font-family: var(--ops-heading-font);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ops-dark);
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}
.ops-pillar-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ops-text);
    margin: 0;
    max-width: 90%;
}

@media (max-width: 1200px) {
    .ops-pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ops-pillar-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .ops-pillars__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .ops-pillar-card--wide,
    .ops-pillar-card--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .ops-pillar-card {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .ops-pillars__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SECTION 4 — STATS / IMPACT
   ================================================================ */
.ops-stats {
    background: var(--ops-green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.ops-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(58,166,78,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.ops-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.ops-stat-item {
    text-align: center;
    position: relative;
}
.ops-stat-item + .ops-stat-item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.12);
}
.ops-stat-item__number {
    font-family: var(--ops-heading-font);
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.ops-stat-item__number .count-text {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
.ops-stat-item__suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--ops-accent);
}
.ops-stat-item__label {
    font-family: var(--ops-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

@media (max-width: 991px) {
    .ops-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .ops-stat-item + .ops-stat-item::before { display: none; }
}
@media (max-width: 575px) {
    .ops-stats__grid { grid-template-columns: 1fr; }
    .ops-stat-item__number { font-size: 42px; }
}

/* ================================================================
   SECTION 5 — FACILITIES / INFRASTRUCTURE
   ================================================================ */
.ops-facilities {
    background: var(--ops-bg);
}
.ops-facilities__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ops-facilities__images {
    position: relative;
    min-height: 520px;
}
.ops-facilities__img {
    position: absolute;
    border-radius: var(--ops-radius);
    overflow: hidden;
    box-shadow: var(--ops-shadow-lg);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ops-facilities__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ops-facilities__img--main {
    top: 0;
    left: 0;
    width: 65%;
    height: 420px;
    z-index: 1;
}
.ops-facilities__img--secondary {
    top: 40px;
    right: 0;
    width: 55%;
    height: 300px;
    z-index: 2;
}
.ops-facilities__img--tertiary {
    bottom: 0;
    right: 60px;
    width: 45%;
    height: 220px;
    z-index: 3;
}
.ops-facilities__img:hover {
    transform: translateY(-6px);
}
.ops-facilities__content {
    max-width: 520px;
}
.ops-facilities__list {
    list-style: none;
    padding: 0;
    margin: 32px 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ops-facilities__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--ops-text);
    font-weight: 500;
}
.ops-facilities__list li .ops-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(58, 166, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ops-accent);
    font-size: 12px;
}

@media (max-width: 991px) {
    .ops-facilities__grid { grid-template-columns: 1fr; gap: 48px; }
    .ops-facilities__images {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .ops-facilities__img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 260px !important;
    }
    .ops-facilities__img--main {
        grid-column: 1 / -1;
        height: 300px !important;
    }
}

/* ================================================================
   SECTION 6 — SUPPLY CHAIN
   ================================================================ */
.ops-supply {
    background: var(--ops-bg-soft);
}
.ops-supply__header {
    text-align: center;
    margin-bottom: 64px;
}
.ops-supply__chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}
.ops-supply__node {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.ops-supply__node-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--ops-bg);
    border: 3px solid var(--ops-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
    position: relative;
}
.ops-supply__node-circle i {
    font-size: 32px;
    color: var(--ops-green);
    margin-bottom: 2px;
}
.ops-supply__node-label {
    font-family: var(--ops-heading-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ops-dark);
    margin: 0 0 6px 0;
}
.ops-supply__node-desc {
    font-size: 13px;
    color: var(--ops-text-light);
    line-height: 1.4;
    margin: 0;
}
.ops-supply__node:hover .ops-supply__node-circle {
    transform: scale(1.08);
    border-color: var(--ops-accent);
    box-shadow: var(--ops-shadow-glow);
}

/* Arrows between nodes */
.ops-supply__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
    position: relative;
}
.ops-supply__arrow::before {
    content: '';
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ops-border), var(--ops-accent));
    border-radius: 2px;
}
.ops-supply__arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--ops-accent);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Animated dot traveling along arrow */
.ops-supply__arrow-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--ops-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(58,166,78,0.5);
    animation: arrowDot 3s ease-in-out infinite;
}
@keyframes arrowDot {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: calc(100% - 8px); opacity: 0; }
}

@media (max-width: 767px) {
    .ops-supply__chain {
        flex-direction: column;
        gap: 16px;
    }
    .ops-supply__arrow {
        width: 3px;
        height: 40px;
        flex-direction: column;
    }
    .ops-supply__arrow::before {
        width: 3px;
        height: 100%;
    }
    .ops-supply__arrow::after {
        right: auto;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--ops-accent);
        border-bottom: none;
    }
    .ops-supply__arrow-dot {
        animation: arrowDotMobile 3s ease-in-out infinite;
    }
    @keyframes arrowDotMobile {
        0% { top: 0; left: 50%; transform: translateX(-50%); opacity: 0; }
        20% { opacity: 1; }
        80% { opacity: 1; }
        100% { top: calc(100% - 8px); left: 50%; transform: translateX(-50%); opacity: 0; }
    }
}

/* ================================================================
   SECTION 7 — QUALITY & COMPLIANCE
   ================================================================ */
.ops-quality {
    background: var(--ops-bg);
}
.ops-quality__header {
    text-align: center;
    margin-bottom: 64px;
}
.ops-quality__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.ops-quality-card {
    text-align: center;
    background: var(--ops-bg);
    border: 1px solid var(--ops-border);
    border-radius: var(--ops-radius);
    padding: 48px 32px;
    transition: all 0.4s ease;
}
.ops-quality-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ops-shadow-lg);
    border-color: transparent;
}
.ops-quality-card__badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ops-bg-muted);
    border: 3px solid var(--ops-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}
.ops-quality-card__badge i {
    font-size: 30px;
    color: var(--ops-green);
    transition: color 0.3s ease;
}
.ops-quality-card:hover .ops-quality-card__badge {
    background: var(--ops-green);
    border-color: var(--ops-green);
}
.ops-quality-card:hover .ops-quality-card__badge i {
    color: #fff;
}
.ops-quality-card__title {
    font-family: var(--ops-heading-font);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ops-dark);
    margin: 0 0 12px 0;
}
.ops-quality-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ops-text);
    margin: 0;
}

@media (max-width: 767px) {
    .ops-quality__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SECTION 8 — TESTIMONIALS
   ================================================================ */
.ops-testimonials {
    background: var(--ops-bg-soft);
}
.ops-testimonials__header {
    text-align: center;
    margin-bottom: 64px;
}
.ops-testimonial-card {
    background: var(--ops-bg);
    border: 2px solid var(--ops-border);
    border-radius: var(--ops-radius);
    padding: 40px 36px;
    transition: all 0.3s ease;
    margin: 8px;
}
.ops-testimonial-card:hover {
    border-color: var(--ops-accent);
    box-shadow: var(--ops-shadow-md);
}
.ops-testimonial-card__quote {
    font-size: 48px;
    line-height: 1;
    color: var(--ops-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}
.ops-testimonial-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ops-text);
    font-style: italic;
    margin: 0 0 24px 0;
}
.ops-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ops-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ops-bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ops-heading-font);
    font-size: 18px;
    font-weight: 800;
    color: var(--ops-green);
    flex-shrink: 0;
}
.ops-testimonial-card__name {
    font-family: var(--ops-heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--ops-dark);
    margin: 0;
}
.ops-testimonial-card__role {
    font-size: 13px;
    color: var(--ops-text-light);
    margin: 0;
}

/* ================================================================
   SECTION 9 — FINAL CTA
   ================================================================ */
.ops-final-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.ops-final-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 8s ease;
}
.ops-final-cta:hover .ops-final-cta__bg {
    transform: scale(1.05);
}
.ops-final-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,50,34,0.92), rgba(2,26,18,0.88));
    z-index: 1;
}
.ops-final-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.ops-final-cta__title {
    font-family: var(--ops-heading-font);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 20px;
}
.ops-final-cta__text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin: 0 0 40px;
}
.ops-final-cta__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .ops-final-cta { padding: 80px 0; }
    .ops-final-cta__title { font-size: 32px; }
    .ops-final-cta__btns { flex-direction: column; align-items: center; }
    .ops-final-cta__btns .ops-btn { width: 100%; }
}

/* ================================================================
   PAGE HEADER (Operations Page Banner)
   ================================================================ */
.ops-page-header {
    background: var(--ops-green);
    padding: 160px 0 60px;
    position: relative;
    overflow: hidden;
}
.ops-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(58,166,78,0.1), transparent 60%);
}
.ops-page-header__content {
    position: relative;
    z-index: 1;
}
.ops-page-header__title {
    font-family: var(--ops-heading-font);
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 12px;
}
.ops-page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ops-page-header__breadcrumb li {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.ops-page-header__breadcrumb li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
.ops-page-header__breadcrumb li a:hover {
    color: #fff;
}
.ops-page-header__breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255,255,255,0.3);
}
