:root {
    --saffron: #E8710A;
    --deep-saffron: #C25C00;
    --gold: #D4A017;
    --gold-light: #F0C842;
    --maroon: #6B1A1A;
    --cream: #FDF6E3;
    --cream-dark: #F5E6C8;
    --lotus-pink: #D4607A;
    --peacock: #1A6B5A;
    --dark-text: #2C1810;
    --light-text: #7A5C3A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', Georgia, serif;
    background: var(--cream);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* OM Symbol animation */
@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 10px #D4A017, 0 0 20px #E8710A;
    }

    50% {
        text-shadow: 0 0 25px #F0C842, 0 0 50px #D4A017, 0 0 75px #E8710A;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--maroon) 0%, #3D0A0A 50%, var(--maroon) 100%);
    border-bottom: 3px solid var(--gold);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-om {
    font-size: 2rem;
    color: var(--gold-light);
    animation: glow 3s ease-in-out infinite;
}

.nav-title {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold-light);
    font-size: 0.85rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.03em;
}

.nav-links a:hover {
    color: var(--gold-light);
    background: rgba(212, 160, 23, 0.15);
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
    background: url('hero-banner.jpg') center/cover no-repeat;
    display: flex;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(92, 57, 6, 0.18), rgba(92, 57, 6, 0.02));
    pointer-events: none;
    z-index: 0;
}

.hero-banner {
    position: relative;
    min-height: 760px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 15px;
    z-index: 1;
}

.hero-text-block,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-text-block {
    width: min(52%, 700px);
    padding-left: 1.5rem;
    color: #4d1d11;
    text-align: left;
}

.hero-kicker {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: #6a2b14;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin: 0 0 1.5rem;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(2.5rem, 4vw, 5rem);
    line-height: 1.08;
    font-weight: 700;
    color: #6a2a16;
    text-shadow: 0 0 15px rgba(255, 241, 188, 0.35);
}

.hero-lead,
.hero-para {
    max-width: 43rem;
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    line-height: 1.7;
    color: rgba(74, 30, 12, 0.95);
    margin-bottom: 1.2rem;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.hero-para {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(84, 50, 28, 0.9);
}

.hero-feature-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 820px;
    background: rgba(255, 245, 230, 0.85);
    border: 1px solid rgba(216, 160, 95, 0.25);
    box-shadow: 0 8px 25px rgba(84, 46, 12, 0.05);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #562e1b;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #d85c13;
}

.hero-feature-item strong,
.hero-feature-item small {
    display: block;
}

.hero-feature-item strong {
    font-size: 0.94rem;
    font-weight: 700;
    color: #702c15;
}

.hero-feature-item small {
    font-size: 0.72rem;
    color: rgba(90, 48, 25, 0.8);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    padding: 0.9rem 1.6rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #7c1f1b, #9d2d23);
    color: #fff;
    box-shadow: 0 12px 18px rgba(92, 29, 16, 0.25);
}

.btn-secondary {
    background: #fff;
    border: 1px solid #7c1f1b;
    color: #7c1f1b;
}

.hero-location {
    margin-top: 1.5rem;
    color: rgba(74, 30, 12, 0.95);
    font-size: 1.05rem;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 600;
}

.hero-location i {
    color: #7c1f1b;
    margin-right: 6px;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-visual {
    width: min(40%, 620px);
    height: 760px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sun-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 18%, rgba(255, 218, 109, 0.25) 35%, rgba(255, 209, 82, 0.05) 60%, rgba(255, 209, 82, 0) 100%);
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(6px);
}

.figure-profile {
    position: relative;
    width: min(85%, 420px);
    height: 88%;
    background:
        radial-gradient(circle at 50% 17%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0.7) 8%, rgba(255, 255, 255, 0.15) 9%, rgba(255, 255, 255, 0) 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 25%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
    border-radius: 42% 42% 18% 18% / 18% 18% 5% 5%;
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.08);
}

.figure-profile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(230, 166, 34, 0.35), rgba(255, 230, 118, 0.08));
    border-radius: inherit;
    opacity: 0.8;
}

@media (max-width: 980px) {
    .hero-banner {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        min-height: 980px;
    }

    .hero-text-block,
    .hero-visual {
        width: 100%;
        max-width: 700px;
    }

    .hero-text-block {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-feature-list {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 520px;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 80px;
    }

    .hero-banner {
        min-height: 830px;
        padding: 2rem 1rem 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-feature-list {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* DIVIDER */
.lotus-divider {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--saffron);
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    opacity: 0.6;
}

/* SECTION STYLES */
section {
    padding: 5rem 2rem;
}

.section-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--saffron);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--maroon);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--saffron);
}

.gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.gold-line.left {
    margin-left: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* NEWS SECTION - Srila Prabhupada */
.news-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-top: 4px solid var(--gold);
}

