/* ==================== CORE DESIGN TOKENS ==================== */
:root {
    --primary-blue: #034B9F;
    --primary-orange: #B84110;
    --accent-yellow: #EDB600;
    --cream-bg: #FFF4EA;
    --text-dark: #262626;
    --text-muted: #666666;
    --white: #FFFFFF;
}


/* ==================== INTRO SECTION ==================== */
.grc-intro-section {
    padding: 30px 0 40px;
}

.grc-intro-section .row {
    align-items: center;
}

.grc-intro-sticky {
    padding-top: 10px;
}

.grc-intro-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 380px;
}

.grc-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.grc-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.grc-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.grc-carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.grc-carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.grc-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.grc-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.grc-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .grc-intro-section {
        padding: 20px 0 30px;
    }
    .grc-intro-carousel {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .grc-intro-carousel {
        height: 250px;
    }
}

/* ==================== TYPOGRAPHY ==================== */
.head {
    font-family: "Source Sans 3", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .head {
        font-size: 28px;
    }
}

.subhead {
    font-family: "Source Sans 3", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
}

.text {
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-yellow) 100%);
    border-radius: 2px;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    background: url("../img/breadcrumb-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

.breadcrumb h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 44px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .breadcrumb {
        padding: 30px 0;
    }
    .breadcrumb h1 {
        font-size: 28px;
    }
}

/* ==================== UTILITIES ==================== */
.bg-cream {
    background: var(--cream-bg);
}

/* ==================== HERO INTRO ==================== */
.grc-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #023a7d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.grc-intro-icon i {
    font-size: 32px;
    color: var(--white);
}

/* ==================== ABOUT THE CELLS ==================== */
.grc-about-section {
    padding: 40px 0;
    background: var(--cream-bg);
}

.grc-about-gallery {
    position: relative;
    height: 420px;
}

.grc-about-img-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.grc-about-img-large img {
    width: 100%;
    height: 100%;
    display: block;
}

.grc-about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--cream-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.grc-about-img-small img {
    width: 100%;
    height: 100%;
    display: block;
}

.grc-about-img-accent {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 16px;
    z-index: 0;
}

/* About Gallery Animations */
.grc-about-img-large {
    animation: slideInLeft 0.8s ease forwards;
}

.grc-about-img-small {
    animation: slideInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.grc-about-img-accent {
    animation: floatAccent 3s ease-in-out infinite;
}

.grc-about-img-large img,
.grc-about-img-small img {
    transition: transform 0.5s ease;
}

.grc-about-img-large:hover img,
.grc-about-img-small:hover img {
    transform: scale(1.08);
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatAccent {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(6px, -8px) rotate(5deg); }
}

.grc-key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.grc-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(3, 75, 159, 0.08);
    transition: all 0.3s ease;
}

.grc-feature-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 75, 159, 0.1);
}

.grc-feature-item svg {
    flex-shrink: 0;
}

.grc-feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .grc-about-gallery {
        height: 350px;
        margin-bottom: 20px;
    }
    .grc-about-img-large {
        height: 260px;
    }
    .grc-about-img-small {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .grc-about-section .col-12:first-child {
        order: 2;
        margin-top: 24px;
        margin-bottom: 0 !important;
    }
    .grc-about-section .col-12:last-child {
        order: 1;
        margin-bottom: 0 !important;
    }
    .grc-about-img-accent {
        display: none;
    }
}

@media (max-width: 767px) {
    .grc-key-features {
        grid-template-columns: 1fr;
    }
}

/* ==================== HORIZONTAL TAB LAYOUT ==================== */
.grc-horizontal-tabs {
    display: flex;
    flex-direction: column;
}

