﻿/**
 * Marketing Inner Pages
 * about-us | business-plan | contact-us | grievancecell | ImageGallery | VideosGallery | our_champions | achievers | policies
 */

/* ---- Shared page hero ---- */
.dw-inner-hero {
    background: var(--dw-bg-section);
    border-bottom: 1px solid var(--dw-border-gold);
    padding: 25px;
    text-align: center;
}

    .dw-inner-hero .dw-breadcrumb {
        font-size: 12px;
        color: var(--dw-text-subtle);
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

        .dw-inner-hero .dw-breadcrumb a {
            color: var(--dw-text-muted);
        }

            .dw-inner-hero .dw-breadcrumb a:hover {
                color: var(--dw-gold-premium);
            }

    .dw-inner-hero h1,
    .dw-inner-hero h3 {
        /* font-family: var(--dw-font-display); */
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        color: var(--dw-text-primary);
        margin: 0;
        text-transform: none;
        font-weight: 700;
    }

    .dw-inner-hero .dw-hero-lead {
        color: var(--dw-text-muted);
        font-size: 1.0625rem;
        /* max-width: 600px; */
        margin: var(--dw-space-sm) auto 0;
        line-height: 1.7;
        text-align: center;
    }

/* ---- About page ---- */
.dw-about-intro {
    padding: var(--dw-space-3xl) 0;
}

    .dw-about-intro h2 {
        /* font-family: var(--dw-font-display); */
        font-size: 1.75rem;
        color: var(--dw-gold-premium);
        margin-bottom: var(--dw-space-sm);
    }

    .dw-about-intro p {
        color: var(--dw-text-muted);
        font-size: 1rem;
        line-height: 1.75;
        text-align: justify;
    }

/* About Us — HTML/CSS story visual (no images) */
.about-story-visual {
    position: relative;
    min-height: 460px;
    height: 100%;
    overflow: hidden;
    border-radius: var(--dw-radius-lg);
    border: 1px solid var(--dw-border-gold);
    background: radial-gradient(ellipse at 30% 18%, rgba(212, 175, 55, 0.18) 0%, transparent 48%), radial-gradient(ellipse at 82% 78%, rgba(168, 124, 35, 0.14) 0%, transparent 46%), linear-gradient(160deg, #171A20 0%, #1A1D23 46%, #242018 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.about-story-glow {
    position: absolute;
    inset: 18% 16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
    animation: about-story-pulse 6.5s ease-in-out infinite;
    pointer-events: none;
}

.about-story-ring {
    position: absolute;
    top: 46%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.22);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-story-ring--outer {
    width: min(78%, 300px);
    aspect-ratio: 1;
    border-style: dashed;
    animation: about-story-spin 32s linear infinite;
}

.about-story-ring--mid {
    width: min(52%, 200px);
    aspect-ratio: 1;
    border-color: rgba(230, 195, 90, 0.24);
    animation: about-story-spin-rev 22s linear infinite;
}

.about-story-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-story-path {
    fill: none;
    stroke: rgba(212, 175, 55, 0.35);
    stroke-width: 1.5;
    stroke-dasharray: 6 8;
    animation: about-story-dash 8s linear infinite;
}

.about-story-path--2 {
    animation-delay: 0.8s;
}

.about-story-path--3 {
    animation-delay: 1.4s;
}

.about-story-path--4 {
    animation-delay: 2s;
}

.about-story-path--5 {
    animation-delay: 2.6s;
}

.about-story-hub {
    position: absolute;
    top: 46%;
    left: 50%;
    z-index: 4;
    width: 118px;
    height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(35, 39, 48, 0.92);
    border: 1px solid var(--dw-border-gold-strong);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: about-story-breathe 5.2s ease-in-out infinite;
}

    .about-story-hub i {
        font-size: 1.6rem;
        color: var(--dw-gold-premium);
        line-height: 1;
    }

    .about-story-hub span {
        font-family: var(--dw-font-body);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--dw-text-muted);
        text-align: center;
        line-height: 1.2;
        padding: 0 8px;
    }

.about-story-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(35, 39, 48, 0.9);
    border: 1px solid var(--dw-border-gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    color: var(--dw-text-primary);
    font-family: var(--dw-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: about-story-float 6.8s ease-in-out infinite;
}

    .about-story-card i {
        color: var(--dw-gold-premium);
        font-size: 1rem;
    }

.about-story-card--mission {
    top: 12%;
    left: 6%;
}

.about-story-card--vision {
    top: 12%;
    right: 6%;
    animation-delay: 1.1s;
}

.about-story-node {
    position: absolute;
    z-index: 4;
    width: 72px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 50%;
    background: rgba(35, 39, 48, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.32);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    animation: about-story-float 7.2s ease-in-out infinite;
}

    .about-story-node i {
        font-size: 1.05rem;
        color: var(--dw-gold-premium);
        line-height: 1;
    }

    .about-story-node span {
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dw-text-muted);
    }

.about-story-node--trust {
    top: 54%;
    left: 6%;
    animation-delay: 0.4s;
}

.about-story-node--growth {
    top: 54%;
    right: 6%;
    animation-delay: 1.6s;
}

.about-story-node--community {
    bottom: 5%;
    left: calc(50% - 36px);
    animation-delay: 2.2s;
}

.about-story-timeline {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 71%;
    display: flex;
    align-items: center;
    gap: 0;
    width: min(78%, 260px);
    transform: translateX(-50%);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(23, 26, 32, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.about-story-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dw-text-muted);
}

    .about-story-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 6px;
        left: calc(50% + 10px);
        width: calc(100% - 20px);
        height: 1px;
        background: linear-gradient(90deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.12));
    }

