:root {
    --bg: #f7f0e7;
    --ink: #241b16;
    --muted: #6b5a4a;
    --accent: #c86b3c;
    --accent-dark: #9a4f2e;
    --gold: #f2c55d;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, #fff4e2, var(--bg));
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100vh;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.header__grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: stretch;
    background: #fff8ed;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: #fff8ed;
}

.header__right {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.header__top {
    background: #fff8ed;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__top-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 3% 12px;
    gap: 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    max-width: 360px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.logo--compact img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.header__top-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 18px;
    align-items: center;
    width: 100%;
}

.register-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #3b241c;
    text-transform: capitalize;
}

.register-link__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #f2c55d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.register-link__text {
    font-family: "Caveat", cursive;
    font-size: 24px;
    letter-spacing: 0.3px;
}

.header__info-block {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.header__info-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(59, 36, 28, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3b241c;
}

.header__info-icon svg {
    width: 18px;
    height: 18px;
}

.header__info-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.header__info-text {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.header__info-value {
    font-size: 13px;
    color: #3b241c;
    font-weight: 600;
}

.header__nav {
    background: #3b241c;
}

.header__nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3%;
    gap: 18px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 247, 234, 0.55);
    background: transparent;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff7ea;
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav {
    display: flex;
    gap: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff7ea;
    flex-wrap: wrap;
}

.nav a {
    padding: 16px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s ease;
    white-space: nowrap;
}

.nav a:hover {
    border-bottom-color: var(--gold);
}

.nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown__toggle::after {
    content: "▾";
    margin-left: 6px;
    font-size: 10px;
}

.dropdown__menu {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    background: #fff;
    color: #3b241c;
    min-width: 210px;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    padding: 8px 0;
    display: none;
    z-index: 20;
}

.dropdown__menu a {
    display: block;
    padding: 10px 14px;
    color: #3b241c;
    border-bottom: none;
    font-weight: 600;
}

.dropdown__menu a:hover {
    background: #f8f1e6;
}

.dropdown:hover .dropdown__menu {
    display: block;
}

.header__cta {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--accent-dark);
    border: 1px solid var(--accent);
}

.btn--login {
    background: var(--gold);
    color: #2b1a12;
    border-radius: 6px;
    padding: 14px 34px;
    font-weight: 800;
}

.btn--login:hover {
    background: #e3b454;
}

.hero {
    position: relative;
    padding: 80px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(200, 107, 60, 0.18), rgba(242, 197, 93, 0.25));
    z-index: 0;
}

.hero__wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    padding: 0 4%;
}

.hero__content h1,
.hero__content h2 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero__content h1 span,
.hero__content h2 span {
    color: var(--accent);
}

.hero__sub {
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 520px;
}

.eyebrow {
    font-family: "Caveat", cursive;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__media {
    border-radius: 24px;
    background: #fff3e1;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero--alt {
    background: var(--white);
}

.about {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 32px;
}

.section-title span {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
}

.section-title h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-top: 8px;
}

.section-title.center {
    text-align: center;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.about__card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.info {
    background: var(--accent-dark);
    color: var(--white);
    padding: 40px 0;
}

.info__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gallery {
    padding: 80px 0;
}

.home-media-showcase {
    padding: 56px 0 28px;
    background: #4a2c24;
}

.home-media-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.home-media-card {
    min-height: 240px;
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff7e9;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.home-media-card__frame {
    position: relative;
    width: 100%;
    padding-top: 62%;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
}

.home-media-card__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-media-card__label {
    margin: 0 0 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.home-media-card--stats,
.home-media-card--cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-media-card--stats {
    background: rgba(255, 255, 255, 0.04);
}

.home-media-card__count {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
}

.home-media-card__count-icon {
    color: var(--gold);
    font-size: 34px;
}

.home-media-card--cta h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.2;
}

.home-media-card--cta p {
    margin: 0 0 18px;
    color: #f5dcc8;
    line-height: 1.7;
}

.home-media-card__btn {
    align-self: flex-start;
}

.home-media-card__btn--alt {
    background: #78b9f3;
}

.home-video-wall {
    padding: 56px 0 40px;
    background: #f8f5ef;
}

.home-video-wall__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-video-wall__card {
    position: relative;
    padding-top: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.home-video-wall__card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-membership-info {
    padding: 34px 0 72px;
    background: #ffffff;
}

.home-membership-info__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 36px;
    align-items: start;
}

.home-membership-info__content {
    padding: 24px 0;
}

.home-membership-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 14px;
}

.home-membership-info__list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.8;
    color: #2c241d;
    font-weight: 600;
}

