/* ===== CONTAINER ===== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header--scrolled {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
    font-size: 56px;
    font-weight: 700;
    text-decoration: none;
}

.header__logo-accent {
    color: var(--color-accent);
}

.header__nav {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.header__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: var(--color-accent);
}

.header__icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__icon {
    color: var(--color-white);
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.header__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle--active {
    color: var(--color-accent);
}

/* Mobile Menu Open State */
.menu-open {
    overflow: hidden;
}

.menu-open .header__nav {
    left: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 856px;
    background: url("/assets/images/home/hero-ba-1.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero--transitioning {
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

/* Hero Indicators */
.hero__indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero__indicator:hover {
    opacity: 1;
    transform: scale(1.2);
}

.hero__indicator.active {
    background: white;
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.47) 31.73%,
        rgba(0, 0, 0, 0.1) 52.88%,
        rgba(244, 244, 244, 0) 100%
    );
    backdrop-filter: blur(10px);
    mask: linear-gradient(
        90deg,
        black 0%,
        black 35%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.5) 65%,
        rgba(0, 0, 0, 0.2) 80%,
        transparent 95%
    );
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero__content {
    max-width: 800px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 50%;
}

.hero__title {
    font-size: 80px;
    font-weight: 700;
    line-height: 88px;
    margin-bottom: 50px;
}

.hero__bottom {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.hero__btn {
    display: flex;
    width: 180px;
    height: 180px;
    padding: 81px 55px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero__text {
    margin-top: 30px;
    max-width: 450px;
    flex: 1;
    font-size: 18px;
    line-height: 34px;
    position: relative;
}

.hero__text::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 70px;
    height: 1px;
    background-color: var(--color-accent);
}

.hero__btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.hero__scroll {
    position: absolute;
    bottom: 50px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero__scroll-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__nav {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.hero__nav-btn {
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    gap: 28;
}

.hero__nav-btn--prev {
    border-color: var(--color-white);
}

.hero__nav-btn--next {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero__nav-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: scale(1.05);
}

.hero__nav-btn--next:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Arrow styles replaced with FontAwesome icons */

/* ===== DONATION SECTION ===== */
.donation {
    padding: 100px 0 0 0;
    background-color: var(--color-white);
}

.donation .container {
    display: flex;
    gap: 100px;
    align-items: stretch;
    min-height: 600px;
}

.donation__image {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    height: 600px;
}

.donation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.donation__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.donation__title {
    font-size: 60px;
    line-height: 66px;
}

.donation__options-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
}

.donation__options {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.donation__amount {
    width: 400px;
}

.donation__amount-line {
    position: relative;
    width: 100%;
    padding-bottom: 10px;
}

.donation__amount-text {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    background: var(--color-white);
    padding-right: 10px;
}

.donation__amount-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        var(--color-accent) 25%,
        var(--color-primary) 25%,
        var(--color-primary) 100%
    );
}

/* Different progress levels for each donation amount */
.donation__amount--250 .donation__amount-line::after {
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        var(--color-accent) 85%,
        var(--color-primary) 85%,
        var(--color-primary) 100%
    );
}

.donation__amount--100 .donation__amount-line::after {
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        var(--color-accent) 60%,
        var(--color-primary) 60%,
        var(--color-primary) 100%
    );
}

.donation__amount--50 .donation__amount-line::after {
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        var(--color-accent) 35%,
        var(--color-primary) 35%,
        var(--color-primary) 100%
    );
}

.donation__amount--other .donation__amount-line::after {
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        var(--color-accent) 15%,
        var(--color-primary) 15%,
        var(--color-primary) 100%
    );
}

.donation__btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 60px;
}
.donation__btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.donation__btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ===== STEPS SECTION ===== */
.steps {
    background-color: var(--color-white);
}

.steps .container {
    display: grid;
    grid-template-columns: repeat(3, 33.3333%);
    gap: 1px;
}

.steps__card {
    background: var(--color-white);
    padding: 130px 70px;
    text-align: left;
    position: relative;
    border-right: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
}

.steps__card:last-child {
    border-right: none;
}

.steps__card:nth-child(1) {
    border-left: 1px solid #e0e0e0;
}

.steps__card:nth-child(2) .steps__number {
    margin-top: 40px;
}

