/* 1. Global Reset & Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. Document & Body Settings */
html {
    /*  color-scheme: light dark; /* Auto-supports dark mode browsers */
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

/* 3. Media Defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 4. Typography & Layout Overrides */
input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul,
ol {
    list-style: none;
}

.site-container {
    width: 100%;
}
/* 5. Utility Layout Classes */
.container {
    width: 90%;
    margin-inline: auto;
    padding-inline: 1rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 6. Accessibility Settings */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --orange: #ff4121;
    --maroon: #7a1541;
    --cream-bg: #f0e8d4;
    --text-dark: #2b2b2b;
    --text-gray: #333333;
    --border-gray: #e0e0e0;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-top {
    padding: 20px 0;
    background: #f7f3e8;
    border-bottom: 1px solid rgba(122, 21, 65, 0.08);
}

.header-top-container {
    display: flex;
    justify-content: space-between;
}
.header-contact {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-contact-left {
    display: flex;
    gap: 20px;
    align-items: center;
    border-right: 2px solid #ccc;
    padding-right: 25px;
}
.contact-details h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 5px;
}
.contact-details a {
    font-size: 25px;
    font-weight: 700;
    color: #980353;
}
.header-contact-right {
    padding-left: 25px;
}
.header-contact-right a {
    padding: 5px 40px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 30px;
    background: #ffca24;
    color: #000;
}
.header-contact-right a:hover {
    background: #000;
    color: #ffca24;
}
.header-bottom {
    padding: 10px 0;
    background: #fff;
    position: relative;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.35rem;
}

.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--maroon);
    border-radius: 2px;
}

.header-bottom nav ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.header-bottom nav ul li a {
    font-weight: 600;
    font-size: 18px;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
}

.header-bottom nav ul li a:hover,
.header-bottom nav ul li a:focus-visible,
.header-bottom nav ul li a.active {
    background: rgba(122, 21, 65, 0.08);
    color: var(--maroon);
}

.error-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf8ef 0%, #f7efe2 100%);
}

.error-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 32px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.error-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(122, 21, 65, 0.1);
    color: var(--maroon);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.error-card h1 {
    margin-bottom: 12px;
    font-size: 2.2rem;
    color: var(--maroon);
}

.error-card p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.error-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--maroon);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.error-btn:hover,
.error-btn:focus-visible {
    background: var(--orange);
    color: #fff;
}
@media (max-width: 1450px) {
    .header-bottom nav ul li a {
        font-size: 18px;
        padding: 0;
    }
}
@media (max-width: 1300px) {
    .header-bottom nav ul li a {
        font-size: 14px;
        padding: 0;
    }
}

@media (max-width: 1023px) {
    .header-top-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .header-bottom nav ul li a {
        font-size: 16px;
    }

    .header-contact {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .header-contact-left {
        border-right: 0;
        padding-right: 0;
        width: 100%;
        display: none;
    }

    .header-contact-right {
        padding-left: 0;
    }
}

.mobile-nav-close {
    display: none;
}

@media (max-width: 1023px) {
    .header-top {
        padding: 15px 0;
    }
    .logo {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .logo img {
        width: auto;
        height: auto;
        display: inline-block;
    }

    .header-bottom {
        padding: 0;
    }

    .contact-details a {
        font-size: 18px;
    }

    .mobile-nav-toggle {
        display: flex;
        margin-left: auto;
        margin-bottom: 0.5rem;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
        z-index: 999;
    }

    .mobile-nav-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #fff 0%, #f8f1e3 100%);
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.18);
        padding: 1.2rem 1rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-left: auto;
        margin-bottom: 0.75rem;
        border: 0;
        background: rgba(122, 21, 65, 0.08);
        color: var(--maroon);
        font-size: 1.8rem;
        line-height: 1;
        border-radius: 50%;
        cursor: pointer;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .main-nav ul li a {
        display: block;
        padding: 0.7rem 0.8rem;
        font-size: 18px;
        border-radius: 8px;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a:focus-visible {
        background: rgba(122, 21, 65, 0.08);
        color: var(--maroon);
    }

    .header-bottom .container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

.banner-item {
    position: relative;
}
.banner-details {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.banner-details h1 {
    font-size: 50px;
    color: #fff;
    max-width: 800px;
    line-height: 65px;
    font-weight: 400;
}
.banner-details .yellow {
    color: #ffca24;
}

.banner-details p {
    font-size: 22px;
}

a.donate-btn {
    padding: 10px 55px 10px 25px;
    display: inline-block;
    margin-top: 30px;
    background: #62a936;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

a.donate-btn:after {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    background: url("../images/arrow-white.png") center center no-repeat;
    right: 10px;
}

a.donate-btn:hover {
    background: #fff;
    color: #62a936;
}

a.donate-btn:hover:after {
    background: url("../images/arrow-green.png") center center no-repeat;
}

.swiper {
    width: 100%;
    height: 100%;
}
section.banner.swiper.mySwiper .swiper-button-next {
    color: #fff;
    right: 20px;
}
section.banner.swiper.mySwiper .swiper-button-prev {
    color: #fff;
}
section.banner.swiper.mySwiper span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}

section.banner.swiper.mySwiper
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #fff;
    background: #ffff;
}
/**********************/

section.wesbite-statics {
    padding: 25px 0;
    text-align: center;
    background: #ede8d1;
}
section.wesbite-statics h2 {
    color: #5c0433;
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 500;
}
section.wesbite-statics h2 .green {
    color: #4e9743;
}
.statics-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.statics-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-right: 2px solid #9c967a;
    padding-right: 50px;
    min-width: 220px;
}
.statics-item:last-child {
    border-right: 0px;
}
.statics-details {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #5c0433;
    min-height: 98px;
}
.statics-title {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}
.statics-wrapper .swiper-pagination {
    margin-top: 16px;
    position: static;
}
.statics-wrapper .swiper-pagination-bullet-active {
    background: #5c0433;
}

@media (min-width: 992px) {
    .stats-swiper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 50px;
    }

    .stats-swiper .swiper-wrapper {
        display: contents;
    }

    .stats-swiper .swiper-slide {
        width: auto !important;
        display: flex;
        margin: 0;
    }

    .stats-swiper .swiper-pagination {
        display: none;
    }
}

@media (max-width: 991px) {
    .stats-swiper {
        display: block;
    }

    .stats-swiper .swiper-wrapper {
        display: flex;
    }
}

@media (max-width: 767px) {
    section.wesbite-statics h2 {
        font-size: 28px;
        padding: 0 16px;
    }

    .statics-wrapper {
        display: block;
        gap: 0;
        padding: 0 8px 8px;
    }

    .statics-wrapper .swiper-wrapper {
        align-items: stretch;
    }

    .statics-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-right: 0;
        padding-right: 0;
        min-width: 0;
        min-height: 220px;
        text-align: center;
    }

    .statics-details {
        text-align: center;
        min-height: auto;
    }
}

