/* =========================================
   SHRI SHYAM SAWARIYA SEVA TRUST
   Color System & Design Tokens
   ========================================= */
:root {
    --saffron: #e07b00;
    --saffron-dark: #b85e00;
    --saffron-light: #ff9a2e;
    --gold: #d4af37;
    --gold-light: #f0d060;
    --gold-dark: #a07820;
    --maroon: #6b0f1a;
    --maroon-dark: #4a0a12;
    --maroon-light: #9b2235;
    --cream: #fff8e7;
    --cream-dark: #f5e8c8;
    --vermillion: #c0392b;
    --charcoal: #1a1208;
    --text-body: #3d2b0a;
    --text-muted: #7a6040;
    --white: #ffffff;

    --font-display: "Cinzel", "Times New Roman", serif;
    --font-body: "Lato", "Segoe UI", sans-serif;
    --font-hindi: "Noto Sans Devanagari", "Arial Unicode MS", sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 8px 32px rgba(107, 15, 26, 0.12);
    --shadow-hover: 0 16px 48px rgba(107, 15, 26, 0.22);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

/* =========================================
   ANNOUNCEMENT TICKER
   ========================================= */
.ticker-wrap {
    background: var(--maroon);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
    position: relative;
    z-index: 1040;
}

.ticker-content {
    display: inline-block;
    animation: tickerScroll 40s linear infinite;
}

.ticker-content span {
    display: inline-block;
    padding: 0 3rem;
}

.ticker-content span::after {
    content: "✦";
    margin-left: 3rem;
    color: var(--gold);
    opacity: 0.6;
}

@keyframes tickerScroll {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    background: rgba(26, 18, 8, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-dark);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 6px 0;
    background: rgba(26, 18, 8, 0.99);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Brand */
/*.brand-emblem { flex-shrink: 0; }
*/
/*==============custom==============*/

.brand-emblem {
    flex-shrink: 0;
    width: 50px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-20px);
    transition: var(--transition);
}

.navbar.scrolled .brand-emblem {
    width: 38px;
    height: 38px;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.navbar-brand:hover .brand-emblem {
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

/*==============custom==========================*/

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-hindi {
    font-family: var(--font-hindi);
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
}

.brand-english {
    font-family: var(--font-display);
    font-size: 0.68rem;
    color: var(--cream-dark);
    letter-spacing: 0.06em;
    font-weight: 400;
}

.navbar-brand:hover .brand-hindi {
    color: var(--gold-light);
}

/* Nav Links */
.nav-link {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream) !important;
    padding: 8px 12px !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--gold) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
    left: 12%;
    right: 12%;
}
.nav-link.active {
    color: var(--gold) !important;
}

.btn-donate-nav {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    font-size: 0.76rem;
    font-family: Arial;

}
.btn-donate-nav::after {
    display: none;
}
.btn-donate-nav:hover {
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(224, 123, 0, 0.4);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 28px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--maroon-dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-2px);
}

.btn-saffron {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    border-color: var(--saffron);
}
.btn-saffron:hover {
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 123, 0, 0.35);
}

.btn-outline-saffron {
    background: transparent;
    color: var(--saffron);
    border-color: var(--saffron);
}
.btn-outline-saffron:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   HERO CAROUSEL
   ========================================= */
.hero-slide {
    height: 100svh;
    min-height: 560px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 18, 8, 0.82) 0%,
        rgba(107, 15, 26, 0.55) 50%,
        rgba(26, 18, 8, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    max-width: 860px;
    margin: 0 auto;
}

.hero-subtext {
    font-family: var(--font-hindi);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffffff 30%, var(--gold) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--cream-dark);
    margin-bottom: 2rem;
    font-style: italic;
    letter-spacing: 0.05em;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.25);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1rem;
    opacity: 1;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(212, 175, 55, 0.55);
}

.carousel-indicators {
    bottom: 24px;
}
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
}
.carousel-indicators button.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* =========================================
   INTRO STRIP
   ========================================= */