.home-membership-info__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-size: 20px;
    line-height: 1.3;
}

.home-membership-info__media {
    display: flex;
    justify-content: center;
}

.home-membership-info__poster {
    position: relative;
    width: min(100%, 290px);
    border: 1px solid rgba(74, 44, 36, 0.18);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.home-membership-info__poster img {
    display: block;
    width: 100%;
    height: auto;
}

.home-membership-info__poster-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(30, 30, 30, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.home-membership-info__btn {
    background: #78b9f3;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.gallery__grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery__grid img {
    border-radius: 16px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery__cta {
    margin-top: 24px;
    text-align: center;
}

.gallery-page {
    padding: 56px 0 80px;
    background: #fff;
}

.gallery-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gallery-page__item {
    border: 0;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-page__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.gallery-page__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-page__empty {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: #fff8e8;
    color: #5a4638;
    font-weight: 700;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
}

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

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 920px);
    max-height: 88vh;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__dialog img {
    display: block;
    width: 100%;
    max-height: calc(88vh - 36px);
    object-fit: contain;
    border-radius: 12px;
}

.gallery-lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.member-list-page {
    padding: 52px 0 80px;
    background: #fff;
}

.member-list-page__filters {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.2fr auto auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.member-list-page__filters select,
.member-list-page__filters input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8dee6;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
}

.member-list-page__filter-actions {
    display: flex;
    gap: 10px;
}

.member-list-page__reset {
    background: #7a8a9a;
}

.member-list-page__table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid #ece4d9;
}

.member-list-page__table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
    table-layout: fixed;
}

.member-list-page__table th,
.member-list-page__table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eee6dc;
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    white-space: normal;
}

.member-list-page__table th {
    background: #fbf4e8;
    color: #2f241e;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.member-list-page__table td {
    color: #44352d;
    font-size: 14px;
    font-weight: 600;
}

.member-list-page__table th:nth-child(1),
.member-list-page__table td:nth-child(1) {
    width: 64px;
}

.member-list-page__table th:nth-child(2),
.member-list-page__table td:nth-child(2) {
    width: 98px;
}

.member-list-page__table th:nth-child(3),
.member-list-page__table td:nth-child(3) {
    width: 120px;
}

.member-list-page__table th:nth-child(4),
.member-list-page__table td:nth-child(4) {
    width: 58px;
}

.member-list-page__table th:nth-child(5),
.member-list-page__table td:nth-child(5) {
    width: 120px;
}

.member-list-page__table th:nth-child(6),
.member-list-page__table td:nth-child(6) {
    width: 110px;
}

.member-list-page__table th:nth-child(7),
.member-list-page__table td:nth-child(7) {
    width: 180px;
}

.member-list-page__table th:nth-child(8),
.member-list-page__table td:nth-child(8) {
    width: 110px;
}

.member-list-page__table th:nth-child(9),
.member-list-page__table td:nth-child(9) {
    width: 110px;
}

.member-list-page__table th:nth-child(10),
.member-list-page__table td:nth-child(10) {
    width: 90px;
}

.member-list-page__table th:nth-child(11),
.member-list-page__table td:nth-child(11) {
    width: 170px;
}

.member-list-page__table th:nth-child(12),
.member-list-page__table td:nth-child(12) {
    width: 120px;
}

.member-list-page__table--annual {
    min-width: 900px;
}

