:root {
    --saffron: #e26f1a;
    --saffron-deep: #b94713;
    --gold: #d6a13a;
    --cream: #fff7e8;
    --ivory: #fffdf8;
    --rose: #7f2d1f;
    --teal: #125b50;
    --ink: #1f221f;
    --muted: #70726d;
    --line: rgba(31, 34, 31, 0.1);
    --glass: rgba(255, 255, 255, 0.78);
    --shadow-sm: 0 12px 32px rgba(97, 53, 12, 0.11);
    --shadow-lg: 0 28px 80px rgba(68, 38, 8, 0.22);
    --radius: 8px;
    --radius-lg: 18px;
    --font-body: "Mukta", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
    --section-y: clamp(40px, 5vw, 72px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--ivory);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

p {
    color: var(--muted);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

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

p {
    color: var(--muted);
    line-height: 1.5;
}

.container-xxl {
    max-width: 1440px;
}

.section-padding {
    padding-block: var(--section-y);
}

.section-soft {
    background:
        radial-gradient(circle at 12% 8%, rgba(226, 111, 26, 0.11), transparent 34%),
        linear-gradient(180deg, #fffaf0 0%, #fffdf8 100%);
}

.section-kesar {
    background:
        linear-gradient(135deg, rgba(119, 45, 31, 0.92), rgba(226, 111, 26, 0.92)),
        url("../images/hero-spiritual.png") center/cover fixed;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border: 1px solid rgba(214, 161, 58, 0.34);
    border-radius: 999px;
    color: var(--saffron-deep);
    background: rgba(255, 247, 232, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 7px rgba(214, 161, 58, 0.16);
}

.section-title {
    margin: 14px 0 5px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.section-title.small {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.section-lead {
    max-width: 760px;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.btn {
    --bs-btn-border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding-inline: 20px;
    font-weight: 800;
    border-width: 1px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    --bs-btn-bg: var(--saffron);
    --bs-btn-border-color: var(--saffron);
    --bs-btn-hover-bg: var(--saffron-deep);
    --bs-btn-hover-border-color: var(--saffron-deep);
    box-shadow: 0 16px 34px rgba(226, 111, 26, 0.26);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.54);
    color: #fff;
}

.btn-outline-dark {
    border-color: rgba(31, 34, 31, 0.18);
}

.text-gradient {
    color: var(--saffron);
}

.spiritual-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #fffaf0;
    transition: opacity 380ms ease, visibility 380ms ease;
}

.spiritual-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-diya {
    width: 54px;
    height: 54px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    transform: rotate(-45deg);
    box-shadow: 0 0 40px rgba(226, 111, 26, 0.44);
    animation: pulseGlow 1.4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: rotate(-45deg) scale(0.92);
        opacity: 0.76;
    }

    50% {
        transform: rotate(-45deg) scale(1.08);
        opacity: 1;
    }
}

.site-header .navbar {
    padding-block: 14px;
    background: rgba(30, 23, 12, 0.18);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header .navbar.scrolled,
body:not(.page-home) .site-header .navbar {
    padding-block: 9px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 12px 34px rgba(61, 38, 8, 0.11);
}

.navbar-brand {
    color: #fff;
}

.navbar.scrolled .navbar-brand,
body:not(.page-home) .navbar-brand {
    color: var(--ink);
}

.brand-mark {
    width: 54px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.7rem;
    background: radial-gradient(circle at 35% 25%, #ffd87b, var(--saffron) 58%, var(--rose));
    box-shadow: 0 16px 34px rgba(162, 77, 17, 0.24);
    flex: 0 0 auto;
}

.brand-logo {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: clamp(0.92rem, 1.4vw, 1.04rem);
    max-width: 265px;
    white-space: normal;
}

.brand-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 700;
}

.navbar.scrolled .brand-copy small,
body:not(.page-home) .brand-copy small {
    color: var(--muted);
}

.navbar-nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 12px;
}

.navbar.scrolled .navbar-nav .nav-link,
body:not(.page-home) .navbar-nav .nav-link {
    color: #3d3327;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    width: 46px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 0;
    padding: 0;
    gap: 5px;
}

.navbar-toggler span {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
    transition: background 180ms ease;
}

.navbar.scrolled .btn-outline-light,
body:not(.page-home) .btn-outline-light {
    border-color: rgba(31, 34, 31, 0.22);
    color: var(--ink);
}

.navbar.scrolled .btn-outline-light:hover,
body:not(.page-home) .btn-outline-light:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
}

.navbar.scrolled .navbar-toggler span,
body:not(.page-home) .navbar-toggler span {
    background: var(--ink);
}

.mobile-offcanvas {
    background: #fffaf0;
}

.mobile-offcanvas .nav-link {
    color: var(--ink);
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(31, 34, 31, 0.08);
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #261608;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(22, 15, 9, 0.82) 0%, rgba(57, 29, 8, 0.54) 47%, rgba(19, 20, 16, 0.2) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 28%, rgba(255, 209, 119, 0.24), transparent 28%),
        linear-gradient(180deg, transparent 70%, var(--ivory) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 92px;
    padding-bottom: 42px;
    max-width: 860px;
}

.hero-kicker {
    color: #ffe7b0;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-title {
    margin: 20px 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.6vw, 4.25rem);
    line-height: 1.15;
    font-weight: 700;
    max-width: 760px;
}

.hero-title span {
    color: #ffd87b;
    white-space: nowrap;
}

.hero-quote {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.55vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 54px;
    max-width: 760px;
}

.hero-stat {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}

.hero-stat strong {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
}

.spiritual-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.spiritual-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 220, 140, 0.8);
    box-shadow: 0 0 22px rgba(255, 217, 132, 0.75);
    animation: floatParticle var(--duration, 12s) linear infinite;
    left: var(--x);
    bottom: -20px;
    animation-delay: var(--delay);
}

@keyframes floatParticle {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    10% {
        opacity: 0.85;
    }

    100% {
        transform: translate3d(var(--drift), -110vh, 0);
        opacity: 0;
    }
}

.page-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: end start;
    text-align: left;
    padding-block: 120px 56px;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(126, 61, 12, 0.62)),
        url("../images/hero-spiritual.png") center/cover;
}