.intro-strip {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    padding: 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.strip-item {
    padding: 18px 12px;
    color: var(--gold-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}
.strip-item:last-child {
    border-right: none;
}
.strip-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.strip-item i {
    font-size: 1.4rem;
    color: var(--gold);
}

/* =========================================
   SHARED SECTION TOKENS
   ========================================= */
.section-eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.section-body {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}
.section-body em {
    color: var(--saffron-dark);
    font-style: normal;
    font-weight: 700;
}

/* Ornament Line */
.ornament-line {
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        var(--saffron),
        var(--gold),
        transparent
    );
    border: none;
    margin: 1rem 0 1.5rem;
    width: 120px;
}

/* =========================================
   INTRO SECTION
   ========================================= */
.section-intro {
    background: var(--cream);
    position: relative;
}
.section-intro::before {
    content: "🕉";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    opacity: 0.04;
    pointer-events: none;
}

/* Image Frame */
.intro-image-frame {
    position: relative;
    display: inline-block;
    width: 100%;
}

.rounded-temple {
    border-radius: var(--radius-lg);
    border: 3px solid var(--gold);
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.frame-ornament {
    position: absolute;
    width: 32px;
    height: 32px;
    border-color: var(--gold);
    border-style: solid;
}
.frame-ornament.top-left {
    top: -8px;
    left: -8px;
    border-width: 3px 0 0 3px;
}
.frame-ornament.top-right {
    top: -8px;
    right: -8px;
    border-width: 3px 3px 0 0;
}
.frame-ornament.bottom-left {
    bottom: -8px;
    left: -8px;
    border-width: 0 0 3px 3px;
}
.frame-ornament.bottom-right {
    bottom: -8px;
    right: -8px;
    border-width: 0 3px 3px 0;
}

/* =========================================
   SEVA CARDS
   ========================================= */
.section-seva {
    background: linear-gradient(
        180deg,
        var(--cream-dark) 0%,
        var(--cream) 100%
    );
    position: relative;
}
.section-seva::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--maroon),
        var(--saffron),
        var(--gold),
        var(--saffron),
        var(--maroon)
    );
}

.seva-card {
    background: var(--white);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.seva-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.seva-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.seva-card:hover::before {
    transform: scaleX(1);
}

.seva-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(
        135deg,
        rgba(224, 123, 0, 0.1),
        rgba(212, 175, 55, 0.15)
    );
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--saffron);
    transition: var(--transition);
}
.seva-card:hover .seva-icon {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--white);
    transform: rotateY(360deg);
}

.seva-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--maroon);
    margin-bottom: 0.75rem;
}

.seva-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.section-about {
    background: var(--white);
    position: relative;
}

/* Stat Boxes */
.stat-box {
    background: linear-gradient(
        135deg,
        rgba(107, 15, 26, 0.05),
        rgba(212, 175, 55, 0.08)
    );
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}
.stat-box:hover {
    background: linear-gradient(
        135deg,
        rgba(107, 15, 26, 0.1),
        rgba(212, 175, 55, 0.15)
    );
    border-color: var(--gold);
    transform: translateY(-2px);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--maroon);
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* VMV Cards */
.vmv-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    transition: var(--transition);
}
.vmv-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--gold);
}
.vmv-card.vision {
    border-top: 4px solid var(--maroon);
}
.vmv-card.mission {
    border-top: 4px solid var(--saffron);
}
.vmv-card.values {
    border-top: 4px solid var(--gold);
}

.vmv-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--gold);
}
.vmv-card.mission .vmv-icon {
    background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
}
.vmv-card.values .vmv-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--maroon);
}

.vmv-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--maroon);
    margin-bottom: 0.75rem;
}
.vmv-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* Trustee Cards */
.trustee-card {
    background: var(--cream);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}
.trustee-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.trustee-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin: 0 auto 1rem;
}