.steps__card:nth-child(3) {
    border-right: 1px solid #e0e0e0;
}

.steps__number {
    font-family: "DM Sans", sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 88px;
    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-accent);
}

.steps__title {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 34.5px;
}
.page-header__breadcrumb {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-header__breadcrumb a:hover {
  color: #dc3545 !important; /* Màu đỏ giống menu */
}
.steps__description {
    font-size: 16px;
    color: var(--color-text-light);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

/* ===== VIDEO SECTION ===== */
.video {
    background-color: var(--color-primary);
    padding: 100px 50px;
    color: var(--color-white);
}

.video .container {
    display: flex;
    align-items: center;
}

.video__content {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.video__player {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video__thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.video__play-btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.video__play-icon {
    font-size: 16px;
    font-weight: bold;
}

.video__text {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.video__quote-number {
    width: 94px;
    height: 78px;
}

.video__description {
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.video__author-line {
    width: 20px;
    height: 2px;
    background-color: var(--color-accent);
}

.video__author {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
}
/* Add CSS for video footer */
.video__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0;
}

.video__play-btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* ===== STORY SECTION ===== */
.story {
    padding: 100px 0;
    background-color: var(--color-white);
}

/* Desktop Story Slider */
@media (min-width: 1024px) {
    .story__timeline-wrapper {
        gap: 30px;
    }

    .story__timeline-item,
    .story__timeline-item--clone {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
}

/* Story container styles moved to .container class */

.story__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.story__title {
    /* Uses .section-title utility class */
}

.story__nav {
    display: flex;
    gap: 40px;
}

.story__nav-btn {
    /* Uses .nav-btn utility class */
    width: 96px;
    height: 96px;
}

.story__timeline {
    display: block;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Create a wrapper for the sliding content */
.story__timeline-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    flex-shrink: 0;
}

.story__timeline-item {
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    transition: all 0.3s ease;
    opacity: 1; /* Ensure items are always visible by default */
    transform: translateY(
        0
    ); /* Ensure items are in normal position by default */
}

.story__timeline-item--clone {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    opacity: 1; /* Ensure cloned items are also visible */
    transform: translateY(0);
}

/* Ensure items maintain consistent sizing */
.story__timeline-item,
.story__timeline-item--clone {
    flex-shrink: 0;
}

/* Smooth transitions for slider */
.story__timeline-item,
.story__timeline-item--clone {
    transition: all 0.3s ease;
}

/* Tablet Story Slider */
@media (min-width: 768px) and (max-width: 1023px) {
    .story__timeline-wrapper {
        gap: 20px;
    }

    .story__timeline-item,
    .story__timeline-item--clone {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

/* Mobile Story Slider */
@media (max-width: 767px) {
    .story__timeline-wrapper {
        gap: 20px;
    }

    .story__timeline-item,
    .story__timeline-item--clone {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
    }
}

.story__timeline-item {
    position: relative;
}
.story__timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.story__timeline-year {
    font-size: 64px;
    color: var(--color-accent);
    font-weight: 600;
    line-height: 1;
}

.story__timeline-label {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.story__timeline-content {
    position: relative;
}

.story__timeline-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 32px;
}

.story__timeline-item:nth-child(1) .story__timeline-image,
.story__timeline-item:nth-child(3) .story__timeline-image {
    height: 620px;
}

.story__timeline-item:nth-child(2) .story__timeline-image,
.story__timeline-item:nth-child(4) .story__timeline-image {
    height: 580px;
}

.story__timeline-desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-text-light);
    padding-left: 20px;
    border-left: 3px solid var(--color-primary);
    margin: 0;
    text-align: justify;
}

.story__view-all {
    display: flex;
    justify-content: center;
}

.story__view-all-btn {
    /* Uses .btn-rounded and .btn-accent utility classes */
}

/* ===== ISSUES SECTION ===== */
.issues {
    padding: 100px 0;
    background-color: #f0f4f8;
}

/* Issues container styles moved to .container class */

.issues__header {
    text-align: center;
    margin-bottom: 60px;
}

.issues__title {
    margin-bottom: 24px;
    /* Uses .section-title utility class */
}

.issues__description {
    font-size: 16px;
    color: var(--color-primary);
    margin: 0 auto;
    font-size: 18px;
    max-width: 1162px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.issues__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 450px);
}

.issues__card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    padding: 64px;
}

.issues__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.issues__card--economic {
    /* Background removed, using image instead */
}

.issues__card--economic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #042177;
    opacity: 0.8;
    z-index: 1;
}

.issues__card--education {
    /* Background removed, using image instead */
}

.issues__card--education::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.issues__card--community {
    /* Background removed, using image instead */
}

.issues__card--community::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #042177;
    opacity: 0.8;
    z-index: 1;
}

.issues__card--healthcare {
    /* Background removed, using image instead */
}

.issues__card--healthcare::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.issues__card--environment {
    /* Background removed, using image instead */
}

.issues__card--environment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--Brand-Blue, #042177);
    opacity: 0.8;
    z-index: 1;
}

.issues__card--technology {
    /* Background removed, using image instead */
}

.issues__card--technology::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.issues__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 64px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.issues__card-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-white);
}