.page-hero.hero-about {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(126, 61, 12, 0.62)), url("../images/about-banner.svg") center/cover;
}

.page-hero.hero-gauseva {
    background: linear-gradient(90deg, rgba(18, 30, 28, 0.86), rgba(18, 91, 80, 0.62)), url("../images/gauseva-banner.svg") center/cover;
}

.page-hero.hero-donation {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(185, 71, 19, 0.62)), url("../images/donation-banner.svg") center/cover;
}

.page-hero.hero-volunteer {
    background: linear-gradient(90deg, rgba(18, 30, 28, 0.86), rgba(31, 111, 99, 0.6)), url("../images/volunteer-banner.svg") center/cover;
}

.page-hero.hero-contact {
    background: linear-gradient(90deg, rgba(20, 20, 18, 0.88), rgba(127, 45, 31, 0.6)), url("../images/contact-banner.svg") center/cover;
}

.page-hero.hero-events {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(18, 91, 80, 0.55)), url("../images/events-banner.svg") center/cover;
}

.page-hero.hero-gallery {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(126, 61, 12, 0.6)), url("../images/gallery-banner.svg") center/cover;
}

.page-hero.hero-media {
    background: linear-gradient(90deg, rgba(20, 20, 18, 0.88), rgba(18, 91, 80, 0.55)), url("../images/media-banner.svg") center/cover;
}

.page-hero.hero-teachings {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(127, 45, 31, 0.6)), url("../images/teachings-banner.svg") center/cover;
}

.page-hero.hero-videos {
    background: linear-gradient(90deg, rgba(18, 30, 28, 0.86), rgba(185, 71, 19, 0.55)), url("../images/videos-banner.svg") center/cover;
}

.page-hero.hero-blog {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(18, 91, 80, 0.55)), url("../images/blog-banner.svg") center/cover;
}