.trustee-card h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--maroon);
    margin-bottom: 0.3rem;
}
.trustee-role {
    font-size: 0.78rem;
    color: var(--saffron);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* =========================================
   GALLERY
   ========================================= */
.section-gallery {
    background: var(--cream-dark);
    position: relative;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.filter-btn {
    background: var(--white);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    color: var(--maroon);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    color: var(--gold);
    border-color: var(--maroon);
    transform: translateY(-1px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: var(--transition);
}
.gallery-item.hidden {
    display: none;
}
.gallery-item.fade-out {
    opacity: 0;
    transform: scale(0.95);
}
.gallery-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item a {
    display: block;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover {
    box-shadow: var(--shadow-hover);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 18, 8, 0.9), transparent);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 0.8rem;
    padding: 24px 12px 10px;
    transform: translateY(100%);
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* =========================================
   DONATE SECTION
   ========================================= */
.section-donate {
    background: linear-gradient(
        135deg,
        var(--maroon-dark) 0%,
        var(--maroon) 50%,
        var(--maroon-dark) 100%
    );
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.section-donate::before {
    content: "🕉";
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 14rem;
    opacity: 0.03;
    pointer-events: none;
}

.section-donate .section-eyebrow {
    color: var(--gold);
}
.section-donate .section-title {
    color: var(--gold-light);
}
.section-donate .section-subtitle {
    color: rgba(255, 248, 231, 0.75);
}

.donate-appeal {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
}
.donate-appeal h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.donate-list {
    list-style: none;
    padding: 0;
}
.donate-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.94rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.donate-list li:last-child {
    border-bottom: none;
}
.donate-list li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.seva-amount-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.seva-amount-btn:hover,
.seva-amount-btn.active {
    background: var(--gold);
    color: var(--maroon-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Bank Details */
.bank-details-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
}
.bank-details-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--maroon);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.75rem;
}

.text-gold {
    color: var(--gold-dark) !important;
}
.text-gold-muted {
    color: rgba(212, 175, 55, 0.6);
}

.bank-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.bank-table th {
    color: var(--text-muted);
    font-weight: 600;
    padding: 8px 8px 8px 0;
    white-space: nowrap;
    width: 40%;
    vertical-align: top;
}
.bank-table td {
    color: var(--text-body);
    padding: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.upi-id-display {
    background: var(--cream);
    border: 2px dashed var(--gold);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-family: monospace;
    font-size: 1rem;
    color: var(--maroon);
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
}

.qr-placeholder {
    background: var(--cream);
    border: 2px dashed var(--gold);
    border-radius: var(--radius-md);
    padding: 2rem 1rem;
    color: var(--gold-dark);
    display: inline-block;
    min-width: 150px;
}

.donate-note {
    background: rgba(224, 123, 0, 0.08);
    border-left: 3px solid var(--saffron);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.section-contact {
    background: var(--cream);
}

.contact-info-card {
    background: var(--white);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
}
.contact-info-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--maroon);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-value {
    display: block;
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 500;
    word-break: break-all;
}
a.contact-value:hover {
    color: var(--saffron);
}

/* Form */
.contact-form-card {
    background: var(--white);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    padding: 2rem;
}
.contact-form-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--maroon);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.form-label span {
    color: var(--vermillion);
}

.form-control,
.form-select {
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.92rem;
    color: var(--text-body);
    background: var(--cream);
    transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(224, 123, 0, 0.12);
    background: var(--white);
    outline: none;
}

/* Social */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-btn {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-3px) scale(1.1);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: linear-gradient(
        135deg,
        var(--charcoal) 0%,
        var(--maroon-dark) 100%
    );
    color: var(--cream-dark);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-mandala {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.footer-brand .footer-logo-text {
    font-family: var(--font-hindi);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2px;
}
.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--gold-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 248, 231, 0.65);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    padding-bottom: 8px;
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: rgba(255, 248, 231, 0.65);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255, 248, 231, 0.65);
}
.footer-contact-list i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-list a {
    color: rgba(255, 248, 231, 0.65);
}
.footer-contact-list a:hover {
    color: var(--gold);
}

.footer-timings {
    color: rgba(255, 248, 231, 0.55);
}
.footer-timings strong {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 3rem;
    padding: 1.5rem 0;
    font-size: 0.82rem;
    color: rgba(255, 248, 231, 0.45);
}
.footer-bottom a {
    color: rgba(255, 248, 231, 0.45);
}
.footer-bottom a:hover {
    color: var(--gold);
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.float-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}
.float-whatsapp:hover {
    background: #20ba5a;
    color: var(--white);
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 999;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-2px);
}

/* =========================================
   ANIMATIONS & SCROLL REVEALS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-in {
    animation: fadeUp 0.8s ease forwards;
}
.hero-content .animate-in:nth-child(1) {
    animation-delay: 0.1s;
}
.hero-content .animate-in:nth-child(2) {
    animation-delay: 0.3s;
}
.hero-content .animate-in:nth-child(3) {
    animation-delay: 0.5s;
}
.hero-content .animate-in:nth-child(4) {
    animation-delay: 0.7s;
}

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

/* =========================================
   ACCESSIBILITY
   ========================================= */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-slide {
        background-attachment: scroll;
    }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .hero-slide {
        background-attachment: scroll;
    }
    .navbar-collapse {
        background: rgba(26, 18, 8, 0.98);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    .navbar-nav .btn-donate-nav {
        display: inline-flex;
        width: fit-content;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.9rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rounded-temple {
        height: 280px;
    }
    .footer-mandala {
        display: none;
    }
    .bank-table th,
    .bank-table td {
        font-size: 0.78rem;
        padding: 6px 4px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .hero-btns .btn {
        padding: 10px 18px;
        font-size: 0.74rem;
    }
    .strip-item {
        font-size: 0.62rem;
    }
    .strip-item i {
        font-size: 1.1rem;
    }
}

/* Lightbox override */
.lb-outerContainer {
    border-radius: var(--radius-md);
}
.lb-dataContainer {
    background: var(--charcoal);
}
.lb-data .lb-details .lb-caption {
    color: var(--gold-light);
    font-family: var(--font-display);
}