.member-list-page__status {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.member-list-page__status.is-active {
    background: #dcfce7;
    color: #166534;
}

.member-list-page__status.is-pending {
    background: #fef3c7;
    color: #92400e;
}

.member-list-page__empty {
    text-align: center;
    padding: 26px 16px;
}

.member-list-page__pagination {
    margin-top: 22px;
}

.member-list-page__pagination nav {
    display: flex;
    justify-content: center;
}

.member-list-page__pagination svg {
    width: 16px;
    height: 16px;
}

.member-list-page__pagination .flex.justify-between {
    display: none;
}

.member-list-page__pagination .relative.z-0.inline-flex {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.member-list-page__pagination .relative.inline-flex.items-center,
.member-list-page__pagination span[aria-current="page"] span,
.member-list-page__pagination a {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #d9d2c6;
    background: #fff;
    color: #2f241e;
    text-decoration: none;
    font-weight: 700;
    box-shadow: none;
}

.member-list-page__pagination span[aria-current="page"] span {
    background: #f2c55d;
    border-color: #f2c55d;
    color: #2c2017;
}

.sahyog-alert-home {
    padding: 28px 0 10px;
}

.sahyog-alert-wrap {
    width: min(980px, 94%);
}

.sahyog-alert-card {
    border: 2px solid #fbd45a;
    border-radius: 16px;
    background: #fffaf1;
    overflow: hidden;
}

.sahyog-alert-card__head {
    background: #fbd45a;
    color: #283734;
    text-align: center;
    padding: 14px 16px;
}

.sahyog-alert-card__head h2 {
    margin: 0;
    font-size: clamp(24px, 3.2vw, 42px);
    font-weight: 900;
}

.sahyog-alert-card__body {
    padding: 18px;
}

.sahyog-alert-box {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-left: 4px solid #f59e0b;
}

.sahyog-alert-box h3 {
    margin: 0 0 8px;
}

.sahyog-alert-box p {
    margin: 0 0 6px;
    line-height: 1.75;
}

.sahyog-alert-box--yellow {
    background: #fff3cd;
}

.sahyog-alert-box--blue {
    background: #e6f7ff;
    border-left-color: #1890ff;
}

.sahyog-pool-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 14px;
}

.sahyog-pool-list__col {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 12px;
}

.sahyog-pool-list__col h5 {
    margin: 0 0 6px;
    color: #283734;
    font-size: 20px;
    line-height: 1.45;
}

.sahyog-entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.sahyog-entry-card {
    background: #e6f7ff;
    border-left: 4px solid #1890ff;
    border-radius: 10px;
    padding: 12px 14px;
}

.sahyog-entry-card h3 {
    color: #0056b3;
    margin: 0 0 8px;
}

.sahyog-entry-card h4 {
    color: #28a745;
    margin: 8px 0;
}

.sahyog-entry-card p {
    margin: 0 0 6px;
    line-height: 1.6;
}

.sahyog-entry-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 8px;
}

.sahyog-sign {
    text-align: right;
    font-weight: 800;
    line-height: 1.8;
}

.cta {
    padding: 60px 0;
    background: linear-gradient(120deg, #fff, #f2e6d3);
}

.cta__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer {
    background: #0f0c0b;
    color: #f8ead9;
    padding: 70px 0 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(200px, 0.9fr) minmax(260px, 1fr);
    gap: 40px;
    align-items: start;
}

.footer__grid--wide {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.footer__grid a {
    display: block;
    margin: 10px 0;
    color: #f8ead9;
    opacity: 0.9;
}

.footer__logo {
    width: 130px;
    margin-bottom: 18px;
}

.footer__about p {
    line-height: 1.8;
    margin: 10px 0 22px;
}

.footer__btn {
    background: #f2c55d;
    color: #2b1a12;
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 28px;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #fff;
}

.footer__contact p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 10px 0;
}

.footer__contact-item span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f2c55d;
    color: #2b1a12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer__bottom {
    border-top: 1px solid rgba(248, 234, 217, 0.12);
    margin-top: 36px;
    padding-top: 16px;
    text-align: center;
    font-size: 13px;
    color: rgba(248, 234, 217, 0.7);
}

@media (max-width: 980px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .header__grid {
        grid-template-columns: 1fr;
    }

    .header__logo {
        justify-content: flex-start;
        padding-left: 4%;
    }

    .header__top-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 4%;
    }

    .header__top-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .header__nav-wrap {
        align-items: center;
        justify-content: space-between;
        padding: 10px 4%;
    }

    .header__top .header__info-block {
        display: none;
    }

    .register-link {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 10px 0 0;
    }

    .header[data-header].is-open .nav {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(255, 247, 234, 0.12);
    }

    .nav__item {
        width: 100%;
        display: block;
    }

    .dropdown__menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 100%;
        border-radius: 8px;
        box-shadow: none;
        margin: 6px 0;
        display: none;
    }

    .dropdown:hover .dropdown__menu {
        display: none;
    }

    .dropdown.is-open .dropdown__menu {
        display: block;
    }

    .btn--login {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 12px 20px;
    }

    .header[data-header].is-open .btn--login {
        display: inline-flex;
    }

    .header[data-header].is-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header[data-header].is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header[data-header].is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .info__wrap,
    .cta__wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .header__top-grid {
        grid-template-columns: 1fr;
    }

    .btn--login {
        width: 100%;
        text-align: center;
    }
}
.main-slider {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(242, 197, 93, 0.08), transparent 22%),
        linear-gradient(90deg, #16231f 0%, #182924 46%, #111917 100%);
}