.page-hero.hero-privacy {
    background: linear-gradient(90deg, rgba(20, 20, 18, 0.9), rgba(31, 111, 99, 0.55)), url("../images/privacy-banner.svg") center/cover;
}

.page-hero.hero-terms {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.88), rgba(112, 114, 109, 0.5)), url("../images/terms-banner.svg") center/cover;
}

.page-hero.hero-404 {
    background: linear-gradient(90deg, rgba(28, 20, 13, 0.86), rgba(185, 71, 19, 0.55)), url("../images/notfound-banner.svg") center/cover;
}

.page-hero .container {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 720px;
}

.premium-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(214, 161, 58, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(214, 161, 58, 0.34);
}

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-portrait {
    position: relative;
    min-height: 580px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.about-portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 22, 8, 0.1), rgba(36, 22, 8, 0.68));
}

.glass-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 22px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
}

.glass-note p {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
}

.mission-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.mission-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 26px rgba(55, 35, 8, 0.08);
}

.mission-item .icon {
    width: 48px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--saffron-deep);
    background: #fff0d4;
}

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

.counter-box {
    padding: 28px 20px;
    text-align: center;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(214, 161, 58, 0.14);
    box-shadow: var(--shadow-sm);
}

.counter-box strong {
    display: block;
    color: var(--saffron-deep);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 18px;
    width: 2px;
    background: linear-gradient(var(--saffron), var(--teal));
}

.timeline-item {
    position: relative;
    padding-left: 56px;
}

.timeline-dot {
    position: absolute;
    left: 8px;
    top: 4px;
    width: 22px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--gold);
    border: 5px solid #fff7e8;
}

.event-card .event-image {
    position: relative;
    aspect-ratio: 1.22;
    background:
        linear-gradient(135deg, rgba(226, 111, 26, 0.28), rgba(18, 91, 80, 0.22)),
        url("../images/hero-spiritual.png") center/cover;
}

.event-date {
    display: inline-grid;
    place-items: center;
    min-width: 74px;
    padding: 12px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--rose);
    text-align: center;
}

.event-date strong {
    font-size: 1.55rem;
    line-height: 1;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.countdown span {
    display: grid;
    place-items: center;
    min-height: 58px;
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff6e4;
    font-weight: 800;
    font-size: 1.08rem;
}

.countdown small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-image .event-date {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 54px;
    padding: 8px 10px;
    box-shadow: var(--shadow-sm);
}

.event-image .event-date strong {
    font-size: 1.15rem;
}

.event-image .countdown {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    gap: 5px;
    margin-top: 0;
}

.event-image .countdown span {
    min-height: 40px;
    padding: 4px;
    border-radius: calc(var(--radius) - 6px);
    background: rgba(31, 34, 31, 0.6);
    color: #fff;
    font-size: 0.78rem;
}

.event-image .countdown small {
    color: rgba(255, 255, 255, 0.75);
}

.gallery-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}

.filter-btn {
    border: 1px solid rgba(31, 34, 31, 0.12);
    background: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    color: var(--ink);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
}

.masonry-gallery {
    columns: 1;
    column-gap: 18px;
}

.gallery-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    break-inside: avoid;
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: var(--ratio, 1.1);
    object-fit: cover;
    transition: transform 300ms ease, filter 300ms ease;
}

.gallery-item::after {
    content: attr(data-title);
    position: absolute;
    inset-inline: 14px;
    bottom: 14px;
    padding: 11px 13px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(31, 34, 31, 0.62);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
    font-weight: 700;
}

.gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1c1811;
}

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