/****************/

.home-about {
    padding: 80px 0;
}

.home-about-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
}
.home-about-left {
    width: 50%;
    justify-content: center;
    display: flex;
}

.home-about-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

a.btn-cta {
    padding: 10px 55px 10px 25px;
    display: inline-block;
    margin-top: 30px;
    background: #5c0433;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    border: 1px solid #5c0433;
}

a.btn-cta:after {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    background: url("../images/arrow-white.png") center center no-repeat;
    top: 13px;
    right: 10px;
}

a.btn-cta:hover {
    background: #fff;
    color: #62a936;
}

a.btn-cta:hover:after {
    background: url("../images/arrow-green.png") center center no-repeat;
}
.home-about-right h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 49px;
}
.home-about-right h3 .orange {
    color: #ff4121;
}
.home-about-right p.sub-title {
    font-size: 24px;
    line-height: 15px;
    color: #ff4121;
}
.home-about-right p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
}
/* ---------- Delivering Solutions Section ---------- */
.solutions-section {
    background: var(--cream-bg);
    padding: 50px 0 60px;
    text-align: center;
}

.solutions-section .eyebrow {
    color: var(--orange);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.solutions-section h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
}
.solutions-section h2 .maroon {
    color: var(--maroon);
    font-weight: 700;
}
.solutions-section h2 .orange {
    color: var(--orange);
    font-weight: 700;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.solution-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.solution-card img:hover {
    scale: 1.05;
}
.solution-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 20px;
    color: #ffffff;
}
.solution-card .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
}
.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.solution-card p {
    font-size: 18px;
    color: #eeeeee;
    margin-bottom: 0;
}

/* ---------- Medical Care Section ---------- */
.medical-care-section {
    padding: 50px 0 60px;
}

.medical-care-section .grid {
    display: grid;
    grid-template-columns: 1fr 50%;
    gap: 50px;
    align-items: start;
}

/* Left column */
.left-col .eyebrow {
    color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.left-col .heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.left-col h2 {
    font-size: 32px;
    font-weight: 400;
}
.left-col h2 .maroon {
    color: var(--maroon);
    font-weight: 700;
}
.left-col h2 .orange {
    color: var(--orange);
    font-weight: 700;
}

.all-patient-btn {
    background: var(--maroon);
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.patient-list {
    border-top: 1px solid var(--border-gray);
}

.patient-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-gray);
}

.patient-item .num {
    color: var(--orange);
    font-size: 26px;
    font-weight: 700;
    width: 50px;
    flex-shrink: 0;
}

.patient-item .info {
    flex: 1;
}
.patient-item .info h4 {
    color: var(--maroon);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.patient-item .info p {
    font-size: 14px;
    color: var(--text-gray);
}

.patient-item .arrow-link {
    color: var(--text-dark);
    font-size: 18px;
    text-decoration: none;
    flex-shrink: 0;
}

/* Right column - image card */
.right-col {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.right-col img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.right-col .caption-bar {
    background: var(--maroon);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.right-col .caption-bar .heart-icon {
    flex-shrink: 0;
}
.right-col .caption-bar .text h4 {
    color: #f0b429;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.right-col .caption-bar .text p {
    color: #ffffff;
    font-size: 13px;
}

/* ---------- Donations Section ---------- */
.donations-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
}

/* Left: image with overlay text */
.donations-image {
    position: relative;
    overflow: hidden;
}
.donations-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    min-height: 380px;
    height: 100%;
}
.donations-image .label-box {
    position: absolute;
    right: 0;
    bottom: 30px;
    background: #5c0433;
    padding: 22px 40px 22px 30px;
}
.donations-image .label-box h2 {
    font-size: 54px;
    font-weight: 400;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
}
.donations-image .nav-arrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
}