.about-story-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dw-gold-premium);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    animation: about-story-dot 2.8s ease-in-out infinite;
}

.about-story-step:nth-child(2) .about-story-dot {
    animation-delay: 0.45s;
}

.about-story-step:nth-child(3) .about-story-dot {
    animation-delay: 0.9s;
}

.about-story-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.16);
    pointer-events: none;
    animation: about-story-float 7.5s ease-in-out infinite;
}

.about-story-orb--1 {
    width: 78px;
    height: 78px;
    top: 28%;
    left: 4%;
}

.about-story-orb--2 {
    width: 48px;
    height: 48px;
    top: 30%;
    right: 4%;
    animation-delay: 1.3s;
}

.about-story-orb--3 {
    width: 60px;
    height: 60px;
    bottom: 28%;
    right: 18%;
    animation-delay: 2s;
}

.about-story-float {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(35, 39, 48, 0.82);
    border: 1px solid var(--dw-border-gold);
    color: var(--dw-gold-premium);
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
    animation: about-story-float 6.4s ease-in-out infinite;
    pointer-events: none;
}

.about-story-float--1 {
    top: 34%;
    left: 18%;
    animation-delay: 0.3s;
}

.about-story-float--2 {
    top: 36%;
    right: 16%;
    animation-delay: 1.5s;
}

.about-story-float--3 {
    top: 48%;
    right: 28%;
    animation-delay: 2.4s;
}

.about-story-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dw-gold-royal);
    opacity: 0.55;
    pointer-events: none;
    animation: about-story-particle 7.5s ease-in-out infinite;
}

.about-story-particle--1 {
    top: 26%;
    left: 46%;
}

.about-story-particle--2 {
    top: 42%;
    right: 24%;
    width: 4px;
    height: 4px;
    animation-delay: 1.1s;
}

.about-story-particle--3 {
    bottom: 36%;
    left: 28%;
    animation-delay: 1.9s;
}

.about-story-particle--4 {
    top: 52%;
    left: 58%;
    width: 3px;
    height: 3px;
    animation-delay: 0.7s;
}

.about-story-particle--5 {
    bottom: 42%;
    right: 34%;
    width: 4px;
    height: 4px;
    animation-delay: 2.3s;
}

@keyframes about-story-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes about-story-pulse {
    0%, 100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@keyframes about-story-breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 34px rgba(212, 175, 55, 0.16);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.28);
    }
}

@keyframes about-story-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes about-story-spin-rev {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes about-story-dash {
    to {
        stroke-dashoffset: -80;
    }
}

@keyframes about-story-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.22);
        transform: scale(1.12);
    }
}

@keyframes about-story-particle {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0);
    }

    50% {
        opacity: 0.9;
        transform: translateY(-14px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-story-visual *,
    .about-story-glow,
    .about-story-ring,
    .about-story-hub,
    .about-story-card,
    .about-story-node,
    .about-story-float,
    .about-story-orb,
    .about-story-particle,
    .about-story-path,
    .about-story-dot {
        animation: none !important;
    }
}

@media (max-width: 991.98px) {
    .about-story-visual {
        min-height: 420px;
        margin-bottom: var(--dw-space-sm);
    }
}

@media (max-width: 575.98px) {
    .about-story-visual {
        min-height: 380px;
    }

    .about-story-hub {
        width: 100px;
        height: 100px;
    }

    .about-story-card {
        font-size: 10px;
        padding: 8px 10px;
        gap: 6px;
    }

    .about-story-node {
        width: 62px;
        height: 62px;
    }

    .about-story-node--community {
        left: calc(50% - 31px);
    }

    .about-story-float {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .about-story-timeline {
        width: min(88%, 240px);
        top: 70%;
    }
}

.dw-values-section {
    background: var(--dw-bg-section);
    padding: var(--dw-space-3xl) 0;
    border-top: 1px solid var(--dw-border-gold);
    border-bottom: 1px solid var(--dw-border-gold);
}

/* Mission / Vision / Values — premium pillars */
.about-pillars-section {
    position: relative;
    padding: var(--dw-space-3xl) 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 55%), var(--dw-bg-section);
    border-top: 1px solid var(--dw-border-gold);
    border-bottom: 1px solid var(--dw-border-gold);
    overflow: hidden;
}

    .about-pillars-section::before,
    .about-pillars-section::after {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 1px dashed rgba(212, 175, 55, 0.18);
        pointer-events: none;
        animation: about-pillar-spin 40s linear infinite;
    }

    .about-pillars-section::before {
        top: -80px;
        left: -60px;
    }

    .about-pillars-section::after {
        right: -70px;
        bottom: -90px;
        animation-direction: reverse;
        animation-duration: 48s;
    }

.about-pillars {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-md);
}