.issues__card-desc {
    font-size: 16px;
    line-height: 27px;
    color: #d0d0d0;
    font-style: normal;
    font-weight: 400;
    padding-right: 24px;
}

.issues__card-link-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.issues__card-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.issues__card-link:hover {
    opacity: 0.8;
}

.issues__card-arrow {
    width: 33px;
    height: 16px;
    transition: all 0.3s ease;
}

.issues__card-link-container:hover .issues__card-arrow {
    transform: translateX(5px);
}

/* ===== CAMPAIGN SECTION ===== */
.campaign {
    padding: 100px 0;
    background-color: var(--color-white);
}

/* Campaign container styles moved to .container class */

.campaign__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
}

.campaign__title {
    /* Uses .section-title utility class */
}

.campaign__view-all {
    margin-top: 10px;
    /* Uses .btn-rounded and .btn-accent utility classes */
}

.campaign__events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.campaign__event {
    display: flex;
    flex-direction: column;
}

.campaign__event-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.campaign__event-month {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 600;
}

.campaign__event-day {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 500;
}

.campaign__event-content {
    background-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.campaign__event-content:hover {
    transform: translateY(-5px);
}

.campaign__event-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.campaign__event-info {
    padding: 64px 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
}

.campaign__event-title {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
}

.campaign__event-divider {
    width: 18px;
    height: 3px;
    background-color: var(--color-accent);
}

.campaign__event-desc {
    color: #ccc;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.campaign__event-link-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.campaign__event-link {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.campaign__event-link-container img {
    width: 18px;
    height: 18px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
    color: var(--color-white);
    overflow: hidden;
    padding: 0 10px 100px 10px;
}
.contact__info-container {
    width: 750px;
}
.contact__content {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(255, 89, 89, 0.66), rgba(245, 91, 91, 0.6)),
        url("/assets/images/home/contact.png");
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    z-index: -1;
}

.contact__title {
    margin-bottom: 50px;
    color: var(--color-white);
    /* Uses .section-title utility class for size and weight */
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 60%;
    flex: 0 0 60%;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
}

.contact__form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    font-size: 16px;
    color: var(--color-white);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact__form-input:focus {
    border-bottom-color: var(--color-white);
}

.contact__form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.contact__info {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-start;
    gap: 80px;
}

.contact__description {
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.contact__btn-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact__btn {
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    /* Uses .btn-rounded and .btn-accent utility classes */
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 146px 0 0;
}

.footer .container {
    padding-bottom: 124px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
    font-size: 64px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer__logo-accent {
    color: var(--color-accent);
}

.footer__description {
    font-size: 32px;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 10px;
    width: 300px;
}

.footer__social {
    display: flex;
    gap: 26px;
}

.footer__social-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: var(--color-accent);
}

.footer__menu-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--color-white);
}

.footer__contact {
    display: flex;
    flex-direction: column;
}

.footer__phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 50px;
}

.footer__phone-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 40px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer__phone-link:hover {
    color: var(--color-accent);
}

