/*
Theme Name: Astra Child
Theme URI: https://example.com
Description: PADT Theme — Pashupatinath Area Development Trust
Author: Envision Tech Pvt.Ltd
Template: astra
Version: 2.1.2
*/

/* 
   DESIGN TOKENS — Professional Government / Heritage Site
   Primary: Deep Crimson (brand identity)
   Accent:  Warm Gold (highlights, CTAs)
   All other colors are neutrals — whites, grays, muted text
   Edit ONLY this :root block to retheme the entire site.
 */
:root {
    /* ── Brand ── */
    --red: #8C1A1A;
    /* Primary brand crimson */
    --red-dark: #6B1212;
    /* Darker crimson — hover, footer */
    --red-deep: #4A0C0C;
    /* Deepest — footer bottom, dark sections */
    --red-tint: #FAF1F1;
    /* Very light red tint — section bg */
    --gold: #B8860B;
    /* Warm dark gold — subtle accents */
    --gold-light: #D4A017;
    /* Slightly lighter gold */
    --gold-pale: #F5E6C0;
    /* Gold tint bg */

    /* ── Neutral Backgrounds ── */
    --white: #FFFFFF;
    --off-white: #FAFAF9;
    /* Barely warm white */
    --light: #F4F2EF;
    /* Warm light gray — alternating sections */
    --border: #E2DDD8;
    /* Subtle border */
    --border-light: rgba(140, 26, 26, 0.10);

    /* ── Text ── */
    --text-dark: #1A1208;
    /* Near black */
    --text-body: #3D3328;
    /* Main body text */
    --text-muted: #6B5E52;
    /* Secondary / meta text */
    --text-white: #FFFFFF;
    --text-white-70: rgba(255, 255, 255, 0.75);
    --text-white-50: rgba(255, 255, 255, 0.50);

    /* ── Semantic ── */
    --success: #1E6B2E;
    --success-bg: #EAF4EC;

    /* ── Typography ── */
    --font-serif: 'Georgia', serif;
    --font-sans: 'Arial', sans-serif;
    --font-deva: 'Noto Serif Devanagari', 'Georgia', serif;
    --font-display: 'Playfair Display', serif;
    --font-system: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* ── Font Sizes ── */
    --fs-xs: 10px;
    --fs-sm: 12px;
    --fs-base: 14px;
    --fs-md: 15px;
    --fs-lg: 16px;
    --fs-xl: 18px;
    --fs-2xl: 20px;
    --fs-3xl: 24px;
    --fs-4xl: 28px;
    --fs-5xl: 36px;

    /* ── Spacing ── */
    --sp-xs: 6px;
    --sp-sm: 10px;
    --sp-md: 16px;
    --sp-lg: 20px;
    --sp-xl: 30px;
    --sp-2xl: 40px;
    --sp-3xl: 60px;
    --sp-4xl: 80px;

    /* ── Radius ── */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 14px;
    --r-pill: 30px;
    --r-full: 50%;

    /* ── Shadows ── */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.14);

    /* ── Transitions ── */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;

    /* ── Layout ── */
    --max-w: 1200px;

    /* ── Gradients ── */
    --grad-brand: linear-gradient(135deg, var(--red), var(--red-dark));
    --grad-subtle: linear-gradient(135deg, var(--red-tint), var(--white));
}


/* 
   GLOBAL RESET & BASE
 */
body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--white);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/*  Shared container  */
.ttd-container,
.padt-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/*  Section headings  */
.section-title h2,
.fp-section-heading h2,
.padt-timeline-header h2,
.padt-board-header h2,
.news-title {
    font-family: var(--font-serif);
    color: var(--red);
    font-weight: 700;
}

.section-title h2::after,
.about-section .section-title h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

/*  Utility accent bar  */
.blank-container {
    background: var(--red);
    height: 4px;
}


/* 
   TOP BAR
 */
.ttd-topbar {
    background: var(--red-dark);
    color: var(--text-white-70);
    padding: 5px var(--sp-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-xs);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
}

.ttd-topbar-left,
.ttd-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ttd-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    border-radius: var(--r-sm);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    margin-right: 2px;
    transition: var(--transition-fast);
}

.ttd-social a:hover {
    background: var(--gold);
    color: var(--text-dark);
}

.ttd-date {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

.ttd-eticket {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 3px 12px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.ttd-eticket:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

.ttd-lang a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-decoration: none;
    font-weight: 500;
}

.ttd-lang a:hover {
    color: var(--text-white);
}

.ttd-lang span {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* Hide Google Translate toolbar & attribution */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

/* Active lang button */
.ttd-lang-btn {
    opacity: 0.6;
    transition: opacity 0.2s;
    cursor: pointer;
}

.ttd-lang-btn:hover {
    opacity: 1;
}

.ttd-lang-btn.active {
    opacity: 1;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* 
   MAIN HEADER BANNER
 */
.ttd-header {
    font-family: var(--font-sans);
}

.ttd-top {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 2px solid var(--border);
}

.ttd-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ttd-logo-circle {
    width: 78px;
    height: 78px;
    border-radius: var(--r-full);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--off-white);
}

.ttd-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-full);
}

.ttd-logo-govt {
    width: 68px;
    height: 68px;
    border-radius: var(--r-full);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--off-white);
}

.ttd-logo-govt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ttd-title {
    flex-grow: 1;
    text-align: center;
}

.ttd-title .gov-line {
    font-size: var(--fs-base);
    color: var(--text-muted);
    font-weight: 500;
}

.ttd-title .min-line {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin: 2px 0;
}

.ttd-title h1 {
    font-family: var(--font-serif);
    font-size: var(--fs-4xl);
    font-weight: 800;
    margin: 4px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--red);
}

.ttd-title p,
.ttd-title .sub-line {
    font-size: var(--fs-sm);
    margin: 4px 0 0;
    font-style: italic;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.ttd-flag img {
    width: 68px;
    height: auto;
    flex-shrink: 0;
}


/* 
   ANNOUNCEMENT MARQUEE
 */
.ttd-announcement {
    background: var(--red-dark);
    overflow: hidden;
}

.marquee-wrap {
    max-width: 100%;
    white-space: nowrap;
    padding: 6px 0;
}

.marquee {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee span {
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--fs-base);
    font-weight: 500;
    margin-right: 80px;
    white-space: pre;
    font-family: var(--font-sans);
}

@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ttd-announcement:hover .marquee {
    animation-play-state: paused;
}


/* 
   NAVIGATION
 */
.ttd-nav {
    background: var(--red-dark);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.ttd-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 22px;
    cursor: pointer;
    padding: 10px 0;
    margin-left: auto;
}

.ttd-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.ttd-menu li {
    position: relative;
}

.ttd-menu li a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13px 15px;
    display: block;
    white-space: nowrap;
    transition: var(--transition-fast);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ttd-menu li a:hover,
.ttd-menu li.current-menu-item>a {
    background: var(--red-dark);
    color: var(--text-white);
}

/* Dropdown */
.ttd-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    border-top: 3px solid var(--red);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 9999;
}