.news-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.news-image-wrap {
    position: relative;
}

.news-frame {
    border: 8px solid var(--cream-dark);
    outline: 2px solid var(--gold);
    outline-offset: 6px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--maroon);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.kutir-icon {
    font-size: 6rem;
    color: var(--gold-light);
    animation: glow 3s ease-in-out infinite;
}

.news-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(43, 8, 8, 0.95));
    color: var(--gold-light);
    padding: 2rem 1rem 1rem;
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
}

.event-tag {
    display: inline-block;
    background: var(--saffron);
    color: #fff;
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-family: 'Crimson Text', serif;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.news-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-text);
    margin-bottom: 1.2rem;
}

.news-text p strong {
    color: var(--dark-text);
}

.highlight-box {
    border-left: 4px solid var(--saffron);
    padding: 1rem 1.5rem;
    background: rgba(232, 113, 10, 0.07);
    border-radius: 0 4px 4px 0;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--maroon);
}

/* ABOUT / TRUST SECTION */
.trust-section {
    background: linear-gradient(135deg, var(--maroon) 0%, #3D0A0A 100%);
    color: var(--cream);
    text-align: center;
}

.trust-section .section-title {
    color: var(--gold-light);
}

.trust-section .section-label {
    color: var(--gold);
}

.trust-registrations {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.reg-pill {
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-pill i {
    color: var(--saffron);
}

.trust-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(253, 246, 227, 0.85);
}

/* SERVICES CARDS */
.services-section {
    background: var(--cream);
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 26, 26, 0.15);
    border-color: var(--gold);
}

.service-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 8, 8, 0.2) 0%, rgba(107, 26, 26, 0.55) 100%);
}