.footer__email {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__email-label,
.footer__contact-title {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__email-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 40px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer__email-link:hover {
    color: var(--color-accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom .container {
    padding: 40px 10px;
    text-align: left;
}

.footer__copyright {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== TRINH STORY PAGE ===== */

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about__content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.about__image {
    flex: 0 0 42%;
    max-width: 42%;
}

.about__image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about__title {
    margin-bottom: 32px;
}

.about__divider {
    width: 320px;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 32px;
}

.about__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__description p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--color-text-light);
    margin: 0;
    text-align: justify;
}

/* ===== TIMELINE SECTION ===== */
.timeline {
    padding: 100px 0;
    background-color: #eaedf6;
}
.timeline .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.timeline__header {
    text-align: center;
}

.timeline__title {
    margin-bottom: 24px;
}

.timeline__content {
    width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-left: 90px;
    border-left: 3px solid var(--color-accent);
    position: relative;
}

.timeline__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    width: 50px;
    height: 40px;
    background-color: #eaedf6;
    z-index: 10;
}

.timeline__item--reverse {
    flex-direction: row-reverse;
}

.timeline__year {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-bottom: 36px;
    position: relative;
}

.timeline__year::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -99px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--color-accent);
    z-index: 10;
}

.timeline__content-wrapper {
    display: flex;
    gap: 56px;
    align-items: flex-end;
    flex: 1;
}
.timeline__content-wrapper--reverse {
    align-items: center;
}

.timeline__image {
    max-width: 346px;
    height: 520px;
}

.timeline__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.timeline__text {
    flex: 1;
}

.timeline__subtitle {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.timeline__text p {
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
    text-align: justify;
}

/* Reverse items (2nd and 4th) use border-right and padding-right */
.timeline__content-wrapper--reverse .timeline__text p {
    border-left: none;
    border-right: 3px solid var(--color-primary);
    padding-left: 0;
    padding-right: 20px;
}

/* ===== ISSUES GRID ===== */
.issues-grid {
    padding: 80px 0;
    background: var(--color-white);
}

.issues-grid__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 26px;
    row-gap: 30px;
    margin-bottom: 60px;
}

.issue-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.issue-card__image {
    height: 400px;
}

.issue-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.issue-card__overlay {
    margin-top: -80px;
    background: linear-gradient(
        180deg,
        rgba(234, 237, 246, 0) -30.84%,
        #eaedf680 3.13%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(15px);
    padding: 22px 54px;
    transform: translateY(0);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.issue-card:hover .issue-card__overlay {
    transform: translateY(-5px);
}

.issue-card__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 15px 0;
}

.issue-card__description {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 20px 0;
}

.issue-card__link-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.issue-card__arrow {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.issue-card__link {
    display: inline-flex;
    gap: 8px;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
}

.issue-card__link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.issue-card__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.issue-card__link:hover i {
    transform: translateX(3px);
}

.issues-grid__button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Responsive Design */

/* ===== ACTION CARDS SECTION ===== */
.action-cards {
    padding: 100px 0;
    background-color: var(--color-white);
}

.action-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin: 0 auto;
}

.action-card {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
}

.action-card__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-card__accent-line {
    width: 26px;
    height: 3px;
    margin-bottom: 84px;
    background-color: var(--color-accent);
}

.action-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 70px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.action-card__cta:hover {
    transform: translateX(5px);
}

.action-card__arrow {
    width: 20px;
    height: 20px;
}

/* ===== NEWS GRID SECTION ===== */
.news-grid {
    padding: 100px 0;
    position: relative;
}

.news-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    pointer-events: none;
}

.news-grid__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;
    position: relative;
    z-index: 1;
}

.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__content {
    padding: 52px 40px;
    background: #eaedf6;
}

.news-card__date {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 400;
    margin-bottom: 30px;
}

.news-card__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.news-card__separator {
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    margin-bottom: 30px;
}

.news-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: #042177;
    margin-bottom: 30px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.news-card__link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.news-card__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-card__link:hover i {
    transform: translateX(2px);
}