.ttd-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ttd-menu li ul li a {
    color: var(--text-body);
    padding: 10px 18px;
    font-size: var(--fs-base);
    font-weight: 500;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
}

.ttd-menu li ul li:last-child a {
    border-bottom: none;
}

.ttd-menu li ul li a:hover {
    background: var(--red-tint);
    color: var(--red);
}


/* 
   MOBILE RESPONSIVE
 */
@media (max-width: 768px) {
    .ttd-topbar {
        padding: 5px 12px;
        font-size: 10px;
    }

    .ttd-social {
        display: none;
    }

    .ttd-top {
        padding: 10px 0;
    }

    .ttd-logos {
        gap: 8px;
    }

    .ttd-logo-circle {
        width: 56px;
        height: 56px;
    }

    .ttd-logo-govt {
        width: 50px;
        height: 50px;
    }

    .ttd-title h1 {
        font-size: var(--fs-lg);
    }

    .ttd-title .gov-line,
    .ttd-title .min-line {
        font-size: 11px;
    }

    .ttd-flag img {
        width: 46px;
    }

    .ttd-hamburger {
        display: block;
    }

    .ttd-nav .ttd-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ttd-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .ttd-menu.open {
        display: flex;
    }

    .ttd-menu li a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 11px 16px;
    }

    .ttd-menu li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid rgba(255, 255, 255, 0.25);
        background: rgba(0, 0, 0, 0.12);
        padding-left: var(--sp-md);
    }

    .ttd-menu li ul li a {
        color: rgba(255, 255, 255, 0.85);
    }

    .ttd-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .ttd-logos {
        gap: 6px;
    }

    .ttd-logo-circle {
        width: 44px;
        height: 44px;
    }

    .ttd-logo-govt {
        width: 40px;
        height: 40px;
    }

    .ttd-title h1 {
        font-size: var(--fs-base);
        letter-spacing: 0;
    }

    .ttd-flag img {
        width: 36px;
    }

    .ttd-lang {
        display: none;
    }
}


/* 
   BANNER / HERO
 */
.ttd-banner,
.about-hero {
    position: relative;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ttd-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 4, 4, 0.68);
    z-index: 1;
}

.ttd-banner-content {
    color: var(--text-white);
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.ttd-banner-content h2,
.about-hero h3 {
    font-size: var(--fs-5xl);
    font-weight: 700;
    font-family: var(--font-serif);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin: 0 0 10px;
}

.ttd-banner-content p,
.about-hero>.container>p {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    letter-spacing: 2px;
    font-style: italic;
}


/* 
   FOOTER
 */
.ttd-footer-top {
    background: var(--red-dark);
    padding: 50px 0;
}

.ttd-footer-container {
    max-width: var(--max-w);
    margin: auto;
    padding: 0 var(--sp-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 8px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: var(--fs-base);
    padding-left: 14px;
    position: relative;
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.footer-col ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--gold-light);
}

.footer-col ul li a:hover {
    color: var(--text-white);
}

.footer-counter p {
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0 4px;
    font-size: var(--fs-base);
}

.counter {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 4px 12px;
    font-weight: 700;
    border-radius: var(--r-sm);
    font-size: var(--fs-base);
}

.counter.highlight {
    background: var(--gold);
    color: var(--red-deep);
}

.ttd-footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 254, 254, 0.70);
    padding: 14px var(--sp-lg);
    background-color: var(--gold-light);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    font-family: var(--font-sans);
    gap: 8px;
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.70);
    font-size: var(--fs-base);
    /* margin: 0 0 5px; */
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ttd-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul li a {
        padding-left: 0;
    }

    .footer-col ul li a::before {
        display: none;
    }

    .ttd-footer-bottom {
        text-align: center;
    }
}


/* 
   MUSIC ICON
 */
.music-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    cursor: pointer;
    background: var(--red);
    z-index: 99999;
    color: var(--text-white);
    padding: 10px 14px;
    border-radius: var(--r-full);
    user-select: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.music-icon:hover {
    background: var(--red-dark);
}


/* 
   NOTICE TABLE
 */
.ttd-table-container {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    margin: 20px 0;
}

.ttd-custom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
}

.ttd-custom-table thead {
    background: var(--red);
    color: var(--text-white);
}

.ttd-custom-table th,
.ttd-custom-table td {
    padding: 12px 14px;
    border: 1px solid var(--border);
    text-align: left;
    font-size: var(--fs-base);
}

.ttd-custom-table tr:nth-child(even) {
    background-color: var(--off-white);
}

.read-more-btn {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-sm);
}

.read-more-btn:hover {
    color: var(--red-dark);
    text-decoration: underline;
}


/* 
   HOMEPAGE — QUICK STRIP
 */
.fp-quick-strip {
    background: var(--red-deep);
    border-top: none;
    padding: 0;
}

.fp-quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.fp-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 26px;
    color: rgba(255, 255, 255, 0.80) !important;
    text-decoration: none !important;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition-fast);
    font-family: var(--font-sans);
}

.fp-quick-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white) !important;
}

.fp-ql-icon {
    font-size: 18px;
}


/* 
   HOMEPAGE — SECTION HEADINGS
 */
.fp-section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.fp-heading-ornament {
    font-size: 26px;
    margin-bottom: 6px;
    color: var(--gold);
}

.fp-section-heading h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--red);
    margin: 0 0 6px;
    font-family: var(--font-serif);
}