/* Right: maroon panel with form */
.donations-form-panel {
    background: #5c0433;
    color: #ffffff;
    padding: 40px 50px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.donations-form-panel .headline {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 80%;
}
.donations-form-panel .headline .highlight {
    color: #ffca24;
}

.donations-form-panel .form-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 30px;
    color: #333;
}

.donations-form-panel .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.donations-form-panel .form-field label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}
.donations-form-panel .form-field input,
.donations-form-panel .form-field select {
    width: 100%;
    border: 1px solid #d9cfc0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fffdf9;
    padding: 11px 12px;
    appearance: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.donations-form-panel .form-field input:focus,
.donations-form-panel .form-field select:focus {
    outline: none;
    border-color: #980353;
    box-shadow: 0 0 0 3px rgba(196, 32, 49, 0.16);
}

.donations-form-panel .form-field select {
    min-height: 44px;
}
.donations-form-panel .form-field .required-note {
    color: #c0392b;
    font-size: 12px;
    margin-top: 6px;
}
.donations-form-panel .form-field .helper-note {
    color: #888;
    font-size: 12px;
    margin-top: 6px;
}

.donations-form-panel .donate-btn {
    background: #980353;
    color: #ffffff;
    border: none;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 25px;
    cursor: pointer;
}

.donations-form-panel .donation-progress {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #8a8a8a;
}

.donations-form-panel .donation-progress .step {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f3ece6;
}

.donations-form-panel .donation-progress .step.active {
    background: #980353;
    color: #fff;
}

.donations-form-panel .donation-step {
    display: none;
}

.donations-form-panel .donation-step.active {
    display: block;
}

.donations-form-panel .donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 20px;
}

.donations-form-panel .amount-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.donations-form-panel .amount-option input {
    margin: 0;
}

.donations-form-panel .donation-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.donations-form-panel .donation-actions button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

.donations-form-panel .donation-actions .btn-next,
.donations-form-panel .donation-actions .btn-submit {
    background: #980353;
    color: #fff;
}

.donations-form-panel .donation-actions .btn-prev {
    background: #e9e0d5;
    color: #5c0433;
}