.grc-htab-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.grc-htab {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 14px 35px;
    background: var(--white);
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.grc-htab i {
    font-size: 18px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.grc-htab.active i {
    color: var(--white);
}

.grc-htab::after {
    display: none;
}

.grc-htab:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.grc-htab.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(3, 75, 159, 0.15);
}

.grc-htab-icon {
    width: 40px;
    height: 40px;
    background: rgba(3, 75, 159, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.grc-htab.active .grc-htab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.grc-htab-icon svg {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.grc-htab.active .grc-htab-icon svg {
    color: var(--white);
}

.grc-htab h5 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    transition: color 0.3s ease;
}

.grc-htab.active h5 {
    color: var(--white);
}

.grc-htab span {
    font-size: 16px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.grc-htab.active span {
    color: rgba(255, 255, 255, 0.7);
}

.grc-htab-content {
    width: 100%;
}

@media (max-width: 991px) {
    .grc-htab-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .grc-htab-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .grc-htab {
        flex-direction: row;
        text-align: center;
        justify-content: center;
        padding: 12px 10px;
        border: 2px solid var(--primary-blue);
        border-radius: 12px;
        background: rgba(3, 75, 159, 0.04);
        cursor: pointer;
    }
    .grc-htab::after {
        display: none;
    }
    .grc-htab h5 {
        font-size: 16px;
    }
    .grc-htab span {
        font-size: 13px;
    }
    .grc-htab.active {
        border-color: var(--primary-blue);
        background: var(--primary-blue);
    }
}

/* ==================== GRIEVANCE TYPES SECTION ==================== */
.grievance-type-panel {
    display: none;
}

.grievance-type-panel.active {
    display: block;
    animation: fadeInPanel 0.4s ease;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.grc-panel-header {
    background: none;
    padding: 30px 0 0;
    text-align: center;
}

.grc-panel-header h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0;
    line-height: 1.05;
}

.grc-panel-header .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-yellow) 100%);
    border-radius: 2px;
    margin: 8px auto 0;
}

.grc-panel-header h3::after {
    display: none;
}

.grc-panel-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    display: block;
    margin-top: 4px;
    line-height: 1.3;
}

.grc-panel-header p {
    font-size: 17px;
    color: var(--text-dark);
    margin: 24px 0 0;
    line-height: 1.7;
}

.grc-panel-body {
    background: var(--white);
    padding: 30px 40px 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    margin-top: 24px;
}

.grc-panel-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    padding: 0 8px;
}

@media (max-width: 575px) {
    .grc-panel-intro {
        font-size: 14px;
        padding: 0 4px;
    }
}

.grc-panel-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.grc-panel-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.grc-panel-images img:hover {
    transform: scale(1.03);
}

@media (max-width: 575px) {
    .grc-panel-images {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.grc-category-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.grc-category-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.grc-category-grid {
    gap: 0;
}

.grc-category-grid .col-12 .grc-category-block {
    background: #fafbfc;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.grc-category-grid .col-12 .grc-category-block:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.grc-category-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.grc-category-title .cat-letter {
    width: 30px;
    height: 30px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.grc-grievance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grc-grievance-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.5;
}

.grc-grievance-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-yellow);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .grc-panel-header {
        padding: 20px 0 0;
    }
    .grc-panel-header h3 {
        font-size: 24px;
    }
    .grc-panel-subtitle {
        font-size: 14px;
    }
    .grc-panel-body {
        padding: 20px 16px 24px;
    }
}

/* ==================== PROCESS - CARD LAYOUT ==================== */
.grc-proc-section {
    background: var(--cream-bg);
    padding: 40px 0;
}

.grc-proc-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 44px;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-orange);
    line-height: 1.2;
    margin-bottom: 14px;
}

.grc-proc-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    margin-bottom: 18px;
}

.grc-proc-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.grc-proc-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.grc-proc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grc-proc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
}

.grc-proc-img {
    width: 120px;
    min-height: 100px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    display: block;
    align-self: stretch;
}

.grc-proc-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.grc-proc-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.grc-proc-num {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    flex-shrink: 0;
}

.grc-proc-step-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.grc-proc-step-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .grc-proc-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .grc-proc-card {
        flex-direction: column;
        text-align: center;
    }
    .grc-proc-img {
        width: 100%;
        height: auto;
        max-height: 200px;
        border-radius: 16px 16px 0 0;
        align-self: auto;
    }
    .grc-proc-content {
        padding: 16px 20px;
    }
    .grc-proc-header {
        justify-content: center;
    }
}