.fp-section-heading h2 span {
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.fp-heading-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Light variant (dark backgrounds) */
.fp-heading-light h2 {
    color: var(--text-white);
}

.fp-heading-light h2 span {
    color: rgba(255, 255, 255, 0.6);
}

.fp-heading-light .fp-heading-ornament {
    color: var(--gold-light);
}


/* 
   HOMEPAGE — DARSHAN SECTION
 */
.fp-darshan-section {
    padding: 55px 0 45px;
    background: var(--white);
}

.fp-darshan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

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

@media (max-width: 480px) {
    .fp-darshan-grid {
        grid-template-columns: 1fr;
    }
}

.fp-darshan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border);
    border-radius: var(--r-md);
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.fp-darshan-card.fp-darshan-open {
    border-top-color: var(--red);
    background: var(--red-tint);
}

.fp-dc-time {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.fp-dc-name {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--red);
    font-family: var(--font-deva);
    margin-bottom: 3px;
}

.fp-dc-eng {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 12px;
}

.fp-dc-badge {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--light);
    color: var(--text-muted);
}

.fp-dc-badge.open {
    background: var(--success-bg);
    color: var(--success);
}

.fp-darshan-note {
    background: var(--light);
    border-left: 3px solid var(--gold);
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text-muted);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.fp-darshan-note a {
    color: var(--red);
    font-weight: 600;
}


/* 
   HOMEPAGE — PADT CARD GRID (TICKER + PADT CARDS)
 */
.padt-ticker {
    background: var(--light);
    border-left: 4px solid var(--gold);
    margin-bottom: 30px;
    padding: 10px 16px;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-size: var(--fs-base);
    color: var(--text-body);
}

.ticker-content {
    color: var(--text-body);
}

.padt-custom-grid {
    background: var(--light);
    padding: var(--sp-3xl) 30px var(--sp-3xl);
    font-family: var(--font-sans);
}

.padt-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.padt-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-radius: var(--r-md);
    overflow: hidden;
}

.padt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.padt-card-header {
    background: var(--red);
    color: var(--text-white);
    padding: 14px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.padt-card-header h3 {
    margin: 4px 0 0;
    font-size: var(--fs-md);
    letter-spacing: 0.5px;
    color: var(--text-white);
    font-weight: 600;
}

.padt-icon {
    font-size: 1.4rem;
}

.padt-card-body ul {
    list-style: none;
    padding: 16px 20px;
    margin: 0;
}

.padt-card-body ul li {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.padt-card-body ul li:last-child {
    border-bottom: none;
}

.padt-card-body ul li a {
    text-decoration: none;
    color: var(--text-body);
    font-size: var(--fs-base);
    font-weight: 500;
    transition: var(--transition-fast);
}

.padt-card-body ul li a:hover {
    color: var(--red);
}


/* 
   HOMEPAGE — SCROLL / SCHEDULE WIDGET
 */
.padt-scroll {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: var(--r-md);
    padding: 16px;
    color: var(--text-body);
    box-shadow: var(--shadow-sm);
}

.scroll-label {
    font-weight: 700;
    text-align: center;
    color: var(--red);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    font-size: var(--fs-md);
    margin-bottom: 8px;
}

.scroll-date {
    text-align: center;
    font-size: var(--fs-sm);
    margin: 8px 0;
    font-weight: 600;
    color: var(--text-muted);
}

.scroll-event {
    margin: 12px 0;
    text-align: center;
}

.scroll-event .time {
    display: block;
    color: var(--text-muted);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.scroll-event .desc {
    font-weight: 600;
    font-size: var(--fs-md);
    color: var(--text-dark);
}


/* 
   HOMEPAGE — STATS SECTION
 */
.fp-stats-section {
    background: var(--red-deep);
    padding: var(--sp-3xl) 0;
}

.fp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

@media (max-width: 768px) {
    .fp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fp-stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-stat-item:last-child {
    border-right: none;
}

.fp-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    display: inline;
    line-height: 1;
}

.fp-stat-suffix {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    display: inline;
    vertical-align: top;
    margin-top: 8px;
}

.fp-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.60);
    margin-top: 8px;
    line-height: 1.5;
}


/* 
   HOMEPAGE — FESTIVALS SECTION
 */
.fp-festivals-section {
    padding: 60px 0;
    background: var(--off-white);
}

.fp-festivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .fp-festivals-grid {
        grid-template-columns: 1fr;
    }
}

.fp-festival-card {
    display: flex;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 18px;
    transition: var(--transition);
}

.fp-festival-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.fp-festival-featured {
    border-left: 3px solid var(--red);
}

.fp-fc-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--red);
    color: var(--text-white);
    border-radius: var(--r-sm);
    padding: 10px 12px;
    min-width: 56px;
    height: fit-content;
    flex-shrink: 0;
}

.fp-fc-month {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.80;
}

.fp-fc-day {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.fp-fc-year {
    font-size: 10px;
    opacity: 0.65;
}

.fp-fc-info h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--red);
    margin: 0 0 5px;
}

.fp-fc-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.fp-fc-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 5px;
}


/* 
   HOMEPAGE — VISITOR INFO SECTION
 */
.fp-visitor-section {
    padding: 60px 0;
    background: var(--white);
}

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

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

@media (max-width: 480px) {
    .fp-visitor-grid {
        grid-template-columns: 1fr;
    }
}

.fp-visitor-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 24px 18px;
    text-align: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.fp-visitor-card:hover {
    background: var(--red-tint);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.fp-vc-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.fp-visitor-card h3 {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--red);
    margin: 0 0 8px;
}

.fp-visitor-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.fp-visitor-card a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.fp-visitor-card a:hover {
    text-decoration: underline;
}

.fp-visitor-card strong {
    color: var(--text-dark);
}

/* 
   HOMEPAGE — NEWS SECTION
 */
.fp-news-section {
    padding: 60px 0;
    background: var(--light);
}

.fp-btn-outline {
    display: inline-block;
    border: 1px solid var(--red);
    color: var(--red) !important;
    padding: 10px 26px;
    border-radius: var(--r-sm);
    font-size: var(--fs-base);
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition-fast);
}

.fp-btn-outline:hover {
    background: var(--red);
    color: var(--text-white) !important;
}

.fp-btn-gold {
    display: inline-block;
    background: var(--red);
    color: var(--text-white) !important;
    padding: 12px 28px;
    border-radius: var(--r-sm);
    font-size: var(--fs-base);
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--transition-fast);
}

.fp-btn-gold:hover {
    background: var(--red-dark);
}


/* 
   HISTORY TIMELINE
 */
.padt-timeline-section {
    background: var(--white);
    padding: 70px 20px 80px;
}