@media (min-width: 768px) {
    .about-pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--dw-space-lg);
        align-items: stretch;
    }
}

.about-pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: var(--dw-space-md);
    border-radius: var(--dw-radius-lg);
    background: linear-gradient(165deg, rgba(45, 50, 62, 0.95) 0%, rgba(35, 39, 48, 0.98) 55%, rgba(26, 29, 35, 0.98) 100%);
    border: 1px solid var(--dw-border-gold);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: transform var(--dw-duration-slow) var(--dw-ease), box-shadow var(--dw-duration-slow) var(--dw-ease), border-color var(--dw-duration) var(--dw-ease);
}

    .about-pillar:hover {
        transform: translateY(-8px);
        border-color: var(--dw-border-gold-strong);
        box-shadow: 0 20px 48px rgba(212, 175, 55, 0.18);
    }

.about-pillar-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dw-gradient-gold-h);
    opacity: 0.85;
}

.about-pillar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--dw-space-md);
}

.about-pillar-index {
    font-family: var(--dw-font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    background: var(--dw-gradient-gold-h);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.about-pillar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: var(--dw-gold-premium);
    font-size: 1.35rem;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.05);
    animation: about-pillar-glow 4.5s ease-in-out infinite;
}

.about-pillar--vision .about-pillar-icon {
    animation-delay: 0.6s;
}

.about-pillar--values .about-pillar-icon {
    animation-delay: 1.2s;
}

.about-pillar h3 {
    font-family: var(--dw-font-body);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dw-text-primary);
    margin: 0 0 var(--dw-space-sm);
}

.about-pillar p {
    color: var(--dw-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 var(--dw-space-md);
    flex: 1;
}

.about-pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .about-pillar-tags li {
        padding: 6px 12px;
        border-radius: var(--dw-radius-sm);
        border: 1px solid rgba(212, 175, 55, 0.28);
        background: rgba(212, 175, 55, 0.08);
        color: var(--dw-gold-royal);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

@media (min-width: 992px) {
    .about-pillar--vision {
        transform: translateY(18px);
    }

        .about-pillar--vision:hover {
            transform: translateY(10px);
        }
}

@keyframes about-pillar-glow {
    0%, 100% {
        box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.04);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.1);
    }
}

@keyframes about-pillar-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-pillars-section::before,
    .about-pillars-section::after,
    .about-pillar-icon {
        animation: none !important;
    }

    .about-pillar,
    .about-pillar--vision {
        transform: none !important;
    }
}

@media (max-width: 767.98px) {
    .about-pillar {
        padding: var(--dw-space-md);
    }

    .about-pillar-index {
        font-size: 1.6rem;
    }
}

.dw-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-md);
}

@media (min-width: 768px) {
    .dw-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dw-value-card {
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-lg);
    padding: var(--dw-space-lg);
    text-align: center;
    transition: transform var(--dw-duration-slow) var(--dw-ease), box-shadow var(--dw-duration-slow) var(--dw-ease);
    height: 100%;
}

    .dw-value-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px var(--dw-glow-gold);
    }

    .dw-value-card .dw-card-icon {
        margin: 0 auto var(--dw-space-md);
    }

    .dw-value-card p {
        color: var(--dw-text-muted);
        font-size: 0.9375rem;
        line-height: 1.65;
        margin: 0;
    }

    .dw-value-card .dw-highlight {
        color: var(--dw-gold-premium);
        font-weight: 600;
    }

.dw-mission-block {
    padding: var(--dw-space-3xl) 0;
    text-align: center;
}

    .dw-mission-block .dw-card {
        max-width: 720px;
        margin: 0 auto;
        padding: var(--dw-space-xl);
    }

    .dw-mission-block .dw-join-cta {
        font-family: var(--dw-font-editorial);
        font-size: 1.5rem;
        color: var(--dw-gold-premium);
        margin-top: var(--dw-space-md);
    }

/* ---- Business plan page ---- */
.dw-biz-intro {
    padding: var(--dw-space-2xl) 0;
}

.dw-biz-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-md);
    margin-bottom: var(--dw-space-xl);
}