.news-card__arrow {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.pagination__link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pagination__link--prev {
    color: #6b7280;
}

.pagination__link--next {
    color: #042177;
}

.pagination__link:hover {
    opacity: 0.8;
}

.pagination__arrow {
    font-size: 18px;
    font-weight: 500;
}

.pagination__text {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pagination__pages {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pagination__page {
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
}

.pagination__page:not(.pagination__page--active) {
    color: #042177;
}

.pagination__page:hover:not(.pagination__page--active) {
    opacity: 0.8;
}

.pagination__page--active {
    color: var(--color-accent);
    font-weight: 600;
}

/* ===== BLOG POST CONTENT ===== */
.blog-content {
    max-width: 100%;
    font-family: "DM Sans", sans-serif !important;
}

.blog-post__date {
    font-size: 20px;
    color: #555;
    margin-bottom: 18px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif !important;
}

.blog-post__title {
    font-size: 24px;
    text-align: justify;
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 40px;
    font-family: "DM Sans", sans-serif !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-post__image {
    margin-bottom: 34px;
}

.blog-post__image img {
    width: 100%;
    height: auto;
}

.blog-post__text {
    margin: 30px 0;
}

.blog-post__text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
    font-family: "DM Sans", sans-serif !important;
}

.blog-post__quote {
    text-align: center;
    margin: 34px 0;
}

.blog-post__quote img {
    width: 60px;
    height: 60px;
}

.blog-post__subtitle {
    font-size: 26px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 40px;
    margin: 30px 0;
    font-family: "DM Sans", sans-serif !important;
    text-align: justify;
    margin-bottom: 28px;
}
.blog-post__social {
    position: relative;
    display: flex;
    justify-content: start;
}
.blog-post__social-icons {
    padding: 16px;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    background-color: var(--color-white);
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.social-label {
    display: block;
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 0;
    font-weight: 500;
    font-family: "DM Sans", sans-serif !important;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-primary);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 33, 119, 0.3);
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.social-icon i {
    font-size: 16px;
}

.blog-post__social-line {
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    top: 50%;
    background-color: var(--color-primary);
    position: absolute;
    z-index: 0;
}

/* ===== SIMILAR POSTS SIDEBAR ===== */
.similar-posts {
    position: sticky;
    top: 20px;
}

.similar-posts__title {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 36px;
    line-height: 48px;
}

.similar-post-item {
    background-color: #eaedf6;
    padding: 26px 30px;
    margin-bottom: 36px;
    transition: all 0.3s ease;
}

.similar-post-item:hover {
    transform: translateY(-2px);
}

.similar-post-item:last-child {
    margin-bottom: 0;
}

.similar-post-item__date {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif !important;
}

.similar-post-item__title {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-post-item__divider {
    width: 18px;
    height: 3px;
    background-color: var(--color-accent);
    margin-bottom: 20px;
}

.similar-post-item__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.similar-post-item__link:hover {
    color: var(--color-accent-hover);
    transform: translateX(5px);
}

.similar-post-item__link img {
    width: 16px;
    height: 16px;
}

/* ===== VOLUNTEER SECTION ===== */
.volunteer-section {
    padding: 72px 60px;
    background-color: #f8f9fa;
    position: relative;
    background-image: url("/assets/images/signup/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.volunteer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            circle at 20% 80%,
            rgba(4, 33, 119, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(4, 33, 119, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.volunteer-form-container {
    background-color: var(--color-white);
}

.volunteer-form-layout {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* Left Column - Form Content */
.volunteer-form-content {
    padding: 72px 60px;
}
.volunteer-form__header {
    display: flex;
    gap: 96px;
    margin-bottom: 60px;
}

.volunteer-form__text-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.volunteer-form__title {
    font-size: 60px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 30px;
}

.volunteer-form__intro p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif !important;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    gap: 20px;
}

.social-icon-link {
    border-radius: 50%;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
}

.social-icon-link:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Contact Form Section */
.volunteer-form__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 930px;
}
.contact-form-section {
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 24px;
}

.form-label::after {
    content: "*";
    color: var(--color-accent);
    margin-left: 4px;
}

.form-label--optional::after {
    content: none;
}

.form-input {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--color-primary);
    font-size: 16px;
    font-family: "Syne", sans-serif;
    background: transparent;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

.form-input::placeholder {
    color: #04217750;
}

.form-input--full {
    grid-column: 1 / -1;
    width: 100%;
}

.form-input--dashed {
    border-bottom-style: dashed;
}

/* Volunteer Options Section */
.volunteer-options-section {
    padding-bottom: 60px;
    border-bottom: 1px solid #042177;
}

.volunteer-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.volunteer-options__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 400;
    font-family: "DM Sans", sans-serif !important;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-primary);
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color-primary);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-item:hover .checkmark {
    border-color: var(--color-accent);
}

.checkbox-item--hover .checkmark {
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.form-group--focused .form-label {
    color: var(--color-primary);
}

.form-group--focused .form-input {
    border-bottom-color: var(--color-primary);
}

/* Other Skills Section */
.other-skills-section {
    margin-top: 20px;
}

.other-skills-section .form-label {
    margin-bottom: 15px;
}

/* Submit Button */
.submit-section {
    text-align: center;
    margin-top: 50px;
}

.submit-btn {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--color-accent-hover);
    transform: scale(1.05);
}

.submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Right Column - Volunteer Image */
.volunteer-image {
    height: 400px;
    width: 500px;
    position: relative;
    flex-shrink: 0;
}

.volunteer-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Page Header Modifier for Volunteer */
.page-header--volunteer {
    background: var(--color-primary);
}

.page-header--volunteer .page-header__heading .page-header__title {
    font-size: 80px;
    font-weight: 700;
    line-height: 88px;
    margin-bottom: 10px;
}

/* Active Navigation for Volunteer */
.header__icon--active {
    opacity: 1;
}

.header__icon--active img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%)
        hue-rotate(346deg) brightness(104%) contrast(97%);
}

/* ===== DONATION FORM SECTION ===== */

.donation-form-layout {
}

.donation-form-section {
    padding: 0;
    background-image: url("/assets/images/donate/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.donation-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    z-index: 1;
}

.donation-form-layout {
    gap: 180px;
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

.donation-form {
    background: white;
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    gap: 46px;
    justify-content: center;
    z-index: 2;
}
.donation-form__title {
    margin-bottom: 0;
}

.donation-form__divider {
    width: 320px;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 0px;
}

.donation-form__intro {
}

.donation-form__intro p {
    color: var(--color-text-light);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: "DM Sans", sans-serif !important;
}

/* Amount Section */
.donation-amount-section {
    margin-bottom: 40px;
}
.donation-amount-section--text {
    margin: 0px !important;
}
.donation-amount__title {
    font-family: "DM Sans", sans-serif !important;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.donation-amount__subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif !important;
}

.donation-amount__buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amount-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 15px 10px;
    border-radius: 0 16px 0 0;
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    background-color: var(--color-primary);
    opacity: 0.9;
    transform: translateY(-2px);
}

.amount-btn:last-child {
    background-color: #f8fafc;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

/* Monthly Section */
.monthly-donation-section {
}

.monthly-donation__title {
    font-family: "DM Sans", sans-serif !important;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.monthly-toggle {
    display: flex;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
    line-height: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    text-align: center;
}

.toggle-btn:last-child {
    flex: 1;
    border-radius: 0 16px 0 0;
}

.toggle-btn--active {
    background-color: var(--color-primary);
    color: white;
}

.toggle-btn:hover {
    background-color: var(--color-primary);
    color: white;
    opacity: 0.9;
}

/* Checkout Section */
.checkout-section {
}

.checkout__title {
    font-family: "DM Sans", sans-serif !important;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.checkout-btn {
    width: 100%;
    background: #ffc33a;
    color: white;
    border: none;
    padding: 10px 64px;
    border-radius: 0 16px 0 0;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.payment-logos img {
    height: 20px;
}

.payment-logo {
    height: 20px;
}

/* Contribution Rules */
.contribution-rules-section {
    border-top: 1px solid var(--color-primary);
    padding-top: 46px;
}

.contribution-rules__title {
    font-family: "DM Sans", sans-serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

.contribution-rules__list {
    padding-right: 22px;
    padding-left: 20px;
    max-height: 190px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #f0f0f0;
    list-style: none;
    counter-reset: item;
}

.contribution-rules__list::-webkit-scrollbar {
    width: 6px;
}

.contribution-rules__list::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.contribution-rules__list::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

.contribution-rules__list::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Hide scrollbar arrows */
.contribution-rules__list::-webkit-scrollbar-button {
    display: none;
}

.contribution-rules__list li {
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 28px;
    text-align: justify;
    counter-increment: item;
    position: relative;
    font-family: "DM Sans", sans-serif !important;
}

.contribution-rules__list li::before {
    content: counter(item) ".";
    position: absolute;
    left: -20px;
    color: var(--color-primary);
    font-weight: 600;
}

/* Right Side Image */
.donation-image {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-right: calc(-50vw + 50%);
    width: calc(50vw + 50%);
}

.donation-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}
.issue-card__overlay{
	padding: 22px 40px!important;
}