.padt-timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.padt-timeline-ornament {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
}

.padt-timeline-header h2 {
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
    font-family: var(--font-serif);
}

.padt-timeline-header p {
    font-size: var(--fs-base);
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.padt-timeline-rule {
    width: 70px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.padt-timeline-body {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.padt-timeline-body::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%);
}

.padt-tl-item {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    gap: 0;
    margin-bottom: 40px;
    align-items: start;
    position: relative;
}

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

.padt-tl-left {
    padding-right: 18px;
    text-align: right;
}

.padt-tl-right {
    padding-left: 18px;
    text-align: left;
}

.padt-tl-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: var(--r-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.padt-tl-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.padt-tl-item:nth-child(even) .padt-tl-card {
    border-top-color: var(--red);
}

.padt-tl-left .padt-tl-card::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--border);
}

.padt-tl-right .padt-tl-card::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid var(--border);
}

.padt-tl-ghost {
    visibility: hidden;
    pointer-events: none;
}

.padt-tl-card-era {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--fs-xs);
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 5px;
}

.padt-tl-era-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 10px;
    flex-shrink: 0;
}

.padt-tl-left .padt-tl-card-era {
    justify-content: flex-end;
}

.padt-tl-card-title {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.35;
    transition: var(--transition-fast);
}

.padt-tl-card:hover .padt-tl-card-title {
    color: var(--red);
}

.padt-tl-card-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.padt-tl-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
    position: relative;
    z-index: 2;
    gap: 4px;
}

.padt-tl-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--r-full);
    background: var(--white);
    border: 2px solid var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
    transition: var(--transition-fast);
}

.padt-tl-item:nth-child(even) .padt-tl-dot {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(140, 26, 26, 0.12);
}

.padt-tl-item:hover .padt-tl-dot {
    transform: scale(1.3);
}

.padt-tl-year {
    background: var(--red);
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.padt-tl-item:nth-child(even) .padt-tl-year {
    background: var(--gold);
    color: var(--red-deep);
}

@media (max-width: 640px) {
    .padt-timeline-body::before {
        left: 18px;
    }

    .padt-tl-item {
        grid-template-columns: 40px 1fr;
    }

    .padt-tl-ghost,
    .padt-tl-left {
        display: none;
    }

    .padt-tl-right {
        grid-column: 2;
        padding-left: 14px;
        text-align: left;
    }

    .padt-tl-center {
        grid-column: 1;
        padding-top: 16px;
        align-items: center;
    }

    .padt-tl-year {
        font-size: 9px;
        padding: 2px 6px;
    }

    .padt-tl-left .padt-tl-card::after,
    .padt-tl-right .padt-tl-card::before {
        display: none;
    }

    .padt-timeline-header h2 {
        font-size: var(--fs-3xl);
    }
}


/* 
   ABOUT PAGE
 */
.about-section {
    padding: var(--sp-4xl) var(--sp-lg);
    max-width: var(--max-w);
    margin: 0 auto;
}

.gray-bg {
    background: var(--light);
    max-width: 100%;
}

.section-title h2 {
    color: var(--red);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
    text-align: center;
}

.mv-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border-radius: var(--r-md);
}

.mv-box h3 {
    color: var(--red);
    margin-bottom: 12px;
    font-size: var(--fs-xl);
}

.mv-box p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: var(--fs-md);
}

.about-section.structure {
    padding: 20px 50px;
}

.about-section .section-title h2 {
    text-align: center;
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: var(--red);
    margin-bottom: 40px;
    position: relative;
}

.structure-box.main-council {
    max-width: 700px;
    margin: 0 auto 50px;
    background: var(--red);
    color: var(--text-white);
    padding: 32px;
    text-align: center;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.structure-box.main-council h3 {
    font-size: var(--fs-3xl);
    margin-bottom: 10px;
    color: var(--text-white);
}

.structure-box.main-council p {
    opacity: 0.85;
    font-size: var(--fs-md);
    color: var(--text-white);
}

.structure-box.main-council::after {
    content: "";
    position: absolute;
    bottom: -36px;
    left: 50%;
    width: 1px;
    height: 36px;
    background: var(--border);
    transform: translateX(-50%);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    position: relative;
}

.division-card {
    background: var(--white);
    padding: 26px 22px;
    border-radius: var(--r-lg);
    text-align: center;
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.division-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--red);
}

.division-card h4 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.division-card:hover h4 {
    color: var(--red);
}

.division-card p {
    font-size: var(--fs-base);
    color: var(--text-muted);
    line-height: 1.5;
}

.legal-box {
    background: var(--red);
    padding: 36px;
    text-align: center;
    color: var(--text-white);
    border-radius: var(--r-md);
}

.legal-box h3 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.legal-box p {
    color: rgba(255, 255, 255, 0.80);
}


/* 
   BOARD OF DIRECTORS (About Page)
 */
.padt-board-section {
    position: relative;
    background: var(--light);
    padding: 70px 20px 80px;
    overflow: hidden;
}

.padt-board-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(140, 26, 26, 0.02) 40px, rgba(140, 26, 26, 0.02) 41px);
    pointer-events: none;
    z-index: 1;
}

.padt-board-header {
    text-align: center;
    margin-bottom: 50px;
}

.padt-board-emblem {
    font-size: 38px;
    display: block;
    margin-bottom: 10px;
}

.padt-board-header h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--red);
    margin: 0 0 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.padt-board-subtitle {
    font-size: var(--fs-md);
    color: var(--text-muted);
    font-style: italic;
    margin: 0 0 16px;
    font-family: var(--font-deva);
}

.padt-board-rule {
    width: 70px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Patron */
.padt-patron-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto 50px;
}