.main-slider__track {
    position: relative;
    min-height: 620px;
}

.main-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    padding: 0;
}

.main-slider__slide.is-active {
    opacity: 1;
    position: relative;
}

.main-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 17, 15, 0.25) 0%, rgba(10, 17, 15, 0.1) 100%);
}

.main-slider__panel {
    position: relative;
    z-index: 1;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 47%) minmax(0, 53%);
    align-items: stretch;
    gap: 0;
}

.main-slider__eyebrow {
    display: inline-block;
    margin-top: 28px;
    font-size: 14px;
    font-weight: 700;
    color: #f2c55d;
}

.main-slider__content {
    color: #fef6e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 7.5% 88px;
    max-width: 100%;
}

.main-slider__content h1 {
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.12;
    margin: 0 0 18px;
    max-width: 560px;
}

.main-slider__content h1 span {
    color: var(--gold);
    display: inline;
}

.main-slider__description {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 38px);
    font-weight: 800;
    line-height: 1.2;
}

.main-slider__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.main-slider__media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        #dfe5e5;
}

.main-slider__image-wrap {
    position: relative;
    width: 100%;
    min-height: 620px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.main-slider__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    transform: scale(1);
    opacity: 0.72;
    transition: transform 6.5s ease, opacity 0.9s ease;
}

.main-slider__slide.is-active .main-slider__image-wrap img {
    opacity: 1;
    transform: scale(1.06);
}

.main-slider__slide.is-active .main-slider__content {
    animation: mainSliderContentFade 0.9s ease;
}

.main-slider__slide.is-active .main-slider__image-wrap {
    animation: mainSliderImageFade 1s ease;
}

.main-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(17, 23, 21, 0.5);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 2;
}

.main-slider__nav--prev {
    left: 24px;
}

.main-slider__nav--next {
    left: 76px;
}

.main-slider__dots {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.main-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
}

.main-slider__dot.is-active {
    background: var(--gold);
}

@media (max-width: 768px) {
    .main-slider__track {
        min-height: 720px;
    }

    .main-slider__panel {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .main-slider__content {
        padding: 54px 6% 24px;
        order: 2;
    }

    .main-slider__image-wrap {
        min-height: 320px;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-slider__image-wrap img {
        padding: 12px;
        transform: scale(1);
    }

    .main-slider__slide.is-active .main-slider__image-wrap img {
        transform: scale(1.03);
    }

    .main-slider__description {
        font-size: clamp(22px, 7vw, 34px);
    }

    .main-slider__nav {
        top: auto;
        bottom: 24px;
        transform: none;
    }
}
.main-slider__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    background: rgba(242, 197, 93, 0.6);
    animation: float 6s ease-in-out infinite;
}

.main-slider__shape--one {
    width: 140px;
    height: 140px;
    left: -36px;
    bottom: 92px;
    animation-delay: 0s;
}

.main-slider__shape--two {
    width: 90px;
    height: 90px;
    left: 18%;
    top: 34px;
    background: rgba(200, 107, 60, 0.6);
    animation-delay: 1.2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

@keyframes mainSliderImageFade {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.page-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background: url("../img/nimyawali-bg.webp") center/cover no-repeat;
    filter: grayscale(15%);
    opacity: 0.95;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero__content h1 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
}

.sahyog-page__total {
    text-align: center;
    color: #1f7a28;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.member-list-page__table--sahyog {
    min-width: 980px;
}

.member-list-page__table--account-holders {
    min-width: 860px;
}

.sahyog-page__detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: #1f8b4c;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.sahyog-page__detail-btn:hover {
    background: #166534;
}

.sahyog-alerts-page {
    padding: 48px 0 80px;
    background: #fff;
}

.sahyog-alerts-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.sahyog-alerts-page__card {
    padding: 28px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e8dfd1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sahyog-alerts-page__card h3 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #2d211b;
}

.sahyog-alerts-page__card p {
    margin: 0 0 16px;
    color: #6c5c4d;
    line-height: 1.7;
    min-height: 48px;
}

.page-content {
    padding: 50px 0;
}

.form {
    margin-top: 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.col-md-6,
.col-md-12,
.col-12,
.col-12.col-md-6 {
    padding-left: 8px;
    padding-right: 8px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-12,
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.mb-3 {
    margin-bottom: 16px;
}

.form-label {
    font-weight: 600;
    color: #2b1a12;
    display: block;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(59, 36, 28, 0.2);
    font-family: inherit;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
}

.btn.btn-outline-secondary {
    background: #fff;
    border: 1px solid rgba(59, 36, 28, 0.2);
    padding: 10px 14px;
    border-radius: 8px;
}

.reqstar {
    color: red;
}

@media (max-width: 900px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.register-pay {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 24px 0 32px;
    align-items: center;
}

.register-pay__card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-pay__card img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    margin: 0 auto;
}

.register-pay__card p {
    margin-top: 10px;
    font-weight: 600;
    color: #3b241c;
}

.form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 16px;
}

.form__grid label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    color: #2b1a12;
}

.form__grid input,
.form__grid select,
.form__grid textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(59, 36, 28, 0.2);
    font-family: inherit;
}