.service-card-body {
    padding: 1.8rem 2rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.service-card h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* SPECIAL EVENTS */
.special-section {
    background: linear-gradient(135deg, #FFF8E7 0%, #FDE8C0 100%);
    text-align: center;
    border-top: 1px solid rgba(212, 160, 23, 0.3);
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}

.events-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.event-chip {
    background: linear-gradient(135deg, var(--maroon), #5A1010);
    color: var(--gold-light);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(107, 26, 26, 0.3);
    transition: transform 0.3s;
}

.event-chip:hover {
    transform: scale(1.05);
}

.event-chip i {
    color: var(--gold-light);
    font-size: 1.1rem;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.social-section .section-title {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.social-section .section-label {
    color: var(--gold-light);
}

.social-section .gold-line {
    margin: 1rem auto 3rem;
}

.social-section>.container>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.social-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.social-tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.social-tab.active-fb {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
}

.social-tab.active-yt {
    background: #FF0000;
    color: #fff;
    border-color: #FF0000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.social-tab:not(.active-fb):not(.active-yt):hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.social-feeds-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.fb-page-container,
.yt-page-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: 620px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.yt-page-container {
    background: #fff;
}

.yt-header {
    background: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.yt-header i {
    color: #ff0000;
    font-size: 2.5rem;
}

.yt-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0f3460;
    text-align: left;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 700;
}

.yt-header a {
    color: #444;
    font-size: 0.85rem;
    text-decoration: none;
    font-family: sans-serif;
}

.yt-footer {
    background: #f8f8f8;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff0000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-family: sans-serif;
    transition: background 0.2s, transform 0.2s;
}

.yt-subscribe-btn:hover {
    background: #cc0000;
    transform: scale(1.02);
}

.social-panels {
    position: relative;
    min-height: 300px;
}

.social-panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.social-panel.active {
    display: block;
}

/* Facebook Panel */
.fb-panel-header {
    background: #1877F2;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}

.fb-page-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    border: 2px solid #fff;
    flex-shrink: 0;
}

.fb-page-info {
    text-align: left;
}

.fb-page-info strong {
    color: #fff;
    display: block;
    font-size: 1rem;
}

.fb-page-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.fb-follow-btn {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

.fb-follow-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.fb-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #ddd;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.fb-post-card {
    background: #fff;
    padding: 1.2rem;
    text-align: left;
    transition: background 0.2s;
}

.fb-post-card:hover {
    background: #f0f4ff;
}

.fb-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.7rem;
}

.fb-mini-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.fb-post-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #1a1a1a;
    line-height: 1;
}

.fb-post-date {
    font-size: 0.75rem;
    color: #888;
}

.fb-post-text {
    font-size: 0.92rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.fb-post-img {
    width: 100%;
    aspect-ratio: 3/1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, #FDE8C0, #FFF0D0);
}

.fb-post-actions {
    display: flex;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 0.6rem;
}

.fb-action {
    color: #666;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.fb-action:hover {
    color: #1877F2;
}

.fb-cta {
    max-width: 760px;
    margin: 1.5rem auto 0;
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.fb-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.fb-cta-text strong {
    color: #fff;
}

.fb-cta-btn {
    background: #1877F2;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    white-space: nowrap;
}

.fb-cta-btn:hover {
    background: #0d65d4;
}

/* YouTube Panel */
.yt-channel-header {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.yt-channel-art {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.yt-channel-info {
    text-align: left;
    flex: 1;
}

.yt-channel-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.yt-channel-info span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.yt-sub-btn {
    background: #fff;
    color: #FF0000;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.yt-sub-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.yt-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #111;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.yt-video-card {
    background: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s;
}

.yt-video-card:hover {
    background: #242424;
}

.yt-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--maroon), #3D0A0A);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 3rem;
}

.yt-play-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    padding-left: 4px;
    transition: transform 0.2s;
}

.yt-video-card:hover .yt-play-btn {
    transform: scale(1.15);
    background: #ff0000;
}

.yt-duration {
    position: absolute;
    bottom: 6px;
    right: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.72rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
}

.yt-video-info {
    padding: 0.8rem 0.8rem 1rem;
    text-align: left;
}

.yt-video-title {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-video-meta {
    color: #aaa;
    font-size: 0.78rem;
}

.yt-cta {
    max-width: 760px;
    margin: 1.5rem auto 0;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.yt-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.yt-cta-text strong {
    color: #fff;
}

.yt-cta-btn {
    background: #FF0000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    white-space: nowrap;
}

.yt-cta-btn:hover {
    background: #cc0000;
}

/* DONATE */
.donate-section {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-saffron) 100%);
    text-align: center;
    padding: 4rem 2rem;
}

.donate-section .section-title {
    color: #fff;
    margin-bottom: 0.5rem;
}

.donate-section>.container>p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.donate-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.donate-amount {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    transition: all 0.3s;
    min-width: 130px;
}

.donate-amount:hover,
.donate-amount.selected {
    background: #fff;
    color: var(--deep-saffron);
    border-color: #fff;
    transform: scale(1.05);
}

.donate-amount small {
    display: block;
    font-family: 'Crimson Text', serif;
    font-size: 0.75rem;
    margin-top: 4px;
    opacity: 0.8;
}

.donate-btn-big {
    background: var(--maroon);
    color: var(--gold-light);
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(107, 26, 26, 0.4);
}

.donate-btn-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 26, 26, 0.5);
}

.tax-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* CONTACT */
.contact-section {
    background: var(--cream-dark);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: box-shadow 0.3s;
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(107, 26, 26, 0.1);
}

.contact-card i {
    font-size: 2rem;
    color: var(--saffron);
    margin-bottom: 0.8rem;
}

.contact-card h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.8rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: var(--light-text);
    text-decoration: none;
    line-height: 1.6;
    display: block;
}

.contact-card a:hover {
    color: var(--saffron);
}

.contact-form-wrap {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: left;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(212, 160, 23, 0.18);
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(107, 26, 26, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.field-group label {
    font-weight: 600;
    color: var(--maroon);
    font-size: 0.95rem;
}

.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(107, 26, 26, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Crimson Text', serif;
    color: var(--dark-text);
    background: #fff;
}

.field-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.message-box {
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    background: #e6ffed;
    border: 1px solid #b7f0c2;
    color: #155724;
}

.donation-note {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.fb-page-container {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.fb-page-container .fb-page {
    min-height: 520px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        margin-top: 2rem;
    }
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #1A0505, #2C0A0A);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem;
    color: rgba(253, 246, 227, 0.8);
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.footer-om {
    font-size: 3.5rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: glow 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(240, 200, 66, 0.4);
}

.footer-trust-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-mantra {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-style: italic;
}

.footer-location {
    color: rgba(253, 246, 227, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.footer-contact-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: white;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #1BA85C);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #FF4444, #CC0000);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.contact-icon.email {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.contact-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem 0;
    opacity: 0.5;
}

.footer-info {
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(253, 246, 227, 0.7);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-grace {
    font-size: 0.95rem;
    color: var(--gold);
    margin: 0;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    footer {
        padding: 2.5rem 1.5rem;
    }

    .footer-container {
        max-width: 100%;
    }

    .footer-om {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .footer-trust-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .footer-mantra {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .footer-location {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .footer-contact-icons {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-grace {
        font-size: 0.9rem;
    }
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .news-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fb-posts-grid,
    .yt-videos-grid {
        grid-template-columns: 1fr;
    }

    .social-tab {
        font-size: 0.7rem;
        padding: 10px 16px;
    }

    .yt-channel-header,
    .fb-panel-header {
        flex-wrap: wrap;
    }

    .fb-cta,
    .yt-cta {
        flex-direction: column;
        text-align: center;
    }

    .donate-cards {
        gap: 1rem;
    }
}

/* Scroll indicator */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--maroon);
    border: 2px solid var(--gold);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(107, 26, 26, 0.4);
}

.scroll-top:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}