.padt-patron-label {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.padt-patron-label span {
    background: var(--red);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: var(--r-pill) var(--r-pill) 0 0;
}

.padt-patron-label span:first-child {
    background: var(--red-dark);
    font-family: var(--font-deva);
    margin-right: 2px;
}

.padt-patron-card {
    display: flex;
    gap: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.padt-patron-card::after {
    content: 'ॐ';
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-size: 160px;
    color: rgba(140, 26, 26, 0.04);
    font-family: var(--font-deva);
    line-height: 1;
    pointer-events: none;
}

.padt-patron-photo-wrap {
    flex-shrink: 0;
    text-align: center;
}

.padt-patron-photo {
    width: 150px;
    height: 175px;
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: var(--shadow-md);
}

.padt-patron-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.padt-photo-fallback {
    font-size: 56px;
    line-height: 1;
}

.padt-patron-badge {
    display: inline-block;
    background: var(--red);
    color: var(--text-white);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: var(--r-pill);
}

.padt-patron-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.padt-patron-rank {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 5px;
}

.padt-patron-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
    margin: 0 0 4px;
    line-height: 1.2;
}

.padt-patron-title-np {
    font-family: var(--font-deva);
    font-size: var(--fs-lg);
    color: var(--text-muted);
    margin-bottom: 14px;
}

.padt-patron-desc {
    font-size: var(--fs-base);
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
}

.padt-patron-seal {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-muted);
    background: var(--light);
    border: 1px solid var(--border);
    padding: 4px 14px;
    border-radius: var(--r-pill);
}

/* Official Row */
.padt-official-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 36px;
}

.padt-official-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border-top: 3px solid var(--red);
}

.padt-official-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.padt-official-ribbon {
    position: absolute;
    top: 14px;
    left: -1px;
    background: var(--red);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 12px 3px 10px;
    border-radius: 0 var(--r-pill) var(--r-pill) 0;
}

.treasurer-ribbon {
    background: var(--gold);
    color: var(--red-deep);
}

.padt-official-photo-wrap {
    margin: 14px auto 14px;
}

.padt-official-photo {
    width: 100px;
    height: 112px;
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.padt-official-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.padt-official-designation {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.padt-official-name {
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--red);
    margin: 0 0 8px;
}

.padt-official-role-badge {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 3px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 10px;
    font-family: var(--font-deva);
}

.secretary-badge {
    background: rgba(140, 26, 26, 0.08);
    color: var(--red);
    border: 1px solid rgba(140, 26, 26, 0.18);
}

.treasurer-badge {
    background: rgba(184, 134, 11, 0.08);
    color: var(--gold);
    border: 1px solid rgba(184, 134, 11, 0.18);
}

.padt-official-contact {
    font-size: var(--fs-base);
    color: var(--text-muted);
}

.padt-official-contact a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.padt-official-contact a:hover {
    text-decoration: underline;
}

/* Exec banner */
.padt-exec-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--red);
    border-radius: var(--r-md);
    padding: 18px 26px;
    max-width: 860px;
    margin: 0 auto 50px;
    box-shadow: var(--shadow-md);
}

.padt-exec-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.padt-exec-info {
    flex: 1;
}

.padt-exec-label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 3px;
}

.padt-exec-name {
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--text-white);
}

.padt-exec-contact {
    flex-shrink: 0;
    text-align: right;
}

.padt-exec-contact a {
    color: rgba(255, 255, 255, 0.80);
    font-size: var(--fs-md);
    font-weight: 500;
    text-decoration: none;
}

.padt-exec-contact a:hover {
    color: var(--text-white);
}

/* Members heading */
.padt-members-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 32px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.padt-members-heading-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Members grid */
.padt-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.padt-member-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: var(--r-md);
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.padt-member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--red);
}

.padt-member-serial {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
}

.padt-member-photo {
    width: 86px;
    height: 96px;
    border-radius: var(--r-md);
    border: 2px solid var(--border);
    overflow: hidden;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
}

.padt-member-card:hover .padt-member-photo {
    border-color: var(--gold);
}

.padt-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.padt-photo-fallback.sm {
    font-size: 32px;
}

.padt-member-name {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 3px;
    line-height: 1.3;
}

.padt-member-role {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
    font-family: var(--font-deva);
}

.padt-member-phone {
    display: inline-block;
    font-size: var(--fs-sm);
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    background: rgba(140, 26, 26, 0.05);
    padding: 3px 10px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(140, 26, 26, 0.12);
    transition: var(--transition-fast);
}

.padt-member-phone:hover {
    background: var(--red);
    color: var(--text-white);
}

/* Board responsive */
@media (max-width: 900px) {
    .padt-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .padt-patron-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
    }

    .padt-patron-desc {
        border-left: none;
        border-top: 2px solid var(--gold);
        padding-left: 0;
        padding-top: 10px;
        text-align: left;
    }

    .padt-board-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .padt-official-row {
        grid-template-columns: 1fr;
    }

    .padt-members-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .padt-exec-banner {
        flex-direction: column;
        text-align: center;
    }

    .padt-patron-card {
        padding: 20px 14px;
    }

    .padt-patron-name {
        font-size: 22px;
    }

    .padt-board-section {
        padding: 50px 12px 60px;
    }
}

@media (max-width: 480px) {
    .padt-members-grid {
        grid-template-columns: 1fr;
    }
}


/* 
   NEWS PAGE
 */
.news-wrapper {
    max-width: var(--max-w);
    margin: 40px auto;
    padding: 0 15px;
    font-family: var(--font-sans);
}

.news-title {
    text-align: center;
    color: var(--red);
    font-size: var(--fs-5xl);
    font-weight: 700;
    margin-bottom: 28px;
    font-family: var(--font-serif);
}

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

.news-tabs button {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 8px 20px;
    color: var(--text-body);
    font-size: var(--fs-base);
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: var(--transition-fast);
    font-weight: 500;
}

.news-tabs button.active,
.news-tabs button:hover {
    background: var(--red);
    color: var(--text-white);
    border-color: var(--red);
}

.news-content {
    display: none;
}

.news-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    border-radius: var(--r-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--red);
}

.news-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: 8px;
}

.news-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.news-card h3 a:hover {
    color: var(--red);
}

.news-card p {
    font-size: var(--fs-base);
    color: var(--text-muted);
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}


/* 
   SERVICES PAGE
 */
.service-row {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(40px);
}

.service-row:nth-child(even) {
    grid-template-columns: 1fr 280px;
    background: var(--off-white);
}

.service-row:nth-child(even) .service-image {
    order: 2;
}

.service-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.service-row:hover .service-image img {
    transform: scale(1.04);
}

.service-content h3 {
    font-size: var(--fs-3xl);
    color: var(--red);
    margin-bottom: 14px;
    font-family: var(--font-serif);
    font-weight: 700;
}

.service-content p {
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-body);
    font-size: var(--fs-base);
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-top: 14px;
}

.service-content li {
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
    font-size: var(--fs-base);
    color: var(--text-body);
}

.service-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--red);
    font-weight: 700;
}

.service-row.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease;
}