.form__grid textarea {
    resize: vertical;
}

.form__full {
    grid-column: 1 / -1;
}

.form__checkbox {
    margin: 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form__radio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 8px;
}

.form__radio label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.page-content .container {
    max-width: 980px;
}

.page-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 6px;
    color: #2d1b12;
}

.page-content h3 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: clamp(20px, 2.4vw, 26px);
    color: #3b241c;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a2a22;
    margin: 8px 0 14px;
}

.page-content strong {
    color: #1f1511;
}

.page-content .rule-list {
    margin: 8px 0 18px;
    padding-left: 18px;
}

.page-content .rule-list li {
    margin-bottom: 8px;
}
.page-hero__bg--contact {
    background: url("../img/slider-2.svg") center/cover no-repeat;
}

.page-hero__bg--about {
    background: url("../img/nimyawali-bg.webp") center/cover no-repeat;
}

.page-hero--about {
    min-height: 320px;
}

.contact-page {
    max-width: 980px;
}

.contact-form {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-weight: 600;
}

.contact-alert--success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.contact-alert--error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.input-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #b91c1c;
    font-weight: 600;
}

.is-invalid {
    border-color: #ef4444 !important;
}

.beti-vivah-aavedan__card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.beti-vivah-aavedan__alert {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cards {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.contact-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(59, 36, 28, 0.14);
}

.contact-card h4 {
    margin-bottom: 8px;
    color: #2d1b12;
}

.contact-card p {
    margin: 0 0 6px;
    line-height: 1.6;
}

.team-core {
    padding: 70px 0 30px;
}

.team-core__tagline {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #1f1511 !important;
    letter-spacing: 0.2px;
}

.team-core__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.team-core__card {
    text-align: center;
    padding: 12px 10px;
    border-radius: 14px;
    transition: transform 0.25s ease;
}

.team-core__image {
    width: 170px;
    height: 170px;
    margin: 0 auto 12px;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    background: #f3ddc3;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.team-core__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #3b241c;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.team-core__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.team-core__content h4 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.team-core__content p {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.team-core__card:hover .team-core__image {
    background: #3b241c;
    box-shadow: 0 0 0 6px rgba(59, 36, 28, 0.2);
}

.team-core__card:hover .team-core__image::after {
    opacity: 0.28;
}

.team-core__card:hover .team-core__image img {
    transform: scale(1.05);
}

.team-core__card:hover {
    transform: translateY(-4px);
}

.team-slider {
    padding: 24px 0 68px;
}

.team-slider__viewport {
    overflow: hidden;
    scrollbar-width: none;
}

.team-slider__viewport::-webkit-scrollbar {
    display: none;
}

.team-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.team-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #efe7d8;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.team-slider__dot.is-active {
    background: #3b241c;
    transform: scale(1.45);
}

.team-slider__track {
    display: flex;
    gap: 22px;
    width: max-content;
}

.team-slider__card {
    flex: 0 0 270px;
    max-width: 270px;
    background: transparent;
    transition: transform 0.25s ease;
}