@media (min-width: 768px) {
    .dw-biz-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dw-biz-viewer {
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-lg);
    padding: var(--dw-space-lg);
    max-width: 900px;
    margin: 0 auto;
}

    .dw-biz-viewer img {
        width: 100%;
        border-radius: var(--dw-radius-md);
        border: 1px solid var(--dw-border-gold);
    }

.dw-biz-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--dw-space-sm);
    margin-top: var(--dw-space-lg);
}

body.app-theme .dw-biz-actions .dw-btn {
    min-width: 160px;
}

/* ---- Contact page ---- */
.dw-contact-page {
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
}

.dw-contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--dw-space-md);
}

.dw-contact-image {
    position: relative;
    border-radius: var(--dw-radius-lg);
    border: 1px solid var(--dw-border-gold);
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

/* Contact Us — HTML/CSS connect visual (no images) */
.contact-connect-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 28% 20%, rgba(212, 175, 55, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 78% 78%, rgba(168, 124, 35, 0.12) 0%, transparent 48%),
        linear-gradient(155deg, #171A20 0%, #1A1D23 48%, #242018 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.contact-connect-glow {
    position: absolute;
    inset: 16% 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: contact-connect-pulse-glow 6s ease-in-out infinite;
    pointer-events: none;
}

.contact-connect-ring {
    position: absolute;
    top: 46%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.22);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-connect-ring--outer {
    width: min(76%, 280px);
    aspect-ratio: 1;
    border-style: dashed;
    animation: contact-connect-spin 34s linear infinite;
}

.contact-connect-ring--mid {
    width: min(48%, 180px);
    aspect-ratio: 1;
    border-color: rgba(230, 195, 90, 0.24);
    animation: contact-connect-spin-rev 24s linear infinite;
}

.contact-connect-wave {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    transform: translate(-50%, -50%);
    animation: contact-connect-wave 3.2s ease-out infinite;
    pointer-events: none;
}

.contact-connect-wave--2 {
    animation-delay: 1.1s;
}

.contact-connect-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-connect-path {
    fill: none;
    stroke: rgba(212, 175, 55, 0.35);
    stroke-width: 1.5;
    stroke-dasharray: 5 7;
    animation: contact-connect-dash 7s linear infinite;
}

.contact-connect-hub {
    position: relative;
    z-index: 4;
    width: 118px;
    height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    background: rgba(35, 39, 48, 0.94);
    border: 1px solid var(--dw-border-gold-strong);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: contact-connect-breathe 5s ease-in-out infinite;
}

    .contact-connect-hub i {
        font-size: 1.7rem;
        color: var(--dw-gold-premium);
        line-height: 1;
        animation: contact-connect-pin 2.4s ease-in-out infinite;
    }

    .contact-connect-hub span {
        font-family: var(--dw-font-body);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dw-text-muted);
        text-align: center;
        line-height: 1.2;
        padding: 0 10px;
    }

.contact-connect-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    animation: contact-connect-ring-pulse 2.8s ease-out infinite;
    pointer-events: none;
}

.contact-connect-pulse--delay {
    animation-delay: 1s;
}

.contact-connect-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--dw-radius-md);
    background: rgba(35, 39, 48, 0.92);
    border: 1px solid var(--dw-border-gold);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
    color: var(--dw-text-primary);
    font-family: var(--dw-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: contact-connect-float 6.8s ease-in-out infinite;
}

    .contact-connect-card i {
        color: var(--dw-gold-premium);
        font-size: 0.95rem;
    }

.contact-connect-card--phone {
    top: 12%;
    left: 6%;
}

.contact-connect-card--email {
    top: 12%;
    right: 6%;
    animation-delay: 0.9s;
}

.contact-connect-card--chat {
    bottom: 22%;
    left: 6%;
    animation-delay: 1.5s;
}

.contact-connect-card--support {
    bottom: 22%;
    right: 6%;
    animation-delay: 2s;
}

.contact-connect-textbox {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(78%, 260px);
    padding: 12px 14px;
    border-radius: var(--dw-radius-md);
    background: rgba(23, 26, 32, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.contact-connect-textbox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dw-gold-premium);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
    animation: contact-connect-dot 2.4s ease-in-out infinite;
}

.contact-connect-textbox-placeholder {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.78);
    letter-spacing: 0.02em;
}

.contact-connect-textbox-cursor {
    width: 2px;
    height: 14px;
    background: var(--dw-gold-royal);
    opacity: 0.8;
    animation: contact-connect-blink 1s steps(1) infinite;
}

.contact-connect-notif {
    position: absolute;
    z-index: 6;
    top: 28%;
    right: 18%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(35, 39, 48, 0.9);
    border: 1px solid var(--dw-border-gold);
    color: var(--dw-gold-premium);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    animation: contact-connect-float 5.8s ease-in-out infinite;
    animation-delay: 0.4s;
}