.timeline-step {
    background: var(--white);
    padding: 18px 22px;
    margin-bottom: 14px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    font-size: var(--fs-md);
    color: var(--text-body);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-30px);
}

.timeline-step.show {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

@media (max-width: 768px) {

    .service-row,
    .service-row:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-row:nth-child(even) .service-image {
        order: 0;
    }

    .service-image img {
        height: 190px;
    }
}


/* 
   PUJA PAGE
 */
.puja-wrapper {
    max-width: 1150px;
    margin: 40px auto;
    padding: 20px;
    font-family: var(--font-sans);
}

.puja-title {
    text-align: center;
    margin-bottom: 40px;
}

.puja-section-title {
    margin: 40px 0 16px;
    font-size: var(--fs-3xl);
    color: var(--red);
    font-family: var(--font-serif);
    font-weight: 700;
}

.puja-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.puja-table thead {
    background: var(--red);
    color: var(--text-white);
}

.puja-table th,
.puja-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-base);
}

.puja-table th {
    text-align: left;
    font-weight: 600;
}

.puja-table td.currency {
    text-align: right;
    font-weight: 500;
}

.puja-table tr:nth-child(even) {
    background: var(--off-white);
}

.puja-table tr:hover td {
    background: var(--red-tint);
}

@media (max-width: 768px) {

    .puja-table th,
    .puja-table td {
        font-size: 13px;
        padding: 9px;
    }
}


/* 
   MONUMENTS PAGE
 */
#pashupati-page {
    background: var(--light);
    padding-bottom: 70px;
}

#pashupati-page .monuments-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

#pashupati-page .section-title {
    text-align: center;
    font-size: var(--fs-5xl);
    margin-bottom: 40px;
    color: var(--red);
    font-family: var(--font-serif);
    font-weight: 700;
}

#pashupati-page .monument-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    #pashupati-page .monument-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #pashupati-page .monument-grid {
        grid-template-columns: 1fr;
    }
}

#pashupati-page .monument-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transform: translateY(30px);
    opacity: 0;
    transition: 0.5s ease;
}

#pashupati-page .monument-card.visible {
    transform: translateY(0);
    opacity: 1;
}

#pashupati-page .monument-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

#pashupati-page .monument-image {
    height: 220px;
    overflow: hidden;
}

#pashupati-page .monument-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    display: block;
}

#pashupati-page .monument-card:hover img {
    transform: scale(1.04);
}

#pashupati-page .monument-content {
    padding: 20px;
}

#pashupati-page .monument-content h3 {
    font-size: var(--fs-xl);
    color: var(--red);
    margin-bottom: 10px;
    font-weight: 700;
}

#pashupati-page .monument-content p {
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text-body);
}

#pashupati-page .more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

#pashupati-page .more-content.active {
    max-height: 800px;
    opacity: 1;
}

#pashupati-page .read-more-btn {
    display: inline-block;
    margin-top: 12px;
    color: var(--red);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

#pashupati-page .read-more-btn:hover {
    color: var(--red-dark);
    text-decoration: underline;
}


/* 
   Festivals PAGE 
 */
.fst-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── FILTER TABS ── */
.fst-filter {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 80;
    box-shadow: var(--shadow-sm);
}

.fst-filter-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.fst-filter-inner::-webkit-scrollbar {
    display: none;
}

.fst-filter-btn {
    padding: 14px 22px;
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
    font-weight: 600;
}

.fst-filter-btn:hover {
    color: var(--red-tint);
    background-color: var(--red-dark);
    border-bottom-color: var(--gold-light);
}

.fst-filter-btn.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* ── UPCOMING STRIP ── */
.fst-upcoming {
    background: var(--gold-light);
    padding: 10px 0;
    overflow: hidden;
}

.fst-upcoming-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fst-upcoming-label {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red-deep);
    background: rgba(74, 14, 14, 0.12);
    padding: 4px 14px;
    white-space: nowrap;
    font-weight: 700;
}

.fst-upcoming-text {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--red-dark);
    font-weight: 600;
}

/* ── FEATURED FESTIVAL ── */
.fst-featured {
    padding: var(--sp-4xl) 0;
    background: var(--white);
}