.team-slider__card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.team-slider__card-content {
    background: #253a38;
    color: #fff;
    padding: 12px 10px;
    border-radius: 0 0 16px 16px;
    text-align: center;
    transition: background 0.25s ease;
}

.team-slider__card-content h4 {
    margin: 0 0 4px;
    font-size: 17px;
}

.team-slider__card-content p {
    margin: 0;
    color: #fff;
    line-height: 1.3;
    font-size: 15px;
}

.team-slider__card:hover {
    transform: translateY(-5px);
}

.team-slider__card:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.team-slider__card:hover .team-slider__card-content {
    background: #3b241c;
}

.about-home-highlight {
    padding: 28px 0 50px;
    background: #f9f4e8;
    position: relative;
    overflow: hidden;
}

.about-home-highlight::before {
    content: "";
    position: absolute;
    left: 6%;
    top: 22%;
    width: 28px;
    height: 28px;
    border: 3px solid #2b7a6a;
    border-radius: 50%;
    opacity: 0.55;
}

.about-home-highlight::after {
    content: "";
    position: absolute;
    left: 46%;
    top: 44%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f3d27b;
    opacity: 0.7;
}

.about-home-highlight__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    gap: 30px;
    align-items: center;
}

.about-home-highlight__media {
    position: relative;
    overflow: visible;
    max-width: 520px;
    background: transparent;
}

.about-home-highlight__frame {
    position: relative;
    border-radius: 8px 8px 120px 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.about-home-highlight__frame img {
    width: 100%;
    display: block;
    animation: media-slide-in 0.9s ease-out both;
    object-fit: cover;
    height: 420px;
}

.about-home-highlight__tag {
    position: absolute;
    top: 14px;
    left: 18px;
    right: 18px;
    margin: 0 auto;
    padding: 8px 14px;
    background: #3b241c;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border-radius: 14px;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.about-home-highlight__logo {
    position: absolute;
    right: 8px;
    bottom: -10px;
    width: 112px !important;
    height: 112px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    z-index: 2;
}

@keyframes media-slide-in {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-home-highlight__content h3 {
    margin: 0 0 14px;
    font-size: clamp(26px, 3.5vw, 48px);
    line-height: 1.15;
    color: #243634;
}

.about-home-highlight__content ul {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.about-home-highlight__content li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5a58;
    margin-bottom: 4px;
}

.about-home-highlight__content p {
    margin: 0 0 18px;
    color: #526260;
    line-height: 1.9;
}

.about-home-highlight__btn {
    background: #f2c55d;
    color: #2b1a12;
    border-radius: 999px;
    padding: 12px 30px;
    font-weight: 800;
}

.about-page {
    padding: 56px 0 26px;
    background: #f9f4e8;
}

.about-page__top {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    gap: 34px;
    align-items: start;
}

.about-page__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

.about-page__logo {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 126px !important;
    height: 126px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.about-page__content h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.6vw, 56px);
    line-height: 1.1;
    color: #243634;
}

.about-page__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.about-page__content li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.8;
    color: #566664;
}

.about-page__content p {
    margin: 0;
    color: #566664;
    line-height: 1.9;
    font-size: 15px;
}

.about-donate {
    padding: 36px 0 78px;
    background-color: #f3e1c4;
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0 26px, transparent 26px),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0 44px, transparent 44px);
    background-size: 14px 14px, 140px 140px, 140px 140px;
    background-position: 0 0, 0 0, 70px 70px;
    position: relative;
    overflow: hidden;
}