.contact-connect-notif-ping {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E6C35A;
    box-shadow: 0 0 0 0 rgba(230, 195, 90, 0.55);
    animation: contact-connect-ping 2s ease-out infinite;
}

.contact-connect-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.16);
    pointer-events: none;
    animation: contact-connect-float 7.4s ease-in-out infinite;
}

.contact-connect-orb--1 { width: 72px; height: 72px; top: 30%; left: 4%; }
.contact-connect-orb--2 { width: 46px; height: 46px; top: 34%; right: 4%; animation-delay: 1.2s; }
.contact-connect-orb--3 { width: 56px; height: 56px; bottom: 34%; left: 20%; animation-delay: 2s; }

@keyframes contact-connect-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes contact-connect-pulse-glow {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

@keyframes contact-connect-breathe {
    0%, 100% { transform: scale(1); box-shadow: 0 0 34px rgba(212, 175, 55, 0.16); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(212, 175, 55, 0.28); }
}

@keyframes contact-connect-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes contact-connect-spin-rev {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes contact-connect-dash {
    to { stroke-dashoffset: -70; }
}

@keyframes contact-connect-wave {
    0% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2.4); }
}

@keyframes contact-connect-ring-pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.35); }
}

@keyframes contact-connect-pin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes contact-connect-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12); }
    50% { box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.22); }
}

@keyframes contact-connect-blink {
    0%, 50% { opacity: 0.85; }
    51%, 100% { opacity: 0; }
}

@keyframes contact-connect-ping {
    0% { box-shadow: 0 0 0 0 rgba(230, 195, 90, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(230, 195, 90, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 195, 90, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .contact-connect-visual *,
    .contact-connect-glow,
    .contact-connect-ring,
    .contact-connect-wave,
    .contact-connect-hub,
    .contact-connect-hub i,
    .contact-connect-card,
    .contact-connect-path,
    .contact-connect-pulse,
    .contact-connect-notif,
    .contact-connect-notif-ping,
    .contact-connect-orb,
    .contact-connect-textbox-dot,
    .contact-connect-textbox-cursor {
        animation: none !important;
    }
}

@media (max-width: 767.98px) {
    .dw-contact-image,
    .contact-connect-visual {
        min-height: 340px;
        margin-top: var(--dw-space-sm);
    }
}

@media (max-width: 575.98px) {
    .contact-connect-visual {
        min-height: 320px;
    }

    .contact-connect-hub {
        width: 100px;
        height: 100px;
    }

    .contact-connect-card {
        font-size: 10px;
        padding: 8px 10px;
        gap: 6px;
    }

    .contact-connect-textbox {
        width: min(86%, 240px);
        padding: 10px 12px;
    }
}

body.app-theme .dw-contact-page .why-card {
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-md);
    padding: var(--dw-space-md);
    display: flex;
    gap: var(--dw-space-md);
    margin-bottom: var(--dw-space-sm);
}

body.app-theme .dw-contact-page .why-icon {
    background: rgba(212, 175, 55, 0.12) !important;
    color: var(--dw-gold-premium) !important;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--dw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.app-theme .dw-contact-page .why-body h5 {
    color: var(--dw-text-primary) !important;
    /* font-family: var(--dw-font-editorial); */
}

body.app-theme .dw-contact-page .why-body p,
body.app-theme .dw-contact-page .why-body a {
    color: var(--dw-text-muted) !important;
}

    body.app-theme .dw-contact-page .why-body a:hover {
        color: var(--dw-gold-premium) !important;
    }

.dw-contact-form-wrap {
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-lg);
    padding: var(--dw-space-lg);
}

    .dw-contact-form-wrap h3 {
        /* font-family: var(--dw-font-display); */
        color: var(--dw-text-primary);
        font-size: 1.5rem;
        margin-bottom: var(--dw-space-md);
    }

body.app-theme .dw-contact-form-wrap .form-control {
    background: var(--dw-bg-section);
    border: 1px solid var(--dw-border-gold);
    color: var(--dw-text-primary);
    border-radius: var(--dw-radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: var(--dw-space-sm);
}

    body.app-theme .dw-contact-form-wrap .form-control:focus {
        background: var(--dw-bg-alt);
        border-color: var(--dw-gold-premium);
        box-shadow: 0 0 0 3px var(--dw-glow-gold);
        color: var(--dw-text-primary);
        outline: none;
    }

    body.app-theme .dw-contact-form-wrap .form-control::placeholder,
    body.app-theme .dw-contact-form-wrap .form-control::-webkit-input-placeholder,
    body.app-theme .dw-contact-form-wrap textarea.form-control::placeholder {
        color: rgba(245, 245, 245, 0.72) !important;
        opacity: 1 !important;
    }

    body.app-theme .dw-contact-form-wrap .form-control::-moz-placeholder {
        color: rgba(245, 245, 245, 0.72) !important;
        opacity: 1 !important;
    }

    body.app-theme .dw-contact-form-wrap .form-control:-ms-input-placeholder {
        color: rgba(245, 245, 245, 0.72) !important;
    }

body.app-theme .dw-contact-form-wrap select.form-control option {
    background: var(--dw-bg-card);
    color: var(--dw-text-primary);
}

body.app-theme .dw-contact-form-wrap .btn1,
body.app-theme .dw-contact-form-wrap input[type="submit"] {
    background: var(--dw-gradient-cta) !important;
    border: none !important;
    color: var(--dw-bg-primary) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 32px !important;
    border-radius: var(--dw-radius-sm) !important;
    transition: transform var(--dw-duration) var(--dw-ease), box-shadow var(--dw-duration) var(--dw-ease);
}

    body.app-theme .dw-contact-form-wrap .btn1:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px var(--dw-glow-gold);
    }

/* ---- Grievance Cell page ---- */
.dw-grievance-page {
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
}

.dw-grievance-intro {
    color: var(--dw-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 var(--dw-space-lg);
    max-width: 480px;
}

.dw-grievance-points {
    display: grid;
    gap: var(--dw-space-md);
    margin-bottom: var(--dw-space-lg);
}

.dw-grievance-point {
    display: flex;
    gap: var(--dw-space-sm);
    align-items: flex-start;
    padding: var(--dw-space-md);
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-md);
}

.dw-grievance-point-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--dw-radius-sm);
    background: rgba(212, 175, 55, 0.12);
    color: var(--dw-gold-premium);
    font-size: 1.15rem;
}