.fst-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 768px) {
    .fst-featured-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.fst-img-wrap {
    position: relative;
}

.fst-img-wrap img {
    width: 100%;
    display: block;
    border: 3px solid var(--border);
    border-top: 3px solid var(--red);
    box-shadow: var(--shadow-lg);
}

.fst-img-badge {
    position: absolute;
    top: 16px;
    left: 0;
    background: var(--red-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.fst-section-tag {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.fst-featured-text {
    font-family: var(--font-display);
    font-size: var(--fs-5xl);
    color: var(--red-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.fst-featured-text p {
    font-size: var(--fs-lg);
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 12px;
    font-family: var(--font-serif);
}

.fst-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.fst-pill {
    border: 1px solid var(--border);
    padding: 5px 14px;
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--light);
    border-radius: var(--r-sm);
}

.fst-pill strong {
    color: var(--gold-light);
}

/* ── SECTION HEADING ── */
.fst-heading {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}

.fst-heading .om {
    font-family: var(--font-deva);
    font-size: var(--fs-3xl);
    color: var(--gold-light);
    display: block;
    margin-bottom: 8px;
}

.fst-heading h2 {
    font-family: var(--font-serif);
    font-size: var(--fs-4xl);
    color: var(--red);
    font-weight: 700;
}

.fst-heading h2 span {
    display: block;
    font-family: var(--font-deva);
    font-size: var(--fs-lg);
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}

/* Light variant */
.fst-heading-light .om {
    color: var(--gold-light);
}

.fst-heading-light h2 {
    color: var(--text-white);
}

.fst-heading-light h2 span {
    color: var(--text-white-70);
}

/* ── FESTIVALS GRID ── */
.fst-grid-section {
    padding: var(--sp-4xl) 0;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.fst-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .fst-cards-grid {
        grid-template-columns: 1fr;
    }
}

.fst-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red-dark);
    border-radius: var(--r-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.fst-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}

.fst-card-header {
    background: var(--red-dark);
    padding: 22px 22px 18px;
}

.fst-card-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.fst-card-icon {
    font-size: 26px;
    line-height: 1;
}

.fst-card-date {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: var(--r-sm);
    font-weight: 600;
}

.fst-card-title {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.fst-card-nep {
    font-family: var(--font-deva);
    font-size: var(--fs-sm);
    color: var(--gold-light);
}

.fst-card-body {
    padding: 18px 22px;
    flex: 1;
}

.fst-card-body p {
    font-size: var(--fs-md);
    color: var(--text-body);
    line-height: 1.8;
    font-family: var(--font-serif);
}

.fst-card-footer {
    padding: 12px 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--off-white);
}

.fst-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fst-tag {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 2px 8px;
    border-radius: var(--r-pill);
}

.fst-card-link {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.fst-card-link:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

/* ── CALENDAR ── */
.fst-calendar-section {
    padding: var(--sp-4xl) 0;
    background: var(--red-dark);
}

.fst-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: var(--sp-2xl);
}

.fst-cal-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 22px 20px;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.fst-cal-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--gold-light);
}

.fst-cal-month {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 5px;
    font-weight: 700;
}

.fst-cal-name {
    font-family: var(--font-serif);
    font-size: var(--fs-md);
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 3px;
}

.fst-cal-nep {
    font-family: var(--font-deva);
    font-size: var(--fs-sm);
    color: var(--text-white-50);
}

/* ── JATRA & MELA ── */
.fst-jatra-section {
    padding: var(--sp-4xl) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.fst-jatra-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: var(--sp-2xl);
}

.fst-jatra-item {
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold-light);
    background: var(--off-white);
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition-fast);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.fst-jatra-item:hover {
    border-left-color: var(--red-dark);
    background: var(--red-tint);
    box-shadow: var(--shadow-sm);
}

.fst-jatra-num {
    font-family: var(--font-serif);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    min-width: 38px;
}

.fst-jatra-name {
    font-family: var(--font-serif);
    font-size: var(--fs-md);
    color: var(--red);
    font-weight: 700;
    margin-bottom: 3px;
}

.fst-jatra-nep {
    font-family: var(--font-deva);
    font-size: var(--fs-sm);
    color: var(--gold-light);
    margin-bottom: 4px;
}

.fst-jatra-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── REVEAL ── */
.fst-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fst-reveal.visible {
    opacity: 1;
    transform: none;
}

.fst-d1 {
    transition-delay: 0.1s;
}

.fst-d2 {
    transition-delay: 0.2s;
}

/* COntact Us page */
/* Uses global tokens from style.css — no separate :root needed */

.ct-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── MAIN CONTACT ── */
.ct-main {
    padding: var(--sp-4xl) 0;
    background: var(--white);
}

.ct-main-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start;
}

@media (max-width: 900px) {
    .ct-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left */
.ct-left-title {
    font-family: var(--font-display);
    font-size: var(--fs-4xl);
    color: var(--red-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.ct-left-title span {
    display: block;
    font-family: var(--font-deva);
    font-size: var(--fs-xl);
    color: var(--gold-light);
    font-weight: 400;
    margin-top: 4px;
}

.ct-rule {
    width: 56px;
    height: 3px;
    background: var(--gold-light);
    margin: 16px 0;
    border-radius: 2px;
}

.ct-left-desc {
    font-size: var(--fs-md);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: var(--font-serif);
}

.ct-detail-list {
    list-style: none;
    padding: 0;
}

.ct-detail-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.ct-detail-label {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 3px;
    font-weight: 700;
}

.ct-detail-value {
    font-size: var(--fs-md);
    color: var(--text-body);
    line-height: 1.6;
}

.ct-detail-value a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.ct-detail-value a:hover {
    text-decoration: underline;
}

.ct-emergency {
    margin-top: 24px;
    background: var(--red-dark);
    padding: 18px 20px;
    border-left: 4px solid var(--gold-light);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.ct-emergency-label {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 5px;
    font-weight: 700;
}

.ct-emergency-title {
    font-family: var(--font-serif);
    font-size: var(--fs-md);
    color: var(--text-white);
    margin-bottom: 4px;
}

.ct-emergency-num {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ct-social {
    margin-top: 24px;
}

.ct-social-label {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 700;
}

.ct-social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ct-social-link {
    padding: 6px 14px;
    border: 1px solid var(--border);
    background: var(--light);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: var(--transition-fast);
    font-weight: 600;
}

.ct-social-link:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-tint);
}

/* Right — form panel */
.ct-form-panel {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ct-form-panel-header {
    background: var(--gold-light);
    padding: 18px 24px;
}

.ct-form-panel-header h3 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--red-dark);
    margin-bottom: 3px;
}

.ct-form-panel-header p {
    font-size: var(--fs-sm);
    color: var(--text-white);
    font-style: italic;
}

.ct-form-panel-body {
    background: var(--white);
    padding: 28px 24px;
    min-height: 380px;
}

/* ── ELEMENTOR PLACEHOLDER ZONE ── */
.ct-elp {
    border: 2px dashed var(--border);
    background: var(--light);
    padding: 28px 20px;
    text-align: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--r-md);
}

.ct-elp-title {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 700;
}

.ct-elp-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-style: italic;
    max-width: 300px;
    line-height: 1.6;
}

.ct-elp-badge {
    display: inline-block;
    background: var(--red);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--r-sm);
    font-weight: 700;
}

/* ── MAP ── */
.ct-map-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ct-map-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
    .ct-map-inner {
        grid-template-columns: 1fr;
    }
}

.ct-map-info {
    background: var(--red-dark);
    padding: 44px 32px;
}

.ct-map-info h3 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--text-white);
    margin-bottom: 18px;
}

.ct-route-list {
    list-style: none;
    padding: 0;
}

.ct-route-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-white-70);
    font-size: var(--fs-base);
    line-height: 1.6;
}

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

.ct-route-item strong {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    letter-spacing: 0.08em;
    color: var(--gold-light);
    margin-bottom: 2px;
    font-weight: 700;
}

.ct-route-item a {
    color: var(--gold-light);
    font-weight: 600;
}

.ct-map-frame iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: 0;
}

/* ── FAQ ── */
.ct-faq-section {
    padding: var(--sp-4xl) 0;
    background: var(--red-dark);
}

.ct-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: var(--sp-2xl);
}

@media (max-width: 768px) {
    .ct-faq-grid {
        grid-template-columns: 1fr;
    }
}

.ct-faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 26px;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
    cursor: pointer;
}

.ct-faq-item:hover,
.ct-faq-item.open {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--gold-light);
}