/* ==================== FORM SECTION ==================== */
.grc-form-container {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.grc-form-header {
    background: linear-gradient(135deg, var(--primary-blue), #023a7d);
    padding: 40px;
    color: var(--white);
    text-align: center;
}

.grc-form-header h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.grc-form-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    max-width: 700px;
}

.grc-form-body {
    padding: 40px;
}

.grc-form-section-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.grc-form-section-title .sec-num {
    width: 28px;
    height: 28px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.grc-form-body .form-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.grc-form-body .form-control,
.grc-form-body .form-select {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.grc-form-body .form-control:focus,
.grc-form-body .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(3, 75, 159, 0.1);
}

.grc-form-body textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit-grievance {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: var(--white);
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-submit-grievance:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    color: var(--white);
}

@media (max-width: 767px) {
    .grc-form-header {
        padding: 25px 20px;
    }
    .grc-form-header h3 {
        font-size: 24px;
    }
    .grc-form-body {
        padding: 25px 20px;
    }
}

/* ==================== TRACK STATUS (STICKY SIDEBAR) ==================== */
.grc-track-sticky {
    z-index: 10;
}

.grc-track-card {
    background: var(--cream-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f5;
}

.grc-track-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.grc-track-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.grc-track-card .form-control {
    border: 2px solid #e5e7ec;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.grc-track-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(3, 75, 159, 0.1);
}

.btn-track {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(184, 65, 16, 0.25);
}

.btn-track:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 65, 16, 0.4);
    color: var(--white);
}

/* Track Timeline */
.grc-track-timeline {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
}

.grc-track-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    position: relative;
}

.grc-track-tl-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 28px;
    width: 2px;
    height: calc(100% - 10px);
    background: rgba(3, 75, 159, 0.15);
}

.grc-track-tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    z-index: 1;
}

.grc-track-tl-item h6 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 2px;
}

.grc-track-tl-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ==================== COMMITTEE SECTION (SPLIT HERO) ==================== */
.grc-comm-section {
    display: flex;
    min-height: 580px;
}

.grc-comm-hero {
    width: 42%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.grc-comm-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.grc-comm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 75, 159, 0.92) 0%, rgba(2, 50, 110, 0.85) 100%);
    z-index: 1;
}

.grc-comm-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.grc-comm-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--accent-yellow);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    width: fit-content;
}

.grc-comm-hero-content h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.grc-comm-hero-content p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;

    max-width: 360px;
}

.grc-comm-stats {
    display: flex;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.grc-comm-stat {
    display: flex;
    flex-direction: column;
}

.grc-comm-stat-num {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
}

.grc-comm-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Panel - Members */
.grc-comm-members {
    flex: 1;
    background: var(--cream-bg);
    display: flex;
    align-items: center;
    padding: 50px 40px;
}

.grc-comm-members-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 40px;
}

.grc-comm-members-inner::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--primary-orange));
    border-radius: 2px;
}

.grc-comm-node {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 16px;
    position: relative;
    transition: all 0.35s ease;
    margin-bottom: 12px;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.grc-comm-node:last-child {
    margin-bottom: 0;
}

.grc-comm-node:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(3, 75, 159, 0.1);
    border-color: var(--primary-blue);
}

.grc-comm-node-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-blue), #0560c9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 18px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.grc-comm-node:hover .grc-comm-node-icon {
    background: linear-gradient(135deg, var(--primary-orange), #d4520f);
    transform: scale(1.1);
}