.dw-grievance-point h5 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dw-text-primary);
}

.dw-grievance-point p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--dw-text-muted);
}

.dw-grievance-policy-link {
    margin: 0;
}

    .dw-grievance-policy-link a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--dw-gold-premium);
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
    }

        .dw-grievance-policy-link a:hover {
            color: var(--dw-gold-royal);
        }

.dw-grievance-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dw-text-muted);
    margin-bottom: 8px;
}

.dw-grievance-form-wrap .dw-grievance-textarea {
    min-height: 110px;
    resize: vertical;
}

body.app-theme .dw-grievance-form-wrap .form-control::placeholder,
body.app-theme .dw-grievance-form-wrap .form-control::-webkit-input-placeholder,
body.app-theme .dw-grievance-form-wrap textarea.form-control::placeholder {
    color: rgba(245, 245, 245, 0.72) !important;
    opacity: 1 !important;
}

body.app-theme .dw-grievance-form-wrap .form-control::-moz-placeholder {
    color: rgba(245, 245, 245, 0.72) !important;
    opacity: 1 !important;
}

@media (max-width: 991.98px) {
    .dw-grievance-intro {
        max-width: none;
    }
}

/* ---- Image Gallery page ---- */
.dw-gallery-page {
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
    background: var(--dw-bg-primary);
}

    .dw-gallery-page .gallery-grid {
        margin-left: -12px;
        margin-right: -12px;
    }

        .dw-gallery-page .gallery-grid > [class*="col-"] {
            padding-left: 12px;
            padding-right: 12px;
        }

    .dw-gallery-page .gallery-item {
        position: relative;
        background: var(--dw-bg-card);
        border: 1px solid var(--dw-border-gold);
        border-radius: var(--dw-radius-lg);
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
        transition: transform var(--dw-duration-slow) var(--dw-ease), box-shadow var(--dw-duration-slow) var(--dw-ease), border-color var(--dw-duration) var(--dw-ease);
        height: 100%;
        min-height: 240px;
    }

        .dw-gallery-page .gallery-item a {
            display: block;
            position: relative;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        .dw-gallery-page .gallery-item img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s var(--dw-ease);
        }

        .dw-gallery-page .gallery-item:hover {
            transform: translateY(-6px);
            border-color: var(--dw-border-gold-strong);
            box-shadow: 0 18px 44px rgba(212, 175, 55, 0.16);
        }

            .dw-gallery-page .gallery-item:hover img {
                transform: scale(1.06);
            }

    .dw-gallery-page .gallery-title {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 16px 18px;
        background: linear-gradient(to top, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.7) 55%, transparent 100%);
        color: var(--dw-text-primary);
        font-family: var(--dw-font-body);
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        line-height: 1.35;
        opacity: 1;
        transform: none;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
    }

        .dw-gallery-page .gallery-item:hover .gallery-title {
            color: var(--dw-gold-royal);
        }

@media (max-width: 767.98px) {
    .dw-gallery-page .gallery-item img {
        height: 220px;
    }

    .dw-gallery-page .gallery-title {
        font-size: 0.9rem;
        padding: 14px 16px;
    }
}