.ct-faq-q {
    font-family: var(--font-serif);
    font-size: var(--fs-md);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.ct-faq-toggle {
    font-size: 18px;
    color: var(--gold-light);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.ct-faq-item.open .ct-faq-toggle {
    transform: rotate(45deg);
}

.ct-faq-a {
    font-size: var(--fs-base);
    color: var(--text-white-70);
    line-height: 1.8;
    margin-top: 12px;
    display: none;
    font-family: var(--font-serif);
}

.ct-faq-item.open .ct-faq-a {
    display: block;
}

/* ── IMPORTANT LINKS ── */
.ct-links-section {
    padding: var(--sp-4xl) 0;
    background: var(--light);
}

.ct-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 14px;
    margin-top: var(--sp-2xl);
}

.ct-link-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border);
    padding: 20px 18px;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-sm);
}

.ct-link-card:hover {
    border-top-color: var(--red-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.ct-link-card-title {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.ct-link-card-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

.ct-link-card-arrow {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--gold-light);
    margin-top: 8px;
    display: block;
    font-weight: 700;
}

.ct-link-card:hover .ct-link-card-arrow {
    color: var(--red-dark);
}

/* ── MISSION / VISION ── */
.ct-mission-section {
    padding: var(--sp-4xl) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.ct-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: var(--sp-2xl);
}

@media (max-width: 768px) {
    .ct-mv-grid {
        grid-template-columns: 1fr;
    }
}

.ct-mv-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ct-mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.ct-mv-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--red);
    margin-bottom: 12px;
}

.ct-mv-card p {
    font-size: var(--fs-md);
    color: var(--text-body);
    line-height: 1.85;
    font-family: var(--font-serif);
}

/* ── SECTION HEADING (shared) ── */
.ct-heading {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}

.ct-heading .om {
    font-family: var(--font-deva);
    font-size: var(--fs-3xl);
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.ct-heading h2 {
    font-family: var(--font-display);
    font-size: var(--fs-4xl);
    color: var(--red);
    font-weight: 700;
}

.ct-heading h2 span {
    display: block;
    font-family: var(--font-deva);
    font-size: var(--fs-lg);
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 4px;
}

.ct-heading-light .om {
    color: var(--gold-light);
}

.ct-heading-light h2 {
    color: var(--text-white);
}

.ct-heading-light h2 span {
    color: var(--text-white-70);
}

/* ── REVEAL ── */
.ct-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ct-reveal.visible {
    opacity: 1;
    transform: none;
}

.ct-d1 {
    transition-delay: 0.1s;
}

.ct-d2 {
    transition-delay: 0.2s;
}


/* Gallery page css */
/* Gallery filter tabs */
.glr-filter {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 80;
    box-shadow: var(--shadow-sm);
}

.glr-filter-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: var(--max-w);
    margin: 10px auto;
    padding: 0 20px;
    gap:10px;
}

.glr-filter-inner::-webkit-scrollbar {
    display: none;
}

.glr-filter-btn {
    padding: 14px 22px;
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
    font-weight: 600;
    font-family: var(--font-sans);
}

.glr-filter-btn:hover {
    color: var(--red-dark);
    background-color: var(--gold-light);
    border-bottom-color: var(--red);
}

.glr-filter-btn.active {
    color: var(--gold-light);
    background-color: var(--red-dark);
    border-bottom-color: var(--gold-light);
}

/* Gallery wrapper and count line */
.glr-wrap {
    padding: 40px 0 70px;
    background: var(--light);
    min-height: 60vh;
}

/* Masonry-style grid */
.glr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 1100px) {
    .glr-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* Individual gallery item */
.glr-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.glr-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Thumbnail area */
.glr-thumb {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--light);
}

.glr-thumb img,
.glr-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.glr-item:hover .glr-thumb img,
.glr-item:hover .glr-thumb video {
    transform: scale(1.06);
}

/* Hover overlay with zoom icon */
.glr-overlay {
    position: absolute;
    inset: 0;
    background: rgba(140, 26, 26, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.glr-item:hover .glr-overlay {
    opacity: 1;
}

.glr-zoom {
    font-size: 28px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.glr-play {
    font-size: 40px;
}

/* Photo / Video badge on thumbnail */
.glr-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: var(--r-pill);
}

.glr-badge.photo {
    background: var(--red);
    color: var(--white);
}

.glr-badge.video {
    background: var(--gold);
    color: var(--red-deep);
}

/* Caption below thumbnail */
.glr-caption {
    padding: 12px 14px;
}

.glr-cap-cat {
    font-size: var(--fs-xs);
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    margin-bottom: 4px;
}

/* Empty state */
.glr-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.glr-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.glr-empty p {
    font-size: var(--fs-lg);
    font-style: italic;
}

/* Scroll reveal animation */
.glr-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.glr-reveal.visible {
    opacity: 1;
    transform: none;
}

/* Lightbox overlay */
.glr-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 4, 4, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.glr-lightbox.open {
    display: flex;
}

.glr-lb-inner {
    max-width: 900px;
    width: 100%;
    position: relative;
}

/* Lightbox media area */
.glr-lb-media {
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: var(--r-md);
    overflow: hidden;
}

.glr-lb-media img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.glr-lb-media video {
    max-width: 100%;
    max-height: 70vh;
    display: block;
}

/* Lightbox caption */
.glr-lb-info {
    padding: 14px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.glr-lb-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: var(--font-serif);
}

.glr-lb-desc {
    font-size: var(--fs-sm);
    color: var(--text-white-70);
    margin: 4px 0 0;
    font-style: italic;
    line-height: 1.6;
}

.glr-lb-counter {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    font-family: var(--font-sans);
}

/* Lightbox nav buttons */
.glr-lb-close,
.glr-lb-prev,
.glr-lb-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
}

.glr-lb-close:hover,
.glr-lb-prev:hover,
.glr-lb-next:hover {
    background: var(--red);
}

.glr-lb-close {
    top: -16px;
    right: -16px;
    width: 42px;
    height: 42px;
    font-size: 22px;
    line-height: 1;
}

.glr-lb-prev,
.glr-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    font-size: 28px;
}

.glr-lb-prev {
    left: -56px;
}

.glr-lb-next {
    right: -56px;
}

@media (max-width: 768px) {
    .glr-lb-prev {
        left: -8px;
    }

    .glr-lb-next {
        right: -8px;
    }

    .glr-lb-close {
        top: -50px;
        right: 0;
    }
}