.article-card img,
.blog-card img {
    aspect-ratio: 1.45;
    object-fit: cover;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.gau-band {
    position: relative;
    overflow: hidden;
    padding-block: clamp(34px, 6vw, 72px);
    background:
        linear-gradient(135deg, rgba(18, 91, 80, 0.95), rgba(127, 45, 31, 0.88)),
        url("../images/hero-spiritual.png") center/cover;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.gau-band p {
    color: rgba(255, 255, 255, 0.82);
}

.donation-card {
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(214, 161, 58, 0.18);
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(31, 34, 31, 0.08);
}

.bank-detail span {
    color: var(--muted);
    font-weight: 700;
}

.bank-detail strong {
    text-align: right;
}

.qr-box {
    display: grid;
    place-items: center;
    min-height: 240px;
    border-radius: var(--radius);
    background: repeating-linear-gradient(45deg, #fff8e9, #fff8e9 10px, #fff2db 10px, #fff2db 20px);
    border: 1px dashed rgba(226, 111, 26, 0.35);
    overflow: hidden;
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: var(--radius);
    border: 1px solid rgba(31, 34, 31, 0.12);
    background-color: #fffdf8;
}

textarea.form-control {
    min-height: 140px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 0.22rem rgba(226, 111, 26, 0.14);
}

.testimonial-swiper {
    overflow: hidden;
    padding-bottom: 4px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(18px, 2vw, 24px);
}

.testimonial-card .quote-icon {
    width: 38px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    flex: 0 0 auto;
}

.testimonial-card .quote-icon svg {
    width: 18px;
    height: 18px;
}

.testimonial-card p.fs-5 {
    flex-grow: 1;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink);
    margin: 12px 0 14px;
}

.testimonial-card h3 {
    font-size: 0.98rem;
    margin-bottom: 2px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--line);
    opacity: 1;
    transition: background 200ms ease, transform 200ms ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--saffron);
    transform: scale(1.2);
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.contact-info-item .icon {
    width: 42px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff0d4;
    color: var(--saffron-deep);
    flex: 0 0 auto;
}

.map-frame {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.footer-section {
    padding: 78px 0 28px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(26, 20, 16, 0.97), rgba(53, 30, 16, 0.97)),
        url("../images/hero-spiritual.png") center/cover;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
}

.footer-section h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 2.1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-section a:hover {
    color: #ffd87b;
    transform: translateX(4px);
}

.footer-mark {
    box-shadow: none;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-links a,
.whatsapp-float {
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.footer-bottom a {
    display: inline;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    width: 56px;
    background: #128c7e;
    box-shadow: 0 18px 36px rgba(18, 140, 126, 0.26);
}

.toast {
    border-radius: var(--radius);
    border: 0;
    box-shadow: var(--shadow-lg);
}

.content-body {
    color: var(--ink);
    line-height: 1.65;
}

.content-body h2,
.content-body h3 {
    font-family: var(--font-display);
    margin-top: 1.4em;
}

.content-body img {
    border-radius: var(--radius);
}

.policy-content {
    max-width: 920px;
    margin-inline: auto;
}

.lazy-fade {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.lazy-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 576px) {
    .masonry-gallery {
        columns: 2;
    }
}

@media (min-width: 992px) {
    .masonry-gallery {
        columns: 3;
    }
}

@media (min-width: 1400px) {
    .masonry-gallery {
        columns: 4;
    }
}

@media (max-width: 1199.98px) {
    .site-header .navbar {
        background: rgba(255, 253, 248, 0.94);
        box-shadow: 0 12px 34px rgba(61, 38, 8, 0.11);
    }

    .navbar-brand {
        color: var(--ink);
    }

    .brand-copy small {
        color: var(--muted);
    }

    .navbar-toggler span {
        background: var(--ink);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 860px;
    }

    .hero-bg {
        background-position: center top;
    }

    .hero-stats,
    .counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-portrait {
        min-height: 460px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-y: 36px;
    }

    .brand-mark {
        width: 46px;
    }

    .brand-copy strong {
        max-width: 210px;
        font-size: 0.86rem;
    }

    .hero-section {
        min-height: 820px;
        align-items: flex-end;
    }

    .hero-content {
        padding-top: 112px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .section-title {
        line-height: 1;
    }

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

    .bank-detail {
        display: block;
    }

    .bank-detail strong {
        display: block;
        text-align: left;
        margin-top: 4px;
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {

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