/* ---- Video Gallery page ---- */
.dw-video-gallery-page {
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
    background: var(--dw-bg-primary);
}

    .dw-video-gallery-page .video-card {
        background: var(--dw-bg-card);
        border: 1px solid var(--dw-border-gold);
        border-radius: var(--dw-radius-lg);
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
        height: 100%;
        transition: transform var(--dw-duration-slow) var(--dw-ease), box-shadow var(--dw-duration-slow) var(--dw-ease), border-color var(--dw-duration) var(--dw-ease);
    }

        .dw-video-gallery-page .video-card:hover {
            transform: translateY(-6px);
            border-color: var(--dw-border-gold-strong);
            box-shadow: 0 18px 44px rgba(212, 175, 55, 0.16);
        }

        .dw-video-gallery-page .video-card .ratio {
            background: var(--dw-bg-section);
            position: relative;
            width: 100%;
        }

            .dw-video-gallery-page .video-card .ratio::before {
                content: '';
                display: block;
                padding-top: 56.25%;
            }

            .dw-video-gallery-page .video-card .ratio > * {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
            }

        .dw-video-gallery-page .video-card iframe {
            border: none;
            width: 100%;
            height: 100%;
            display: block;
        }

    .dw-video-gallery-page .video-title {
        padding: 14px 18px;
        font-family: var(--dw-font-body);
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        color: var(--dw-text-primary);
        background: linear-gradient(180deg, rgba(35, 39, 48, 0.98) 0%, rgba(26, 29, 35, 1) 100%);
        border-top: 1px solid var(--dw-border-gold);
        line-height: 1.4;
    }

        .dw-video-gallery-page .video-card:hover .video-title {
            color: var(--dw-gold-royal);
        }

    /* Nested row from server InnerHtml */
    .dw-video-gallery-page #ddlVideo > .row {
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }

@media (max-width: 767.98px) {
    .dw-video-gallery-page .video-title {
        font-size: 0.9rem;
        padding: 12px 14px;
    }
}

/* ---- Our Champions page ---- */
.dw-champions-page {
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
    background: var(--dw-bg-primary);
}

    .dw-champions-page .row > [class*="col-"] {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .dw-champions-page img.img-thumbnail,
    .dw-champions-page .img-thumbnail {
        display: block;
        width: 100%;
        height: auto;
        min-height: 280px;
        max-height: 420px;
        object-fit: cover;
        object-position: top center;
        padding: 0;
        background: var(--dw-bg-card);
        border: 1px solid var(--dw-border-gold) !important;
        border-radius: var(--dw-radius-lg) !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
        transition: transform var(--dw-duration-slow) var(--dw-ease), box-shadow var(--dw-duration-slow) var(--dw-ease), border-color var(--dw-duration) var(--dw-ease);
    }

        .dw-champions-page img.img-thumbnail:hover,
        .dw-champions-page .img-thumbnail:hover {
            transform: translateY(-6px);
            border-color: var(--dw-border-gold-strong) !important;
            box-shadow: 0 18px 44px rgba(212, 175, 55, 0.16);
        }

@media (max-width: 767.98px) {
    .dw-champions-page img.img-thumbnail,
    .dw-champions-page .img-thumbnail {
        min-height: 220px;
        max-height: 340px;
    }
}

/* ---- Achievers page ---- */
.dw-achievers-page {
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
    background: var(--dw-bg-primary);
}

    .dw-achievers-page .leaders-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .dw-achievers-page .about_us_box,
    .dw-achievers-page .shadow_about_us {
        height: 100%;
        text-align: center;
        padding: var(--dw-space-lg) var(--dw-space-md);
        background: var(--dw-bg-card);
        border: 1px solid var(--dw-border-gold);
        border-radius: var(--dw-radius-lg);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
        transition: transform var(--dw-duration-slow) var(--dw-ease), box-shadow var(--dw-duration-slow) var(--dw-ease), border-color var(--dw-duration) var(--dw-ease);
    }

        .dw-achievers-page .about_us_box:hover,
        .dw-achievers-page .shadow_about_us:hover {
            transform: translateY(-6px);
            border-color: var(--dw-border-gold-strong);
            box-shadow: 0 18px 44px rgba(212, 175, 55, 0.16);
        }

    .dw-achievers-page .leadership_pic {
        width: 128px;
        height: 128px;
        margin: 0 auto var(--dw-space-md);
        border-radius: 50%;
        padding: 4px;
        background: linear-gradient(135deg, #A87C23, #D4AF37, #F3D778);
        box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12);
    }

        .dw-achievers-page .leadership_pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50% !important;
            background: var(--dw-bg-section);
            display: block;
        }

    .dw-achievers-page .about_us_box h2,
    .dw-achievers-page .shadow_about_us h2 {
        margin: 0 0 6px;
        font-family: var(--dw-font-body);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--dw-text-primary);
        line-height: 1.35;
    }

    .dw-achievers-page .about_us_box h5,
    .dw-achievers-page .shadow_about_us h5 {
        margin: 0 0 12px;
        font-size: 0.8125rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--dw-gold-premium);
    }

    .dw-achievers-page .about_us_box p,
    .dw-achievers-page .shadow_about_us p {
        margin: 0 auto;
        max-width: 90%;
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--dw-text-muted);
    }