.about-donate::before {
    content: "";
    position: absolute;
    left: -130px;
    top: 50%;
    transform: translateY(-50%);
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background:
        conic-gradient(from 90deg, #8a3f1e 0 11deg, transparent 11deg 18deg, #8a3f1e 18deg 29deg, transparent 29deg 36deg, #8a3f1e 36deg 47deg, transparent 47deg 54deg, #8a3f1e 54deg 65deg, transparent 65deg 72deg, #8a3f1e 72deg 83deg, transparent 83deg 90deg, #8a3f1e 90deg 101deg, transparent 101deg 108deg, #8a3f1e 108deg 119deg, transparent 119deg 126deg, #8a3f1e 126deg 137deg, transparent 137deg 144deg, #8a3f1e 144deg 155deg, transparent 155deg 162deg, #8a3f1e 162deg 173deg, transparent 173deg 180deg, #8a3f1e 180deg 191deg, transparent 191deg 198deg, #8a3f1e 198deg 209deg, transparent 209deg 216deg, #8a3f1e 216deg 227deg, transparent 227deg 234deg, #8a3f1e 234deg 245deg, transparent 245deg 252deg, #8a3f1e 252deg 263deg, transparent 263deg 270deg, #8a3f1e 270deg 281deg, transparent 281deg 288deg, #8a3f1e 288deg 299deg, transparent 299deg 306deg, #8a3f1e 306deg 317deg, transparent 317deg 324deg, #8a3f1e 324deg 335deg, transparent 335deg 342deg, #8a3f1e 342deg 353deg, transparent 353deg 360deg);
    box-shadow: inset 0 0 0 8px #f3e1c4;
    opacity: 0.95;
}

.about-donate__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.18fr);
    gap: 42px;
    position: relative;
    z-index: 1;
}

.about-donate__col h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 3.2vw, 56px);
    color: #243634;
    line-height: 1.15;
    font-weight: 800;
}

.about-donate__col p {
    margin: 0 0 10px;
    color: #233634;
    line-height: 1.78;
    font-weight: 600;
    font-size: 13px;
}

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

.about-donate__points li {
    margin-bottom: 10px;
    color: #233634;
    line-height: 1.76;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    padding-left: 16px;
}

.about-donate__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: #f2c55d;
    box-shadow: 1px 1px 0 #6c4a1e;
}

.about-help {
    background: linear-gradient(90deg, #4a2a21, #3c211a);
    padding: 56px 0;
}

.about-help__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 26px 36px;
}

.about-help__item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: start;
}

.about-help__icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    border: 2px solid #f2c55d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    background: rgba(242, 197, 93, 0.12);
}

.about-help__content h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
}

.about-help__content p {
    margin: 0 0 8px;
    color: #e9d8c8;
    line-height: 1.75;
    font-size: 18px;
}

.become-volunteer-one {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.become-volunteer-one__bg-box {
    position: absolute;
    inset: 0;
}

.become-volunteer-one__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(10%);
    background-attachment: fixed;
}

.become-volunteer-one__bg-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 26, 20, 0.82);
}

.become-volunteer-one__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 860px;
    margin: 0 auto;
}

.become-volunteer-one__title {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.35;
    margin-bottom: 12px;
    font-weight: 800;
}

.events-one__title {
    margin: 4px 0;
    font-size: clamp(20px, 2.2vw, 29px);
    color: #fff;
}

.become-volunteer-one__note {
    margin: 16px auto 20px;
    max-width: 760px;
    line-height: 1.75;
    font-size: 16px;
    color: #f6e9d7;
    font-weight: 700;
}

.become-volunteer-one__qr {
    width: 200px;
    max-width: 80%;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}

.become-volunteer-one__btn {
    background: #f2c55d;
    color: #2b1a12;
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 30px;
}

.faq-one {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: #f8f1e6;
}

.faq-one-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    background-attachment: fixed;
    z-index: 0;
}

.faq-one::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 241, 230, 0.78);
    z-index: 1;
}

.faq-one-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: min(460px, 62vw);
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.55;
    z-index: 2;
}

.faq-one .container {
    position: relative;
    z-index: 3;
}

.text-left {
    text-align: left;
}

.faq-one .row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.col-xl-5,
.col-lg-5 {
    flex: 0 0 42%;
    max-width: 42%;
}

.col-xl-7,
.col-lg-7 {
    flex: 1 1 58%;
    max-width: 58%;
    display: flex;
    justify-content: flex-end;
}

.faq-one__left {
    max-width: 420px;
}

.faq-one__right {
    margin-left: auto;
    max-width: 620px;
    width: 100%;
}

.make-donation {
    background: #3b241c;
    color: #fff;
    padding: 40px 0;
}

.make-donation__inner {
    background: transparent;
}

.make-donation .row {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.make-donation__media {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    max-width: 520px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.make-donation__media iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: 0;
}

.make-donation__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.make-donation__title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.make-donation__count {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
}

.make-donation__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #1f2f2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.make-donation__btn {
    align-self: center;
    background: #f2c55d;
    color: #2b1a12;
}