.grc-comm-node:nth-child(odd) .grc-comm-node-icon { background: linear-gradient(135deg, var(--primary-blue), #0560c9); }
.grc-comm-node:nth-child(even) .grc-comm-node-icon { background: linear-gradient(135deg, var(--primary-orange), #d4520f); }

.grc-comm-node-content {
    flex: 1;
    min-width: 0;
}

.grc-comm-node-content h5 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 3px;
}

.grc-comm-node-content p {
    font-size: 14px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}

.grc-comm-node-num {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.06;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.grc-comm-node:hover .grc-comm-node-num {
    opacity: 0.15;
}

@media (max-width: 991px) {
    .grc-comm-section {
        flex-direction: column;
        min-height: auto;
    }
    .grc-comm-hero {
        width: 100%;
        min-height: auto;
    }
    .grc-comm-hero-content {
        padding: 30px 24px;
        height: auto;
        justify-content: flex-start;
    }
    .grc-comm-hero-content h2 {
        font-size: 30px;
    }
    .grc-comm-members {
        padding: 40px 20px;
    }
    .grc-comm-members-inner {
        padding-left: 30px;
    }
}

@media (max-width: 575px) {
    .grc-comm-hero {
        min-height: 240px;
    }
    .grc-comm-hero-content {
        padding: 40px 20px 30px;
    }
    .grc-comm-members-inner::before {
        display: none;
    }
    .grc-comm-members-inner {
        padding-left: 0;
        align-items: stretch;
    }
    .grc-comm-node {
        width: 100%;
    }
    .grc-comm-members {
        padding: 24px 16px;
    }
    .grc-comm-hero-content h2 {
        font-size: 28px;
    }
    .grc-comm-hero-content p {
        font-size: 16px;
    }
    .grc-comm-stats {
        gap: 20px;
    }
    .grc-comm-stat-num {
        font-size: 26px;
    }
    .grc-comm-node {
        padding: 16px 18px;
    }
    .grc-comm-node-num {
        display: none;
    }
}

/* ==================== GRIEVANCE PROCESSING TIMELINE ==================== */
.grc-timeline-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0 !important;
}

.grc-timeline-list-wrapper {
    text-align: center;
}

.grc-timeline-list li {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    padding: 6px 0;
    position: relative;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

@media (max-width: 575px) {
    .grc-timeline-list li {
        font-size: 15px;
        gap: 10px;
        align-items: center;
    }
    .grc-timeline-list li svg {
        margin-top: 0;
    }
    .grc-timeline-section {
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.grc-timeline-list li:last-child {
    padding-bottom: 0;
}

.grc-timeline-list li svg {
    flex-shrink: 0;
}

.grc-timeline-list li span strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ==================== GUIDELINES ==================== */
.grc-gl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grc-gl-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #eef0f5;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.grc-gl-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.grc-gl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(3, 75, 159, 0.1);
    border-color: var(--primary-blue);
}

.grc-gl-card:hover::before {
    transform: scaleX(1);
}

.grc-gl-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), #0560c9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}

.grc-gl-card:hover .grc-gl-icon {
    background: linear-gradient(135deg, var(--primary-orange), #d4520f);
    transform: scale(1.1);
}

.grc-gl-card:nth-child(odd) .grc-gl-icon { background: linear-gradient(135deg, var(--primary-blue), #0560c9); }
.grc-gl-card:nth-child(even) .grc-gl-icon { background: linear-gradient(135deg, var(--primary-orange), #d4520f); }

.grc-gl-icon i {
    font-size: 20px;
    color: var(--white);
}

.grc-gl-card h5 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.grc-gl-card p {
    font-size: 14px;
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .grc-gl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .grc-gl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .grc-gl-card {
        padding: 20px 14px;
        text-align: center;
    }
    .grc-gl-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 10px;
    }
    .grc-gl-icon i {
        font-size: 20px;
    }
    .grc-gl-card p {
        font-size: 13px;
    }
}

/* ==================== CONTACT BANNER ==================== */
.grc-contact-banner {
    background: linear-gradient(135deg, var(--primary-blue), #023a7d);
    border-radius: 24px;
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.grc-contact-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.grc-contact-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.grc-contact-logo {
    width: 80px;
    height: auto;
    border-radius: 12px;
}

.grc-contact-banner h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.grc-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.grc-contact-item i {
    font-size: 18px;
    color: var(--accent-yellow);
    width: 20px;
    text-align: center;
}

.grc-contact-item span,
.grc-contact-item a {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.grc-contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .grc-contact-banner {
        padding: 30px 20px;
    }
    .grc-contact-banner h3 {
        font-size: 24px;
    }
}

/* ==================== COMMITMENT SECTION ==================== */
.grc-commitment-box {
    background: var(--cream-bg);
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid var(--primary-orange);
}

/* ==================== OBJ IMAGE CARD (reused) ==================== */
.obj-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.obj-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.obj-image-accent {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 20px;
    z-index: -1;
}

.obj-image-accent-right {
    left: auto;
    right: -15px;
}

/* ==================== NOTE BOX ==================== */
.grc-note-box {
    background: #fff9f0;
    border-left: 4px solid var(--accent-yellow);
    border-radius: 0 12px 12px 0;
    padding: 20px 25px;
}

.grc-note-box p {
    font-size: 16px;
    font-weight: 500;
    color: #6c4b2e;
    margin: 0;
    line-height: 1.6;
}

/* ==================== IMAGE GRID ==================== */
.grc-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grc-image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.grc-image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .grc-image-grid {
        grid-template-columns: 1fr;
    }
    .grc-image-grid img {
        height: 200px;
    }
}
