/* ==========================================================================
   APRAZER HEALTHCARE - CUSTOM CSR PAGE TEMPLATE STYLES
   ========================================================================== */

/* ---------- DESIGN SYSTEM SCOPING ---------- */
.apz-csr-page {
    /* Color Variables */
    --apz-navy: #003056;
    --apz-navy-mid: #0a4a7a;
    --apz-navy-deep: #001e3c;
    --apz-orange: #F26322;
    --apz-green-accent: #7BA23F;
    --apz-orange-glow: rgba(242, 99, 34, 0.18);
    --apz-light: #F5F7FA;
    --apz-border: #DDE3EB;
    --apz-text: #2D3A4A;
    --apz-text-muted: #6B7A8D;
    --apz-white: #FFFFFF;

    /* Card Shadows */
    --apz-card-shadow: 0 10px 30px rgba(0, 48, 86, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    --apz-card-shadow-hover: 0 20px 40px rgba(0, 48, 86, 0.15), 0 1px 6px rgba(0, 0, 0, 0.06);

    /* Typography & Radius */
    --apz-font-head: 'Sora', sans-serif;
    --apz-font-body: 'DM Sans', sans-serif;
    --apz-radius: 16px;
    --apz-radius-lg: 24px;

    /* Base Styling Reset */
    box-sizing: border-box;
    font-family: var(--apz-font-body);
    color: var(--apz-text);
    background-color: var(--apz-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.apz-csr-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---------- GLOBAL LAYOUT CLASSES ---------- */
.apz-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.apz-section {
    padding: 100px 0;
    position: relative;
}

.apz-section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.apz-tag {
    display: inline-block;
    font-family: var(--apz-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--apz-orange);
    background-color: var(--apz-orange-glow);
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.apz-tag:hover {
    transform: translateY(-1px);
}

.apz-h2 {
    font-family: var(--apz-font-head);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--apz-navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.apz-p-intro {
    font-family: var(--apz-font-body);
    font-size: 1.15rem;
    color: var(--apz-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ---------- PRIMARY BUTTON STYLE ---------- */
.apz-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--apz-navy);
    color: var(--apz-white) !important;
    font-family: var(--apz-font-body);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 48, 86, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.apz-btn-pill:hover {
    background-color: var(--apz-orange);
    color: var(--apz-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(242, 99, 34, 0.3);
}

.apz-btn-pill i {
    margin-left: 8px;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.apz-btn-pill:hover i {
    transform: translateX(4px);
}

/* ---------- HERO SECTION ---------- */
.apz-hero-section {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    /* Angle Linear Gradient behind the content */
    background: linear-gradient(160deg, #eef5fb 0%, #ffffff 60%);
}

.apz-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.apz-hero-content {
    z-index: 2;
}

.apz-hero-h1 {
    font-family: var(--apz-font-head);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--apz-navy);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.apz-hero-h1 span {
    color: var(--apz-orange);
}

.apz-hero-p {
    font-family: var(--apz-font-body);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.75;
    color: var(--apz-text);
    margin-bottom: 24px;
}

.apz-hero-p-secondary {
    font-family: var(--apz-font-body);
    font-size: 1.05rem;
    color: var(--apz-text-muted);
    margin-bottom: 35px;
    border-left: 3px solid var(--apz-orange);
    padding-left: 16px;
}

.apz-hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.apz-hero-image-container {
    width: 100%;
    aspect-ratio: 1.1/1;
    border-radius: var(--apz-radius-lg);
    overflow: hidden;
    box-shadow: var(--apz-card-shadow);
    border: 1px solid var(--apz-border);
    background: var(--apz-light);
}

.apz-hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.apz-hero-image-container:hover img {
    transform: scale(1.06);
}

/* Glassmorphism floating card on Hero */
.apz-floating-card {
    position: absolute;
    bottom: -25px;
    left: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px 30px;
    border-radius: var(--apz-radius);
    box-shadow: 0 15px 35px rgba(0, 48, 86, 0.12);
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.apz-floating-card:hover {
    transform: translateY(-5px);
}

.apz-floating-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--apz-orange);
    color: var(--apz-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.apz-floating-card-text {
    font-family: var(--apz-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--apz-navy);
}

/* ---------- INITIATIVES GRID SECTION ---------- */
.apz-initiatives-section {
    background-color: var(--apz-light);
    border-top: 1px solid var(--apz-border);
    border-bottom: 1px solid var(--apz-border);
}

.apz-initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

/* Beautiful Initiative Card (Light Theme / Blog Card Style) */
.apz-initiative-card {
    background-color: var(--apz-white);
    border: 1px solid var(--apz-border);
    border-radius: var(--apz-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 48, 86, 0.02);
    color: var(--apz-text) !important;
    height: 100%;
}

.apz-initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--apz-card-shadow-hover);
    border-color: var(--apz-orange-glow);
}

.apz-initiative-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--apz-light);
    border-bottom: 1px solid var(--apz-border);
}

.apz-initiative-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.apz-initiative-card:hover .apz-initiative-img-box img {
    transform: scale(1.07);
}

/* Floating overlay date/badge */
.apz-initiative-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--apz-navy);
    color: var(--apz-white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.apz-initiative-card:hover .apz-initiative-card-badge {
    background-color: var(--apz-orange);
}

.apz-initiative-card-badge.upcoming {
    background-color: var(--apz-green-accent);
}

/* Content block styling */
.apz-initiative-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.apz-initiative-card-partner {
    font-family: var(--apz-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--apz-orange);
    margin-bottom: 12px;
    display: inline-block;
}

.apz-initiative-card-h3 {
    font-family: var(--apz-font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--apz-navy);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.apz-initiative-card:hover .apz-initiative-card-h3 {
    color: var(--apz-orange);
}

.apz-initiative-card-p {
    font-family: var(--apz-font-body);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--apz-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Mini stat pill container inside card */
.apz-initiative-card-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--apz-light);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 24px;
    border: 1px solid var(--apz-border);
}

.apz-initiative-card-stat-pill {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--apz-navy);
    display: flex;
    align-items: center;
    gap: 5px;
}

.apz-initiative-card-stat-pill.green {
    color: var(--apz-green-accent);
}

.apz-initiative-card-stat-divider {
    width: 1px;
    height: 12px;
    background-color: var(--apz-border);
}

/* Dynamic Call to Action Link with arrow slide-in effect */
.apz-initiative-card-cta {
    font-family: var(--apz-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--apz-navy);
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: color 0.3s ease;
}

.apz-initiative-card-cta i {
    font-size: 0.85rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.apz-initiative-card:hover .apz-initiative-card-cta {
    color: var(--apz-orange);
}

.apz-initiative-card:hover .apz-initiative-card-cta i {
    transform: translateX(4px);
}

/* ---------- OUR COMMITMENT SECTION ---------- */
.apz-commitment-section {
    background-color: var(--apz-white);
}

/* EDITORIAL GRID (DARK THEME CARDS) */
.apz-editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Standard Editorial Card (Dark Theme) from Style Guide */
.apz-editorial-card {
    background-color: var(--apz-navy);
    border-radius: var(--apz-radius);
    overflow: hidden;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

.apz-editorial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 99, 34, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.apz-editorial-card:hover {
    background-color: var(--apz-navy-mid);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 48, 86, 0.25);
}

.apz-editorial-card:hover::before {
    opacity: 1;
}

.apz-card-tag {
    font-family: var(--apz-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--apz-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.apz-editorial-card-h3 {
    font-family: var(--apz-font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--apz-white);
    margin-bottom: 15px;
    line-height: 1.35;
}

.apz-editorial-card-p {
    font-family: var(--apz-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.apz-card-icon-wrap {
    align-self: flex-start;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--apz-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.apz-editorial-card:hover .apz-card-icon-wrap {
    background-color: var(--apz-orange);
    color: var(--apz-white);
    transform: rotate(360deg);
}

/* ---------- STYLIZED CLOSING QUOTE SECTION ---------- */
.apz-quote-section {
    background: linear-gradient(160deg, #f0f5fa 0%, #ffffff 55%);
    border-top: 1px solid var(--apz-border);
    padding: 100px 0;
    text-align: center;
}

.apz-quote-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.apz-quote-icon-large {
    font-size: clamp(4rem, 8vw, 6.5rem);
    line-height: 0.1;
    font-family: Georgia, serif;
    color: rgba(0, 48, 86, 0.06);
    position: absolute;
    user-select: none;
}

.apz-quote-icon-large.left {
    top: 20px;
    left: 0;
}

.apz-quote-icon-large.right {
    bottom: -40px;
    right: 0;
}

.apz-quote-h3 {
    font-family: var(--apz-font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    font-style: italic;
    color: var(--apz-navy);
    line-height: 1.35;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.apz-quote-author {
    font-family: var(--apz-font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apz-orange);
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.apz-quote-author::before,
.apz-quote-author::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--apz-orange);
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1024px) {
    .apz-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .apz-hero-p-secondary {
        border-left: none;
        border-top: 2px solid var(--apz-orange);
        padding-left: 0;
        padding-top: 16px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .apz-hero-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }

    .apz-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .apz-floating-card:hover {
        transform: translate(-50%, -5px);
    }
}

@media (max-width: 768px) {
    .apz-section {
        padding: 70px 0;
    }

    .apz-editorial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .apz-floating-card {
        padding: 16px 20px;
        max-width: 250px;
    }

    .apz-floating-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   CSR INITIATIVE SUB-PAGES SPECIFIC STYLING
   ========================================================================== */

/* ---------- BREADCRUMBS ---------- */
.apz-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--apz-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 35px;
}

.apz-breadcrumbs a {
    color: var(--apz-orange);
    text-decoration: none;
    transition: color 0.25s ease;
}

.apz-breadcrumbs a:hover {
    color: var(--apz-navy);
}

.apz-breadcrumb-sep {
    color: var(--apz-border);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
}

.apz-breadcrumb-current {
    color: var(--apz-text-muted);
    font-weight: 500;
}

/* ---------- INITIATIVE HERO ---------- */
.apz-initiative-hero {
    position: relative;
    padding: 100px 0 50px;
    background: linear-gradient(160deg, #eef5fb 0%, #ffffff 100%);
    border-bottom: 1px solid var(--apz-border);
}

.apz-hero-header-wrap {
    max-width: 900px;
}

/* ---------- PRIORITY HIGHLIGHTED STATS (NUMBERS ON PRIORITY!) ---------- */
.apz-priority-stats-section {
    padding: 60px 0;
    background-color: var(--apz-white);
    position: relative;
    z-index: 5;
    margin-top: -30px;
    /* Overlap effect for high impact */
}

.apz-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Highly premium highlighted statistic card */
.apz-stat-card {
    background-color: var(--apz-white);
    border: 1px solid var(--apz-border);
    border-radius: var(--apz-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--apz-card-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* First card (Surgeries) is highlighted as priority */
.apz-stat-card.highlight {
    border-color: var(--apz-orange);
    box-shadow: 0 15px 35px rgba(242, 99, 34, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.apz-stat-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 99, 34, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.apz-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--apz-card-shadow-hover);
    border-color: var(--apz-orange);
}

.apz-stat-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--apz-light);
    color: var(--apz-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.apz-stat-card.highlight .apz-stat-icon-wrap {
    background-color: var(--apz-orange-glow);
}

.apz-stat-card:hover .apz-stat-icon-wrap {
    background-color: var(--apz-orange);
    color: var(--apz-white);
    transform: scale(1.1);
}

.apz-stat-number-box {
    margin-bottom: 12px;
}

/* Giant priority stats numbers */
.apz-stat-number {
    font-family: var(--apz-font-head);
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: var(--apz-navy);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    transition: color 0.3s ease;
}

.apz-stat-card.highlight .apz-stat-number {
    color: var(--apz-orange);
}

.apz-stat-title {
    font-family: var(--apz-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--apz-navy);
    margin-bottom: 12px;
}

.apz-stat-desc {
    font-family: var(--apz-font-body);
    font-size: 0.95rem;
    color: var(--apz-text-muted);
    line-height: 1.5;
}

/* ---------- NARRATIVE GRID & COLUMN SYSTEM ---------- */
.apz-narrative-section {
    background-color: var(--apz-light);
    border-top: 1px solid var(--apz-border);
    border-bottom: 1px solid var(--apz-border);
}

.apz-narrative-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.apz-narrative-content {
    background: var(--apz-white);
    padding: 50px 40px;
    border-radius: var(--apz-radius-lg);
    border: 1px solid var(--apz-border);
    box-shadow: 0 4px 20px rgba(0, 48, 86, 0.03);
}

.apz-narrative-p {
    font-family: var(--apz-font-body);
    font-size: 1.05rem;
    color: var(--apz-text);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* High impact quote callout */
.apz-quote-callout {
    display: flex;
    gap: 20px;
    margin: 35px 0;
    padding: 10px 0;
}

.apz-quote-line {
    width: 4px;
    background-color: var(--apz-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.apz-quote-callout-text {
    font-family: var(--apz-font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--apz-navy);
    line-height: 1.4;
    font-style: italic;
}

.apz-narrative-h3 {
    font-family: var(--apz-font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--apz-navy);
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Checklist layout with custom icon bullets */
.apz-pillars-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.apz-pillars-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.apz-list-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--apz-orange-glow);
    color: var(--apz-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.apz-pillars-list li:hover .apz-list-icon {
    background-color: var(--apz-orange);
    color: var(--apz-white);
    transform: scale(1.05);
}

.apz-list-text {
    font-family: var(--apz-font-body);
    font-size: 1rem;
    color: var(--apz-text-muted);
    line-height: 1.6;
}

.apz-list-text strong {
    color: var(--apz-navy);
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

/* ---------- STICKY SPOTLIGHT SIDEBAR ---------- */
.apz-sticky-sidebar-card {
    position: sticky;
    top: 100px;
    background-color: var(--apz-white);
    border: 1px solid var(--apz-border);
    border-radius: var(--apz-radius-lg);
    padding: 35px 30px;
    box-shadow: var(--apz-card-shadow);
}

.apz-partner-header {
    margin-bottom: 25px;
}

.apz-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--apz-green-accent);
    background-color: rgba(123, 162, 63, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.apz-partner-h3 {
    font-family: var(--apz-font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--apz-navy);
    margin-bottom: 12px;
}

.apz-partner-desc {
    font-family: var(--apz-font-body);
    font-size: 0.95rem;
    color: var(--apz-text-muted);
    line-height: 1.6;
}

.apz-sidebar-image-box {
    width: fit-content;
    border-radius: var(--apz-radius);
    overflow: hidden;
    border: 1px solid var(--apz-border);
    margin: 0 auto 25px;
    /* center the box */
    padding: 10px;
}

.apz-sidebar-image-box img {
    width: 200px;
    /* control image size */
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.apz-sticky-sidebar-card:hover .apz-sidebar-image-box img {
    transform: scale(1.04);
}

.apz-campaign-meta {
    border-top: 1px solid var(--apz-border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apz-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
}

.apz-meta-label {
    font-weight: 700;
    color: var(--apz-navy);
}

.apz-meta-value {
    color: var(--apz-text-muted);
    text-align: right;
}

/* ---------- COLLABORATION QUOTE BLOCK ---------- */
.apz-collaboration-quote-section {
    padding: 100px 0;
    background-color: var(--apz-white);
    border-bottom: 1px solid var(--apz-border);
}

.apz-collaboration-quote-card {
    background-color: var(--apz-navy);
    border-radius: var(--apz-radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 48, 86, 0.15);
}

.apz-collaboration-quote-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(242, 99, 34, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.apz-collaboration-quote-card .apz-quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.apz-collaboration-quote-h2 {
    font-family: var(--apz-font-head);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--apz-white);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 25px;
    font-style: italic;
}

.apz-collaboration-quote-author {
    font-family: var(--apz-font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--apz-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.apz-collaboration-quote-author::before,
.apz-collaboration-quote-author::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--apz-orange);
}

/* ---------- PREMIUM COLLABORATIVE FORM BOX ---------- */
.apz-inquiry-section {
    background-color: var(--apz-light);
    padding: 100px 0;
}

.apz-inquiry-box-container {
    background: var(--apz-navy);
    border-radius: var(--apz-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 48, 86, 0.2);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    overflow: hidden;
}

.apz-inquiry-info {
    padding: 60px;
    background: linear-gradient(135deg, rgba(0, 48, 86, 0.95) 0%, rgba(10, 74, 122, 0.95) 100%);
    color: var(--apz-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.apz-inquiry-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(242, 99, 34, 0.15) 0%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.apz-inquiry-info .apz-h2 {
    color: var(--apz-white);
    margin-bottom: 20px;
}

.apz-inquiry-bullets {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apz-bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.apz-bullet-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--apz-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.apz-bullet-item:hover .apz-bullet-icon {
    background-color: var(--apz-orange);
    color: var(--apz-white);
    transform: scale(1.08);
}

.apz-bullet-item span {
    font-family: var(--apz-font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.apz-inquiry-form-wrap {
    padding: 60px;
    background-color: var(--apz-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apz-initiative-contact-form {
    width: 100%;
}

.apz-form-row {
    margin-bottom: 20px;
}

.apz-initiative-contact-form input,
.apz-initiative-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--apz-border);
    border-radius: 8px;
    font-family: var(--apz-font-body);
    font-size: 0.98rem;
    color: var(--apz-text);
    background-color: var(--apz-white);
    transition: all 0.3s ease;
}

.apz-initiative-contact-form input:focus,
.apz-initiative-contact-form textarea:focus {
    outline: none;
    border-color: var(--apz-orange);
    box-shadow: 0 0 0 4px var(--apz-orange-glow);
}

.apz-initiative-contact-form textarea {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
    resize: none !important;
}

.apz-submit-btn-glow {
    width: 100%;
    background-color: var(--apz-navy);
    color: var(--apz-white);
    padding: 16px;
    border-radius: 8px;
    font-family: var(--apz-font-body);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 48, 86, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.apz-submit-btn-glow:hover {
    background-color: var(--apz-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 99, 34, 0.35);
}

.apz-submit-btn-glow i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.apz-submit-btn-glow:hover i {
    transform: translate(2px, -2px);
}

/* ---------- FONT AWESOME GLYPH OVERRIDES FOR WOODMART ---------- */
.apz-csr-page i[class^="fa-"],
.apz-csr-page i[class*=" fa-"],
.apz-csr-page i[class^="fa-"]::before,
.apz-csr-page i[class*=" fa-"]::before,
.apz-csr-page i.fa-solid,
.apz-csr-page i.fa-solid::before,
.apz-csr-page i.fa-brands,
.apz-csr-page i.fa-brands::before,
.apz-csr-page i.fa-regular,
.apz-csr-page i.fa-regular::before,
.apz-csr-page i.fas,
.apz-csr-page i.fas::before {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    display: inline-block !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Specific Font Family for Font Awesome Brands (to support brand icons if used) */
.apz-csr-page i.fa-brands,
.apz-csr-page i.fa-brands::before {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

/* ---------- CAMPAIGN IMPACT GALLERY ---------- */
.apz-gallery-section {
    background-color: var(--apz-white);
    border-bottom: 1px solid var(--apz-border);
    padding: 100px 0;
}

.apz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.apz-gallery-card {
    border-radius: var(--apz-radius);
    overflow: hidden;
    box-shadow: var(--apz-card-shadow);
    border: 1px solid var(--apz-border);
    background-color: var(--apz-light);
    aspect-ratio: 4/5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.apz-gallery-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.apz-gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.apz-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 48, 86, 0.95) 0%, rgba(0, 48, 86, 0.5) 50%, rgba(0, 48, 86, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.apz-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--apz-card-shadow-hover);
    border-color: var(--apz-orange);
}

.apz-gallery-card:hover .apz-gallery-img-box img {
    transform: scale(1.08);
}

.apz-gallery-card:hover .apz-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.apz-gallery-content {
    color: var(--apz-white);
    text-align: left;
}

.apz-gallery-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--apz-orange);
    margin-bottom: 6px;
    display: block;
}

.apz-gallery-title {
    font-family: var(--apz-font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--apz-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.apz-gallery-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .apz-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .apz-gallery-card {
        aspect-ratio: 1;
    }
}

@media (max-width: 576px) {
    .apz-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ---------- PARTNERS SHOWCASE SECTION ---------- */
.apz-partners-section {
    background-color: var(--apz-light);
    border-top: 1px solid var(--apz-border);
    border-bottom: 1px solid var(--apz-border);
}

.apz-partner-block {
    background-color: var(--apz-white);
    border-radius: var(--apz-radius-lg);
    border: 1px solid var(--apz-border);
    box-shadow: var(--apz-card-shadow);
    padding: 60px;
    margin-bottom: 60px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.apz-partner-block:last-child {
    margin-bottom: 0;
}

.apz-partner-block:hover {
    box-shadow: var(--apz-card-shadow-hover);
    border-color: var(--apz-orange-glow);
}

.apz-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Two-column layout for initiatives / child rights list */
.apz-partner-list.two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

/* Stats Showcase & Logo Styling */
.apz-partner-stats-showcase {
    background-color: var(--apz-light);
    border: 1px solid var(--apz-border);
    border-radius: var(--apz-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 48, 86, 0.02);
    transition: all 0.3s ease;
}

.apz-partner-stats-showcase:hover {
    border-color: var(--apz-orange-glow);
    box-shadow: var(--apz-card-shadow);
}

.apz-partner-stats-showcase .apz-partner-stats-grid {
    grid-template-columns: repeat(3, 1fr);
}

.apz-partner-stats-showcase .apz-partner-stat-card {
    background-color: var(--apz-white);
}

.apz-partner-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    height: 70px;
}

.apz-partner-logo-img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

/* Premium Typographic Badge for CRY Logo */
.apz-cry-logo-badge {
    background-color: var(--apz-white);
    border: 1.5px solid var(--apz-orange);
    padding: 8px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(242, 99, 34, 0.05);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.apz-cry-logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 99, 34, 0.12);
    border-color: #E02424;
}

.cry-logo-red {
    font-family: var(--apz-font-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: #E02424;
    letter-spacing: 0.15em;
    line-height: 1.1;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.cry-logo-sub {
    font-family: var(--apz-font-body);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--apz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.apz-partner-grid.reverse {
    direction: rtl;
}

.apz-partner-grid.reverse .apz-partner-content {
    direction: ltr;
}

.apz-partner-grid.reverse .apz-partner-image-wrapper {
    direction: ltr;
}

.apz-partner-content {
    display: flex;
    flex-direction: column;
}

.apz-partner-title-wrap {
    margin-bottom: 24px;
    text-align: left;
}

.apz-partner-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--apz-orange);
    background-color: var(--apz-orange-glow);
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.apz-partner-h2 {
    font-family: var(--apz-font-head);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--apz-navy);
    line-height: 1.2;
}

.apz-partner-desc {
    font-size: 1.05rem;
    color: var(--apz-text);
    line-height: 1.65;
    margin-bottom: 30px;
    text-align: left;
}

.apz-partner-sub-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    margin-bottom: 30px;
}

.apz-partner-sub-grid.single-col {
    grid-template-columns: 1fr;
}

.apz-partner-sub-title {
    font-family: var(--apz-font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--apz-navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.apz-partner-sub-title i {
    color: var(--apz-orange);
    font-size: 1rem;
}

/* Bullet list inside partners */
.apz-partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apz-partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--apz-text-muted);
    line-height: 1.5;
    text-align: left;
}

.apz-partner-list li i {
    color: var(--apz-green-accent);
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Stats dashboard inside partners */
.apz-partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.apz-partner-stat-card {
    background-color: var(--apz-light);
    border: 1px solid var(--apz-border);
    border-radius: var(--apz-radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.apz-partner-stat-card:hover {
    border-color: var(--apz-orange);
    background-color: var(--apz-white);
    transform: translateY(-4px);
}

.apz-partner-stat-num {
    font-family: var(--apz-font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--apz-orange);
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
}

.apz-partner-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--apz-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Featured callout box for program achievements */
.apz-partner-featured-box {
    background: linear-gradient(135deg, var(--apz-navy) 0%, var(--apz-navy-mid) 100%);
    border-radius: var(--apz-radius);
    padding: 30px;
    color: var(--apz-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 48, 86, 0.15);
}

.apz-partner-featured-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(242, 99, 34, 0.18) 0%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.apz-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
}

.apz-featured-title-wrap {
    text-align: left;
}

.apz-featured-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--apz-orange);
    background-color: rgba(242, 99, 34, 0.12);
    border: 1px solid var(--apz-orange);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.apz-featured-h4 {
    font-family: var(--apz-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--apz-white);
}

.apz-featured-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: left;
}

.apz-featured-results {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
    justify-content: flex-start;
}

.apz-featured-result-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.apz-featured-result-num {
    font-family: var(--apz-font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--apz-orange);
    line-height: 1;
    margin-bottom: 4px;
}

.apz-featured-result-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.apz-featured-btn-wrap {
    text-align: left;
}

.apz-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--apz-white) !important;
    background-color: var(--apz-orange);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(242, 99, 34, 0.2);
}

.apz-featured-btn:hover {
    background-color: var(--apz-white);
    color: var(--apz-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}

.apz-featured-btn i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.apz-featured-btn:hover i {
    transform: translateX(4px);
}

/* Image styling inside partner grid */
.apz-partner-image-wrapper {
    position: relative;
    width: 100%;
}

.apz-partner-image-container {
    width: 100%;
    aspect-ratio: 16/11;
    border-radius: var(--apz-radius-lg);
    overflow: hidden;
    border: 1px solid var(--apz-border);
    box-shadow: var(--apz-card-shadow);
    background-color: var(--apz-light);
}

.apz-partner-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.apz-partner-block:hover .apz-partner-image-container img {
    transform: scale(1.05);
}

/* Floating badge/icon on partner image */
.apz-partner-floating-tag {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: var(--apz-navy);
    color: var(--apz-white);
    padding: 12px 24px;
    border-radius: var(--apz-radius);
    box-shadow: 0 10px 24px rgba(0, 48, 86, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apz-partner-floating-tag:hover {
    color: var(--apz-green-accent) !important;
}

.apz-partner-floating-tag.left-aligned {
    right: auto;
    left: 30px;
}

.apz-partner-floating-tag i {
    color: var(--apz-orange);
    font-size: 1.1rem;
}

/* ---------- RESPONSIVE PARTNER BREAKPOINTS ---------- */
@media (max-width: 1024px) {
    .apz-partner-block {
        padding: 40px 30px;
    }

    .apz-partner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apz-partner-grid.reverse {
        direction: ltr;
    }

    .apz-partner-sub-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apz-partner-floating-tag {
        bottom: -15px;
        right: 20px;
    }

    .apz-partner-floating-tag.left-aligned {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .apz-partner-block {
        padding: 30px 20px;
    }

    .apz-partner-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .apz-featured-results {
        flex-direction: column;
        gap: 16px;
    }

    .apz-partner-floating-tag {
        display: none;
    }
}

/* ---------- BOTTOM NAVIGATION ---------- */
.apz-bottom-nav-container {
    padding: 60px 0 100px;
    text-align: center;
    background-color: var(--apz-white);
    border-top: 1px solid var(--apz-border);
}

/* ---------- RESPONSIVE BREAKPOINTS (SUBPAGES) ---------- */
@media (max-width: 1024px) {
    .apz-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .apz-narrative-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .apz-sticky-sidebar-card {
        position: relative;
        top: 0;
    }

    .apz-inquiry-box-container {
        grid-template-columns: 1fr;
    }

    .apz-inquiry-info,
    .apz-inquiry-form-wrap {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .apz-initiative-hero {
        padding: 80px 0 40px;
    }

    .apz-narrative-content {
        padding: 30px 20px;
    }

    .apz-collaboration-quote-card {
        padding: 40px 20px;
    }
}