@media (max-width: 980px) {
    .make-donation .row {
        flex-direction: column;
        align-items: flex-start;
    }

    .make-donation__media {
        max-width: 100%;
    }

    .make-donation__media iframe {
        height: 220px;
    }
}

.section-title__title {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: #2f3a35;
}

.faq-one__text-1 {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #6b5a4a;
    margin: 8px 0;
    text-transform: uppercase;
    font-weight: 700;
}

.faq-one__left h4 {
    font-size: 13px;
}

.faq-one__left p img {
    border-radius: 10px;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.faq-one__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #f2c55d;
    color: #2b1a12;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.thm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #f2c55d;
    color: #2b1a12;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.accrodion-grp {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.accrodion {
    background: #fff;
    border: 1px solid #e7dccb;
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.accrodion-title p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: #2c2a26;
}

.contact-map-section {
    position: relative;
    margin-top: 26px;
    background: #e8e4dc;
    padding-top: 62px;
}

.contact-map__strip-wrap {
    width: min(1140px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-map__strip {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    gap: 22px;
    align-items: center;
}

.contact-map__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-map__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #f2c55d;
    color: #2b1a12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: 0 0 44px;
    line-height: 1;
}

.contact-map__icon svg {
    display: block;
}

.contact-map__label {
    margin: 0 0 4px;
    font-size: 13px;
    color: #7a6b5e;
    font-weight: 600;
}

.contact-map__value {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.5;
    color: #2f2f2f;
    font-weight: 700;
}

.contact-map__frame {
    width: 100%;
    height: 330px;
    border: none;
    margin-top: -34px;
    filter: sepia(0.28) saturate(0.55) contrast(0.95);
}

@media (max-width: 980px) {
    .member-list-page__filters {
        grid-template-columns: 1fr 1fr;
    }

    .member-list-page__table {
        min-width: 1040px;
    }

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

    .home-media-showcase__grid,
    .home-membership-info__grid {
        grid-template-columns: 1fr;
    }

    .sahyog-alerts-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-video-wall__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .team-slider__card {
        flex-basis: 240px;
        max-width: 240px;
    }

    .contact-map__strip {
        grid-template-columns: 1fr;
    }

    .about-home-highlight__grid,
    .about-page__top,
    .about-donate__grid,
    .about-help__grid {
        grid-template-columns: 1fr;
    }

    .contact-map__frame {
        height: 280px;
        margin-top: 12px;
    }

    .faq-one .row {
        flex-direction: column;
    }

    .col-xl-5,
    .col-lg-5,
    .col-xl-7,
    .col-lg-7 {
        max-width: 100%;
        flex-basis: 100%;
    }

    .faq-one-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 600px) {
    .member-list-page__filters {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .member-list-page__filter-actions {
        flex-direction: column;
    }

    .member-list-page__filter-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .member-list-page {
        padding: 34px 0 56px;
    }

    .member-list-page__filters select,
    .member-list-page__filters input {
        min-height: 44px;
        font-size: 13px;
    }

    .member-list-page__table-wrap {
        margin: 0 -2px;
        border-radius: 12px;
    }

    .member-list-page__table {
        min-width: 980px;
    }

    .member-list-page__table th,
    .member-list-page__table td {
        padding: 10px 8px;
        font-size: 12px;
        line-height: 1.55;
    }

    .member-list-page__table th {
        font-size: 12px;
    }

    .member-list-page__status {
        padding: 4px 8px;
        font-size: 11px;
    }

    .member-list-page__pagination {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .gallery__grid--home,
    .gallery-page__grid {
        grid-template-columns: 1fr;
    }

    .home-video-wall__grid {
        grid-template-columns: 1fr;
    }

    .sahyog-page__total {
        font-size: 20px;
    }

    .sahyog-alerts-page__grid {
        grid-template-columns: 1fr;
    }

    .sahyog-alerts-page__card h3 {
        font-size: 26px;
    }

    .home-media-showcase {
        padding-top: 34px;
    }

    .home-media-card {
        min-height: auto;
        padding: 16px;
    }

    .team-core__grid {
        grid-template-columns: 1fr;
    }

    .team-slider__card {
        flex-basis: 80vw;
        max-width: 80vw;
    }

    .become-volunteer-one__bg {
        background-attachment: scroll;
    }

    .sahyog-pool-list,
    .sahyog-entry-grid {
        grid-template-columns: 1fr;
    }
}