.donations-form-panel .payment-options {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.donations-form-panel .payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

/* ==========================================================
     SECTION: Video Carousel
     ========================================================== */

.video-carousel-section {
    background-color: #f0e8d4;
    padding: 60px 0 50px;
}

.video-carousel-section .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Keep default overflow (hidden) so ONLY the 3 slides in view
     (active + 1 left + 1 right) are ever shown -- nothing extra
     peeking in from the sides. */
.video-carousel-section .videoSwiper {
    padding: 40px 0 10px;
}

.video-carousel-section .swiper-wrapper {
    align-items: center;
}

/* Fixed slide width -- NEVER change width per state, only scale.
     This keeps Swiper's internal spacing math correct so slides
     never overlap, on load or after any transition. */
.video-carousel-section .swiper-slide {
    opacity: 0.55;
    transform: scale(0.82);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.video-carousel-section .swiper-slide-active {
    opacity: 1;
    transform: scale(1.15);
    z-index: 2;
}

.video-carousel-section .video-card {
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.video-carousel-section .video-card img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

/* Custom nav buttons below the carousel */
.video-carousel-section .video-nav-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.video-carousel-section .video-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #999999;
    background-color: transparent;
    color: #333333;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-carousel-section .video-nav-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #ffffff;
}

/* ==========================================================
     SECTION: Footer Main
     ========================================================== */

.footer-main {
    background-image: url("../images/footer-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 50px 0 40px;
    color: #ffffff;
}

.footer-main .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
}

/* Logo + Newsletter column */
.footer-logo-box {
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.footer-logo-box .heart-icon {
    color: #e74c3c;
    font-size: 20px;
}

.footer-logo-box .logo-text {
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
    font-style: italic;
}

.footer-col p.newsletter-label {
    font-size: 14px;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 10px;
    max-width: 320px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 12px 14px;
    font-size: 13px;
    color: #333;
    outline: none;
}

.newsletter-form button {
    background-color: #f0b429;
    color: #4a0c29;
    border: none;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 0 24px 24px 0;
    cursor: pointer;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 12px;
    padding-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0b429;
    color: #4a0c29;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background-color: #7a1541;
    color: #f0b429;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.social-icons a i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Link columns */
.footer-col h3 {
    color: #f0b429;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* Get in Touch column */
.footer-col.contact p {
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-col.contact p.phone {
    color: #f0b429;
    margin-top: 10px;
}

.footer-col.contact p.email a {
    color: #f0b429;
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer-main .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-main .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
     Donation Page
     ========================================================== */

.page-content {
}

.donation-step label {
    min-width: 130px;
    display: inline-block;
}
.donation-wrapper {
    max-width: 900px;
    margin: 80px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(122, 21, 65, 0.08);
}

.donation-hero h1 {
    color: var(--maroon);
    font-size: 36px;
    margin-bottom: 8px;
}

.donation-hero p {
    color: #5f6472;
    margin-bottom: 24px;
}

.donation-step h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--maroon);
}

.amount-hint {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0.35rem 0 0.6rem;
}

.validation-error {
    color: #b42318;
    font-size: 0.92rem;
    min-height: 1.2rem;
    margin-top: 0.4rem;
}

.amount-option.selected {
    border-color: var(--maroon);
    background: #fff6f8;
}

.donation-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.donation-progress {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.donation-progress .step {
    padding: 10px 16px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #5f6472;
    font-weight: 600;
}

.donation-progress .step.active {
    background: var(--maroon);
    color: #fff;
}

.donation-step {
    display: none;
}

.donation-step.active {
    display: block;
}

.donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.amount-option,
.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e4dce2;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    background: #fcf9fb;
}

.amount-option input,
.payment-option input {
    accent-color: var(--maroon);
}

.donation-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.btn-next,
.btn-prev,
.btn-submit {
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

.btn-next,
.btn-submit {
    background: var(--maroon);
    color: #fff;
}

.btn-prev {
    background: #f1f1f1;
    color: #333;
}

.donation-form .form-control,
.donation-form .form-select {
    border-radius: 10px;
    border: 1px solid #e0d8e0;
    padding: 10px 12px;
    margin-bottom: 25px;
}

.donation-form .form-control:focus,
.donation-form .form-select:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 0.2rem rgba(122, 21, 65, 0.15);
}

.donation-form .select2-container .select2-selection--single {
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid #e0d8e0;
    padding: 0 8px;
}

.donation-form
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 40px;
    padding-left: 0;
}

.donation-form
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 40px;
}

.donation-form .select2-container--default .select2-dropdown {
    border-radius: 10px;
    border-color: #e0d8e0;
}

.donation-form
    .select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: var(--maroon);
}
p.team-details {
    padding: 0 0 20px 0;
    font-size: 18px;
}
.mb-50 {
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .donation-amount-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .donation-wrapper {
        padding: 20px;
    }

    .donation-amount-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
     SECTION 1: Founder Quote Banner
     ========================================================== */

.founder-quote-section {
    background-color: #5c0f34;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.founder-quote-section .quote-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.founder-quote-section .photo-wrap {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.founder-quote-section .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-quote-section .quote-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 90px;
    color: #f0b429;
    line-height: 5px;
    margin-bottom: 10px;
}

.founder-quote-section .quote-text {
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
    max-width: 620px;
    margin-bottom: 6px;
    font-family: "Roboto Condensed", sans-serif;
}

.founder-quote-section .quote-mark.closing {
    margin-top: 35px;
    line-height: 25px;
}

.founder-quote-section .author-name {
    color: #f0b429;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: "Roboto Condensed", sans-serif;
}

.founder-quote-section .author-title {
    color: #ffffff;
    font-size: 19px;
    font-family: "Roboto Condensed", sans-serif;
}

.founder-quote-section .heart-decor {
    position: absolute;
    transform: rotate(-45deg);
}
.founder-quote-section .heart-decor.left {
    left: 30px;
    top: 40%;
}
.founder-quote-section .heart-decor.right {
    right: 30px;
    top: 40%;
    transform: rotate(0deg);
}

@media (max-width: 800px) {
    .founder-quote-section .quote-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-quote-section .quote-text {
        font-size: 17px;
    }
}

/* ==========================================================
     SECTION 2: What Others Say / About Us Testimonials
     ========================================================== */

.testimonial-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.testimonial-section .eyebrow {
    color: #ff4121;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 6px;
}

.testimonial-section h2 {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 40px;
}

.testimonial-section h2 .maroon {
    color: #7a1541;
    font-weight: 400;
}

.testimonial-section h2 .orange {
    color: #ff4121;
    font-weight: 400;
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.testimonial-carousel .nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #333333;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.testimonial-card {
    background-color: #ece3cd;
    border-radius: 12px;
    padding: 34px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}
button.div-button-prev,
button.div-button-next {
    padding: 15px;
    border-radius: 25px;
    background: #fff;
    border: 2px solid #000;
    cursor: pointer;
}

.testimonial-card .avatar {
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card .content p.quote {
    font-size: 20px;
    color: #333333;
    margin-bottom: 16px;
}

.testimonial-card .content .name {
    color: #c0392b;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 2px;
}

.testimonial-card .content .role {
    color: #555555;
    font-size: 18px;
}
.founder-quote-section .quote-wrapper {
    justify-content: center;
    display: flex;
}

@media (max-width: 800px) {
    .testimonial-carousel {
        flex-wrap: wrap;
        gap: 12px;
    }
    .testimonial-carousel .testiSwiper {
        width: 100%;
        order: 1;
    }
    .testimonial-carousel .div-button-next,
    .testimonial-carousel .div-button-prev {
        order: 2;
        margin-top: 4px;
    }
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-card .content {
        text-align: center;
    }
}

/* ==========================================================
     SECTION: Meet Our Team
     ========================================================== */

.team-section .team-card {
    cursor: pointer;
}

.team-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
    z-index: 1100;
}

.team-modal-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.team-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(92vw, 720px);
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
    padding: 30px;
    z-index: 1150;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.team-modal.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.team-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: 0;
    background: rgba(122, 21, 65, 0.08);
    color: var(--maroon);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.team-modal-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.team-modal-image-wrap {
    flex: 0 0 170px;
    border-radius: 12px;
    overflow: hidden;
}

.team-modal-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-modal-text {
    flex: 1;
}

.team-modal-content h3 {
    margin: 0 0 0.35rem;
    color: var(--maroon);
    font-size: 1.15rem;
}

.team-modal-role {
    margin: 0 0 0.75rem;
    font-weight: 700;
    color: var(--orange);
}

.team-modal-content p:last-child {
    margin: 0;
    color: #4b4b4b;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .team-modal-content {
        flex-direction: column;
    }

    .team-modal-image-wrap {
        flex-basis: 180px;
        width: 100%;
    }
}

body.modal-open {
    overflow: hidden;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-section {
    background: linear-gradient(180deg, #ffffff 0%, #fcf5ea 100%);
    padding: 40px 0 90px;
}

.gallery-section .gallery-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.gallery-section .gallery-intro h2 {
    font-size: 32px;
    color: var(--maroon, #7a1541);
    margin-bottom: 10px;
}

.gallery-section .gallery-intro p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5f5f5f;
}

.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.news-section .news-grid img {
    width: 100%;
    border: 1px solid #eee;
    cursor: pointer;
}

.gallery-section .gallery-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    padding: 0;
}

.gallery-section .gallery-card:hover,
.gallery-section .gallery-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.gallery-section .gallery-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.35s ease;
    border-radius: 0px;
}

.gallery-section .gallery-card:hover img,
.gallery-section .gallery-card:focus-visible img {
    transform: scale(1.04);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.82);
    z-index: 1200;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.gallery-lightbox[hidden] {
    display: none;
    opacity: 0;
}

.gallery-lightbox-content {
    position: relative;
    width: min(92vw, 900px);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.gallery-lightbox[hidden] .gallery-lightbox-content {
    opacity: 0;
    transform: translateY(12px);
}

.gallery-lightbox-image {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #f7f2e8;
}

.gallery-lightbox-caption {
    padding: 16px 20px 20px;
}

.gallery-lightbox-caption h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--maroon, #7a1541);
}

.gallery-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #7a1541;
    font-size: 1.35rem;
    cursor: pointer;
}
.news-intro {
    padding: 20px 0;
}
.team-section {
    background-color: #ffffff;
    padding: 40px 0 100px;
}

.team-section .team-eyebrow {
    color: #ff4121;
    font-size: 20px;
    margin-bottom: 6px;
}

.team-section .team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.team-section .team-header h2 {
    font-size: 45px;
    font-weight: 400;
}

.team-section .team-header h2 .maroon {
    color: #7a1541;
}

.team-section .team-header h2 .orange {
    color: #ff4121;
}

.team-section .view-all-btn {
    background-color: #7a1541;
    color: #ffffff;
    border: none;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-section .team-card {
    background: linear-gradient(to bottom, #f4ead6 0%, #ffffff 60%);
    border-radius: 6px;
    padding-top: 70px;
    text-align: center;
    position: relative;
    padding-bottom: 60px;
    margin-top: 100px;
    border: 3px solid #d4d3cf;
    border-bottom: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.team-section .team-card .photo-wrap {
    width: 174px;
    height: 174px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e6d9c3;
    margin: -170px auto 50px;
}

.team-section .team-card .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-section .team-card h4 {
    font-size: 20px;
    color: #3f2123;
    font-weight: 700;
    line-height: 22px;
}

.team-section .team-card p {
    font-size: 18px;
    color: #6b6b6b;
}

@media (max-width: 900px) {
    .team-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-section .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-section .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    .team-section .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .team-section .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section .gallery-grid {
        grid-template-columns: 1fr;
    }

    .news-section .news-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section .gallery-intro h2 {
        font-size: 26px;
    }
}

/* ==========================================================
     SECTION: Contact Form
     ========================================================== */

.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #fcf5ea 100%);
    padding: 60px 0;
    min-height: 100vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header h2 {
    font-size: 28px;
    color: var(--maroon, #7a1541);
    margin: 0 0 10px;
}

.contact-form-header p {
    color: #666;
    margin: 0 0 30px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon, #7a1541);
    box-shadow: 0 0 0 3px rgba(122, 21, 65, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.captcha-group {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.captcha-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.captcha-question {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    border: 2px solid var(--orange, #f15a29);
    font-weight: 700;
    color: var(--orange, #f15a29);
    flex: 0 0 auto;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.captcha-question:hover {
    background: #fff9f5;
}

.captcha-container input {
    flex: 1;
}

.btn-submit {
    background: linear-gradient(
        135deg,
        var(--maroon, #7a1541) 0%,
        #5d0f34 100%
    );
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(122, 21, 65, 0.3);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert-error ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.alert-error li {
    margin: 5px 0;
}

.alert-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #3c3;
}

.map-container {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.map-container h3 {
    font-size: 18px;
    color: var(--maroon, #7a1541);
    margin: 0 0 15px;
    font-weight: 600;
}

.map-container iframe {
    width: 100%;
    min-height: 350px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--orange, #f15a29);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--maroon, #7a1541);
}

.info-card h3 {
    font-size: 24px;
    color: var(--maroon, #7a1541);
    margin: 0 0 5px;
}

.thank-you-title {
    font-size: 16px;
    color: var(--orange, #f15a29);
    font-weight: 700;
    margin: 0 0 20px;
}

.info-content {
    margin: 20px 0;
    color: #555;
    line-height: 1.8;
}

.info-content p {
    margin: 15px 0;
}

.team-contact {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.team-contact h4 {
    margin: 0 0 15px;
    color: var(--maroon, #7a1541);
    font-size: 16px;
}

.contact-person {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
}

.person-name {
    margin: 0;
    font-weight: 700;
    color: #333;
    font-size: 15px;
}

.person-title {
    margin: 5px 0 15px;
    color: #999;
    font-size: 13px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-item .icon {
    font-size: 16px;
}

.contact-item a {
    color: var(--orange, #f15a29);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--maroon, #7a1541);
}

.address-section {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
}

.address-section h4 {
    margin: 0 0 15px;
    color: var(--maroon, #7a1541);
    font-size: 16px;
}

.address-block {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.address-title {
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--maroon, #7a1541);
    font-size: 14px;
}

.address-text {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-highlight {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.info-highlight p {
    margin: 0;
    color: #666;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-column {
        padding: 30px;
    }

    .info-card {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-form-column,
    .info-card {
        padding: 20px;
    }

    .contact-form-header h2 {
        font-size: 22px;
    }

    .captcha-container {
        flex-direction: column;
    }

    .captcha-question {
        width: 100%;
        text-align: center;
    }

    .captcha-container input {
        width: 100%;
    }

    .map-card {
        border: 2px solid var(--orange, #f15a29);
    }

    .map-card iframe {
        min-height: 300px;
    }
}

/* ==========================================================
     SECTION: Footer Bottom Bar
     ========================================================== */

.footer-bottom {
    background-color: #2e0819;
    padding: 20px 0;
    color: #ffffff;
}

.footer-bottom .bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom .copyright {
    font-size: 13px;
}

.footer-bottom .bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom .bottom-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom .bottom-links a:hover {
    text-decoration: underline;
}
p.newsletter-message {
    font-size: 14px;
    padding-bottom: 10px;
    color: #a9ffa9;
    min-height: 20px;
}
/* ==========================================================
     SECTION: Breadcrumb
     ========================================================== */

.breadcrumb-section {
    padding: 20px 0 0;
}

.breadcrumb-section .breadcrumb-text {
    font-size: 14px;
    color: #555555;
}

.breadcrumb-section .breadcrumb-text a {
    color: #ff4121;
    text-decoration: none;
}

/* ==========================================================
     SECTION: Who We Are
     ========================================================== */

.who-we-are-section {
    padding: 40px 0 60px;
}

.who-we-are-section .who-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.who-we-are-section img {
    width: 100%;
    height: auto;
    display: block;
}

.who-we-are-section h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #620035;
}

.who-we-are-section h2 .accent {
    color: #ff4121;
    font-weight: 700;
}

.who-we-are-section p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 14px;
}

.who-we-are-section p.bold-note {
    color: #2b2b2b;
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
}

@media (max-width: 900px) {
    .who-we-are-section .who-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
     SECTION: How We Are Structured
     ========================================================== */

.how-structured-section {
    padding: 0 0 50px;
}

.how-structured-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 18px;
}

.how-structured-section h2 .accent {
    color: #ff4121;
    font-weight: 700;
}

.how-structured-section p {
    font-size: 15px;
    color: #555555;
    max-width: 1000px;
}

/* ==========================================================
     SECTION: Vision / Mission / Objectives Cards
     ========================================================== */

.cards-section {
    padding: 0 0 60px;
}

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

.cards-section .card {
    border: 1px solid #d9d9d9;
    border-radius: 25px;
    padding: 35px 30px;
}

.cards-section .card .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: -75px;
    background: #fff;
}

.cards-section .card .icon-circle svg {
    width: 36px;
    height: 36px;
    stroke: #4caf6e;
}

.cards-section .card h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #620035;
}

.cards-section .card h3 .accent {
    color: #ff4121;
    font-weight: 700;
}

.cards-section .card p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 16px;
}

.cards-section .card ul {
    list-style: none;
}

.cards-section .card ul li {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}

.cards-section .card ul li .arrow {
    color: #2b2b2b;
    flex-shrink: 0;
}

.cards-section .vision-content {
    text-align: left;
    margin-top: 40px;
}

.cards-section .vision-content .script {
    font-family: "Brush Script MT", cursive;
    font-size: 48px;
    color: #c2185b;
    line-height: 1;
}

.cards-section .vision-content .script.large {
    font-size: 56px;
}

.cards-section .vision-content .sub-italic {
    font-size: 16px;
    font-style: italic;
    color: #c2185b;
    margin: 2px 0 8px 30px;
}

.cards-section .vision-content .cardiac-care {
    font-family: "Arial Black", Arial, sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #c2185b;
    letter-spacing: 1px;
    margin-left: 30px;
}

@media (max-width: 900px) {
    .cards-section .cards-grid {
        grid-template-columns: 1fr;
    }
    .cards-section .card {
        min-height: auto;
    }
}

/* ==========================================================
     SECTION: We Serve / Why Choose Us
     ========================================================== */

.serve-section {
    padding: 0 0 60px;
}

.serve-section .serve-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: start;
}

.serve-section img {
    width: 100%;
    height: auto;
    display: block;
}

.serve-section h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #620035;
}

.serve-section h2 .accent {
    color: #ff4121;
    font-weight: 700;
}

.serve-section p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 14px;
}

.serve-section p strong {
    color: #2b2b2b;
}

.serve-section .why-choose {
    margin-top: 20px;
}

.serve-section .why-choose h2 {
    margin-bottom: 15px;
}

.serve-section .why-item {
    margin-bottom: 16px;
}

.serve-section .why-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.serve-section .why-item p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 0;
}

/* ==========================================================
     SECTION: Cardiac Camp
     ========================================================== */

.cardiac-camp-section {
    padding: 0px;
}

.cardiac-camp-section .photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 30px 0 0;
}

.cardiac-camp-section .photo-row img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.cardiac-camp-section h2 {
    font-size: 26px;
    font-weight: 400;
    margin: 30px 0 16px;
    color: #620035;
}

.cardiac-camp-section h2 .accent {
    color: #ff4121;
    font-weight: 700;
}

.cardiac-camp-section .intro-text {
    font-size: 16px;
    color: #555555;
    max-width: 1200px;
    margin-bottom: 14px;
}

.cardiac-camp-section .key-reasons-label {
    color: #620035;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cardiac-camp-section .reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.cardiac-camp-section .reason-card {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 20px 22px;
    margin-bottom: 15px;
}

.cardiac-camp-section .reason-card.full-width {
    grid-column: span 2;
}

.cardiac-camp-section .reason-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: -33px;
}

.cardiac-camp-section .reason-header .reason-content {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 0 5px;
}

.cardiac-camp-section .reason-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #7a1541;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cardiac-camp-section .reason-header h4 {
    font-size: 14px;
    font-weight: 700;
}

.cardiac-camp-section .reason-card p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 6px;
}

.cardiac-camp-section .reason-card ul {
    list-style: none;
    padding-left: 6px;
    margin-bottom: 6px;
}

.cardiac-camp-section .reason-card ul li {
    font-size: 16px;
    color: #555555;
}

@media (max-width: 900px) {
    .cardiac-camp-section .photo-row {
        grid-template-columns: 1fr;
    }
    .cardiac-camp-section .reasons-grid {
        grid-template-columns: 1fr;
    }
    .cardiac-camp-section .reason-card.full-width {
        grid-column: span 1;
    }
}

/* ==========================================================
     SECTION: Continuing Medical Education (CME)
     ========================================================== */

.cme-section {
    padding: 20px 0 20px;
}

.cme-section h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #620035;
}

.cme-section h2 .accent {
    color: #ff4121;
    font-weight: 700;
}

.cme-section .intro-text {
    font-size: 16px;
    color: #555555;
    max-width: 1200px;
    margin-bottom: 24px;
}

.cme-section .cme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cme-section .cme-item {
    background-color: #e6e8d6;
    border-radius: 4px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
}

.cme-section .cme-item.single {
    grid-column: span 1;
}

.cme-section .cme-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #7a1541;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .cme-section .cme-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
     SECTION: Free CPR & Basic Lifesaving Training Workshop
     ========================================================== */

.cpr-section {
    padding: 20px 0 20px;
}

.cpr-section h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #620035;
}

.cpr-section h2 .accent {
    color: #ff4121;
    font-weight: 700;
}

.cpr-section .photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 0 20px;
}

.cpr-section .photo-row img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.cpr-section .cpr-tagline {
    color: #2f6fb0;
    font-size: 16px;
    margin: 20px 0 16px;
}

.cpr-section .body-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 16px;
    max-width: 1200px;
}

.cpr-section .cpr-list-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    max-width: 1200px;
}

.cpr-section .cpr-list-item .arrow {
    color: #2b2b2b;
    flex-shrink: 0;
}

.cpr-section .cpr-list-item .content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.cpr-section .cpr-list-item .content p {
    font-size: 16spx;
    color: #555555;
    margin-bottom: 2px;
}

@media (max-width: 900px) {
    .cpr-section .photo-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
     SECTION: Awareness Program
     ========================================================== */

.awareness-section {
    padding: 20px 0 50px;
}

.awareness-section h2 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
}

.awareness-section h2 .accent {
    color: #ff4121;
    font-weight: 700;
}

.awareness-section .awareness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.awareness-section .awareness-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 14px;
}

.awareness-section .awareness-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.awareness-section .awareness-card p {
    font-size: 16px;
    color: #555555;
    font-style: italic;
}

.awareness-section .awareness-single {
    width: 33%;
    background: #eee;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.awareness-section .awareness-single img {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    background: #eee;
}

.awareness-section .awareness-single p {
    font-size: 16px;
    color: #555555;
}
.awareness-section .awareness-card {
    background: #eee;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}
.awareness-section .awareness-contnet {
    padding: 20px;
    background: #eee;
    min-height: 125px;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .awareness-section .awareness-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .serve-section .serve-grid {
        grid-template-columns: 1fr;
    }
}

.page-content.bg-white {
    background: #fff;
}
.page-banner {
    background: url("../images/about-top-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
}

.page-banner h1 {
    font-size: 45px;
}
.who-we-are-section .who-grid img,
.serve-section .serve-grid img {
    border-radius: 15px;
}

/* ==========================================================
     SECTION: Patient Eligibility
     ========================================================== */

.eligibility-section {
    padding: 30px 0 60px;
}

.eligibility-section .eligibility-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

.eligibility-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

.eligibility-section .page-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #620035;
}

.eligibility-section .page-title .accent {
    color: #ff4121;
    font-weight: 700;
}

.eligibility-section .intro-text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 22px;
    max-width: 750px;
}

.eligibility-section .step-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 22px;
}

.eligibility-section .step-heading.first {
    margin-top: 0;
}

.eligibility-section .numbered-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 6px;
}

.eligibility-section .numbered-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
}

.eligibility-section .lettered-list {
    list-style: none;
    padding-left: 24px;
    margin: 6px 0 10px 30px;
}

.eligibility-section .lettered-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 6px;
}
.eligibility-section.we-support-section {
    color: #444444;
}
ul.we-support-service li {
    list-style: disc;
    margin-bottom: 10px;
    margin-left: 25px;
}
.font-condensed {
    font-family: "Roboto Condensed", sans-serif;
}
.mt-20 {
    margin-top: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}

@media (max-width: 800px) {
    .eligibility-section .eligibility-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .team-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .container {
        padding-inline: 0px;
    }
    .team-section .team-grid {
        gap: 10px;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solutions-section h2 {
        font-size: 26px;
    }

    .banner-details h1 {
        font-size: 35px;
        line-height: 44px;
    }
    .banner-details {
        padding: 0 20px;
    }
    a.donate-btn {
        font-size: 22px;
    }
    .home-about-wrapper {
        flex-direction: column;
    }
    .home-about-left {
        width: 100%;
    }
    .home-about-right {
        width: 100%;
    }

    .donations-section,
    .medical-care-section .grid {
        grid-template-columns: 1fr;
    }

    section.banner.swiper.mySwiper .swiper-button-next {
        width: 20px;
        right: 10px;
    }

    section.banner.swiper.mySwiper .swiper-button-prev {
        width: 20px;
        margin-left: 10px;
    }
    .cme-section .cme-item.single,
    .awareness-section .awareness-single {
        width: 100%;
    }
}

/* ==========================================================
     SECTION: Modern Donation Page
     ========================================================== */

.donation-section {
    padding: 60px 0;
}

.donation-intro {
    text-align: center;
    margin-bottom: 50px;
}

.donation-intro h2 {
    font-size: 36px;
    color: var(--maroon, #7a1541);
    margin-bottom: 15px;
    font-weight: 600;
}

.donation-intro p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.badge .icon {
    font-size: 24px;
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.step-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.step-number {
    background: linear-gradient(135deg, #7a1541, #5d0f34);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-header h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #333;
}

.step-header p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

.currency-selector, .preset-amounts, .custom-amount {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.amount-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--maroon, #7a1541);
    color: #fff;
    border-color: var(--maroon, #7a1541);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.payment-method-card {
    position: relative;
    cursor: pointer;
}

.payment-method-card input {
    display: none;
}

.method-content {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.payment-method-card input:checked ~ .method-content {
    background: #f0f8ff;
    border-color: var(--maroon, #7a1541);
}

.method-icon {
    font-size: 32px;
}

.method-info h5 {
    margin: 0 0 3px;
    font-size: 14px;
}

.method-info p {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.donation-summary {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--maroon, #7a1541);
        margin-top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.donation-section .btn-success {
    background: linear-gradient(135deg, #22a760, #17824a);
    border: 1px solid #17824a;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.25s ease;
            padding: 10px 25px;
    border-radius: 25px;
    margin-left: 10px;
    cursor: pointer;
}

.donation-section .btn-success:hover,
.donation-section .btn-success:focus,
.donation-section .btn-success:active {
    background: linear-gradient(135deg, #1d9354, #136c3e);
    border-color: #136c3e;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(23, 130, 74, 0.28);
}

/* Step 2: Your Information alignment */
.donation-section .form-step[data-step="2"] .row.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.donation-section .form-step[data-step="2"] .col-12,
.donation-section .form-step[data-step="2"] .col-md-6 {
    display: flex;
    flex-direction: column;
}

.donation-section .form-step[data-step="2"] .form-label {
    margin-bottom: 8px;
    color: #3f3f3f;
    line-height: 1.25;
        margin-top: 10px;
    font-weight: 600;
}

.donation-section .form-step[data-step="2"] .form-control,
.donation-section .form-step[data-step="2"] .form-select {
    margin-bottom: 0;
    min-height: 46px;
    padding: 10px 14px;
}

.donation-section .form-step[data-step="2"] small.text-muted {
    margin-top: 6px;
    line-height: 1.3;
}

/* Modern Donation Form Progress */

.form-progress-top {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.progress-step:not(:last-child) {
    flex: 0 0 auto;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #7a1541, #5d0f34);
    color: #fff;
    border-color: #7a1541;
    box-shadow: 0 4px 12px rgba(122, 21, 65, 0.3);
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: #7a1541;
    font-weight: 700;
}

.progress-step.completed .step-label {
    color: #28a745;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 15px;
    position: relative;
    margin-top: 25px;
}

.progress-line.active {
    background: linear-gradient(90deg, #7a1541, #5d0f34);
    box-shadow: 0 2px 8px rgba(122, 21, 65, 0.2);
}

@media (max-width: 600px) {
    .progress-steps {
        padding: 15px 0;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .progress-step.active .step-circle {
        transform: scale(1.05);
    }

    .step-label {
        font-size: 11px;
    }

    .progress-line {
        margin: 0 8px;
        margin-top: 20px;
    }
}

.donation-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    color: var(--maroon, #7a1541);
    margin: 0 0 15px;
    font-size: 16px;
}

.impact-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.impact-item:last-child {
    border-bottom: none;
}

.impact-item strong {
    color: var(--maroon, #7a1541);
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.impact-item p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

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

.benefits-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 13px;
    color: #666;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--maroon, #7a1541);
    font-weight: bold;
}

.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item strong {
    display: block;
    color: #333;
    font-size: 13px;
    margin-bottom: 5px;
}

.faq-item p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

@media (max-width: 900px) {
    .donation-wrapper {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 20px;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .donation-intro h2 {
        font-size: 24px;
    }

    .trust-badges {
        gap: 15px;
    }

    .badge {
        font-size: 12px;
    }

    .step-header {
        gap: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