@media (max-width: 767.98px) {
    .dw-achievers-page .leadership_pic {
        width: 110px;
        height: 110px;
    }
}

/* ---- Shared Policy pages ---- */
.dw-policy-page {
    padding: var(--dw-space-2xl) 0 var(--dw-space-3xl);
    background: var(--dw-bg-primary);
}

.dw-policy-doc {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: var(--dw-space-md);
}

.dw-policy-block,
.dw-policy-page .why-card {
    background: var(--dw-bg-card);
    border: 1px solid var(--dw-border-gold);
    border-radius: var(--dw-radius-lg);
    padding: var(--dw-space-lg);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.dw-policy-block h2,
.dw-policy-block h3,
.dw-policy-block h4,
.dw-policy-block h5,
.dw-policy-page .why-body h5,
.dw-policy-page .why-card h5,
.dw-policy-page .why-card h4,
.dw-policy-page .why-card h3 {
    margin: 0 0 var(--dw-space-sm);
    font-family: var(--dw-font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dw-gold-premium) !important;
}

.dw-policy-block p,
.dw-policy-page .why-body p,
.dw-policy-page .why-card p {
    margin: 0 0 12px;
    color: var(--dw-text-muted) !important;
    font-size: 0.975rem;
    line-height: 1.75;
}

    .dw-policy-block p:last-child,
    .dw-policy-page .why-body p:last-child {
        margin-bottom: 0;
    }

.dw-policy-block ul,
.dw-policy-page ul.df,
.dw-policy-page .why-body ul {
    margin: 0 0 12px;
    padding-left: 1.25rem;
    list-style: disc;
}

.dw-policy-block ol {
    margin: 0 0 12px;
    padding-left: 1.25rem;
    list-style: decimal;
}

    .dw-policy-block li,
    .dw-policy-page ul.df li,
    .dw-policy-page .why-body li {
        margin: 0 0 8px;
        color: var(--dw-text-muted) !important;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.dw-policy-block a,
.dw-policy-page .why-body a,
.dw-policy-page a {
    color: var(--dw-gold-royal) !important;
    font-weight: 600;
    text-decoration: none;
}

    .dw-policy-block a:hover,
    .dw-policy-page a:hover {
        color: var(--dw-gold-premium) !important;
    }

.dw-policy-page .why-choose-block,
.dw-policy-page .why-wrap,
.dw-policy-page .why-grid,
.dw-policy-page .why-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--dw-space-md);
    grid-template-columns: 1fr;
    background: transparent;
}

.dw-policy-page .why-card {
    margin: 0;
}

.dw-policy-page .why-body {
    color: var(--dw-text-muted);
}

.dw-policy-intro {
    margin-bottom: var(--dw-space-sm);
}

.dw-map-wrap {
    border-radius: var(--dw-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dw-border-gold);
    height: 100%;
    min-height: 400px;
}

    .dw-map-wrap iframe {
        width: 100%;
        height: 100%;
        min-height: 400px;
        border: none;
        filter: grayscale(30%) contrast(1.1);
    }

/* Override legacy sub-banner on inner pages */
body.app-theme .sub-banner.sub-banner-img {
    background: var(--dw-bg-section) !important;
    background-image: none !important;
}

/* ---- Inner pages mobile polish ---- */
@media (max-width: 767.98px) {
    .dw-inner-hero {
        padding: var(--dw-space-xl) 0 var(--dw-space-lg);
    }

    .dw-about-intro,
    .dw-values-section,
    .dw-mission-block,
    .dw-contact-page,
    .dw-grievance-page,
    .dw-gallery-page,
    .dw-video-gallery-page,
    .dw-champions-page,
    .dw-achievers-page,
    .dw-policy-page,
    .dw-section {
        padding-top: var(--dw-space-2xl);
        padding-bottom: var(--dw-space-2xl);
    }

        .dw-about-intro p {
            text-align: left;
        }

    .dw-contact-form-wrap,
    .dw-biz-viewer {
        padding: var(--dw-space-md);
    }

    .dw-map-wrap,
    .dw-map-wrap iframe {
        min-height: 280px;
    }

    .dw-contact-image,
    .contact-connect-visual {
        min-height: 280px;
    }

    body.app-theme .dw-contact-form-wrap .btn1,
    body.app-theme .dw-contact-form-wrap input[type="submit"] {
        width: 100%;
        min-height: 48px;
    }

    .dw-biz-actions .dw-btn {
        width: 100%;
    }
}
