:root {
    --red:       #F90101;
    --red-dark:  #F20519;
    --red-deep:  #d21d1d;  
    --gold:      #F2CB07;
    --gold-lt:   #F2CB07;
    --cream:     #fdf6ec;
    --cream2:    #f5ede0;
    --ink:       #1a0a00;
    --ink-mid:   #3d1f0d;
    --muted:     #7a5c48;
    --white:     #ffffff;
    --border:       #e8d5c4;
    --border-light: #e2e2e2;
    --shadow:    rgba(96,20,0,0.12);
    --ff-kan: 'Noto Serif Kannada', 'Tiro Kannada', serif;
    --ff-body: 'Figtree', sans-serif;
    --ff-head: 'Playfair Display', serif;
    --radius:    8px;
    --transition: 0.3s cubic-bezier(0.25,0.8,0.25,1);
}
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
html { 
    scroll-behavior: smooth; 
}
body { 
    font-family: var(--ff-body); 
    background: var(--white); 
    color: var(--ink); 
    overflow-x: hidden; 
}
a { 
    color: inherit; 
    text-decoration: none; 
}
img { 
    max-width: 100%; 
    display: block; 
}
ul { 
    list-style: none; 
}
@keyframes fadeUp { from { 
    opacity: 0; 
    transform: translateY(28px); 
}
    to { 
      opacity: 1; 
      transform: translateY(0);
} }
@keyframes fadeIn { from { 
    opacity: 0; 
} 
to { 
    opacity: 1; 
} }
@keyframes ticker { 
    0% { 
      transform: translateX(100%); } 
    100% { 
      transform: translateX(-100%); 
} }
@keyframes shimmer { 
  0% { 
    background-position: -400px 0; } 
    100% { background-position: 400px 0; 
} }
@keyframes pulse-dot { 
  0%,100% { 
    opacity: 1; 
    transform: scale(1); } 
  50% { 
    opacity: 0.5; 
    transform: scale(1.4); 
} }
@keyframes 
floatBtn { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

/* ===== TOP BAR ===== */
.topbar { 
    background: var(--red); 
    color: var(--cream2); 
    font-size: 0.72rem; 
    padding: 5px 0; 
    letter-spacing: 0.04em; 
}

.topbar-inner { 
    margin: 0 auto; 
    padding: 0 55px;

    display: flex;              /* IMPORTANT */
    justify-content: space-between; 
    align-items: center; 
}

/* Social icons styling */
.topbar-right a {
    color: var(--cream2);
    margin-left: 10px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.topbar-right a:hover {
    opacity: 0.7;
}

/* ===== HEADER ===== */

header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(96,20,0,0.25);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-main {
    width: 100%;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}
.logo-wrap {
    display: flex;
    align-items: center;
}
.logo-wrap img{
    width: 291px;
    height: 72px;
}
/* Default (Desktop) */
.site-logo {
    width: 61px;
    height: 59px;
}

/* Tablet (iPad) */
@media (max-width: 1024px) {
    .site-logo {
        width: 50px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .site-logo {
        width: 40px;
    }
    .logo-wrap img {
        width: 174px;
        height: 47px;
    }
    .topbar-inner {
        padding: 0 26px;
    }


}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 10px;
}
.lang-switch {
    display: flex;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
}
.lang-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
}
.lang-btn.active {
    background: var(--gold);
    color: var(--ink);
}
.btn-search {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-search:hover {
    background: rgba(0,0,0,0.1);
}
.btn-login {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}
.btn-login:hover {
    background: rgba(0,0,0,0.05);
}
.btn-join {
    padding: 7px 16px;
    border-radius: 20px;
    border: none;
    background: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}
.btn-join:hover {
    background: var(--gold-lt);
}

/* HIDE by default (desktop) */

/* ── Member Dropdown (logged-in state in header) ─────────────────── */
.member-dropdown {
    position: relative;
}
.btn-member-avatar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--red, #c0392b);
    color: var(--red, #c0392b);
    border-radius: 22px;
    padding: 6px 14px 6px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}
.btn-member-avatar i.fa-circle-user {
    font-size: 1.15rem;
}
.btn-member-avatar i.fa-chevron-down {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s;
}
.btn-member-avatar:hover,
.member-dropdown.open .btn-member-avatar {
    background: var(--red, #c0392b);
    color: #fff;
}
.member-dropdown.open .btn-member-avatar i.fa-chevron-down {
    transform: rotate(180deg);
}

.member-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    min-width: 180px;
    overflow: hidden;
    z-index: 999;
    border: 1px solid #f0f0f0;
}
.member-dropdown-menu.open {
    display: block;
    animation: ddFadeIn 0.15s ease;
}
@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.member-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #333;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.14s;
    font-family: inherit;
}
.member-dd-item:hover {
    background: #f7f7f7;
}
.member-dd-item i {
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    color: #888;
}
.member-dd-item:hover i {
    color: var(--red, #c0392b);
}
.member-dd-logout {
    color: var(--red, #c0392b);
    border-top: 1px solid #f0f0f0;
}
.member-dd-logout i {
    color: var(--red, #c0392b);
}

.hamburger {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

/* SHOW only on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    background: #fff;
    height: 100vh;
    z-index: 9999;
    transition: 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.mobile-top {
    display: flex;
    justify-content: flex-end; /* pushes button to right */
    padding: 15px;
}
.mobile-top button {
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}
/* ACTIONS */
.mobile-actions {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-actions .btn-login,
.mobile-actions .btn-join {
    width: 100%;
    padding: 10px;
}

/* CATEGORIES */
.mobile-categories {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    overflow-y: auto;
}

.mobile-categories a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-size: 15px;
}
@media (max-width: 768px) {
    .categories-strip {
        display: none;
    }
    .mobile-actions {
        width: 220px;
    }
    .lang-switch button{
        font-size: 12px;
        width: 50%;

    }

}

/* AUTH MODAL */
.auth-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.auth-overlay.open { display: flex; }

.auth-modal {
  background: #fff;
  border-radius: 12px;
  width: 380px;
  max-width: 94vw;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.auth-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  font-size: 18px; color: #888;
  cursor: pointer;
}

.auth-body { padding: 24px; }

.auth-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Panels */
.auth-panel { display: none; }
.auth-panel.active { display: block; }

/* Fields */
.auth-field { margin-bottom: 14px; }
.auth-field label {
  display: block;
  font-size: 12px; color: #666;
  margin-bottom: 5px;
}
.auth-field input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

/* Button */
.auth-submit {
  width: 100%;
  padding: 11px;
  background: var(--red, #e11d48);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.auth-submit:hover { opacity: 0.9; }

/* Switch text */
.auth-switch {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #888;
}
.auth-switch span {
  color: var(--red, #e11d48);
  cursor: pointer;
  font-weight: 600;
}
@media (max-width: 1024px) {

    .header-main {
        padding: 0 20px;
        height: 64px;
    }

    .logo-text .kan {
        font-size: 0.9rem;
    }

    .logo-text .eng {
        font-size: 0.55rem;
    }
}

@media (max-width: 768px) {

    .header-main {
        padding: 0 14px;
        height: 60px;
    }

    .logo-emblem {
        width: 40px;
        height: 40px;
    }

    .logo-text .kan {
        font-size: 0.85rem;
    }

    .logo-text .eng {
        font-size: 0.5rem;
    }

    .header-actions .btn-login,
    .header-actions .btn-join,
    .header-actions .lang-switch {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .logo-text .eng {
        display: none;
    }

    .logo-emblem {
        width: 36px;
        height: 36px;
    }
}



/* ===== TICKER ===== */
.ticker-bar {
    background: var(--ink-mid);
    color: var(--white);
    height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-label {
    background: var(--gold);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.06em;
    gap: 6px;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
}

.ticker-items {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-size: 0.78rem;
}

.ticker-items span::before {
    content: '●';
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.5rem;
    vertical-align: middle;
}


/* ===== HERO ===== */
.hero-section {
    max-width: 100%;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}
.hero-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 452px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slide video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.hero-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.hero-tag {
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 10px;
    width: fit-content;
}

.hero-featured h1 {
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bookings-event-card {
    cursor: pointer;
    position: relative;
}
.mag-card {
    cursor: pointer;
    position: relative;
}
.overlay-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
}
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.video-card iframe {
    width: 100%;
    height: 150px;
    border: none;
}
.video-card p {
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}
.hero-dots {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}
.hero-dots span {
    width: 6px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dots span.active {
    background: #fff;
    height: 26px;
}
.hero-featured img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.78; 
    transition: transform 0.5s ease, opacity 0.3s; 
    position: absolute; 
    inset: 0; 
}
.hero-featured:hover img { 
    transform: scale(1.04); 
    opacity: 0.65; 
}
.hero-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 0, 0, 0.92) 0%,
        rgba(10, 0, 0, 0.3) 55%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.hero-tag {
    background: var(--red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    width: fit-content;
}
.hero-featured h1 {
    font-family: var(--ff-kan);
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
}

.hero-featured .meta {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-featured .meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeUp 0.9s ease 0.1s both;
}

.hero-side-card {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.hero-side-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.hero-side-card img {
    width: 100px;
    height: 82px;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-side-card-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.side-tag {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-side-card h3 {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--ink);
}

.hero-side-card .meta {
    font-size: 0.65rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr; 
        padding: 14px;
        gap: 18px;
    }
    .hero-featured {
        height: 260px;
        border-radius: 10px;
    }
    .hero-slide video,
    .hero-slide img {
        height: 100%;
    }
    .hero-featured-overlay {
        padding: 16px;
    }
    .hero-featured h1 {
        font-size: 1rem;
        line-height: 1.35;
    }

    .hero-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    .hero-sidebar {
        flex-direction: column;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 6px;
    }
    .hero-sidebar::-webkit-scrollbar {
        display: none;
    }
    .video-card {
        min-width: 240px; 
        flex-shrink: 0;
        border-radius: 10px;
    }
    .video-card iframe {
        height: 140px;
    }
    .video-card p {
        font-size: 13px;
        padding: 8px;
    }
    .hero-dots {
        right: 8px;
        gap: 6px;
    }

    .hero-dots span {
        width: 5px;
        height: 14px;
    }

    .hero-dots span.active {
        height: 20px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr 280px;
        padding: 18px;
        gap: 20px;
    }
    .hero-featured {
        height: 360px;
    }
    .hero-featured h1 {
        font-size: 1.2rem;
    }
    .hero-featured-overlay {
        padding: 20px;
    }
    .video-card iframe {
        height: 130px;
    }
    .video-card p {
        font-size: 13px;
    }
    .hero-dots span {
        height: 16px;
    }
    .hero-dots span.active {
        height: 22px;
    }
}



/* ===== SECTION TITLE ===== */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.section-title .left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title h2 {
    font-family: var(--ff-kan);
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-title-bar {
    width: 4px;
    height: 28px;
    background: var(--red);
    border-radius: 2px;
}
.section-title .view-all {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.section-title .view-all:hover {
    color: var(--red-dark);
}
.section-wrap { 
    max-width: 100%; 
    padding: 42px; 
}
/* ===============================
          CATEGORIES STRIP 
==================================*/
.categories-strip { 
    background: var(--white); 
    border-top: 3px solid var(--red); 
    box-shadow: 0 3px 14px var(--shadow); 
}
.categories-inner { 
    max-width: 100%; 
    padding: 0 42px; 
    display: flex; 
    overflow-x: auto; 
    gap: 12px; 
    scrollbar-width: none; 
}
.categories-inner::-webkit-scrollbar { 
    display: none; 
}
.cat-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 6px; 
    padding: 12px 18px; 
    cursor: pointer; 
    border-bottom: 3px solid transparent; 
    transition: border-color 0.2s, color 0.2s; 
    white-space: nowrap; 
    flex-shrink: 0; 
    color: var(--ink-mid); 
}
.cat-item:hover, .cat-item.active { 
    border-bottom-color: var(--red); 
    color: var(--red); 
}
.cat-icon { 
    width: 40px; 
    height: 36px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1rem; 
    background: var(--cream2); 
    transition: background 0.2s, transform 0.2s; 
    color: var(--ink-mid); 
}
.cat-item:hover .cat-icon, .cat-item.active .cat-icon { 
    background: #fde8e8; 
    transform: scale(1.1); 
    color: var(--red);
}
.cat-label { 
    font-family: var(--ff-kan); 
    font-size: 14px; 
    font-weight: 600; 
}
@media (max-width: 768px) {
    .categories-inner {
        padding: 0 12px;
        gap: 8px;
    }

    .cat-item {
        padding: 10px 12px;
        gap: 4px;
    }

    .cat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .cat-label {
        font-size: 12px;
    }
    .section-wrap {
        padding: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .categories-inner {
        padding: 0 20px;
        gap: 10px;
    }

    .cat-item {
        padding: 11px 14px;
    }

    .cat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .cat-label {
        font-size: 13px;
    }
}


.single-ad {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Left - Logo (1/4) */
.ad-left {
    flex: 1;
}

.ad-left img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

/* Right - Ad (3/4) */
.ad-right {
    flex: 3;
}

.ad-right img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}
@media (max-width: 1024px) {
    .single-ad img {
        border-radius: 8px;
    }
}
@media (max-width: 640px) {
    .single-ad {
        padding:  0;
    }
    .single-ad {
        flex-direction: column;
    }

    .single-ad img {
        border-radius: 6px;
    }
}

/* ===== NEWS GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    cursor: pointer;
    transition: transform 0.28s, box-shadow 0.28s;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px var(--shadow);
}

.news-card-img {
    position: relative;
    overflow: hidden;
    height: 185px;
    background: var(--cream2);
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.06);
}

.news-card-img .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card-body {
    padding: 14px 16px 18px;
}

.news-card-body h3 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 10px;
    color: var(--ink);
    transition: color 0.2s;
}

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

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    color: var(--muted);
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card-meta .dot {
    color: var(--border);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 2px solid #4f4d4c;
}
.sidebar-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.view-all {
    font-size: 14px;
    text-decoration: none;
    color: #ff3c00;
    font-weight: 600;
    transition: 0.3s;
}
.view-all:hover {
    text-decoration: underline;
}
/* ============ MAGAZINE ====================== */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.mag-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    cursor: pointer;
    transition: transform 0.28s, box-shadow 0.28s;
}

.mag-card:hover {
    transform: translateY(-5px) rotate(-0.5deg);
    box-shadow: 0 12px 30px var(--shadow);
}

.mag-cover {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.mag-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.mag-card:hover .mag-cover img {
    transform: scale(1.05);
}

.mag-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.05em;
}

.mag-badge.free {
    background: #22c55e;
    color: white;
}

.mag-badge.paid {
    background: var(--gold);
    color: var(--ink);
}

.mag-body {
    padding: 12px 14px;
}

.mag-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.mag-body .issue {
    font-size: 0.65rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mag-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--red);
    transition: gap 0.2s;
}

.mag-card:hover .mag-btn {
    gap: 10px;
}

/* =============== VIDEO ===================== */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 3px 14px var(--shadow);
    transition: transform 0.28s;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumb {
    position: relative;
    height: 185px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.4s;
}

.video-card:hover .video-thumb img {
    opacity: 0.65;
    transform: scale(1.05);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    background: white;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-body {
    padding: 12px 14px 16px;
    background: var(--white);
}

.video-body .cat-tag {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-body h3 {
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--ink);
}




/* ===== MEMBERSHIP ===== */
.membership-section {
    background: linear-gradient(135deg, var(--red-deep) 0%, #4a0a0a 100%);
    padding: 60px 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.membership-section::before {
    content: 'ಕ';
    position: absolute;
    right: -30px;
    top: -60px;
    font-family: var(--ff-kan);
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
}

.membership-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.membership-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 12px;
}

.membership-header h2 {
    font-family: var(--ff-kan);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.membership-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.plan-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 28px 24px;
    color: white;
    position: relative;
    transition: transform 0.28s, background 0.28s;
    backdrop-filter: blur(4px);
}

.plan-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.plan-card.featured {
    background: rgba(212, 160, 23, 0.18);
    border-color: var(--gold);
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 10px;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.plan-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.plan-name {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-lt);
    margin-bottom: 4px;
}

.plan-price span {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-features {
    margin: 18px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.plan-features li {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.plan-features li i {
    color: var(--gold-lt);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold-lt);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: var(--ff-kan);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-btn:hover,
.plan-card.featured .plan-btn {
    background: var(--gold);
    color: var(--ink);
}



/* ================= BOOKS ====================== */
.books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.book-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.26s, box-shadow 0.26s;
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px var(--shadow);
}

.book-cover {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.book-card:hover .book-cover img {
    transform: scale(1.06);
}

.book-cover::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    background: rgba(0, 0, 0, 0.3);
}

.book-body {
    padding: 14px 16px;
}
.book-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    margin-bottom: 6px;
    line-height: 1.45;
}

.book-author {
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.book-price {
    font-weight: 700;
    color: var(--red);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.book-price .add-cart {
    background: var(--red);
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.68rem;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
}

.book-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.book-price .add-cart:hover {
    background: var(--red-dark);
}
.book-details-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

/* Badge section */
.badge-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.category-badge {
    padding: 6px 12px;
    background: rgba(219,39,39,.1);
    color: var(--red);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.badge-bestseller {
    background: rgba(245,158,11,.1);
    color: #b45309;
}

.badge-new {
    background: rgba(22,163,74,.1);
    color: #15803d;
}

/* Title */
.book-title {
    font-size: 28px;
    margin: 16px 0 10px;
    font-weight: 700;
    color: var(--dark);
}

/* Author */
.book-author {
    font-size: 15px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* Rating */
.book-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    color: #888;
    font-size: 14px;
}

/* Description */
.book-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Publisher Section */
.publisher-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.publisher-title {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.publisher-icon {
    width: 40px;
    height: 40px;
    background: rgba(219,39,39,.1);
    color: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.publisher-card {
    background: #f9f9f9;
    padding: 28px;
    border-radius: 15px;
    border: 1px solid #eee;
}

/* GRID */
.publisher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Text */
.label {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.value {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .book-details-card {
        padding: 20px;
    }

    .book-title {
        font-size: 22px;
    }

    .book-description {
        font-size: 14px;
    }

    .book-author {
        flex-wrap: wrap;
    }

    .book-rating {
        flex-wrap: wrap;
        gap: 6px;
    }

    .publisher-section {
        margin-top: 30px;
        padding-top: 30px;
    }

    .publisher-grid {
        grid-template-columns: 1fr; /* KEY FIX */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .book-details-card {
        padding: 16px;
    }

    .book-title {
        font-size: 20px;
    }
}
/* ======= TWO COL ===== */
.two-col { 
    display: grid; 
    grid-template-columns: 1fr 320px; 
    gap: 30px; 
}
.sidebar-widget { 
    background: var(--white); 
    border-radius: var(--radius); 
    box-shadow: 0 2px 12px var(--shadow); 
    overflow: hidden; 
    margin-bottom: 24px;
    margin-top: 12px; 
}
.widget-head {
    background: var(--red);
    color: white;
    padding: 12px 18px;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-body {
    padding: 14px 16px;
}

.trending-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
}

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

.trending-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--border);
    flex-shrink: 0;
    width: 28px;
    line-height: 1;
    margin-top: 2px;
}

.trending-item:hover .trending-num {
    color: var(--red);
}

.trending-item h4 {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    line-height: 1.5;
}

.trending-item:hover h4 {
    color: var(--red);
}

/* UPI Widget */
.upi-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px var(--shadow);
    padding: 20px 18px;
    text-align: center;
    margin-bottom: 24px;
}

.upi-widget h4 {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.upi-id {
    background: var(--cream2);
    border: 2px dashed var(--gold);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-mid);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.upi-widget p {
    font-size: 0.7rem;
    color: var(--muted);
}

/* ===== ASSOCIATIONS SECTION ===== */
.associations-section {
    background: var(--white);
    padding: 50px 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.associations-inner {
    max-width: 100%;
    padding: 0 20px;
}

.assoc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.assoc-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    border: 1px solid var(--border);
}

.assoc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
    background: var(--white);
}

.assoc-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 3px solid var(--border);
    overflow: hidden;
    background: var(--white);
}

.assoc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assoc-name {
    font-family: var(--ff-kan);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.4;
}

.assoc-type {
    font-size: 0.62rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
/* ===== AD SECTION ===== */
.ads-section { 
    max-width: 100%;
    /* max-width: 1280px; 
    margin: 48px auto 0; 
    padding: 0 20px;  */
}
.ads-grid { 
    display: block; 
}
.ad-card { 
    border-radius: var(--radius); 
    overflow: hidden; 
    position: relative; 
    cursor: pointer; 
}
.ad-card img { 
    width: 100%; 
    height: 340px;   
    object-fit: cover; 
    transition: transform 0.3s; 
}
.ad-card:hover img { 
    transform: scale(1.04); 
}
.ad-label { 
    position: absolute; 
    top: 8px; 
    right: 10px; 
    background: rgba(0,0,0,0.5); 
    color: rgba(255,255,255,0.7); 
    font-size: 0.6rem; 
    padding: 3px 8px; 
    border-radius: 4px; 
    letter-spacing: 0.08em; 
}
.ads-sidebar-widget { 
    margin-bottom: 24px; 
}
.ad-sidebar-img {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.ad-sidebar-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.ad-sidebar-img:hover img {
    transform: scale(1.04);
}

.ad-sidebar-img .ad-label {
    position: absolute;
    top: 6px;
    right: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.55rem;
    padding: 2px 6px;
    border-radius: 3px;
}
@media(max-width:768px){
    .ad-card img {
        height:140px
    }
    
}
/* ===== NOTICE BOARD ===== */
.notice-board {
    background: linear-gradient(135deg, #fff9ef, #fdf6ec);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.notice-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}

.notice-head h3 {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--ink);
}

.notice-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

.notice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 5px;
}

.notice-item-body h5 {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    margin-bottom: 3px;
    line-height: 1.4;
}

.notice-item-body span {
    font-size: 0.65rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
/* ===== FLOATING BUTTONS ===== */
.floating-btns { 
    position: fixed; 
    left: 20px; 
    bottom: 90px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    z-index: 1000; 
}
.float-btn { 
    width: 35px; 
    height: 35px; 
    border-radius: 0; 
    border: none; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.1rem; 
    box-shadow: 0 4px 16px rgba(0,0,0,0.25); 
    transition: transform 0.2s, box-shadow 0.2s; 
    position: relative; 
    animation: floatBtn 3s ease-in-out infinite; 
}
.float-btn:nth-child(2) { 
    animation-delay: 0.5s; 
}
.float-btn:nth-child(3) { 
    animation-delay: 1s; 
}
.float-btn:nth-child(4) { 
    animation-delay: 1.5s; 
}
.float-btn:hover { 
    transform: scale(1.15) !important; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.35); 
    animation: none;
}
.float-btn .tooltip { 
    position: absolute; 
    right: 58px; 
    background: var(--ink); 
    color: white; 
    font-size: 0.7rem; 
    padding: 5px 10px; 
    border-radius: 5px; 
    white-space: nowrap; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.2s; 
}
.float-btn .tooltip::after { 
    content: ''; 
    position: absolute; 
    left: 100%; 
    top: 50%; 
    transform: translateY(-50%); 
    border: 5px solid transparent; 
    border-left-color: var(--ink); 
}
.float-btn:hover .tooltip { 
    opacity: 1; 
}
.float-whatsapp { 
    background: #25d366; 
    color: white; 
}
.float-facebook { 
    background: #0088cc; 
    color: white; 
}
.float-youtube { 
    background: #ff0000; 
    color: white; 
}
.float-twitter { 
    background:#1b9cea; 
    color: white; 
}
.float-instagram { 
    background: linear-gradient(
        to right,
        #833ab4,
        #fd1d1d,
        #fcb045
      ); 
    color: white; 
}

/* ===== BACK TO TOP ===== */
.back-top {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.45);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--red-dark);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 0, 0, 0.88);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    backdrop-filter: blur(4px);
}

.search-overlay.open {
    display: flex;
}

.search-box {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 620px;
    padding: 20px;
    animation: fadeUp 0.3s ease;
    margin: 0 20px;
}

.search-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.search-box-head h4 {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--ink);
}

.search-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--muted);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.search-close:hover {
    background: var(--cream2);
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.search-box input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px 12px 40px;
    font-size: 1rem;
    font-family: var(--ff-kan);
    outline: none;
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: var(--red);
}

/* ===== FOOTER ===== */
footer {
    background: var(--red-deep);
    color: var(--white);
}

.footer-top {
    max-width: 100%;
    padding: 50px 30px 36px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-brand p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 18px;
}
.footer-logo {
    display: flex;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 83px;
    height: 76px;
}

/* Tablet */
@media (max-width: 992px) {
    .footer-logo img {
        max-width: 130px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-logo img {
        max-width: 201px;
    }
}
.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
    background: var(--red);
    border-color: var(--red);
}

.footer-col h5 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col ul li a {
    font-size: 0.78rem;
    color: var(--cream);
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col ul li a:hover {
    color: var(--gold-lt);
    padding-left: 5px;
}

.footer-col ul li a i {
    width: 14px;
    color: var(--gold);
    font-size: 0.7rem;
}

.footer-contact {
    font-size: 0.78rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.footer-contact i {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.848);
    padding: 18px 20px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    font-size: 0.72rem;
    color: rgb(255 255 255 / 99%);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-lt);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .news-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .magazine-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .books-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .two-col { 
        grid-template-columns: 1fr; 
    }
    .sidebar { 
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    .footer-top { 
        grid-template-columns: 1fr 1fr; 
        gap: 28px; 
    }
    .membership-inner { 
        grid-template-columns: 1fr 1fr; 
    }
    .membership-header {
        grid-column: 1 / -1; 
    }
    .assoc-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .ads-grid { 
        grid-template-columns: 1fr; 
    }
}
@media (max-width: 768px) {
    nav.main-nav { 
        display: none; 
    }
    .hamburger { 
        display: block; 
    }
    .news-grid { 
        grid-template-columns: 1fr; 
    }
    .magazine-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .video-grid { 
        grid-template-columns: 1fr; 
    }
    .books-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .membership-inner { 
        grid-template-columns: 1fr; 
    }
    .plan-card.featured { 
        transform: none; 
    }
    .footer-top { 
        grid-template-columns: 1fr; 
    }
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
    }

    .ann-btn { 
        display: none; 
    }
    .assoc-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .floating-btns { 
        right: 14px; 
        bottom: 80px;
    }
}
@media (max-width: 480px) {
    .magazine-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .books-grid { 
        grid-template-columns: 1fr; 
    }
    .assoc-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* ==========================================
                ABOUT_US   
=========================================== */
@keyframes pulse-dot { 
    0%,100% { 
        opacity:1; 
        transform:scale(1); 
    } 
    50% { 
        opacity:0.5; 
        transform:scale(1.4); 
    } 
}
@keyframes about-heroText { 
    from { 
        opacity:0; 
        transform:translateY(40px); 
    } 
    to { 
        opacity:1; 
        transform:translateY(0); 
    } 
}
@keyframes about-lineGrow {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes about-counterUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes about-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes about-shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

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

@keyframes about-wave {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.05);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes about-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(192, 57, 43, 0);
    }
}

@keyframes about-slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes about-slideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes about-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SCROLL REVEAL ===== */
[data-about-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-about-reveal].about-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

[data-about-reveal="left"] {
    transform: translateX(-28px);
}

[data-about-reveal="left"].about-revealed {
    transform: translateX(0);
    transition: none;
}

[data-about-reveal="right"] {
    transform: translateX(28px);
}

[data-about-reveal="right"].about-revealed {
    transform: translateX(0);
    transition: none;
}

[data-about-reveal="scale"] {
    transform: scale(0.9);
}

[data-about-reveal="scale"].about-revealed {
    transform: scale(1);
    transition: none;
}


/* ===== TICKER ===== */
.ticker-bar {
    background: var(--ink-mid);
    color: var(--white);
    height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-label {
    background: var(--gold);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.06em;
    gap: 6px;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
}

.ticker-items {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-size: 0.78rem;
}

.ticker-items span::before {
    content: '●';
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.5rem;
    vertical-align: middle;
}
/* ===== ABOUT BREADCRUMB ===== */
.about-breadcrumb {
    background: linear-gradient(135deg, var(--red-deep), var(--red-dark));
    padding: 10px 0;
}
.about-breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
}
.about-breadcrumb-inner a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.about-breadcrumb-inner a:hover {
    color: var(--gold-lt);
}

.about-breadcrumb-inner i {
    font-size: 0.55rem;
    color: var(--gold);
}

.about-breadcrumb-inner span {
    color: var(--gold-lt);
    font-weight: 600;
}

/* ===== ABOUT HERO ===== */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1585128792020-803d29415281?q=80&w=1920') center/cover no-repeat;
}
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:linear-gradient(135deg, rgb(120 0 0 / 49%), rgb(94 90 90 / 90%));
    z-index: 1;
}
.about-hero-inner {
    position: relative;
    z-index: 2;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 80% 30%, rgba(105, 104, 101, 0.15) 0%, transparent 50%);
}
.about-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
      45deg,
      var(--gold) 0px,
      var(--gold) 1px,
      transparent 1px,
      transparent 40px
    );
}
.about-hero-kannada {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--ff-kan);
    font-size: 22rem;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.about-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    /* display: grid;
    grid-template-columns: 1fr 420px; */
    gap: 60px;
    width: 100%;
    align-items: center;
      text-align: center;
      justify-items: center;
}
.about-hero-content {
    animation: about-heroText 0.9s ease both;
}
.about-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.2);
    border: 1px solid rgba(212,160,23,0.4);
    color: var(--gold-lt);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.about-hero-title {
    font-family: var(--ff-kan);
    font-size: 3.2rem;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
    font-weight: 700;
}
.about-hero-title span {
    color: var(--gold-lt);
    display: block;
}
.about-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}
.about-hero-line {
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), transparent);
    border-radius: 2px;
    margin-bottom: 30px;
    animation: about-lineGrow 1s 0.5s ease both;
}
.about-hero-actions {
    /* display: flex; */
    gap: 14px;
    flex-wrap: wrap;
}
.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 26px;
    border-radius: 30px;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--ff-kan);
}
.about-btn-primary:hover { 
    background: var(--gold-lt); 
    transform: translateY(-2px); 
}
.about-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 26px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: pointer;
    font-family: var(--ff-kan);
}
.about-btn-outline:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: rgba(255,255,255,0.6); 
    transform: translateY(-2px); 
}
.about-hero-image-wrap {
    position: relative;
    animation: about-heroText 0.9s 0.2s ease both;
}
.about-hero-emblem {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(212,160,23,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: about-float 5s ease-in-out infinite;
}
.about-hero-emblem::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 1px dashed rgba(212,160,23,0.25);
    animation: about-rotate 20s linear infinite;
}
.about-hero-emblem-icon {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gold-lt);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 3px rgba(212,160,23,0.3);
    animation: about-pulse 3s ease-in-out infinite;
}
.about-hero-orbit {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212,160,23,0.15);
    border: 1px solid rgba(212,160,23,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-lt);
    backdrop-filter: blur(4px);
    transition: transform 0.3s;
}
.about-hero-orbit:hover {
    transform: scale(1.15);
}

.about-hero-orbit:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-hero-orbit:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-hero-orbit:nth-child(4) {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about-hero-orbit:nth-child(5) {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== ABOUT STATS ===== */
.about-stats {
    background: var(--red-deep);
    padding: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.about-stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.about-stat-item {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: background 0.3s;
}
.about-stat-item:last-child { 
    border-right: none; 
}
.about-stat-item:hover { 
    background: rgba(255,255,255,0.06); 
}
.about-stat-num {
    font-family: var(--ff-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}
.about-stat-label {
    font-family: var(--ff-kan);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    display: block;
    line-height: 1.4;
}
.about-stat-icon {
    font-size: 1.4rem;
    color: var(--gold-lt);
    margin-bottom: 8px;
}

/* ===== MISSION SECTION ===== */
.about-mission {
    max-width: 1280px;
    margin: 70px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fde8e8;
    color: var(--red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(192,57,43,0.2);
}
.about-section-title {
    font-family: var(--ff-kan);
    font-size: 2rem;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 16px;
    font-weight: 700;
}
.about-section-title span { 
    color: var(--red); 
}
.about-title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--red), var(--gold));
    border-radius: 2px;
    margin-bottom: 20px;
}
.about-section-text {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--ink-mid);
    margin-bottom: 18px;
}
.about-mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}
.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--red);
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.about-pillar:hover { 
    transform: translateX(4px); 
    box-shadow: 0 6px 20px var(--shadow); 
}
.about-pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold-lt);
    flex-shrink: 0;
}
.about-pillar-body h5 {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    margin-bottom: 3px;
    color: var(--ink);
}

.about-pillar-body p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}
.about-mission-visual {
    position: relative;
}
.about-mission-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow);
}
.about-mission-card-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    border-top: 3px solid var(--gold);
}
.about-mission-card-float .icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ink);
    flex-shrink: 0;
}
.about-mission-card-float .text-num {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.about-mission-card-float .text-label {
    font-family: var(--ff-kan);
    font-size: 0.7rem;
    color: var(--muted);
}

.about-mission-badge-top {
    position: absolute;
    top: -18px;
    right: 20px;
    background: var(--red);
    color: white;
    border-radius: 8px;
    padding: 10px 16px;
    font-family: var(--ff-kan);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(192,57,43,0.35);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== HISTORY SECTION ===== */
.about-history {
    background: linear-gradient(135deg, #fff9ef, var(--cream));
    padding: 80px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.about-history::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--red), var(--gold), var(--red));
}
.about-history-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-history-header {
    text-align: center;
    margin-bottom: 60px;
}
.about-timeline {
    position: relative;
    padding-left: 0;
}
.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--gold), var(--red));
}
.about-timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 50px;
    position: relative;
}
.about-timeline-item:last-child { 
    margin-bottom: 0; 
}
.about-timeline-content {
    background: var(--white);
    border-radius: 10px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.about-timeline-content:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 30px var(--shadow); 
}
.about-timeline-item:nth-child(odd) .about-timeline-content {
    grid-column: 1;
    text-align: right;
    border-right: 3px solid var(--red);
}
.about-timeline-item:nth-child(even) .about-timeline-content {
    grid-column: 3;
    border-left: 3px solid var(--gold);
}
.about-timeline-item:nth-child(odd) .about-timeline-empty { 
    grid-column: 2 / 4; 
}
.about-timeline-item:nth-child(even) .about-timeline-empty { 
    grid-column: 1 / 3; 
}
.about-timeline-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -22px;
    z-index: 2;
    transition: background 0.3s, transform 0.3s;
}
.about-timeline-item:hover .about-timeline-dot { 
    background: var(--gold); 
    transform: translateX(-50%) scale(1.1); 
}
.about-timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}
.about-timeline-content h4 { 
    font-family: var(--ff-kan); 
    font-size: 0.95rem; 
    color: var(--ink); 
    margin-bottom: 6px; 
    line-height: 1.4; 
}
.about-timeline-content p { 
    font-size: 0.78rem; 
    color: var(--muted); 
    line-height: 1.7; 
}

/* ===== OBJECTIVES SECTION ===== */
.about-objectives {
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 0 20px;
}
.about-objectives-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.about-objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-obj-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 26px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}
.about-obj-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--red), var(--gold));
}
.about-obj-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 16px 40px var(--shadow); 
}
.about-obj-card-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 7rem;
    opacity: 0.04;
    pointer-events: none;
}
.about-obj-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fde8e8, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--red);
    border: 2px solid rgba(192,57,43,0.15);
    transition: background 0.3s, transform 0.3s;
}
.about-obj-card:hover .about-obj-icon {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    transform: scale(1.08);
}

.about-obj-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.about-obj-card p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ================ LEADERSHIP SECTION =================== */
.about-leadership {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
    padding: 80px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.about-leadership::before {
    content: 'ನಾಯಕತ್ವ';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-kan);
    font-size: 12rem;
    color: rgba(255,255,255,0.025);
    white-space: nowrap;
    pointer-events: none;
}
.about-leadership-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-leadership-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-leadership-header .about-section-badge {
    background: rgba(212,160,23,0.15);
    color: var(--gold-lt);
    border-color: rgba(212,160,23,0.3);
}

.about-leadership-header .about-section-title {
    color: var(--white);
}

.about-leadership-header .about-section-title span {
    color: var(--gold-lt);
}

.about-leadership-header .about-title-underline {
    background: linear-gradient(to right, var(--gold), transparent);
}
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-leader-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    cursor: default;
}
.about-leader-card:hover { 
    transform: translateY(-6px); 
    background: rgba(255,255,255,0.1); 
}
.about-leader-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%);
    transition: filter 0.3s;
}
.about-leader-card:hover .about-leader-img {
    filter: grayscale(0%);
}

.about-leader-body {
    padding: 18px 16px 22px;
}

.about-leader-name {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.about-leader-role {
    font-size: 0.7rem;
    color: var(--gold-lt);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: block;
}

.about-leader-bio {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-leader-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.about-leader-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    transition: background 0.2s, border-color 0.2s;
}

.about-leader-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}
.about-leader-badge {
    background: var(--gold);
    color: var(--ink);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

/* ===== VALUES SECTION ===== */
.about-values {
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 0 20px;
}
.about-values-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.about-values-left { 
    display: flex; 
    flex-direction: column; 
    gap: 18px; 
}
.about-value-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-left 0.25s;
    border-left: 4px solid transparent;
}
.about-value-item:hover { 
    transform: translateX(5px); 
    box-shadow: 0 8px 24px var(--shadow); 
    border-left-color: var(--red); 
}
.about-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.about-value-item:hover .about-value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-value-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 5px;
}

.about-value-body p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.7;
}
.about-values-right {
    position: relative;
}
.about-values-img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px var(--shadow);
}
.about-values-quote {
    position: absolute;
    bottom: 24px;
    left: -24px;
    right: 24px;
    background: rgba(26,10,0,0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 24px;
    border-left: 4px solid var(--gold);
}
.about-values-quote blockquote {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 6px;
}
.about-values-quote cite { 
    font-size: 0.68rem; 
    color: var(--gold-lt); 
    letter-spacing: 0.06em; 
}

/* ===== ACHIEVEMENTS SECTION ===== */
.about-achievements {
    background: var(--cream2);
    padding: 80px 0;
    margin-top: 80px;
}
.about-achievements-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-achievements-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.about-ach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-ach-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 2px 14px var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-ach-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 14px 32px var(--shadow); 
}
.about-ach-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 0 0 0 80px;
    opacity: 0.08;
}
.about-ach-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.about-ach-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.about-ach-card p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.7;
}
.about-ach-year {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--red);
    background: #fde8e8;
    padding: 2px 8px;
    border-radius: 8px;
}

/* ===== CTA SECTION ===== */
.about-cta {
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 0 20px;
}
.about-cta-inner {
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 50%, var(--red-dark) 100%);
    border-radius: 16px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.15) 0%, transparent 50%),
                      radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.about-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 1px, transparent 30px);
}
.about-cta-content {
    position: relative;
    z-index: 2;
}

.about-cta-icon {
    font-size: 3rem;
    color: var(--gold-lt);
    margin-bottom: 16px;
    animation: about-float 3s ease-in-out infinite;
}

.about-cta-inner h2 {
    font-family: var(--ff-kan);
    font-size: 2.2rem;
    color: white;
    margin-bottom: 12px;
}

.about-cta-inner p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 30px;
    border-radius: 30px;
    transition: background 0.2s, transform 0.2s;
    font-family: var(--ff-kan);
}

.about-cta-btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}

.about-cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s, transform 0.2s;
    font-family: var(--ff-kan);
}

.about-cta-btn-white:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
/* ===== CONTACT QUICK ===== */
.about-contact-quick {
    max-width: 1280px;
    margin: 50px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.about-contact-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 22px;
    box-shadow: 0 2px 14px var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}
.about-contact-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 28px var(--shadow); 
}
.about-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.about-contact-body span {
    font-size: 0.68rem;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-contact-body strong {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-hero-image-wrap {
        display: none;
    }
    .about-hero-subtitle {
        margin: 0 auto 32px;
    }
    .about-hero-actions {
        justify-content: center;
    }
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-stat-item:nth-child(4),
    .about-stat-item:nth-child(5) {
        border-right: none;
    }
    .about-mission {
        grid-template-columns: 1fr;
    }
    .about-mission-visual {
        display: none;
    }
    .about-timeline::before {
        left: 20px;
        transform: none;
    }
    .about-timeline-item {
        grid-template-columns: 1fr;
        padding-left: 56px;
    }
    .about-timeline-dot {
        left: 20px;
        transform: none;
        top: 22px;
        margin-top: 0;
    }
    .about-timeline-item:nth-child(odd) .about-timeline-content,
    .about-timeline-item:nth-child(even) .about-timeline-content {
        grid-column: 1;
        text-align: left;
        border-right: none;
        border-left: 3px solid var(--red);
    }
    .about-objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-values-right {
        display: none;
    }
    .about-ach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-contact-quick {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    /* Navigation adjustments */
    nav.main-nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
    /* Hero section */
    .about-hero-title {
        font-size: 2rem;
    }

    /* Stats grid */
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stat-item {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Objectives, team, achievements */
    .about-objectives-grid {
        grid-template-columns: 1fr;
    }
    .about-team-grid,
    .about-ach-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Call-to-action section */
    .about-cta-inner {
        padding: 40px 24px;
    }
    .about-cta-inner h2 {
        font-size: 1.6rem;
    }

    /* Section titles */
    .about-section-title {
        font-size: 1.5rem;
    }

    /* Floating buttons */
    .floating-btns {
        right: 14px;
        bottom: 80px;
    }
}
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.6rem;
    }
    .about-team-grid,
    .about-ach-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* 
======================================
            MAGAZINES
====================================== */
@keyframes magazines-fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes magazines-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes magazines-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes magazines-shimmer {
    0% {
        background-position: -600px 0;
    }
    100% {
        background-position: 600px 0;
    }
}

@keyframes magazines-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes magazines-floatBtn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes magazines-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes magazines-ripple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes magazines-borderPulse {
    0%, 100% {
        border-color: var(--gold);
    }
    50% {
        border-color: var(--gold-lt);
    }
}

@keyframes magazines-pageLoad {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== REVEAL ===== */
.magazines-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.magazines-reveal.magazines-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CATEGORIES STRIP ===== */
.magazines-categories-strip {
    background: var(--white);
    border-top: 3px solid var(--red);
    box-shadow: 0 3px 14px var(--shadow);
}

.magazines-categories-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    overflow-x: auto;
    gap: 0;
    scrollbar-width: none;
}

.magazines-categories-inner::-webkit-scrollbar {
    display: none;
}

.magazines-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--ink-mid);
}

.magazines-cat-item:hover,
.magazines-cat-item.magazines-cat-active {
    border-bottom-color: var(--red);
    color: var(--red);
}

.magazines-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--cream2);
    transition: background 0.2s, transform 0.2s;
    color: var(--ink-mid);
}

.magazines-cat-item:hover .magazines-cat-icon,
.magazines-cat-item.magazines-cat-active .magazines-cat-icon {
    background: #fde8e8;
    transform: scale(1.1);
    color: var(--red);
}

.magazines-cat-label {
    font-family: var(--ff-kan);
    font-size: 0.72rem;
    font-weight: 600;
}


.magazines-page-hero {
    background: linear-gradient(135deg, var(--red-deep) 0%, #4a0a0a 60%, var(--red-dark) 100%);
    padding: 52px 20px 56px;
    position: relative;
    overflow: hidden;
    animation: magazines-pageLoad 0.7s ease both;
}

.magazines-page-hero::before {
    content: 'ಪ';
    position: absolute;
    right: -40px;
    top: -80px;
    font-family: var(--ff-kan);
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    line-height: 1;
}

.magazines-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.magazines-page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.magazines-page-hero-text {}

.magazines-page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.magazines-page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.magazines-page-hero-breadcrumb a:hover {
    color: var(--gold-lt);
}

.magazines-page-hero-breadcrumb i {
    font-size: 0.6rem;
}

.magazines-page-hero h1 {
    font-family: var(--ff-kan);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
}

.magazines-page-hero-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.magazines-page-hero-sub span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.magazines-page-hero-sub i {
    color: var(--gold-lt);
}

.magazines-page-hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 18px 28px;
    color: white;
    text-align: center;
    backdrop-filter: blur(6px);
    flex-shrink: 0;
}

.magazines-page-hero-badge .magazines-hero-badge-num {
    font-family: var(--ff-head);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
}

.magazines-page-hero-badge .magazines-hero-badge-label {
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}



.magazines-toolbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 20px 0;
}
.magazines-toolbar-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.magazines-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.magazines-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.magazines-search-wrap {
    position: relative;
}
.magazines-search-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: .8rem;
}
.magazines-search-input {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 16px 9px 36px;
    font-size: .82rem;
    font-family: var(--ff-body);
    outline: none;
    width: 240px;
    transition: border-color .2s, box-shadow .2s;
    background: var(--cream);
}
.magazines-search-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, .1);
}
.magazines-filter-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: .82rem;
    font-family: var(--ff-body);
    outline: none;
    background: var(--cream);
    cursor: pointer;
    color: var(--ink-mid);
    transition: border-color .2s;
    appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a5c48' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.magazines-filter-select:focus {
    border-color: var(--red);
}
.magazines-view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .2s;
}
.magazines-view-btn.magazines-view-active,
.magazines-view-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}
.magazines-result-count {
    font-size: .78rem;
    color: var(--muted);
    white-space: nowrap;
}
@media (max-width: 768px) {

    .magazines-toolbar {
        padding: 16px 12px 0;
    }

    .magazines-toolbar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    /* LEFT SECTION */
    .magazines-toolbar-left {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }

    .magazines-search-input {
        width: 100%;
        font-size: .9rem;
        padding: 10px 14px 10px 36px;
    }

    .magazines-filter-select {
        width: 100%;
        font-size: .9rem;
        padding: 10px 14px;
    }

    /* RIGHT SECTION */
    .magazines-toolbar-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .magazines-result-count {
        font-size: .75rem;
        flex: 1 1 100%;
        text-align: center;
    }

    .magazines-view-btn {
        flex: 1;
        height: 40px;
    }
}



/* ===== FILTER TABS ===== */
.magazines-filter-tabs {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 20px 0;
}

.magazines-filter-tabs-inner {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.magazines-filter-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--ink-mid);
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s;
    font-family: var(--ff-kan);
}

.magazines-filter-tab:hover {
    border-color: var(--red);
    color: var(--red);
}

.magazines-filter-tab.magazines-tab-active {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.magazines-filter-tab .magazines-tab-count {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 0.65rem;
}

.magazines-filter-tab.magazines-tab-active .magazines-tab-count {
    background: rgba(255, 255, 255, 0.25);
}

.magazines-section-wrap{
    max-width:1280px;
    margin:32px auto 0;
    padding:0 20px;
}
@media (max-width: 768px) {

    .magazines-filter-tabs {
        padding: 12px 15px 0;
    }

    .magazines-filter-tabs-inner {
        flex-wrap: nowrap;    
        overflow-x: auto;    
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;         
    }

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

    .magazines-filter-tab {
        flex: 0 0 auto;                
        font-size: 0.7rem;
        padding: 6px 12px;
        border-radius: 18px;
    }

    .magazines-filter-tab i {
        font-size: 0.7rem;
    }

    .magazines-tab-count {
        font-size: 0.6rem;
        padding: 1px 6px;
    }
}

/* ===== MONTH FILTER ROW ===== */
.magazines-month-filter-row {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    pointer-events: none;
}
.magazines-month-filter-row.show {
    max-height: 80px;
    padding: 10px 20px 0;
    opacity: 1;
    pointer-events: auto;
}
.magazines-month-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
}
.magazines-month-tabs::-webkit-scrollbar { display: none; }
.magazines-month-tab {
    flex: 0 0 auto;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.magazines-month-tab:hover {
    border-color: var(--red);
    color: var(--red);
}
.magazines-month-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
@media (max-width: 768px) {
    .magazines-month-filter-row.show {
        padding: 8px 12px 0;
    }
    .magazines-month-tab {
        font-size: 0.75rem;
        padding: 4px 11px;
    }
}

/* ===== FEATURED STRIP ===== */
.magazines-featured-strip {
    background: linear-gradient(135deg, #fff9ef, #fdf6ec);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 36px;
    display: flex;
    gap: 20px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.magazines-featured-strip::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

.magazines-featured-badge {
    background: var(--gold);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
}

.magazines-featured-img {
    width: 90px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 14px var(--shadow);
}

.magazines-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazines-featured-body {
    flex: 1;
}

.magazines-featured-body h3 {
    font-family: var(--ff-kan);
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--ink);
}

.magazines-featured-body p {
    font-size: 0.74rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.magazines-featured-body p i {
    color: var(--gold);
}

.magazines-featured-cta {
    background: var(--red);
    color: white;
    padding: 9px 20px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.magazines-featured-cta:hover {
    background: var(--red-dark);
    transform: scale(1.04);
}
.magazines-search-overlay{display:none;position:fixed;inset:0;background:rgba(10,0,0,.88);z-index:2000;align-items:flex-start;justify-content:center;padding-top:80px;backdrop-filter:blur(4px);}
.magazines-search-overlay.magazines-overlay-open{display:flex;}
.magazines-search-box{background:white;border-radius:12px;width:100%;max-width:620px;padding:20px;animation:magazines-fadeUp .3s ease;margin:0 20px;}
.magazines-search-box-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;}
.magazines-search-box-head h4{font-family:var(--ff-kan);font-size:.95rem;color:var(--ink);}
.magazines-search-close{background:none;border:none;font-size:1.2rem;cursor:pointer;color:var(--muted);width:30px;height:30px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background .2s;}
.magazines-search-close:hover{background:var(--cream2);}
.magazines-search-input-wrap{position:relative;}
.magazines-search-input-wrap i{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:var(--muted);}
.magazines-search-box input{width:100%;border:2px solid var(--border);border-radius:8px;padding:12px 16px 12px 40px;font-size:1rem;font-family:var(--ff-kan);outline:none;transition:border-color .2s;}
.magazines-search-box input:focus{border-color:var(--red);}


/* ===== MAGAZINES GRID ===== */
.magazines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.magazines-grid.magazines-grid-list {
    grid-template-columns: 1fr;
}



/* ===== CARD ===== */
.magazines-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 3px 14px var(--shadow);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.25, .8, .25, 1), box-shadow 0.3s;
    position: relative;
}

.magazines-card:hover {
    transform: translateY(-7px) rotate(-0.4deg);
    box-shadow: 0 16px 36px var(--shadow-lg);
}

.magazines-card-cover {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.magazines-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    filter: brightness(0.97);
}

.magazines-card:hover .magazines-card-cover img {
    transform: scale(1.06);
}

.magazines-card-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    pointer-events: none;
}

/* spine effect */
.magazines-card-cover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 12px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06), transparent);
    z-index: 1;
}

.magazines-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.magazines-card-badge.magazines-badge-free {
    background: #22c55e;
    color: white;
}

.magazines-card-badge.magazines-badge-paid {
    background: var(--gold);
    color: var(--ink);
}

.magazines-card-badge.magazines-badge-new {
    background: var(--red);
    color: white;
    animation: magazines-borderPulse 2s ease infinite;
}

.magazines-card-issue-num {
    position: absolute;
    bottom: 8px;
    left: 14px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 8px;
    border-radius: 4px;
    backdrop-filter: blur(3px);
    z-index: 2;
}

.magazines-card-body {
    padding: 14px 16px 18px;
}

.magazines-card-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    margin-bottom: 5px;
    line-height: 1.5;
    color: var(--ink);
    transition: color 0.2s;
}

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

.magazines-card-meta {
    font-size: 0.66rem;
    color: var(--muted);
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.magazines-card-meta i {
    color: var(--gold);
    font-size: 0.6rem;
}

.magazines-card-meta .magazines-meta-dot {
    color: var(--border);
}

.magazines-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.magazines-card-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--red);
    transition: gap 0.2s, color 0.2s;
}

.magazines-card:hover .magazines-card-btn {
    gap: 10px;
}

.magazines-card-save {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.magazines-card-save:hover,
.magazines-card-save.magazines-saved {
    background: var(--red);
    border-color: var(--red);
    color: white;
}


/* ===== LIST VIEW ===== */
.magazines-card-list {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    cursor: pointer;
    transition: transform 0.28s, box-shadow 0.28s;
}

.magazines-card-list:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

.magazines-card-list .magazines-card-cover {
    width: 140px;
    height: auto;
    flex-shrink: 0;
    border-radius: 0;
}

.magazines-card-list .magazines-card-cover::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.15));
    bottom: auto;
}

.magazines-card-list .magazines-card-cover::before {
    display: none;
}

.magazines-card-list .magazines-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    flex: 1;
}

.magazines-card-list .magazines-card-body h4 {
    font-size: 1rem;
}
.magazines-skeleton {
    background: linear-gradient(90deg, var(--cream2) 25%, var(--cream) 37%, var(--cream2) 63%);
    background-size: 600px 100%;
    animation: magazines-shimmer 1.4s infinite;
}
/* ===== PAGINATION ===== */
    .magazines-pagination-wrap {
        max-width: 1280px;
        margin: 48px auto 0;
        padding: 0 20px 60px;
    }
    .magazines-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    .magazines-page-btn {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1.5px solid var(--border);
        background: var(--white);
        color: var(--ink-mid);
        font-size: .85rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .22s;
        position: relative;
        overflow: hidden;
    }
    .magazines-page-btn:hover {
        border-color: var(--red);
        color: var(--red);
        background: rgba(192, 57, 43, .06);
    }
    .magazines-page-btn.magazines-page-active {
        background: var(--red);
        border-color: var(--red);
        color: white;
        box-shadow: 0 4px 14px rgba(192, 57, 43, .4);
    }
    .magazines-page-btn.magazines-page-active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid var(--red);
    }
    .magazines-page-btn.magazines-page-disabled {
        opacity: .4;
        pointer-events: none;
    }
    .magazines-page-ellipsis {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: .85rem;
    }
    .magazines-page-nav-btn {
        width: auto;
        padding: 0 16px;
        gap: 6px;
        font-size: .8rem;
    }
    .magazines-page-info {
        text-align: center;
        font-size: .75rem;
        color: var(--muted);
        margin-top: 14px;
    }
/* ===== MAGAZINES TWO-COLUMN LAYOUT ===== */
.magazines-two-col-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.magazines-layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .magazines-layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== SIDEBAR ===== */
.magazines-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 100px;
}

.magazines-subscribe-box {
    background: linear-gradient(135deg, var(--ink) 0%, #2a0a0a 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.magazines-subscribe-box::after {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -15px;
    top: -15px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.magazines-subscribe-box h4 {
    font-family: var(--ff-kan);
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--gold);
    display: flex;
    align-items: center;
}

.magazines-subscribe-box p {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.magazines-subscribe-price {
    display: block;
    font-family: var(--ff-body);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.magazines-subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 24px !important;
    background: var(--gold) !important;
    color: var(--ink) !important;
    border: none !important;
    font-weight: 800 !important;
    padding: 13px 20px !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
    transition: all 0.25s !important;
    text-decoration: none !important;
}

.magazines-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 203, 7, 0.3);
}

/* SIDEBAR WIDGETS */
.magazines-sidebar-widget {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.magazines-widget-head {
    background: var(--cream2);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.magazines-widget-head i {
    color: var(--red);
}

.magazines-widget-body {
    padding: 12px 0;
}

/* TRENDING */
.magazines-trending-item {
    padding: 14px 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-bottom: 1px solid #f2ede4;
    transition: background 0.2s;
}

.magazines-trending-item:last-child {
    border-bottom: none;
}

.magazines-trending-item:hover {
    background: var(--cream);
}

.magazines-trending-num {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    min-width: 32px;
}

.magazines-trending-item:hover .magazines-trending-num {
    color: var(--gold);
}

.magazines-trending-item h4 {
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

.magazines-trending-item h4 a {
    color: var(--ink);
    transition: color 0.2s;
}

.magazines-trending-item h4 a:hover {
    color: var(--red);
}

/* QUICK LINKS */
.magazines-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: var(--ink-mid);
    font-size: 0.88rem;
    font-family: var(--ff-kan);
    font-weight: 600;
    transition: all 0.2s;
}

.magazines-quick-link:hover {
    background: var(--cream);
    color: var(--red);
    padding-left: 25px;
}

.magazines-quick-link--bordered {
    border-bottom: 1px solid #f2ede4;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:16px;
    margin-bottom:20px
}

/* ============================================================
   MEMBERSHIP.CSS — Karnataka Rakshana Vedike
   Light theme: cream / red / gold palette
   All membership classes prefixed with mem-
   ============================================================ */


/* ══════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════ */
[data-mem-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}
[data-mem-reveal].mem-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

/* ══════════════════════════════════════════
   SHARED SECTION COMPONENTS
══════════════════════════════════════════ */
.mem-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.mem-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red-mid);
    border: 1px solid rgba(249,1,1,0.2);
    color: var(--red-deep);
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.mem-section-title {
    font-family: var(--ff-head);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
}

.mem-section-title em {
    font-style: italic;
    color: var(--red);
}

.mem-section-rule {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.mem-hero {
    position: relative;
    min-height: 440px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream2) 50%, #f9ede0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 90px 20px 70px;
}

.mem-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 22px, var(--ink) 22px, var(--ink) 23px),
        repeating-linear-gradient(-45deg, transparent, transparent 22px, var(--ink) 22px, var(--ink) 23px);
    pointer-events: none;
}

.mem-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.18;
}
.mem-hero__glow--left {
    width: 480px;
    height: 480px;
    background: var(--red);
    top: -120px;
    left: -120px;
}
.mem-hero__glow--right {
    width: 360px;
    height: 360px;
    background: var(--gold);
    bottom: -100px;
    right: -80px;
}

.mem-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
}

.mem-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 28px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
}
.mem-hero__breadcrumb a {
    color: var(--red);
    font-weight: 600;
    transition: color var(--transition);
}
.mem-hero__breadcrumb a:hover { color: var(--red-dark); }
.mem-hero__breadcrumb i.fa-chevron-right { font-size: 0.6rem; opacity: 0.4; }

.mem-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}
.mem-hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted), transparent);
}

.mem-hero__title {
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.mem-hero__title em {
    font-style: italic;
    color: var(--red);
    display: block;
}

.mem-hero__subtitle {
    font-family: var(--ff-kan);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--ink-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.mem-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}
.mem-hero__divider span {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.mem-hero__divider i {
    color: var(--red);
    font-size: 1rem;
    opacity: 0.7;
}

.mem-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px 8px;
    box-shadow: 0 4px 20px var(--shadow);
    animation: fadeUp 0.8s ease 0.3s both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.mem-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 24px;
}
.mem-hero__stat strong {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}
.mem-hero__stat span {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 3px;
}
.mem-hero__stat-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ══════════════════════════════════════════
   WHY JOIN
══════════════════════════════════════════ */
.mem-why {
    background: var(--white);
    padding: 96px 20px;
}
.mem-why__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.mem-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mem-why__card {
    background: var(--cream3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.mem-why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}
.mem-why__card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px var(--shadow-md);
    border-color: var(--border);
    background: var(--white);
}
.mem-why__card:hover::before { opacity: 1; }

.mem-why__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--ic-bg, #fff0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--ic, var(--red));
    margin-bottom: 18px;
    transition: transform var(--transition);
}
.mem-why__card:hover .mem-why__icon { transform: scale(1.1) rotate(-5deg); }

.mem-why__card h4 {
    font-family: var(--ff-kan);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.4;
}
.mem-why__card p {
    font-family: var(--ff-kan);
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ══════════════════════════════════════════
   PLANS
══════════════════════════════════════════ */
.mem-plans {
    background: var(--cream);
    padding: 96px 20px;
    position: relative;
    overflow: hidden;
}
.mem-plans__bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(249,1,1,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.mem-plans__inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

.mem-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* PLAN CARD */
.mem-plan-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: 0 4px 20px var(--shadow);
}
.mem-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px var(--shadow-md);
    border-color: var(--border);
}

/* FEATURED */
.mem-plan-card--featured {
    border-color: var(--gold);
    background: var(--ink);
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 60px rgba(242,203,7,0.22), 0 4px 20px var(--shadow);
    z-index: 2;
}
.mem-plan-card--featured.mem-revealed {
    transform: translateY(-16px) scale(1.02);
    transition: none;
}
.mem-plan-card--featured:hover {
    transform: translateY(-24px) scale(1.02);
    box-shadow: 0 36px 72px rgba(242,203,7,0.3), 0 4px 20px var(--shadow);
}
.mem-plan-card--featured .mem-plan-card__name,
.mem-plan-card--featured .mem-plan-card__amount { color: var(--white); }
.mem-plan-card--featured .mem-plan-card__amount { color: var(--gold); }
.mem-plan-card--featured .mem-plan-card__period,
.mem-plan-card--featured .mem-plan-card__features li { color: rgba(255,255,255,0.75); }
.mem-plan-card--featured .mem-plan-card__features li i.fa-check { color: var(--gold); background: rgba(242,203,7,0.15); }
.mem-plan-card--featured .mem-plan-card__divider { background: rgba(255,255,255,0.1); }

.mem-plan-card__ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), #e8b800);
    color: var(--ink);
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(242,203,7,0.45);
    letter-spacing: 0.05em;
}

.mem-plan-card__top { text-align: center; margin-bottom: 0; }

.mem-plan-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin: 0 auto 18px;
}
.mem-plan-card__icon--free    { background: #edfaf4; color: var(--green); }
.mem-plan-card__icon--premium { background: #fff9d6; color: var(--gold-dark); }
.mem-plan-card__icon--patron  { background: var(--red-light); color: var(--red); }

.mem-plan-card__name {
    font-family: var(--ff-kan);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.mem-plan-card__price { margin-bottom: 24px; }
.mem-plan-card__amount {
    font-family: var(--ff-head);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    display: block;
}
.mem-plan-card__period {
    font-family: var(--ff-body);
    font-size: 0.82rem;
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

.mem-plan-card__divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 24px;
}

.mem-plan-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    flex: 1;
}
.mem-plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--ff-kan);
    font-size: 0.875rem;
    color: var(--ink-mid);
    line-height: 1.55;
}
.mem-plan-card__features li i.fa-check {
    color: var(--green);
    font-size: 0.72rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    background: rgba(34,163,92,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PLAN BUTTONS */
.mem-plan-card__btn {
    width: 100%;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    border: none;
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.mem-plan-card__btn--free {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--ink-mid);
}
.mem-plan-card__btn--free:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(34,163,92,0.06);
    transform: scale(1.02);
}
.mem-plan-card__btn--premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--ink);
    box-shadow: 0 6px 18px rgba(242,203,7,0.4);
    font-weight: 800;
}
.mem-plan-card__btn--premium:hover {
    box-shadow: 0 10px 28px rgba(242,203,7,0.55);
    transform: scale(1.03);
}
.mem-plan-card__btn--patron {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 6px 18px rgba(249,1,1,0.25);
}
.mem-plan-card__btn--patron:hover {
    box-shadow: 0 10px 28px rgba(249,1,1,0.4);
    transform: scale(1.03);
}

/* ══════════════════════════════════════════
   FLOW STEPS
══════════════════════════════════════════ */
.mem-flow {
    background: var(--white);
    padding: 96px 20px;
}
.mem-flow__inner {
    max-width: 1060px;
    margin: 0 auto;
}
.mem-flow__subtitle {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.7;
}

.mem-flow__steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.mem-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 32px 18px;
    background: var(--cream3);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}
.mem-flow__step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition);
}
.mem-flow__step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-md);
    border-color: var(--border);
    background: var(--white);
}
.mem-flow__step:hover::after { opacity: 1; }

.mem-flow__step-num {
    font-family: var(--ff-head);
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 0.08em;
    opacity: 0.5;
}
.mem-flow__step-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--red-light);
    border: 2px solid rgba(249,1,1,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red);
    transition: all var(--transition);
}
.mem-flow__step:hover .mem-flow__step-icon {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border-color: var(--red);
    transform: scale(1.1);
}
.mem-flow__step h4 {
    font-family: var(--ff-kan);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
}
.mem-flow__step p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
}

.mem-flow__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: var(--red);
    font-size: 0.9rem;
    opacity: 0.3;
}

/* ══════════════════════════════════════════
   UPI PAYMENT BOX
══════════════════════════════════════════ */
.mem-upi {
    background: var(--cream);
    padding: 72px 20px;
}
.mem-upi__inner {
    max-width: 780px;
    margin: 0 auto;
}
.mem-upi__box {
    background: var(--white);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 44px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 44px;
    align-items: center;
    box-shadow: 0 8px 40px rgba(242,203,7,0.15), 0 4px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}
.mem-upi__box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.mem-upi__qr {
    width: 148px;
    height: 148px;
    background: var(--cream);
    border: 2px solid var(--border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink-mid);
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--shadow);
}
.mem-upi__qr span {
    font-size: 0.68rem;
    font-family: var(--ff-body);
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mem-upi__info-label {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.mem-upi__id-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.mem-upi__id {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.04em;
}
.mem-upi__copy-btn {
    background: var(--red-mid);
    border: 1px solid rgba(249,1,1,0.2);
    color: var(--red-deep);
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-family: var(--ff-body);
    font-weight: 600;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mem-upi__copy-btn:hover { background: rgba(249,1,1,0.18); border-color: var(--red); }

.mem-upi__apps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.mem-upi__apps-label {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}
.mem-upi__app-icons {
    display: flex;
    gap: 10px;
}
.mem-upi__app-icons i {
    font-size: 1.5rem;
    color: var(--muted-light);
    transition: color var(--transition);
}
.mem-upi__app-icons i:hover { color: var(--ink); }

.mem-upi__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--gold-light);
    border: 1px solid rgba(242,203,7,0.4);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--ff-kan);
    font-size: 0.83rem;
    color: var(--ink-mid);
    line-height: 1.6;
}
.mem-upi__note i { color: var(--gold-dark); margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.mem-testimonials {
    background: var(--white);
    padding: 96px 20px;
}
.mem-testimonials__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.mem-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mem-testimonials__card {
    background: var(--cream3);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.mem-testimonials__card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(249,1,1,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.mem-testimonials__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px var(--shadow-md);
    border-color: var(--border);
    background: var(--white);
}

.mem-testimonials__quote {
    font-size: 1.8rem;
    color: rgba(249, 1, 1, 0.267);
    line-height: 1;
}

.mem-testimonials__card p {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.8;
    flex: 1;
}

.mem-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    flex-wrap: wrap;
}
.mem-testimonials__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-kan);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.mem-testimonials__info strong {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.mem-testimonials__info span {
    font-family: var(--ff-kan);
    font-size: 0.75rem;
    color: var(--muted);
}
.mem-testimonials__stars {
    margin-left: auto;
    color: var(--gold-dark);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.mem-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
}
.mem-footer__top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.mem-footer__brand p {
    font-family: var(--ff-kan);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin: 16px 0 20px;
    max-width: 300px;
}
.mem-footer__logo-wrap img { max-height: 52px; }
.mem-footer__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.mem-footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.mem-footer__socials a:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-2px); }
.mem-footer__contact-list { display: flex; flex-direction: column; gap: 10px; }
.mem-footer__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.mem-footer__contact i { color: var(--gold); font-size: 0.85rem; }

.mem-footer__col h5 {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mem-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.mem-footer__col li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-kan);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.mem-footer__col li a i { font-size: 0.6rem; color: var(--red); opacity: 0.6; }
.mem-footer__col li a:hover { color: var(--white); }

.mem-footer__slogan {
    text-align: center;
    font-family: var(--ff-kan);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    padding: 18px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
}
.mem-footer__slogan i { opacity: 0.6; }

.mem-footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.mem-footer__bottom p {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mem-footer__links {
    display: flex;
    gap: 20px;
}
.mem-footer__links a {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.mem-footer__links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.mem-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mem-modal.mem-modal--open {
    pointer-events: all;
    opacity: 1;
}
.mem-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,10,0,0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.mem-modal__box {
    position: relative;
    z-index: 2;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(26,10,0,0.3);
    transform: translateY(40px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.mem-modal--open .mem-modal__box { transform: translateY(0) scale(1); }

.mem-modal__close {
    position: sticky;
    top: 0;
    float: right;
    margin: 14px 14px 0 0;
    width: 36px;
    height: 36px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}
.mem-modal__close:hover { background: var(--red-light); color: var(--red); border-color: rgba(249,1,1,0.2); }

.mem-modal__header {
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
    clear: both;
}
.mem-modal__plan-badge {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}
.mem-modal__header h3 {
    font-family: var(--ff-kan);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
}
.mem-modal__plan-price {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
}

/* Step Nav */
.mem-modal__step-nav {
    padding: 18px 28px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    background: var(--cream3);
}
.mem-modal__step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream2);
    border: 2px solid var(--border);
    color: var(--muted);
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.mem-modal__step-dot--active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(249,1,1,0.15);
}
.mem-modal__step-dot--done {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}
.mem-modal__step-line {
    flex: 1;
    height: 2px;
    background: var(--border-light);
    transition: background 0.35s ease;
}
.mem-modal__step-line--done { background: var(--green); }

/* Modal Body */
.mem-modal__body { padding: 26px 28px; }

.mem-modal__step { animation: memStepIn 0.35s ease forwards; }
.mem-modal__step--hidden { display: none; }
@keyframes memStepIn { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }

.mem-modal__step-title {
    font-family: var(--ff-kan);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mem-modal__step-title i { color: var(--red); }

/* Fields */
.mem-modal__form { display: flex; flex-direction: column; gap: 16px; }
.mem-modal__field { display: flex; flex-direction: column; gap: 6px; }
.mem-modal__field label {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.req { color: var(--red); font-size: 0.85rem; }

.mem-modal__field input,
.mem-modal__field select,
.mem-modal__field textarea {
    background: var(--cream3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--ff-kan);
    font-size: 0.92rem;
    color: var(--ink);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}
.mem-modal__field textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.5;
}
.mem-modal__field input:focus,
.mem-modal__field select:focus,
.mem-modal__field textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(249,1,1,0.08);
}
.mem-modal__field input::placeholder,
.mem-modal__field textarea::placeholder { color: var(--muted-light); }
.mem-modal__field select option { background: var(--white); color: var(--ink); }

.mem-modal__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* UPI Mini */
.mem-modal__upi-mini {
    background: var(--gold-light);
    border: 1.5px solid rgba(242,203,7,0.4);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
}
.mem-modal__upi-mini-label {
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: var(--ink-mid);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mem-modal__upi-mini-label i { color: var(--gold-dark); }
.mem-modal__upi-mini-id {
    font-family: 'Courier New', monospace;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
}
.mem-modal__upi-copy {
    background: var(--red-mid);
    border: 1px solid rgba(249,1,1,0.2);
    color: var(--red-deep);
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all var(--transition);
}
.mem-modal__upi-copy:hover { background: rgba(249,1,1,0.18); }

/* Upload */
.mem-modal__upload {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 26px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--cream3);
}
.mem-modal__upload:hover {
    border-color: var(--red);
    background: var(--red-light);
}
.mem-modal__upload i { font-size: 1.8rem; color: var(--muted-light); }
.mem-modal__upload span { font-family: var(--ff-kan); font-size: 0.87rem; color: var(--muted); }
.mem-modal__upload small { font-family: var(--ff-body); font-size: 0.72rem; color: var(--muted-light); }

.mem-modal__file-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(34,163,92,0.07);
    border: 1px solid rgba(34,163,92,0.25);
    border-radius: 8px;
    font-family: var(--ff-body);
    font-size: 0.83rem;
    color: var(--ink-mid);
    margin-top: 10px;
}
.mem-modal__file-remove {
    margin-left: auto;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: all var(--transition);
}
.mem-modal__file-remove:hover { background: var(--red-dark); transform: scale(1.1); }

/* Modal Buttons */
.mem-modal__btn-row {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}
.mem-modal__btn-next {
    flex: 1;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(249,1,1,0.25);
}
.mem-modal__btn-next:hover {
    box-shadow: 0 8px 24px rgba(249,1,1,0.4);
    transform: translateY(-2px);
}
.mem-modal__btn-back {
    padding: 13px 18px;
    background: var(--cream3);
    color: var(--ink-mid);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.mem-modal__btn-back:hover { border-color: var(--muted-light); color: var(--ink); background: var(--cream2); }

/* Success */
.mem-modal__success {
    text-align: center;
    padding: 18px 0 8px;
    animation: memStepIn 0.45s ease;
}
.mem-modal__success-icon {
    font-size: 3.8rem;
    color: var(--green);
    margin-bottom: 18px;
    animation: successPop 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes successPop { from { transform:scale(0.5); opacity:0; } to { transform:scale(1); opacity:1; } }
.mem-modal__success h3 {
    font-family: var(--ff-kan);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}
.mem-modal__success p {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.mem-modal__success-id {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-family: var(--ff-body);
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 26px;
}
.mem-modal__success-id strong {
    font-family: 'Courier New', monospace;
    color: var(--red);
    font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .mem-why__grid { grid-template-columns: repeat(2, 1fr); }
    .mem-plans__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .mem-plan-card--featured { transform: translateY(-8px) scale(1.01); }
    .mem-plan-card--featured.mem-revealed { transform: translateY(-8px) scale(1.01);
    transition: none;
}
    .mem-plan-card--featured:hover { transform: translateY(-14px) scale(1.01); }
    .mem-flow__steps {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }
    .mem-flow__steps .mem-flow__connector:nth-of-type(4),
    .mem-flow__steps .mem-flow__step:nth-of-type(7),
    .mem-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .mem-upi__box { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .mem-upi__qr { margin: 0 auto; }
    .mem-upi__id-row,
    .mem-upi__apps { justify-content: center; }
    .mem-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
══════════════════════════════════════════ */
@media (max-width: 767px) {
    .mem-hero { padding: 80px 16px 56px; min-height: auto; }
    .mem-hero__stats { flex-direction: column; border-radius: var(--radius); }
    .mem-hero__stat-sep { width: 60px; height: 1px; }

    .mem-why { padding: 64px 16px; }
    .mem-why__grid { grid-template-columns: 1fr; gap: 14px; }
    .mem-why__card { padding: 24px 20px; }

    .mem-plans { padding: 64px 16px; }
    .mem-plans__grid { grid-template-columns: 1fr; gap: 18px; }
    .mem-plan-card--featured,
    .mem-plan-card--featured.mem-revealed { transform: none; order: -1;
    transition: none;
}
    .mem-plan-card--featured:hover { transform: translateY(-8px); }
    .mem-plan-card { padding: 26px 20px; }

    .mem-flow { padding: 64px 16px; }
    .mem-flow__steps { 
        display: flex; 
        flex-direction: column; 
        gap: 12px; 
        
    }
    .mem-flow__connector { transform: rotate(90deg); }

    .mem-upi { padding: 52px 16px; }
    .mem-upi__box { padding: 28px 20px; grid-template-columns: 1fr; text-align: center; gap: 22px; }
    .mem-upi__qr { width: 120px; height: 120px; font-size: 2.4rem; margin: 0 auto; }
    .mem-upi__id { font-size: 1.25rem; }
    .mem-upi__id-row,
    .mem-upi__apps { justify-content: center; flex-wrap: wrap; }

    .mem-testimonials { padding: 64px 16px; }
    .mem-testimonials__grid { grid-template-columns: 1fr; gap: 14px; }

    .mem-footer__top { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }

    .mem-modal__body { padding: 20px 18px; }
    .mem-modal__header { padding: 18px 18px 14px; }
    .mem-modal__step-nav { padding: 14px 18px; }
    .mem-modal__field-row { grid-template-columns: 1fr; }
    .mem-modal__btn-row { flex-direction: column-reverse; }
    .mem-modal__btn-back { width: 100%; justify-content: center; }

    .mem-footer__bottom { flex-direction: column; align-items: center; text-align: center; }
    .mem-section-title { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤420px)
══════════════════════════════════════════ */
@media (max-width: 420px) {
    .mem-hero__title { font-size: 1.85rem; }
    .mem-plan-card__amount { font-size: 2.1rem; }
    .mem-testimonials__author { flex-direction: column; align-items: flex-start; gap: 10px; }
    .mem-testimonials__stars { margin-left: 0; }
}

/* ══════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted-light); }


/* =======================================
                BOOKINGS
====================================== */
/* ================================================
    BOOKINGS PAGE — bookings.css
    All class names prefixed with bookings-
    4-space indentation throughout
================================================ */

/* ===== ANIMATIONS ===== */
@keyframes bookings-fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bookings-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes bookings-scaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes bookings-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes bookings-pulse-seat {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.35); }
    50%       { box-shadow: 0 0 0 8px rgba(192, 57, 43, 0); }
}
@keyframes bookings-glow-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(212, 160, 23, 0); }
}
@keyframes bookings-shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}
@keyframes bookings-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes bookings-count-flip {
    0%   { transform: rotateX(0deg); }
    50%  { transform: rotateX(90deg); }
    100% { transform: rotateX(0deg); }
}
@keyframes bookings-check-pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes bookings-seat-fill {
    from { width: 0; }
}
@keyframes bookings-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}
@keyframes bookings-spin {
    to { transform: rotate(360deg); }
}

/* ===== SCROLL REVEAL ===== */
[data-book-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-book-reveal].bookings-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

/* ===== SHARED UTILITIES ===== */
.bookings-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fde8e8;
    color: var(--red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(192, 57, 43, 0.2);
}
.bookings-section-badge--light {
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold-lt);
    border-color: rgba(212, 160, 23, 0.3);
}
.bookings-section-title {
    font-family: var(--ff-kan);
    font-size: 2rem;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 12px;
    font-weight: 700;
}
.bookings-section-title span {
    color: var(--red);
}
.bookings-section-title--light {
    color: var(--white);
}
.bookings-section-title--light span {
    color: var(--gold-lt);
}
.bookings-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--red), var(--gold));
    border-radius: 2px;
    margin-bottom: 20px;
}
.bookings-title-line--gold {
    background: linear-gradient(to right, var(--gold), transparent);
}

/* =================================================
    HERO SECTION
================================================= */
.bookings-hero {
    position: relative;
    min-height: 620px;
    background: linear-gradient(135deg, var(--red-deep) 0%, #4a0a0a 55%, var(--red-dark) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 60px;
}
.bookings-hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
        45deg,
        var(--gold) 0px, var(--gold) 1px,
        transparent 1px, transparent 44px
    );
    pointer-events: none;
}
.bookings-hero__kannada-bg {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--ff-kan);
    font-size: 24rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.bookings-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 42px 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.bookings-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    animation: bookings-fadeIn 0.6s ease both;
}
.bookings-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}
.bookings-hero__breadcrumb a:hover {
    color: var(--gold-lt);
}
.bookings-hero__breadcrumb i.fa-chevron-right {
    font-size: 0.55rem;
    color: var(--gold);
}
.bookings-hero__breadcrumb span {
    color: var(--gold-lt);
    font-weight: 600;
}
.bookings-hero__content {
    animation: bookings-fadeUp 0.8s ease both;
}
.bookings-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.18);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold-lt);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.bookings-hero__title {
    font-family: var(--ff-kan);
    font-size: 3.4rem;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 700;
}
.bookings-hero__title span {
    color: var(--gold-lt);
}
.bookings-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Search Bar */
.bookings-hero__search {
    margin-bottom: 36px;
}
.bookings-hero__search-wrap {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    max-width: 780px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.bookings-hero__search-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}
.bookings-hero__search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.bookings-hero__search-field i {
    color: var(--gold-lt);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.bookings-hero__search-field input,
.bookings-hero__search-field select {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.85rem;
    font-family: var(--ff-body);
    width: 100%;
}
.bookings-hero__search-field input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.bookings-hero__search-field select option {
    color: var(--ink);
    background: white;
}
.bookings-hero__search-field--select {
    flex: 0 0 160px;
}
.bookings-hero__search-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--ff-kan);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.bookings-hero__search-btn:hover {
    background: var(--gold-lt);
}

/* Stats */
.bookings-hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.bookings-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.bookings-hero__stat-num {
    font-family: var(--ff-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-lt);
    line-height: 1;
}
.bookings-hero__stat-label {
    font-family: var(--ff-kan);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}
.bookings-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Ticker */
.bookings-hero__ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}
.bookings-hero__ticker-inner {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 44px;
    max-width: 100%;
}
.bookings-hero__ticker-label {
    background: var(--red);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}
.bookings-hero__ticker-track {
    overflow: hidden;
    flex: 1;
}
.bookings-hero__ticker-items {
    display: inline-flex;
    animation: bookings-ticker 28s linear infinite;
    white-space: nowrap;
}
.bookings-hero__ticker-items span {
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 0 8px;
}

/* =================================================
    FILTER TABS
================================================= */
.bookings-filters {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow);
}
.bookings-filters__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.bookings-filters__tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}
.bookings-filters__tabs::-webkit-scrollbar {
    display: none;
}
.bookings-filters__tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid transparent;
    background: transparent;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--ff-kan);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
}
.bookings-tab-count {
    background: rgba(0,0,0,0.10);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 0.7rem;
    font-weight: 700;
}
.bookings-filters__tab--active .bookings-tab-count {
    background: rgba(255,255,255,0.25);
}
.bookings-filters__tab:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--border);
}
.bookings-filters__tab--active {
    background: var(--red);
    color: white;
    border-color: var(--red);
}
.bookings-filters__tab--active:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: white;
}
.bookings-filters__view-toggle {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.bookings-filters__view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.bookings-filters__view-btn--active {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

/* =================================================
    FEATURED EVENT
================================================= */
.bookings-featured {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 2px solid var(--border);
}
.bookings-featured__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 42px;
}
.bookings-featured__card {
    background: var(--cream);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 8px 40px var(--shadow);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.bookings-featured__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--red), var(--gold));
}
.bookings-featured__card:hover {
    box-shadow: 0 16px 60px rgba(96, 20, 0, 0.18);
}
.bookings-featured__badge-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}
.bookings-featured__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    animation: bookings-pulse-seat 3s ease infinite;
}
.bookings-featured__seat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff3e0;
    color: #e65100;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid #ffcc02;
}
.bookings-featured__content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.bookings-featured__category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.bookings-featured__title {
    font-family: var(--ff-kan);
    font-size: 2rem;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 18px;
    font-weight: 700;
}
.bookings-featured__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.bookings-featured__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--ink-mid);
}
.bookings-featured__meta-item i {
    color: var(--red);
    width: 16px;
}
.bookings-featured__desc {
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 18px;
}
.bookings-featured__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.bookings-featured__tags span {
    background: var(--cream2);
    color: var(--ink-mid);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.bookings-featured__price-row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}
.bookings-featured__price-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 10px;
}
.bookings-featured__price-tiers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.bookings-featured__tier {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    min-width: 80px;
}
.bookings-featured__tier--premium {
    background: #fff9ef;
    border-color: var(--gold);
}
.bookings-featured__tier-name {
    font-family: var(--ff-kan);
    font-size: 0.72rem;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}
.bookings-featured__tier-price {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}
.bookings-featured__tier-price--free {
    color: #22c55e;
    font-size: 0.88rem;
}
.bookings-featured__cta-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}
.bookings-featured__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    border: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--ff-kan);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.bookings-featured__btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}
.bookings-featured__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink-mid);
    border: 1.5px solid var(--border);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--ff-kan);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.bookings-featured__btn-secondary:hover {
    background: var(--cream);
    border-color: var(--ink-mid);
}

/* Countdown Box */
.bookings-featured__countdown-box {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
    border-radius: 16px;
    padding: 26px 24px;
    color: white;
}
.bookings-featured__countdown-label {
    font-family: var(--ff-kan);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bookings-featured__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}
.bookings-featured__count-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.bookings-featured__count-num {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-lt);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.bookings-featured__count-label {
    font-family: var(--ff-kan);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}
.bookings-featured__count-sep {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 18px;
}
.bookings-featured__seat-bar {
    margin-bottom: 16px;
}
.bookings-featured__seat-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    font-family: var(--ff-kan);
}
.bookings-featured__seat-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.bookings-featured__seat-fill {
    height: 100%;
    background: linear-gradient(to right, var(--red), var(--gold));
    border-radius: 3px;
    animation: bookings-seat-fill 1.2s ease both;
}
.bookings-featured__seat-remaining {
    font-family: var(--ff-kan);
    font-size: 0.72rem;
    color: #fca5a5;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.bookings-featured__speakers {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}
.bookings-featured__speaker-label {
    font-family: var(--ff-kan);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.bookings-featured__speaker-list {
    display: flex;
    align-items: center;
    gap: -8px;
}
.bookings-featured__speaker-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    border: 2px solid var(--ink);
    margin-left: -8px;
    transition: transform 0.2s;
    cursor: default;
}
.bookings-featured__speaker-avatar:first-child {
    margin-left: 0;
}
.bookings-featured__speaker-avatar:hover {
    transform: scale(1.15) translateY(-3px);
    z-index: 2;
}
.bookings-featured__speaker-more {
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

/* =================================================
    EVENTS GRID
================================================= */
.bookings-events {
    padding: 70px 0;
    background: var(--white);
}
.bookings-events__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 42px;
}
.bookings-events__header {
    text-align: center;
    margin-bottom: 32px;
}
.bookings-events__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}
.bookings-events__count {
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}
.bookings-events__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted);
}
.bookings-events__sort label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-kan);
    font-weight: 600;
}
.bookings-events__sort select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-family: var(--ff-body);
    background: var(--white);
    color: var(--ink);
    outline: none;
    cursor: pointer;
}

/* Grid */
.bookings-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: all 0.3s;
}
.bookings-events__grid--list {
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Event Card */
.bookings-event-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
    position: relative;
}
.bookings-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(96, 20, 0, 0.15);
}
.bookings-event-card__image-wrap {
    position: relative;
    overflow: hidden;
}
.bookings-event-card__image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.4s;
    background: var(--cream2);
}
.bookings-event-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.bookings-event-card:hover .bookings-event-card__image {
    transform: scale(1.08);
}
.bookings-event-card__image--red {
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
    color: rgba(255, 255, 255, 0.8);
}
.bookings-event-card__image--gold {
    background: linear-gradient(135deg, #7a5c00 0%, #c89000 100%);
    color: rgba(255, 255, 255, 0.8);
}
.bookings-event-card__image--teal {
    background: linear-gradient(135deg, #00695c 0%, #00897b 100%);
    color: rgba(255, 255, 255, 0.8);
}
.bookings-event-card__image--purple {
    background: linear-gradient(135deg, #4527a0 0%, #5e35b1 100%);
    color: rgba(255, 255, 255, 0.8);
}
.bookings-event-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bookings-event-card__cat-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.06em;
}
.bookings-event-card__cat-badge--gold {
    background: rgba(139, 100, 0, 0.7);
}
.bookings-event-card__cat-badge--teal {
    background: rgba(0, 77, 64, 0.7);
}
.bookings-event-card__cat-badge--purple {
    background: rgba(49, 27, 146, 0.7);
}
.bookings-event-card__hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--red);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    animation: bookings-pulse-seat 2.5s ease infinite;
}
.bookings-event-card__free-badge {
    display: inline-block;
    background: #22c55e;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
}
.bookings-event-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--muted);
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.bookings-event-card__wishlist:hover,
.bookings-event-card__wishlist--active {
    color: var(--red);
    background: white;
    transform: scale(1.1);
}
.bookings-event-card__date-pill {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--white);
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    min-width: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.bookings-event-card__date-day {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}
.bookings-event-card__date-mon {
    display: block;
    font-family: var(--ff-kan);
    font-size: 0.6rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px;
}

/* Card Body */
.bookings-event-card__body {
    padding: 18px 18px 16px;
}
.bookings-event-card__title {
    font-family: var(--ff-kan);
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.bookings-event-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}
.bookings-event-card__info span {
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.bookings-event-card__info i {
    color: var(--red);
    width: 12px;
    font-size: 0.65rem;
}

/* Seat Bar */
.bookings-event-card__seat-bar {
    height: 5px;
    background: var(--cream2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}
.bookings-event-card__seat-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(to right, var(--red), #e74c3c);
    animation: bookings-seat-fill 1s ease both;
}
.bookings-event-card__seat-fill--gold {
    background: linear-gradient(to right, var(--gold), #f0c040);
}
.bookings-event-card__seat-fill--teal {
    background: linear-gradient(to right, #00897b, #26a69a);
}
.bookings-event-card__seat-fill--purple {
    background: linear-gradient(to right, #5e35b1, #7e57c2);
}
.bookings-event-card__seat-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--muted);
    margin-bottom: 14px;
}
.bookings-event-card__seat-label--warn {
    color: #e65100;
    font-weight: 700;
}
.bookings-event-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.bookings-event-card__price-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bookings-event-card__price-from {
    font-size: 0.6rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.bookings-event-card__price {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}
.bookings-event-card__price--free {
    font-size: 0.8rem;
    font-weight: 700;
    color: #22c55e;
    font-family: var(--ff-kan);
}
.bookings-event-card__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: white;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--ff-kan);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.bookings-event-card__btn:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(192, 57, 43, 0.4);
}

/* Load More */
.bookings-events__load-more {
    text-align: center;
    margin-top: 40px;
}
.bookings-events__load-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--ff-kan);
    cursor: pointer;
    transition: all 0.2s;
}
.bookings-events__load-btn:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
}
.bookings-events__load-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* =================================================
    HOW IT WORKS
================================================= */
.bookings-how {
    background: linear-gradient(135deg, var(--red-deep) 0%, #4a0a0a 100%);
    padding: 80px 0;
}
.bookings-how__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 42px;
}
.bookings-how__header {
    text-align: center;
    margin-bottom: 50px;
}
.bookings-how__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.bookings-how__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    padding: 0 12px;
}
.bookings-how__step-num {
    font-family: var(--ff-head);
    font-size: 0.65rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.949);
    letter-spacing: 0.1em;
}
.bookings-how__step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-lt);
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s;
}
.bookings-how__step:hover .bookings-how__step-icon {
    background: rgba(212, 160, 23, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
    animation: bookings-glow-gold 2s ease infinite;
}
.bookings-how__step h4 {
    font-family: var(--ff-kan);
    font-size: 0.92rem;
    color: white;
}
.bookings-how__step p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}
.bookings-how__connector {
    display: flex;
    align-items: center;
    padding-top: 52px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bookings-how__note {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
}
.bookings-how__note > i {
    color: #22c55e;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.bookings-how__note strong {
    display: block;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: white;
    margin-bottom: 3px;
}
.bookings-how__note span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* =================================================
    MY BOOKINGS
================================================= */
.bookings-mybookings {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.bookings-mybookings__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 42px;
}
.bookings-mybookings__header {
    text-align: center;
    margin-bottom: 40px;
}
.bookings-mybookings__login-prompt {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.bookings-mybookings__login-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--muted);
    margin: 0 auto 20px;
    animation: bookings-float 4s ease-in-out infinite;
}
.bookings-mybookings__login-prompt h3 {
    font-family: var(--ff-kan);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 10px;
}
.bookings-mybookings__login-prompt p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}
.bookings-mybookings__login-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.bookings-mybookings__login-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--ff-kan);
    cursor: pointer;
    transition: all 0.2s;
}
.bookings-mybookings__login-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}
.bookings-mybookings__login-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink-mid);
    border: 1.5px solid var(--border);
    padding: 11px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--ff-kan);
    cursor: pointer;
    transition: all 0.2s;
}
.bookings-mybookings__login-btn-secondary:hover {
    background: var(--cream);
    border-color: var(--ink-mid);
}

/* Preview */
.bookings-mybookings__preview {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 14px;
    overflow: hidden;
}
.bookings-mybookings__preview-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.bookings-mybookings__preview-card--blur {
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
}
.bookings-mybookings__preview-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bookings-mybookings__preview-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.bookings-mybookings__preview-icon--gold {
    background: linear-gradient(135deg, var(--gold), #c89000);
}
.bookings-mybookings__preview-title {
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
}
.bookings-mybookings__preview-meta {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2px;
}
.bookings-mybookings__preview-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bookings-mybookings__preview-qr {
    font-size: 1.6rem;
    color: var(--ink-mid);
}
.bookings-mybookings__preview-status {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}
.bookings-mybookings__preview-status--confirmed {
    background: #dcfce7;
    color: #166534;
}
.bookings-mybookings__preview-status--pending {
    background: #fef9c3;
    color: #854d0e;
}
.bookings-mybookings__preview-blur-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    font-weight: 600;
}
.bookings-mybookings__preview-blur-overlay i {
    font-size: 1.6rem;
    color: var(--muted);
}
/* ===== MY ORDERS — CARDS ===== */
.bookings-mybookings__orders {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.bookings-myorder-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0,0,0,0.06);
}
.bookings-myorder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

/* Media / Image */
.bookings-myorder-card__media {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}
.bookings-myorder-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.bookings-myorder-card:hover .bookings-myorder-card__media img {
    transform: scale(1.05);
}
.bookings-myorder-card__media-fallback {
    width: 100%;
    height: 100%;
    background: var(--red, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
}

/* Status Badge */
.bookings-myorder-card__status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(6px);
}
.bookings-myorder-card__status--confirmed {
    background: rgba(22,163,74,0.9);
    color: #fff;
}
.bookings-myorder-card__status--pending {
    background: rgba(234,179,8,0.9);
    color: #1a1a1a;
}

/* Play Button for video cards */
.bookings-myorder-card__play-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--red, #c0392b);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.2s;
}
.bookings-myorder-card__play-btn:hover {
    background: var(--red, #c0392b);
    color: #fff;
    transform: scale(1.1);
}

/* Body */
.bookings-myorder-card__body {
    padding: 20px;
}

.bookings-myorder-card__cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red, #c0392b);
    background: rgba(192,57,43,0.08);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}
.bookings-myorder-card__cat--gold {
    color: #b8860b;
    background: rgba(184,134,11,0.1);
}
.bookings-myorder-card__cat--teal {
    color: #0d7377;
    background: rgba(13,115,119,0.1);
}

.bookings-myorder-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.4;
}

.bookings-myorder-card__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}
.bookings-myorder-card__meta span {
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bookings-myorder-card__meta i {
    color: var(--red, #c0392b);
    font-size: 0.78rem;
    width: 14px;
}

.bookings-myorder-card__info-row {
    display: flex;
    gap: 0;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}
.bookings-myorder-card__info-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border-right: 1px solid #f0f0f0;
    background: #fafafa;
}
.bookings-myorder-card__info-item:last-child { border-right: none; }
.bookings-myorder-card__info-label {
    font-size: 0.68rem;
    color: #999;
    margin-bottom: 2px;
}
.bookings-myorder-card__info-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
}
.bookings-myorder-card__info-val--free {
    color: #16a34a;
}

.bookings-myorder-card__id {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 14px;
}
.bookings-myorder-card__id strong {
    color: #555;
    font-family: monospace;
}

.bookings-myorder-card__actions {
    display: flex;
    gap: 10px;
}
.bookings-myorder-card__btn-qr {
    flex: 1;
    padding: 9px 0;
    background: var(--red, #c0392b);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, transform 0.15s;
}
.bookings-myorder-card__btn-qr:hover {
    background: #a93226;
    transform: translateY(-1px);
}
.bookings-myorder-card__btn-cancel {
    padding: 9px 14px;
    background: #fff;
    color: #999;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: border-color 0.2s, color 0.2s;
}
.bookings-myorder-card__btn-cancel:hover {
    border-color: #c0392b;
    color: #c0392b;
}

/* ===== VIDEO LIGHTBOX ===== */
.bookings-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}
.bookings-video-modal.open {
    display: flex;
}
.bookings-video-modal__box {
    position: relative;
    width: 90vw;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}
.bookings-video-modal__box iframe {
    width: 100%;
    height: 100%;
}
.bookings-video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
/* =================================================
    CTA SECTION
================================================= */
.bookings-cta {
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 50%, var(--red-dark) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.bookings-cta__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 1px, transparent 30px);
    pointer-events: none;
}
.bookings-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.bookings-cta__icon {
    font-size: 3rem;
    color: var(--gold-lt);
    margin-bottom: 18px;
    animation: bookings-float 4s ease-in-out infinite;
    display: block;
}
.bookings-cta__inner h2 {
    font-family: var(--ff-kan);
    font-size: 2.2rem;
    color: white;
    margin-bottom: 14px;
    line-height: 1.35;
}
.bookings-cta__inner p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.bookings-cta__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.bookings-cta__btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: var(--ff-kan);
    transition: all 0.2s;
    text-decoration: none;
}
.bookings-cta__btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212, 160, 23, 0.4);
}
.bookings-cta__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-family: var(--ff-kan);
    transition: all 0.2s;
}
.bookings-cta__btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}
.bookings-cta__tagline {
    font-family: var(--ff-kan);
    font-size: 1rem;
    color: var(--gold-lt);
    letter-spacing: 0.05em;
}

/* =================================================
    BOOKING MODAL
================================================= */
.bookings-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.bookings-modal--open {
    display: flex;
}
.bookings-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    animation: bookings-fadeIn 0.25s ease both;
}
.bookings-modal__box {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: bookings-scaleIn 0.3s ease both;
    z-index: 2;
}
.bookings-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s;
    z-index: 3;
}
.bookings-modal__close:hover {
    background: rgba(255, 255, 255, 0.3);
}
.bookings-modal__header {
    background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: 24px 28px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}
.bookings-modal__header-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.bookings-modal__header h3 {
    font-family: var(--ff-kan);
    font-size: 1rem;
    color: white;
    margin-bottom: 3px;
}
.bookings-modal__header span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}
.bookings-modal__body {
    padding: 26px 28px;
}

/* Step Nav */
.bookings-modal__steps-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 26px;
}
.bookings-modal__step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.3s;
    flex-shrink: 0;
}
.bookings-modal__step-dot--active {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.4);
}
.bookings-modal__step-dot--done {
    background: #22c55e;
    color: white;
}
.bookings-modal__step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    max-width: 80px;
}
.bookings-modal__step-title {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bookings-modal__step-title i {
    color: var(--red);
}

/* Ticket Types */
.bookings-modal__ticket-types {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.bookings-modal__ticket-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--cream);
}
.bookings-modal__ticket-type:hover {
    border-color: var(--red);
    background: #fff5f5;
}
.bookings-modal__ticket-type--selected {
    border-color: var(--red);
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.bookings-modal__ticket-type--member {
    border-style: dashed;
}
.bookings-modal__ticket-name {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}
.bookings-modal__ticket-badge {
    font-size: 0.6rem;
    background: var(--red);
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 700;
}
.bookings-modal__ticket-badge--gold {
    background: var(--gold);
    color: var(--ink);
}
.bookings-modal__ticket-desc {
    font-size: 0.72rem;
    color: var(--muted);
}
.bookings-modal__ticket-price {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--ink);
    text-align: right;
}
.bookings-modal__ticket-price--free {
    color: #22c55e;
    font-size: 1rem;
}
.bookings-modal__ticket-avail {
    font-size: 0.65rem;
    color: var(--muted);
    text-align: right;
    margin-top: 2px;
}

/* Qty Row */
.bookings-modal__qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.bookings-modal__qty-row label {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    font-weight: 600;
}
.bookings-modal__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.bookings-modal__qty button {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--cream);
    color: var(--ink);
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bookings-modal__qty button:hover {
    background: var(--border);
}
.bookings-modal__qty span {
    width: 44px;
    text-align: center;
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
}

/* Total Bar */
.bookings-modal__total-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream2);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: var(--ink-mid);
}
.bookings-modal__total-bar strong {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--red);
}

/* Form */
.bookings-modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 4px;
}
.bookings-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bookings-modal__field label {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--ink-mid);
    font-weight: 600;
}
.bookings-modal__field label span {
    color: var(--red);
}
.bookings-modal__field input {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.85rem;
    font-family: var(--ff-body);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--cream);
    color: var(--ink);
}
.bookings-modal__field input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
    background: var(--white);
}
.bookings-modal__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.bookings-modal__payment-note {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff9ef;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    color: var(--ink-mid);
    flex-wrap: wrap;
}
.bookings-modal__payment-note i {
    color: var(--gold);
}
.bookings-modal__copy-btn {
    background: var(--red);
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.72rem;
    cursor: pointer;
    transition: background 0.2s;
}
.bookings-modal__copy-btn:hover {
    background: var(--red-dark);
}

/* Buttons */
.bookings-modal__next-btn {
    width: 100%;
    padding: 13px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--ff-kan);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 6px;
}
.bookings-modal__next-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}
.bookings-modal__step-btns {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-top: 6px;
}
.bookings-modal__back-btn {
    padding: 13px 20px;
    background: var(--cream2);
    color: var(--ink-mid);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    font-family: var(--ff-kan);
}
.bookings-modal__back-btn:hover {
    background: var(--border);
}
.bookings-modal__step-content--hidden {
    display: none;
}
.bookings-modal__success {
    text-align: center;
    padding: 16px 0;
}
.bookings-modal__success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 16px;
    animation: bookings-check-pop 0.5s ease both;
}
.bookings-modal__success h3 {
    font-family: var(--ff-kan);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 12px;
}
.bookings-modal__success p {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 18px;
}
.bookings-modal__booking-id {
    background: var(--cream2);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 14px;
    font-family: var(--ff-kan);
}
.bookings-modal__booking-id strong {
    color: var(--red);
    font-size: 0.92rem;
    display: block;
    margin-top: 3px;
}
.bookings-modal__qr-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 3rem;
    color: var(--muted);
    margin-bottom: 18px;
}
.bookings-modal__qr-preview span {
    font-family: var(--ff-kan);
    font-size: 0.75rem;
    color: var(--muted);
}

/* =================================================
    RESPONSIVE — TABLET (≤1024px)
================================================= */
@media (max-width: 1024px) {
    .bookings-hero__inner {
        padding: 70px 28px 40px;
    }
    .bookings-hero__title {
        font-size: 2.6rem;
    }
    .bookings-hero__search-field--select {
        flex: 0 0 130px;
    }
    .bookings-filters__inner {
        padding: 0 28px;
    }
    .bookings-featured__inner {
        padding: 0 28px;
    }
    .bookings-featured__content {
        grid-template-columns: 1fr 280px;
        gap: 28px;
    }
    .bookings-featured__title {
        font-size: 1.6rem;
    }
    .bookings-events__inner {
        padding: 0 28px;
    }
    .bookings-events__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .bookings-how__inner {
        padding: 0 28px;
    }
    .bookings-mybookings__inner {
        padding: 0 28px;
    }
    .bookings-section-title {
        font-size: 1.6rem;
    }
}

/* =================================================
    RESPONSIVE — MOBILE (≤768px)
================================================= */
@media (max-width: 768px) {
    /* Hero */
    .bookings-hero {
        min-height: auto;
        padding-bottom: 50px;
    }
    .bookings-hero__inner {
        padding: 60px 20px 30px;
    }
    .bookings-hero__title {
        font-size: 2rem;
        line-height: 1.3;
    }
    .bookings-hero__subtitle {
        font-size: 0.88rem;
    }
    .bookings-hero__search-wrap {
        flex-direction: column;
        border-radius: 12px;
        gap: 0;
    }
    .bookings-hero__search-field {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .bookings-hero__search-field--select {
        flex: 1;
    }
    .bookings-hero__search-btn {
        border-radius: 0 0 12px 12px;
        width: 100%;
        justify-content: center;
    }
    .bookings-hero__stats {
        gap: 16px;
    }
    .bookings-hero__stat-num {
        font-size: 1.4rem;
    }
    .bookings-hero__kannada-bg {
        font-size: 12rem;
        right: -20px;
    }
    .bookings-filters__inner {
        padding: 0 16px;
        gap: 10px;
    }
    .bookings-filters__tabs {
        padding: 10px 0;
    }
    .bookings-filters__view-toggle {
        display: none;
    }
    .bookings-featured {
        padding: 30px 0;
    }
    .bookings-featured__inner {
        padding: 0 20px;
    }
    .bookings-featured__card {
        padding: 22px 20px;
    }
    .bookings-featured__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bookings-featured__title {
        font-size: 1.5rem;
    }
    .bookings-featured__price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .bookings-featured__cta-group {
        width: 100%;
    }
    .bookings-featured__btn-primary,
    .bookings-featured__btn-secondary {
        flex: 1;
        justify-content: center;
    }
    .bookings-events {
        padding: 55px 0;
    }
    .bookings-events__inner {
        padding: 0 20px;
    }
    .bookings-events__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bookings-events__meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .bookings-how {
        padding: 55px 0;
    }
    .bookings-how__inner {
        padding: 0 20px;
    }
    .bookings-how__steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .bookings-how__connector {
        transform: rotate(90deg);
        padding-top: 0;
        margin: 4px 0;
    }
    .bookings-mybookings {
        padding: 55px 0;
    }
    .bookings-mybookings__inner {
        padding: 0 20px;
    }
    .bookings-mybookings__login-btns {
        flex-direction: column;
        align-items: center;
    }
    .bookings-mybookings__login-btn-primary,
    .bookings-mybookings__login-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .bookings-cta {
        padding: 55px 20px;
    }
    .bookings-cta__inner h2 {
        font-size: 1.7rem;
    }
    .bookings-cta__actions {
        flex-direction: column;
        align-items: center;
    }
    .bookings-cta__btn-gold,
    .bookings-cta__btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .bookings-modal {
        align-items: flex-end;
        padding: 0;
    }
    .bookings-modal__box {
        max-width: 100%;
        border-radius: 14px 14px 0 0;
        margin-top: auto;
        max-height: 95vh;
    }
    .bookings-modal__body {
        padding: 20px;
    }
    .bookings-modal__header {
        padding: 18px 20px;
    }
    .bookings-modal__field-row {
        grid-template-columns: 1fr;
    }
    .bookings-modal__step-btns {
        grid-template-columns: 1fr;
    }
    .bookings-section-title {
        font-size: 1.5rem;
    }
}

/* =================================================
    RESPONSIVE — SMALL MOBILE (≤480px)
================================================= */
@media (max-width: 480px) {
    .bookings-hero__title {
        font-size: 1.7rem;
    }
    .bookings-hero__stats {
        gap: 12px;
    }
    .bookings-hero__stat-divider {
        height: 30px;
    }
    .bookings-featured__price-tiers {
        flex-wrap: wrap;
    }
    .bookings-featured__tier {
        flex: 1;
        min-width: 70px;
    }
    .bookings-event-card__image {
        height: 110px;
    }
    .bookings-featured__count-num {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }
    .bookings-section-title {
        font-size: 1.3rem;
    }
    .bookings-filters__tab {
        padding: 7px 12px;
        font-size: 0.74rem;
    }
}

/* =================================================
    LIST VIEW MODE
================================================= */
.bookings-events__grid--list .bookings-event-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-radius: 12px;
}
.bookings-events__grid--list .bookings-event-card__image {
    height: 100%;
    min-height: 120px;
    border-radius: 0;
}
.bookings-events__grid--list .bookings-event-card:hover {
    transform: translateX(4px);
}
@media (max-width: 600px) {
    .bookings-events__grid--list .bookings-event-card {
        grid-template-columns: 1fr;
    }
    .bookings-events__grid--list .bookings-event-card__image {
        height: 100px;
    }
}







/* =============================================
VIDEOS PAGE — ALL CLASS NAMES: videos-section-*
============================================= */

/* ---- Hero Banner ---- */
.videos-section-hero {
    position: relative;
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--ink) 60%, #0d0400 100%);
    padding: 72px 24px 56px;
    overflow: hidden;
}

.videos-section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(192,57,43,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,160,23,0.10) 0%, transparent 60%);
    pointer-events: none;
}

.videos-section-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

.videos-section-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.videos-section-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    animation: videos-fadeDown 0.5s ease both;
}

.videos-section-hero-breadcrumb a {
    color: var(--gold-lt);
    text-decoration: none;
    transition: color var(--transition);
}

.videos-section-hero-breadcrumb a:hover {
    color: var(--white);
}

.videos-section-hero-breadcrumb i {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
}

.videos-section-hero-title {
    font-family: var(--ff-kan);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 8px;
    animation: videos-fadeUp 0.5s 0.1s ease both;
}

.videos-section-hero-title span {
    color: var(--gold-lt);
}

.videos-section-hero-sub {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    animation: videos-fadeUp 0.5s 0.2s ease both;
}

/* ---- Filter Bar ---- */
.videos-section-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 16px var(--shadow);
    animation: videos-slideDown 0.4s ease both;
}

.videos-section-filter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

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

.videos-section-filter-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 18px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: var(--ink);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.videos-section-filter-btn i {
    font-size: 0.8rem;
}

.videos-section-filter-btn:hover {
    color: var(--red);
    background: var(--cream);
}

.videos-section-filter-btn.active {
    color: var(--red);
    border-bottom-color: var(--red);
    font-weight: 600;
}

/* ---- Search Row ---- */
.videos-section-search-row {
    max-width: 1280px;
    margin: 28px auto 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.videos-section-search-wrap {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.videos-section-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.85rem;
}

.videos-section-search-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.videos-section-search-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}

.videos-section-sort-select {
    padding: 11px 36px 11px 14px;
    font-family: var(--ff-body);
    font-size: 0.85rem;
    color: var(--ink-mid);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a5c48' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color var(--transition);
}

.videos-section-sort-select:focus {
    border-color: var(--red);
}

.videos-section-results-count {
    font-family: var(--ff-body);
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
}

.videos-section-results-count strong {
    color: var(--red);
    font-weight: 600;
}

/* ---- Featured Video (Top Big Player) ---- */
.videos-section-featured {
    max-width: 1280px;
    margin: 28px auto 0;
    padding: 0 24px;
    animation: videos-fadeUp 0.6s 0.15s ease both;
}

.videos-section-featured-card {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px var(--shadow);
    background: var(--ink);
    position: relative;
}

.videos-section-featured-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.videos-section-featured-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.videos-section-featured-card:hover .videos-section-featured-player img {
    opacity: 0.7;
    transform: scale(1.03);
}

.videos-section-featured-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.videos-section-featured-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 0 rgba(192,57,43,0.4);
    animation: videos-pulse 2s infinite;
}

.videos-section-featured-play-btn:hover {
    transform: scale(1.1);
    background: var(--red-dark);
    animation: none;
}

.videos-section-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(10,2,0,0.9) 0%, transparent 100%);
}

.videos-section-featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.videos-section-featured-title {
    font-family: var(--ff-kan);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.videos-section-featured-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.videos-section-featured-meta span {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.videos-section-featured-duration {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.75);
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.videos-section-featured-playlist {
    background: var(--ink);
    border-left: 1px solid rgba(255,255,255,0.06);
    overflow-y: auto;
    max-height: 360px;
    scrollbar-width: thin;
    scrollbar-color: var(--red-deep) transparent;
}

.videos-section-featured-playlist::-webkit-scrollbar {
    width: 4px;
}

.videos-section-featured-playlist::-webkit-scrollbar-thumb {
    background: var(--red-deep);
    border-radius: 4px;
}

.videos-section-playlist-head {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.videos-section-playlist-head i {
    color: var(--red);
}

.videos-section-playlist-item {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.videos-section-playlist-item:hover {
    background: rgba(255,255,255,0.05);
}

.videos-section-playlist-item.active {
    background: rgba(192,57,43,0.15);
    border-left: 3px solid var(--red);
}

.videos-section-playlist-thumb {
    position: relative;
    width: 80px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.videos-section-playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos-section-playlist-thumb-dur {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 3px;
}

.videos-section-playlist-info {
    flex: 1;
}

.videos-section-playlist-info h5 {
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videos-section-playlist-info span {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
}

/* ---- Main Layout ---- */
.videos-section-layout {
    max-width: 1280px;
    margin: 36px auto 60px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* ---- Grid ---- */
.videos-section-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.videos-section-grid-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.videos-section-grid-title-bar {
    width: 4px;
    height: 22px;
    background: var(--red);
    border-radius: 2px;
}

.videos-section-grid-title h2 {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.videos-section-view-toggle {
    display: flex;
    gap: 4px;
}

.videos-section-view-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all var(--transition);
}

.videos-section-view-btn.active,
.videos-section-view-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.videos-section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.videos-section-grid.list-view {
    grid-template-columns: 1fr;
}

/* ---- Video Card ---- */
.videos-section-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 14px var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 0;
    transform: translateY(24px);
    animation: videos-fadeUp 0.5s ease forwards;
}

.videos-section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(96,20,0,0.18);
}

.videos-section-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--ink);
}

.videos-section-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.videos-section-card:hover .videos-section-card-thumb img {
    transform: scale(1.06);
    opacity: 0.8;
}

.videos-section-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.videos-section-card:hover .videos-section-card-play {
    opacity: 1;
}

.videos-section-card-play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(192,57,43,0.5);
}

.videos-section-card-play-icon:hover {
    transform: scale(1.1);
}

.videos-section-card-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.videos-section-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 9px;
    border-radius: 20px;
    font-family: var(--ff-body);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.videos-section-card-badge.live {
    background: var(--red);
    color: var(--white);
    animation: videos-blink 1s infinite;
}

.videos-section-card-badge.new {
    background: var(--gold);
    color: var(--ink);
}

.videos-section-card-body {
    padding: 14px 16px 16px;
}

.videos-section-card-cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.videos-section-card-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition);
}

.videos-section-card:hover .videos-section-card-title {
    color: var(--red);
}

.videos-section-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.videos-section-card-date {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.videos-section-card-views {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.videos-section-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.videos-section-card-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.videos-section-card-action-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.videos-section-card-action-btn.primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    flex: 2;
}

.videos-section-card-action-btn.primary:hover {
    background: var(--red-dark);
}

/* ---- List View Card ---- */
.videos-section-grid.list-view .videos-section-card {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.videos-section-grid.list-view .videos-section-card-thumb {
    aspect-ratio: unset;
    height: 100%;
    min-height: 150px;
}

/* ---- Load More ---- */
.videos-section-load-more {
    text-align: center;
    margin-top: 32px;
}

.videos-section-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.videos-section-load-btn:hover {
    background: var(--red);
    color: var(--white);
}

/* ---- Sidebar ---- */
.videos-section-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 56px;
}

.videos-section-sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px var(--shadow);
    overflow: hidden;
}

.videos-section-sidebar-widget-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}

.videos-section-sidebar-widget-head-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}

.videos-section-sidebar-widget-head-left i {
    color: var(--red);
    font-size: 0.85rem;
}

.videos-section-sidebar-widget-view-all {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.videos-section-sidebar-widget-view-all:hover {
    gap: 7px;
}

/* Trending in Sidebar */
.videos-section-sidebar-trending-item {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition);
}

.videos-section-sidebar-trending-item:last-child {
    border-bottom: none;
}

.videos-section-sidebar-trending-item:hover {
    background: var(--cream);
}

.videos-section-sidebar-trending-num {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--border);
    min-width: 28px;
    line-height: 1;
    padding-top: 2px;
}

.videos-section-sidebar-trending-item:hover .videos-section-sidebar-trending-num {
    color: var(--red);
}

.videos-section-sidebar-trending-thumb {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.videos-section-sidebar-trending-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos-section-sidebar-trending-info h5 {
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    color: var(--ink-mid);
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videos-section-sidebar-trending-info span {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    color: var(--muted);
}

/* Subscribe Widget */
.videos-section-sidebar-subscribe {
    background: linear-gradient(135deg, var(--red-deep), var(--ink));
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.videos-section-sidebar-subscribe::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(212,160,23,0.1);
}

.videos-section-sidebar-subscribe-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--white);
}

.videos-section-sidebar-subscribe h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px;
}

.videos-section-sidebar-subscribe p {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin: 0 0 14px;
}

.videos-section-sidebar-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.videos-section-sidebar-subscribe-btn:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}

/* Stats Widget */
.videos-section-sidebar-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.videos-section-sidebar-stat {
    padding: 14px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.videos-section-sidebar-stat:nth-child(even) {
    border-right: none;
}

.videos-section-sidebar-stat:nth-child(3),
.videos-section-sidebar-stat:nth-child(4) {
    border-bottom: none;
}

.videos-section-sidebar-stat-num {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    display: block;
}

.videos-section-sidebar-stat-label {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

/* ---- Shorts / Reels Row ---- */
.videos-section-shorts {
    max-width: 1280px;
    margin: 0 auto 48px;
    padding: 20px 24px;
}

.videos-section-shorts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.videos-section-shorts-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.videos-section-shorts-title-bar {
    width: 4px;
    height: 22px;
    background: var(--gold);
    border-radius: 2px;
}

.videos-section-shorts-title h2 {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.videos-section-shorts-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.videos-section-shorts-scroll::-webkit-scrollbar {
    display: none;
}

.videos-section-short-card {
    flex-shrink: 0;
    width: 140px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition);
}

.videos-section-short-card:hover {
    transform: scale(1.04);
}

.videos-section-short-thumb {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--ink);
    border-radius: 10px;
    overflow: hidden;
}

.videos-section-short-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.videos-section-short-card:hover .videos-section-short-thumb img {
    transform: scale(1.08);
}

.videos-section-short-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.videos-section-short-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.videos-section-short-card:hover .videos-section-short-play {
    opacity: 1;
}

.videos-section-short-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 8px;
}

.videos-section-short-info h5 {
    font-family: var(--ff-kan);
    font-size: 0.72rem;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videos-section-short-views {
    font-family: var(--ff-body);
    font-size: 0.62rem;
    color: rgba(255,255,255,0.6);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---- Pagination ---- */
.videos-section-pagination {
    max-width: 1280px;
    margin: 0 auto 48px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.videos-section-page-btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-mid);
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.videos-section-page-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.videos-section-page-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.videos-section-page-btn.nav {
    color: var(--red);
}

/* ---- Ad Banner ---- */
.videos-section-ad {
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 0 24px;
}

.videos-section-ad-inner {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.videos-section-ad-text {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.videos-section-ad-img {
    max-height: 217px;
    width: 100%;
}

/* ---- Modal ---- */
.videos-section-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
}

.videos-section-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.videos-section-modal-box {
    width: 100%;
    max-width: 860px;
    background: var(--ink);
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.videos-section-modal-overlay.open .videos-section-modal-box {
    transform: scale(1);
}

.videos-section-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.videos-section-modal-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--white);
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.videos-section-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background var(--transition);
    flex-shrink: 0;
}

.videos-section-modal-close:hover {
    background: var(--red);
}

.videos-section-modal-player {
    aspect-ratio: 16/9;
    background: #000;
}

.videos-section-modal-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.videos-section-modal-footer {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.videos-section-modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(192,57,43,0.2);
    color: var(--gold-lt);
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.videos-section-modal-date {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =============================================
    KEYFRAME ANIMATIONS
============================================= */
@keyframes videos-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes videos-fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes videos-slideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes videos-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
    50%       { box-shadow: 0 0 0 16px rgba(192,57,43,0); }
}

@keyframes videos-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

@keyframes videos-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

/* Skeleton loader */
.videos-section-skeleton {
    background: linear-gradient(90deg, var(--cream2) 25%, var(--cream) 50%, var(--cream2) 75%);
    background-size: 400px 100%;
    animation: videos-shimmer 1.4s infinite;
    border-radius: 6px;
}

/* =============================================
    STAGGER ANIMATIONS FOR CARDS
============================================= */
.videos-section-card:nth-child(1) { animation-delay: 0.05s; }
.videos-section-card:nth-child(2) { animation-delay: 0.12s; }
.videos-section-card:nth-child(3) { animation-delay: 0.19s; }
.videos-section-card:nth-child(4) { animation-delay: 0.26s; }
.videos-section-card:nth-child(5) { animation-delay: 0.33s; }
.videos-section-card:nth-child(6) { animation-delay: 0.40s; }
.videos-section-card:nth-child(7) { animation-delay: 0.47s; }
.videos-section-card:nth-child(8) { animation-delay: 0.54s; }

/* =============================================
    TABLET (iPad) — max-width: 1024px
============================================= */
@media (max-width: 1024px) {
    .videos-section-layout {
        grid-template-columns: 1fr;
    }

    .videos-section-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .videos-section-sidebar-subscribe {
        grid-column: 1 / -1;
    }

    .videos-section-featured-card {
        grid-template-columns: 1fr;
    }

    .videos-section-featured-playlist {
        max-height: 200px;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0;
    }

    .videos-section-playlist-item {
        flex-shrink: 0;
        width: 220px;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.04);
    }

    .videos-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
    MOBILE — max-width: 768px
============================================= */
@media (max-width: 768px) {
    .videos-section-hero {
        padding: 48px 16px 36px;
    }

    .videos-section-hero-title {
        font-size: 1.5rem;
    }

    .videos-section-filter-inner {
        padding: 0 16px;
    }

    .videos-section-filter-btn {
        padding: 12px 13px;
        font-size: 0.8rem;
    }

    .videos-section-search-row {
        padding: 0 16px;
        gap: 10px;
    }

    .videos-section-search-wrap {
        min-width: 100%;
    }

    .videos-section-sort-select {
        width: 100%;
    }

    .videos-section-featured {
        padding: 0 16px;
    }

    .videos-section-featured-card {
        grid-template-columns: 1fr;
    }

    .videos-section-featured-play-btn {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .videos-section-featured-title {
        font-size: 0.95rem;
    }

    .videos-section-featured-playlist {
        max-height: 180px;
    }

    .videos-section-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 24px;
    }

    .videos-section-grid {
        grid-template-columns: 1fr;
    }

    .videos-section-grid.list-view .videos-section-card {
        grid-template-columns: 1fr;
    }

    .videos-section-sidebar {
        grid-template-columns: 1fr;
    }

    .videos-section-shorts {
        padding:29px 16px 0px;
    }

    .videos-section-short-card {
        width: 120px;
    }

    .videos-section-pagination {
        padding: 0 16px;
    }

    .videos-section-ad {
        padding: 0 16px;
    }

    .videos-section-modal-box {
        max-width: 100%;
    }

    .videos-section-modal-footer {
        flex-wrap: wrap;
    }
}

/* =============================================
    MOBILE — max-width: 480px
============================================= */
@media (max-width: 480px) {
    .videos-section-hero-title {
        font-size: 1.25rem;
    }
    .videos-section-filter-btn {
        padding: 10px 11px;
        font-size: 0.76rem;
    }

    .videos-section-results-count {
        width: 100%;
        text-align: center;
    }

    .videos-section-featured-play-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .videos-section-sidebar-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .videos-section-sidebar-stat:nth-child(even) {
        border-right: 1px solid var(--border);
    }

    .videos-section-sidebar-stat:nth-child(3),
    .videos-section-sidebar-stat:nth-child(4) {
        border-bottom: 1px solid var(--border);
    }

    .videos-section-short-card {
        width: 108px;
    }
}



/* =================================================
                CONTACT US  
================================================= */
.contact-us-hero {
            background: linear-gradient(135deg, var(--red-deep) 0%, #4a0a0a 60%, var(--ink) 100%);
            padding: 60px 42px 50px;
            position: relative;
            overflow: hidden;
            animation: contact-us-fadeIn 0.8s ease both;
        }

        .contact-us-hero::before {
            content: 'ಸಂ';
            position: absolute;
            right: -20px;
            top: -40px;
            font-family: var(--ff-kan);
            font-size: 18rem;
            color: rgba(255, 255, 255, 0.04);
            pointer-events: none;
            line-height: 1;
        }

        .contact-us-hero-inner {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .contact-us-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 18px;
            letter-spacing: 0.04em;
        }

        .contact-us-breadcrumb a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-us-breadcrumb a:hover {
            color: var(--gold-lt);
        }

        .contact-us-breadcrumb i {
            font-size: 0.55rem;
            color: var(--gold);
        }

        .contact-us-hero-title {
            font-family: var(--ff-kan);
            font-size: 2.4rem;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 10px;
            animation: contact-us-slideUp 0.7s ease 0.1s both;
        }

        .contact-us-hero-title span {
            color: var(--gold-lt);
        }

        .contact-us-hero-subtitle {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 500px;
            line-height: 1.7;
            animation: contact-us-slideUp 0.7s ease 0.2s both;
        }

        .contact-us-hero-divider {
            width: 60px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
            margin-top: 18px;
            animation: contact-us-expandWidth 0.8s ease 0.4s both;
        }


        /* ---- MAIN LAYOUT WRAPPER ---- */
        .contact-us-wrapper {
            max-width: 100%;
            padding: 52px 42px;
        }

        .contact-us-grid {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 36px;
            align-items: start;
        }


        /* ---- SECTION TITLE ---- */
        .contact-us-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
        }

        .contact-us-section-bar {
            width: 4px;
            height: 28px;
            background: var(--red);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .contact-us-section-title h2 {
            font-family: var(--ff-kan);
            font-size: 1.25rem;
            color: var(--ink);
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }


        /* ---- CONTACT FORM ---- */
        .contact-us-form-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 24px var(--shadow);
            padding: 36px;
            animation: contact-us-fadeUp 0.7s ease 0.15s both;
        }

        .contact-us-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .contact-us-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 18px;
        }

        .contact-us-field.full {
            grid-column: 1 / -1;
        }

        .contact-us-label {
            font-family: var(--ff-kan);
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--ink-mid);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-us-label i {
            color: var(--red);
            font-size: 0.7rem;
        }

        .contact-us-label .required {
            color: var(--red);
            font-size: 0.7rem;
        }

        .contact-us-input,
        .contact-us-textarea,
        .contact-us-select {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-family: var(--ff-kan);
            font-size: 0.85rem;
            color: var(--ink);
            background: var(--cream);
            outline: none;
            transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
        }

        .contact-us-input:focus,
        .contact-us-textarea:focus,
        .contact-us-select:focus {
            border-color: var(--red);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
        }

        .contact-us-input::placeholder,
        .contact-us-textarea::placeholder {
            color: var(--muted);
            font-size: 0.8rem;
        }

        .contact-us-textarea {
            resize: vertical;
            min-height: 130px;
        }

        .contact-us-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a5c48' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }

        .contact-us-submit-btn {
            width: 100%;
            padding: 13px 24px;
            background: var(--red);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-family: var(--ff-kan);
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
            margin-top: 6px;
            letter-spacing: 0.02em;
        }

        .contact-us-submit-btn:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
        }

        .contact-us-submit-btn:active {
            transform: translateY(0);
        }

        .contact-us-form-note {
            text-align: center;
            font-size: 0.68rem;
            color: var(--muted);
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .contact-us-form-note i {
            color: #22c55e;
        }

        /* Success message */
        .contact-us-success {
            display: none;
            background: #f0fdf4;
            border: 1.5px solid #22c55e;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin-top: 16px;
            animation: contact-us-fadeIn 0.4s ease both;
        }

        .contact-us-success i {
            font-size: 2rem;
            color: #22c55e;
            margin-bottom: 8px;
            display: block;
        }

        .contact-us-success p {
            font-family: var(--ff-kan);
            font-size: 0.9rem;
            color: #166534;
        }


        /* ---- SIDEBAR ---- */
        .contact-us-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }


        /* INFO CARDS */
        .contact-us-info-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 3px 14px var(--shadow);
            overflow: hidden;
            animation: contact-us-fadeUp 0.7s ease 0.2s both;
        }

        .contact-us-info-head {
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-us-info-head i {
            color: var(--gold-lt);
            font-size: 1rem;
        }

        .contact-us-info-head h3 {
            font-family: var(--ff-kan);
            font-size: 0.9rem;
            color: var(--white);
            font-weight: 700;
        }

        .contact-us-info-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .contact-us-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border);
            cursor: pointer;
            transition: background 0.2s;
            border-radius: 6px;
        }

        .contact-us-info-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .contact-us-info-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: var(--cream2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--red);
            flex-shrink: 0;
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }

        .contact-us-info-item:hover .contact-us-info-icon {
            background: var(--red);
            color: var(--white);
            transform: scale(1.08);
        }

        .contact-us-info-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .contact-us-info-label {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        .contact-us-info-value {
            font-family: var(--ff-kan);
            font-size: 0.82rem;
            color: var(--ink);
            font-weight: 600;
            line-height: 1.45;
        }


        /* SOCIAL CARD */
        .contact-us-social-card {
            background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
            border-radius: 12px;
            padding: 22px;
            box-shadow: 0 3px 14px var(--shadow);
            animation: contact-us-fadeUp 0.7s ease 0.3s both;
        }

        .contact-us-social-head {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .contact-us-social-head i {
            color: var(--gold);
        }

        .contact-us-social-head h3 {
            font-family: var(--ff-kan);
            font-size: 0.9rem;
            color: var(--white);
        }

        .contact-us-social-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .contact-us-social-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 8px;
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s, opacity 0.2s;
            color: white;
            text-decoration: none;
        }

        .contact-us-social-btn:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        .contact-us-social-btn i {
            font-size: 0.9rem;
        }

        .contact-us-social-btn.fb   { background: #1877f2; }
        .contact-us-social-btn.yt   { background: #ff0000; }
        .contact-us-social-btn.ig   { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
        .contact-us-social-btn.wa   { background: #25d366; }
        .contact-us-social-btn.tw   { background: #1b9cea; }
        .contact-us-social-btn.tg   { background: #0088cc; }


        /* HOURS CARD */
        .contact-us-hours-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 3px 14px var(--shadow);
            overflow: hidden;
            animation: contact-us-fadeUp 0.7s ease 0.35s both;
        }

        .contact-us-hours-head {
            background: var(--gold);
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-us-hours-head i {
            color: var(--ink);
            font-size: 1rem;
        }

        .contact-us-hours-head h3 {
            font-family: var(--ff-kan);
            font-size: 0.9rem;
            color: var(--ink);
            font-weight: 700;
        }

        .contact-us-hours-body {
            padding: 16px 20px;
        }

        .contact-us-hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.78rem;
        }

        .contact-us-hours-row:last-child {
            border-bottom: none;
        }

        .contact-us-hours-day {
            font-family: var(--ff-kan);
            color: var(--ink-mid);
            font-weight: 600;
        }

        .contact-us-hours-time {
            font-weight: 600;
            color: var(--red);
            font-size: 0.72rem;
        }

        .contact-us-hours-time.closed {
            color: var(--muted);
        }

        .contact-us-hours-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            display: inline-block;
            margin-right: 4px;
            animation: contact-us-pulseDot 2s ease-in-out infinite;
        }

        .contact-us-hours-dot.red {
            background: var(--muted);
            animation: none;
        }


        /* ---- MAP SECTION ---- */
        .contact-us-map-section {
            max-width: 100%;
            padding: 0 42px 52px;
        }

        .contact-us-map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 24px var(--shadow);
            position: relative;
            height: 380px;
            background: var(--cream2);
            animation: contact-us-fadeUp 0.7s ease 0.2s both;
        }

        .contact-us-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Map placeholder (shown when iframe fails) */
        .contact-us-map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--cream2), var(--cream));
        }

        .contact-us-map-placeholder i {
            font-size: 3rem;
            color: var(--red);
            opacity: 0.4;
        }

        .contact-us-map-placeholder p {
            font-family: var(--ff-kan);
            font-size: 0.85rem;
            color: var(--muted);
        }

        .contact-us-map-pin {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%);
            font-size: 2rem;
            color: var(--red);
            filter: drop-shadow(0 4px 8px rgba(192,57,43,0.4));
            animation: contact-us-mapBounce 1.5s ease-in-out infinite;
            pointer-events: none;
        }


        /* ---- BRANCHES SECTION ---- */
        .contact-us-branches-section {
            max-width: 100%;
            padding: 0 42px 52px;
        }

        .contact-us-branches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-top: 28px;
        }

        .contact-us-branch-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 12px var(--shadow);
            border-left: 4px solid var(--red);
            cursor: pointer;
            transition: transform 0.28s, box-shadow 0.28s, border-color 0.2s;
            opacity: 0;
            transform: translateY(24px);
        }

        .contact-us-branch-card.revealed {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.28s;
        }

        .contact-us-branch-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px var(--shadow);
            border-color: var(--gold);
        }

        .contact-us-branch-icon {
            width: 44px;
            height: 44px;
            background: var(--cream2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--red);
            margin-bottom: 14px;
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }

        .contact-us-branch-card:hover .contact-us-branch-icon {
            background: var(--red);
            color: var(--white);
            transform: rotate(10deg) scale(1.1);
        }

        .contact-us-branch-name {
            font-family: var(--ff-kan);
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .contact-us-branch-meta {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .contact-us-branch-meta span {
            font-size: 0.72rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 6px;
            line-height: 1.45;
        }

        .contact-us-branch-meta i {
            color: var(--red);
            width: 13px;
            flex-shrink: 0;
            font-size: 0.65rem;
        }

        .contact-us-branch-type {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--cream2);
            color: var(--red);
            font-size: 0.6rem;
            font-weight: 700;
            padding: 3px 9px;
            border-radius: 10px;
            letter-spacing: 0.06em;
            margin-top: 8px;
        }


        /* ---- FAQ SECTION ---- */
        .contact-us-faq-section {
            background: var(--white);
            padding: 52px 42px;
            border-top: 1px solid var(--border);
        }

        .contact-us-faq-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-us-faq-list {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-us-faq-item {
            border: 1.5px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            transition: border-color 0.2s, box-shadow 0.2s;
            opacity: 0;
            transform: translateY(20px);
        }

        .contact-us-faq-item.revealed {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s, box-shadow 0.2s;
        }

        .contact-us-faq-item.open {
            border-color: var(--red);
            box-shadow: 0 4px 16px var(--shadow);
        }

        .contact-us-faq-question {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            background: var(--cream);
            transition: background 0.2s;
        }

        .contact-us-faq-item.open .contact-us-faq-question {
            background: #fef2f0;
        }

        .contact-us-faq-question h4 {
            font-family: var(--ff-kan);
            font-size: 0.88rem;
            color: var(--ink);
            line-height: 1.5;
        }

        .contact-us-faq-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--cream2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--red);
            flex-shrink: 0;
            transition: background 0.2s, transform 0.3s;
        }

        .contact-us-faq-item.open .contact-us-faq-icon {
            background: var(--red);
            color: var(--white);
            transform: rotate(45deg);
        }

        .contact-us-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .contact-us-faq-item.open .contact-us-faq-answer {
            max-height: 300px;
        }

        .contact-us-faq-answer p {
            padding: 14px 20px 18px;
            font-family: var(--ff-kan);
            font-size: 0.82rem;
            color: var(--ink-mid);
            line-height: 1.7;
            border-top: 1px solid var(--border);
        }


        /* ---- CTA STRIP ---- */
        .contact-us-cta {
            background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
            padding: 48px 42px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-us-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .contact-us-cta-inner {
            position: relative;
            z-index: 2;
        }

        .contact-us-cta h2 {
            font-family: var(--ff-kan);
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .contact-us-cta p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 24px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-us-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: var(--gold);
            color: var(--ink);
            border: none;
            border-radius: 30px;
            font-family: var(--ff-kan);
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
            text-decoration: none;
        }

        .contact-us-cta-btn:hover {
            background: var(--gold-lt);
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
        }


        /* ============================================================
           ANIMATIONS
        ============================================================ */
        @keyframes contact-us-fadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

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

        @keyframes contact-us-slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes contact-us-expandWidth {
            from { width: 0; }
            to   { width: 60px; }
        }

        @keyframes contact-us-pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.5; transform: scale(1.4); }
        }

        @keyframes contact-us-mapBounce {
            0%, 100% { transform: translate(-50%, -100%) translateY(0); }
            50%       { transform: translate(-50%, -100%) translateY(-8px); }
        }

        @keyframes contact-us-shimmer {
            0%   { background-position: -400px 0; }
            100% { background-position: 400px 0; }
        }


        /* ============================================================
           RESPONSIVE — TABLET (≤ 1024px)
        ============================================================ */
        @media (max-width: 1024px) {

            .contact-us-hero {
                padding: 48px 20px 40px;
            }

            .contact-us-hero-title {
                font-size: 1.9rem;
            }

            .contact-us-wrapper {
                padding: 36px 20px;
            }

            .contact-us-grid {
                grid-template-columns: 1fr 340px;
                gap: 24px;
            }

            .contact-us-branches-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-us-map-section {
                padding: 0 20px 40px;
            }

            .contact-us-branches-section {
                padding: 0 20px 40px;
            }

            .contact-us-faq-section {
                padding: 40px 20px;
            }

            .contact-us-cta {
                padding: 40px 20px;
            }
        }


        /* ============================================================
           RESPONSIVE — MOBILE (≤ 768px)
        ============================================================ */
        @media (max-width: 768px) {

            .contact-us-hero {
                padding: 36px 16px 32px;
            }

            .contact-us-hero::before {
                font-size: 10rem;
                top: -20px;
                right: -10px;
            }

            .contact-us-hero-title {
                font-size: 1.45rem;
            }

            .contact-us-hero-subtitle {
                font-size: 0.8rem;
            }

            .contact-us-wrapper {
                padding: 24px 16px;
            }

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

            .contact-us-form-card {
                padding: 22px 18px;
            }

            .contact-us-form-row {
                grid-template-columns: 1fr;
            }

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

            .contact-us-map-section {
                padding: 0 16px 36px;
            }

            .contact-us-map-container {
                height: 260px;
            }

            .contact-us-branches-section {
                padding: 0 16px 36px;
            }

            .contact-us-faq-section {
                padding: 32px 16px;
            }

            .contact-us-cta {
                padding: 36px 16px;
            }

            .contact-us-cta h2 {
                font-size: 1.3rem;
            }

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


        /* ============================================================
           RESPONSIVE — SMALL MOBILE (≤ 480px)
        ============================================================ */
        @media (max-width: 480px) {

            .contact-us-hero-title {
                font-size: 1.25rem;
            }

            .contact-us-form-card {
                padding: 16px 14px;
            }

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

            .contact-us-branch-card {
                padding: 18px 16px;
            }

            .contact-us-cta-btn {
                width: 100%;
                justify-content: center;
            }
        }



/* ─── BOOKS PAGE HERO BANNER ───────────────────────────── */
.books-hero {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 60%, #5c1500 100%);
    padding: 60px 24px 50px;
    position: relative; overflow: hidden;
}
.books-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(242,203,7,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(249,1,1,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.books-hero::after {
    content: '📚';
    position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    font-size: clamp(120px, 20vw, 260px); opacity: 0.06; pointer-events: none;
    filter: blur(2px);
}
.books-hero-inner {
    max-width: 1280px; margin: 0 auto;
    position: relative; z-index: 1;
}
.books-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.5);
    margin-bottom: 20px; font-family: var(--ff-body);
}
.books-hero-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.books-hero-breadcrumb a:hover { color: var(--gold); }
.books-hero-breadcrumb i { font-size: 0.6rem; }
.books-hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(242,203,7,0.15); border: 1px solid rgba(242,203,7,0.3);
    color: var(--gold); font-size: 0.72rem; font-family: var(--ff-body);
    padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
    animation: books-fade-in 0.6s ease both;
}
.books-hero h1 {
    font-family: var(--ff-kan); font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white); font-weight: 700; line-height: 1.3;
    margin-bottom: 12px;
    animation: books-slide-up 0.7s 0.1s ease both;
}
.books-hero-sub {
    color: rgba(255,255,255,0.6); font-size: 0.95rem;
    font-family: var(--ff-body); max-width: 500px;
    animation: books-slide-up 0.7s 0.2s ease both;
}
.books-hero-stats {
    display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap;
    animation: books-slide-up 0.7s 0.3s ease both;
}
.books-hero-stat { text-align: center; }
.books-hero-stat-num { font-family: var(--ff-head); font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.books-hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-family: var(--ff-kan); }

/* ─── BOOKS TOOLBAR ────────────────────────────────────── */
.books-toolbar {
    background: var(--cream); border-bottom: 1.5px solid var(--border);
    padding: 0 24px; position: sticky; top: 68px; z-index: 90;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.books-toolbar-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; padding: 14px 0;
}
.books-search-bar {
    display: flex; align-items: center; gap: 10px;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 8px; padding: 9px 14px; min-width: 240px; flex: 1; max-width: 340px;
    transition: border-color 0.25s;
}
.books-search-bar:focus-within { border-color: var(--red); }
.books-search-bar i { color: var(--muted); font-size: 0.85rem; }
.books-search-bar input { border: none; outline: none; font-family: var(--ff-kan); font-size: 0.88rem; width: 100%; background: none; color: var(--ink); }
.books-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.books-filter-tab {
    border: 1.5px solid var(--border); background: var(--white);
    padding: 6px 14px; border-radius: 20px; font-family: var(--ff-kan);
    font-size: 0.78rem; cursor: pointer; color: var(--muted); transition: var(--transition);
    white-space: nowrap;
}
.books-filter-tab:hover, .books-filter-tab.active {
    background: var(--red); border-color: var(--red); color: var(--white);
}
.books-sort-wrap { display: flex; align-items: center; gap: 8px; }
.books-sort-wrap label { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }
.books-sort-select {
    border: 1.5px solid var(--border); border-radius: 6px; padding: 6px 10px;
    font-family: var(--ff-body); font-size: 0.8rem; color: var(--ink); background: var(--white);
    cursor: pointer; outline: none;
}
.books-sort-select:focus { border-color: var(--red); }
.books-view-toggle { display: flex; gap: 4px; }
.books-view-btn {
    border: 1.5px solid var(--border); background: var(--white);
    width: 34px; height: 34px; border-radius: 6px; display: flex;
    align-items: center; justify-content: center; cursor: pointer;
    color: var(--muted); font-size: 0.85rem; transition: var(--transition);
}
.books-view-btn:hover, .books-view-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ─── BOOKS MAIN LAYOUT ────────────────────────────────── */
.books-layout {
    max-width: 1280px; margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid; grid-template-columns: 260px 1fr; gap: 32px;
}

/* ─── BOOKS SIDEBAR FILTERS ────────────────────────────── */
.books-sidebar { }
.books-sidebar-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 12px; overflow: hidden; margin-bottom: 20px;
}
.books-sidebar-head {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px; background: var(--ink); color: var(--white);
    font-family: var(--ff-kan); font-size: 0.9rem; font-weight: 600;
}
.books-sidebar-head i { color: var(--gold); }
.books-sidebar-body { padding: 16px 18px; }
.books-filter-group { margin-bottom: 16px; }
.books-filter-group:last-child { margin-bottom: 0; }
.books-filter-group-label {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--muted); margin-bottom: 10px; font-family: var(--ff-body); font-weight: 600;
}
.books-checkbox-item {
    display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
    cursor: pointer; font-family: var(--ff-kan); font-size: 0.82rem;
    color: var(--ink-mid); transition: color 0.2s;
}
.books-checkbox-item:hover { color: var(--red); }
.books-checkbox-item input { accent-color: var(--red); width: 14px; height: 14px; }
.books-price-range { display: flex; flex-direction: column; gap: 8px; }
.books-price-range input[type=range] { accent-color: var(--red); width: 100%; }
.books-price-vals { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); }
.books-clear-btn {
    width: 100%; border: 1.5px solid var(--border); background: none;
    padding: 9px; border-radius: 8px; font-family: var(--ff-kan); font-size: 0.82rem;
    color: var(--muted); cursor: pointer; transition: var(--transition); margin-top: 4px;
}
.books-clear-btn:hover { border-color: var(--red); color: var(--red); }
.books-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }

/* FEATURED AD CARD */
.books-sidebar-ad {
    border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: 24px 18px; text-align: center; position: relative;
}
.books-sidebar-ad-icon { font-size: 2.5rem; margin-bottom: 12px; }
.books-sidebar-ad h4 { font-family: var(--ff-kan); color: var(--gold); font-size: 0.95rem; margin-bottom: 8px; }
.books-sidebar-ad p { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-bottom: 16px; line-height: 1.5; }
.books-sidebar-ad-btn {
    background: var(--gold); color: var(--ink); border: none;
    padding: 8px 20px; border-radius: 6px; font-family: var(--ff-kan);
    font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: var(--transition);
}
.books-sidebar-ad-btn:hover { background: var(--white); }

/* ─── BOOKS GRID AREA ──────────────────────────────────── */
.books-content { }
.books-results-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; flex-wrap: wrap; gap: 10px;
}
.books-results-count { font-size: 0.85rem; color: var(--muted); font-family: var(--ff-body); }
.books-results-count span { color: var(--ink); font-weight: 600; }
.books-active-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.books-active-tag {
    display: flex; align-items: center; gap: 5px;
    background: rgba(249,1,1,0.08); border: 1px solid rgba(249,1,1,0.2);
    color: var(--red); border-radius: 20px; padding: 3px 10px;
    font-size: 0.73rem; font-family: var(--ff-body);
}
.books-active-tag button { border: none; background: none; color: var(--red); cursor: pointer; font-size: 0.65rem; padding: 0; }

/* ─── GRID VIEW ────────────────────────────────────────── */
.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.books-grid.list-view { grid-template-columns: 1fr; }

/* ─── BOOK CARD ────────────────────────────────────────── */
.books-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 12px; overflow: hidden; position: relative;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    /* Reveal animation */
    opacity: 0; transform: translateY(30px);
}
.books-card.books-revealed {
    opacity: 1; transform: translateY(0);
    transition: none;
}
.books-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(96,20,0,0.16);
    border-color: rgba(249,1,1,0.25);
}

/* List view card */
.books-grid.list-view .books-card {
    display: flex; gap: 0; align-items: stretch;
}
.books-grid.list-view .books-card-cover { width: 140px; flex-shrink: 0; height: auto; border-radius: 0; }
.books-grid.list-view .books-card-cover img { height: 100%; border-radius: 0; }
.books-grid.list-view .books-card-body { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.books-grid.list-view .books-card-desc { display: block !important; }

.books-card-cover {
    position: relative; height: 200px; overflow: hidden;
    background: var(--cream2);
}
.books-card-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.books-card:hover .books-card-cover img { transform: scale(1.06); }

.books-card-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 4px 10px; border-radius: 20px;
    font-size: 0.68rem; font-weight: 700; font-family: var(--ff-body);
    display: flex; align-items: center; gap: 4px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.books-card-badge.new { background: var(--red); color: var(--white); }
.books-card-badge.bestseller { background: var(--gold); color: var(--ink); }
.books-card-badge.free { background: #16a34a; color: var(--white); }

.books-card-wishlist {
    position: absolute; top: 10px; right: 10px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--muted); transition: var(--transition);
    backdrop-filter: blur(4px);
}
.books-card-wishlist:hover { background: var(--red); color: var(--white); }
.books-card-wishlist.wishlisted { background: var(--red); color: var(--white); }

.books-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,10,0,0.85), transparent);
    padding: 16px 12px 12px; opacity: 0; transition: opacity 0.3s;
    display: flex; gap: 6px;
}
.books-card:hover .books-card-overlay { opacity: 1; }
.books-overlay-btn {
    flex: 1; border: none; border-radius: 6px; padding: 7px 8px;
    font-size: 0.73rem; font-family: var(--ff-kan); cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 5px;
}
.books-overlay-btn.primary { background: var(--red); color: var(--white); }
.books-overlay-btn.secondary { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.books-overlay-btn:hover { opacity: 0.88; }

.books-card-body { padding: 14px 16px 16px; }

.books-card-category {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-family: var(--ff-body); color: var(--red);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 7px;
}
.books-card-title {
    font-family: var(--ff-kan); font-size: 0.9rem; font-weight: 700;
    color: var(--ink); line-height: 1.4; margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.books-card-author {
    font-size: 0.78rem; color: var(--muted); margin-bottom: 8px;
    display: flex; align-items: center; gap: 5px; font-family: var(--ff-body);
}
.books-card-desc {
    font-size: 0.8rem; color: var(--muted); line-height: 1.5;
    margin-bottom: 10px; display: none;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.books-card-rating {
    display: flex; align-items: center; gap: 5px; margin-bottom: 10px;
}
.books-stars { color: var(--gold); font-size: 0.72rem; }
.books-rating-count { font-size: 0.72rem; color: var(--muted); }

.books-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px;
}
.books-price { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--red); }
.books-price-old { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; margin-left: 4px; }
.books-add-btn {
    background: var(--ink); color: var(--white); border: none;
    padding: 7px 14px; border-radius: 6px; font-family: var(--ff-kan);
    font-size: 0.78rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 5px;
}
.books-add-btn:hover { background: var(--red); }

/* ─── FEATURED BOOK BANNER ─────────────────────────────── */
.books-featured-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px; padding: 32px; margin-bottom: 32px;
    display: flex; align-items: center; gap: 32px; position: relative; overflow: hidden;
    opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.books-featured-banner.books-revealed { opacity: 1; transform: translateY(0);
    transition: none;
}
.books-featured-banner::before {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(242,203,7,0.08); pointer-events: none;
}
.books-featured-img {
    width: 120px; height: 160px; object-fit: cover; border-radius: 8px;
    flex-shrink: 0; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transform: rotate(-3deg); transition: transform 0.3s;
}
.books-featured-banner:hover .books-featured-img { transform: rotate(0deg); }
.books-featured-text { flex: 1; }
.books-featured-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(242,203,7,0.15); border: 1px solid rgba(242,203,7,0.3);
    color: var(--gold); font-size: 0.7rem; padding: 3px 10px; border-radius: 20px;
    margin-bottom: 12px; font-family: var(--ff-body);
}
.books-featured-text h3 { font-family: var(--ff-kan); color: var(--white); font-size: 1.3rem; margin-bottom: 8px; line-height: 1.4; }
.books-featured-text p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.5; }
.books-featured-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.books-featured-btn {
    padding: 9px 20px; border-radius: 7px; font-family: var(--ff-kan);
    font-size: 0.85rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 6px; border: none;
}
.books-featured-btn.primary { background: var(--gold); color: var(--ink); font-weight: 700; }
.books-featured-btn.primary:hover { background: var(--white); }
.books-featured-btn.secondary { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.books-featured-btn.secondary:hover { background: rgba(255,255,255,0.2); }

/* ─── SECTION HEADING ──────────────────────────────────── */
.books-section-heading {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.books-section-heading-left { display: flex; align-items: center; gap: 10px; }
.books-section-bar { width: 4px; height: 22px; background: var(--red); border-radius: 2px; }
.books-section-heading h2 { font-family: var(--ff-kan); font-size: 1.1rem; color: var(--ink); font-weight: 700; }
.books-section-link {
    font-size: 0.8rem; color: var(--red); text-decoration: none;
    display: flex; align-items: center; gap: 5px; transition: gap 0.2s;
}
.books-section-link:hover { gap: 8px; }

/* ─── PAGINATION ───────────────────────────────────────── */
.books-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 48px; flex-wrap: wrap;
}
.books-page-btn {
    width: 38px; height: 38px; border-radius: 8px; border: 1.5px solid var(--border);
    background: var(--white); font-family: var(--ff-body); font-size: 0.85rem;
    cursor: pointer; color: var(--ink-mid); transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.books-page-btn:hover { border-color: var(--red); color: var(--red); }
.books-page-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.books-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── EMPTY STATE ──────────────────────────────────────── */
.books-empty {
    text-align: center; padding: 60px 20px; display: none;
}
.books-empty i { font-size: 3rem; color: var(--border); margin-bottom: 16px; display: block; }
.books-empty h3 { font-family: var(--ff-kan); color: var(--ink-mid); margin-bottom: 8px; }
.books-empty p { font-size: 0.85rem; color: var(--muted); }

/* ─── TOAST NOTIFICATION ───────────────────────────────── */
.books-toast {
    position: fixed; bottom: 24px; right: 24px; z-index: 3000;
    background: var(--ink); color: var(--white);
    padding: 12px 20px; border-radius: 10px; font-family: var(--ff-kan); font-size: 0.85rem;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transform: translateY(80px); opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.books-toast.show { transform: translateY(0); opacity: 1; }
.books-toast i { color: var(--gold); }

/* ─── CATEGORIES STRIP ─────────────────────────────────── */
.categories-strip { background: var(--white); border-bottom: 1.5px solid var(--border); overflow: hidden; }
.categories-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.categories-inner::-webkit-scrollbar { display: none; }
.cat-item { display: flex; align-items: center; gap: 8px; padding: 12px 14px; cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; transition: var(--transition); flex-shrink: 0; }
.cat-item:hover { border-bottom-color: rgba(249,1,1,0.3); }
.cat-item.active { border-bottom-color: var(--red); }
.cat-label { font-family: var(--ff-kan); font-size: 0.82rem; color: var(--ink); transition: color var(--transition); }
.cat-item.active .cat-label, .cat-item:hover .cat-label { color: var(--red); }


/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes books-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes books-slide-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes books-float { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-8px); } }

/* Stagger delays for grid cards */
.books-card:nth-child(1) { transition-delay: 0.05s; }
.books-card:nth-child(2) { transition-delay: 0.10s; }
.books-card:nth-child(3) { transition-delay: 0.15s; }
.books-card:nth-child(4) { transition-delay: 0.20s; }
.books-card:nth-child(5) { transition-delay: 0.05s; }
.books-card:nth-child(6) { transition-delay: 0.10s; }
.books-card:nth-child(7) { transition-delay: 0.15s; }
.books-card:nth-child(8) { transition-delay: 0.20s; }
.books-card:nth-child(9) { transition-delay: 0.05s; }
.books-card:nth-child(10) { transition-delay: 0.10s; }
.books-card:nth-child(11) { transition-delay: 0.15s; }
.books-card:nth-child(12) { transition-delay: 0.20s; }

/* ─── RESPONSIVE — TABLET / iPAD ──────────────────────── */
@media (max-width: 1024px) {
    .books-layout { grid-template-columns: 220px 1fr; gap: 24px; }
    .books-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .header-actions .btn-login span, .header-actions .btn-join { }
}

@media (max-width: 900px) {
    .books-layout { grid-template-columns: 1fr; }
    .books-sidebar { display: none; }
    .books-sidebar.open { display: block; }
    .books-grid { grid-template-columns: repeat(3, 1fr); }
    .books-featured-banner { flex-direction: column; text-align: center; }
    .books-featured-img { width: 100px; height: 140px; align-self: center; }
    .books-featured-actions { justify-content: center; }
    .books-toolbar-inner { flex-direction: row; align-items: flex-start; }
}

/* ─── RESPONSIVE — MOBILE ──────────────────────────────── */
@media (max-width: 640px) {
    .books-grid { grid-template-columns: repeat(1, 1fr); gap: 14px; }
    .books-layout { padding: 24px 16px 40px; }
    .books-toolbar { padding: 0 16px; }
    .books-toolbar-inner { gap: 10px; }
    .books-search-bar { max-width: 100%; }
    .books-sort-wrap { display: none; }
    .books-hero { padding: 40px 16px 36px; }
    .books-hero-stats { gap: 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .categories-inner { padding: 0 16px; }
    .header-main { padding: 0 16px; }
    .hamburger { display: block; }
    .mobile-menu { display: block; }
    .books-grid.list-view .books-card { flex-direction: column; }
    .books-grid.list-view .books-card-cover { width: 100%; height: 180px; }
    .books-results-bar { flex-direction: column; align-items: flex-start; }
    .books-hero-stats { gap: 16px; }
    .books-hero-stat-num { font-size: 1.5rem; }
    .books-filter-tabs { display: none; }
    .books-mobile-filter-btn {
        display: flex !important;
    }
}

@media (min-width: 641px) {
    .books-mobile-filter-btn { display: none; }
}

.books-mobile-filter-btn {
    background: var(--ink); color: var(--white); border: none;
    padding: 8px 16px; border-radius: 8px; font-family: var(--ff-kan); font-size: 0.82rem;
    cursor: pointer; display: none; align-items: center; gap: 7px;
}

@media (max-width: 480px) {
    .books-grid { 
        gap: 12px; }
    .books-card-body { padding: 10px 12px 12px; }
    .books-card-cover { height: 170px; }
    .books-card-title { font-size: 0.82rem; }
    .books-price { font-size: 0.95rem; }
    .books-add-btn { padding: 6px 10px; font-size: 0.7rem; }
}






       

/* ============================
    MAGAZINES DETAILS PAGE
============================ */



@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,1,1,0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(249,1,1,0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}
@keyframes progressFill {
    from { width: 0%; }
    to   { width: var(--target-width, 62%); }
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}






/* ============================
    HERO
============================ */
.hero {
    background: linear-gradient(135deg, #1a0a00 0%, #3d1000 55%, #1a0800 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 40%, rgba(242,203,7,.07) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(249,1,1,.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .03;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 24px 24px;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 20px 52px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 44px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.cover-wrap {
    position: relative;
    flex-shrink: 0;
    animation: scaleIn 0.7s cubic-bezier(0.25,0.8,0.25,1) 0.1s both;
}
.cover-float { 
    animation: float 4s ease-in-out infinite; 
}
.cover-img {
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,.65), 0 0 0 5px rgba(242,203,7,.18), 0 0 0 1px rgba(242,203,7,.08);
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform .4s ease, box-shadow .4s ease;
}
.cover-img:hover {
    transform: translateY(-4px) rotate(1deg);
    box-shadow: 0 32px 72px rgba(0,0,0,.7), 0 0 0 5px rgba(242,203,7,.28);
}
.cover-badge-free {
    position: absolute;
    top: -10px; right: -12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(34,197,94,.4);
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulse 2.5s infinite;
    font-family: var(--ff-body);
}
.cover-issue-tag {
    position: absolute;
    bottom: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: var(--ff-kan);
    box-shadow: 0 4px 12px rgba(249,1,1,.4);
}
.hero-info { 
    padding-top: 4px; 
    animation: fadeUp 0.7s ease 0.2s both; 
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(242,203,7,.12);
    border: 1px solid rgba(242,203,7,.3);
    color: var(--gold-lt);
    font-size: .7rem;
    padding: 5px 13px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}
.hero-title {
    font-family: var(--ff-kan);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}
.hero-subtitle {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    font-family: var(--ff-kan);
    margin-bottom: 22px;
    line-height: 1.6;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    padding: 5px 13px;
    border-radius: 20px;
    transition: all .2s;
}
.meta-pill:hover { 
    background: rgba(255,255,255,.12); 
    color: #fff; 
}
.meta-pill i { 
    color: var(--gold); 
    font-size: .72rem; 
}
.meta-pill strong { 
    color: #fff; 
}
.hero-actions { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 28px; 
}
.btn-read {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-kan);
    position: relative;
    overflow: hidden;
    transition: all .25s;
}
.btn-read:hover { 
    background: var(--red-deep); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(249,1,1,.45); 
}
.btn-download {
    background: transparent;
    color: var(--gold-lt);
    border: 1.5px solid rgba(242,203,7,.4);
    padding: 13px 22px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-kan);
    transition: all .25s;
}
.btn-download:hover { 
    background: rgba(242,203,7,.1); 
    border-color: var(--gold); 
    transform: translateY(-2px); 
}
.btn-bookmark {
    background: transparent;
    color: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.15);
    padding: 13px 16px;
    border-radius: var(--radius);
    font-size: .9rem;
    transition: all .25s;
}
.btn-bookmark:hover, .btn-bookmark.saved { color: var(--gold); border-color: rgba(242,203,7,.5); background: rgba(242,203,7,.08); }
.btn-share-icon {
    background: transparent;
    color: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.15);
    padding: 13px 16px;
    border-radius: var(--radius);
    font-size: .9rem;
    transition: all .25s;
}
.btn-share-icon:hover { color: #fff; border-color: rgba(255,255,255,.35); }
.hero-progress { max-width: 420px; }
.progress-label {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
}
.progress-label span:last-child { color: var(--gold-lt); font-weight: 600; }
.progress-bar { height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 3px;
    width: 0%;
    animation: progressFill 1.4s 0.9s cubic-bezier(0.25,0.8,0.25,1) forwards;
    --target-width: 62%;
}
.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-value { font-size: 1.35rem; font-weight: 700; color: var(--gold-lt); font-family: var(--ff-head); line-height: 1; }
.stat-label { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }

/* ============================
    BODY LAYOUT
============================ */
.page-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.section-label::before {
    content: '';
    display: block;
    width: 3px; height: 18px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title {
    font-family: var(--ff-kan);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 18px;
}

/* ============================
    PDF READER — PROPER IMPLEMENTATION
============================ */
.pdf-section { margin-bottom: 36px; }
.pdf-card {
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.22);
}

/* Toolbar */
.pdf-toolbar {
    background: #111;
    border-bottom: 2px solid var(--red);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.pdf-toolbar-left { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pdf-toolbar-center { display: flex; align-items: center; gap: 6px; }
.pdf-toolbar-right { display: flex; align-items: center; gap: 6px; }
.pdf-tool-btn {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    padding: 6px 11px;
    border-radius: 6px;
    font-size: .75rem;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.pdf-tool-btn:hover { background: rgba(255,255,255,.14); color: #fff; }
.pdf-tool-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.pdf-tool-btn:disabled { opacity: .35; cursor: not-allowed; }
.pdf-divider { width: 1px; height: 22px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.pdf-page-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.5);
    font-size: .75rem;
}
.pdf-page-input {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 48px;
    text-align: center;
    padding: 5px 6px;
    border-radius: 5px;
    font-size: .75rem;
    outline: none;
    font-family: var(--ff-body);
    transition: border-color .2s;
}
.pdf-page-input:focus { border-color: var(--gold); }
.pdf-zoom-select {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    padding: 5px 8px;
    border-radius: 6px;
    font-size: .73rem;
    outline: none;
    font-family: var(--ff-body);
    transition: all .2s;
}
.pdf-zoom-select:hover { background: rgba(255,255,255,.12); color: #fff; }
.pdf-zoom-select option { background: #222; color: #fff; }

/* PDF Viewer Area */
.pdf-viewer-area {
    background: #2a2a2a;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px;
    overflow: auto;
    position: relative;
    gap: 24px;
}
.pdf-viewer-area.double-view {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

/* Loading state */
.pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}
.pdf-loading-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(255,255,255,.1);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* PDF Page */
.pdf-page {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 8px 36px rgba(0,0,0,.6);
    overflow: hidden;
    position: relative;
    transform-origin: top center;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.pdf-page.single { width: 100%; max-width: 580px; }
.pdf-page.double { width: calc(50% - 12px); max-width: 380px; }

/* Page header band */
.pdf-page-header {
    background: linear-gradient(135deg, #1a0a00 0%, #3d1000 100%);
    padding: 14px 20px 12px;
    position: relative;
}
.pdf-page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}
.pdf-mag-title { font-family: var(--ff-kan); font-size: 1rem; font-weight: 700; color: #fff; }
.pdf-mag-issue { font-size: .68rem; color: var(--gold-lt); letter-spacing: .04em; margin-top: 2px; }
.pdf-page-hero-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.pdf-page-body { padding: 18px 20px; }
.pdf-article-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pdf-article-heading {
    font-family: var(--ff-kan);
    font-size: .98rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 10px;
}
.pdf-article-text {
    font-family: var(--ff-kan);
    font-size: .8rem;
    color: var(--ink-mid);
    line-height: 1.8;
}
.pdf-article-text p + p { margin-top: 9px; }
.pdf-page-footer {
    padding: 9px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .65rem;
    color: var(--muted);
}
.pdf-page-num {
    position: absolute;
    bottom: 36px; right: 12px;
    background: rgba(0,0,0,.45);
    color: rgba(255,255,255,.55);
    font-size: .62rem;
    padding: 2px 7px;
    border-radius: 8px;
}

/* Locked overlay */
.pdf-locked-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 25%, rgba(26,10,0,.97) 65%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 32px;
    gap: 12px;
    z-index: 10;
}
.pdf-locked-icon {
    width: 52px; height: 52px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 0 4px 18px rgba(249,1,1,.45);
}
.pdf-locked-text {
    font-family: var(--ff-kan);
    font-size: .85rem;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    padding: 0 20px;
}
.pdf-unlock-btn {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: var(--ff-kan);
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
}
.pdf-unlock-btn:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(249,1,1,.4); }

/* TOC page */
.pdf-toc-page { padding: 0; }
.pdf-toc-header {
    background: linear-gradient(135deg, #1a0a00 0%, #3d1000 100%);
    padding: 18px 22px;
    position: relative;
}
.pdf-toc-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}
.pdf-toc-title { font-family: var(--ff-kan); font-size: 1.1rem; font-weight: 700; color: #fff; }
.pdf-toc-sub { font-size: .7rem; color: var(--gold-lt); margin-top: 3px; }
.pdf-toc-list { padding: 16px 0; }
.pdf-toc-entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 22px;
    border-bottom: 1px solid #f0e8d8;
    cursor: pointer;
    transition: background .15s;
}
.pdf-toc-entry:last-child { border-bottom: none; }
.pdf-toc-entry:hover { background: #fdf0e0; }
.pdf-toc-num {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8d0b0;
    min-width: 26px;
    line-height: 1.2;
}
.pdf-toc-entry:hover .pdf-toc-num { color: var(--red); }
.pdf-toc-info { flex: 1; }
.pdf-toc-article-title {
    font-family: var(--ff-kan);
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}
.pdf-toc-entry:hover .pdf-toc-article-title { color: var(--red); }
.pdf-toc-meta { font-size: .68rem; color: var(--muted); margin-top: 2px; }
.pdf-toc-pg { font-size: .72rem; color: var(--muted); font-family: var(--ff-body); }
.pdf-toc-entry:hover .pdf-toc-pg { color: var(--red); }

/* PDF Status Bar */
.pdf-statusbar {
    background: #0d0d0d;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .68rem;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 6px;
}
.pdf-status-left { display: flex; align-items: center; gap: 14px; }
.pdf-status-right { display: flex; align-items: center; gap: 14px; }
.status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    margin-right: 5px;
    animation: statusPulse 2s infinite;
}

/* Thumbnail strip */
.pdf-thumbstrip {
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 12px 14px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.15) transparent;
}
.pdf-thumbstrip::-webkit-scrollbar { height: 4px; }
.pdf-thumbstrip::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.pdf-thumb {
    flex-shrink: 0;
    width: 52px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    position: relative;
}
.pdf-thumb:hover { border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.pdf-thumb.active-thumb { border-color: var(--red); }
.pdf-thumb-inner { height: 68px; background: linear-gradient(135deg, #f5f0e8, #fff); display: flex; flex-direction: column; }
.pdf-thumb-band { height: 10px; background: linear-gradient(135deg, #1a0a00, #3d1000); position: relative; }
.pdf-thumb-band::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.pdf-thumb-content { flex: 1; padding: 3px 4px; display: flex; flex-direction: column; gap: 2px; }
.pdf-thumb-line { height: 3px; background: #e0d0c0; border-radius: 1px; }
.pdf-thumb-line:nth-child(1) { width: 80%; }
.pdf-thumb-line:nth-child(2) { width: 65%; }
.pdf-thumb-line:nth-child(3) { width: 90%; }
.pdf-thumb-line:nth-child(4) { width: 55%; }
.pdf-thumb-img { width: 100%; height: 28px; object-fit: cover; margin-bottom: 3px; }
.pdf-thumb-num {
    position: absolute;
    bottom: 2px; right: 2px;
    background: rgba(0,0,0,.5);
    color: rgba(255,255,255,.6);
    font-size: .5rem;
    padding: 1px 4px;
    border-radius: 3px;
}

/* ============================
    ABOUT SECTION
============================ */
.about-section { margin-bottom: 32px; }
.about-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.about-text {
    font-family: var(--ff-kan);
    font-size: .88rem;
    color: var(--ink-mid);
    line-height: 1.85;
}
.about-text p + p { margin-top: 12px; }

/* ============================
    TABLE OF CONTENTS
============================ */
.toc-section { margin-bottom: 32px; }
.toc-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.toc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .2s, padding-left .2s;
}
.toc-item:last-child { border-bottom: none; }
.toc-item:hover { background: var(--cream2); padding-left: 28px; }
.toc-num { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--border); min-width: 28px; }
.toc-item:hover .toc-num { color: var(--red); }
.toc-info { flex: 1; }
.toc-title { font-family: var(--ff-kan); font-size: .85rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.toc-meta { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.toc-page { font-size: .72rem; color: var(--muted); font-family: var(--ff-body); }
.toc-item:hover .toc-page { color: var(--red); }

/* ============================
    SIDEBAR
============================ */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }
.subscribe-box {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1000 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.subscribe-box::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(242,203,7,.12), transparent 70%);
    pointer-events: none;
}
.subscribe-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}
.subscribe-icon {
    width: 42px; height: 42px;
    background: rgba(242,203,7,.15);
    border: 1px solid rgba(242,203,7,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold-lt);
    margin-bottom: 12px;
}
.subscribe-title { font-family: var(--ff-kan); font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.subscribe-desc { font-family: var(--ff-kan); font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 14px; }
.subscribe-price { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-lt); margin-bottom: 14px; }
.subscribe-price span { font-size: .8rem; font-weight: 400; color: rgba(255,255,255,.4); font-family: var(--ff-body); }
.subscribe-btn {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    font-family: var(--ff-kan);
    font-size: .88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
}
.subscribe-btn:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(249,1,1,.4); }
.subscribe-features { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.subscribe-feature { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.5); }
.subscribe-feature i { color: var(--gold); font-size: .7rem; }
.widget { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.widget-head {
    padding: 14px 18px;
    background: var(--cream2);
    border-bottom: 1px solid var(--border);
    font-family: var(--ff-kan);
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}
.widget-head i { color: var(--red); }
.widget-body { padding: 14px 18px; }
.related-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all .2s;
}
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item:hover { padding-left: 4px; }
.related-thumb { width: 56px; height: 76px; object-fit: cover; border-radius: 5px; flex-shrink: 0; box-shadow: 0 2px 8px var(--shadow); }
.related-info { flex: 1; }
.related-title { font-family: var(--ff-kan); font-size: .78rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 4px; }
.related-item:hover .related-title { color: var(--red); }
.related-date { font-size: .68rem; color: var(--muted); margin-bottom: 4px; }
.related-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .62rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
}
.related-badge.free { background: rgba(34,197,94,.1); color: #16a34a; }
.related-badge.premium { background: rgba(249,1,1,.08); color: var(--red); }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    background: var(--cream2);
    border: 1px solid var(--border);
    color: var(--ink-mid);
    font-size: .72rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: var(--ff-kan);
    cursor: pointer;
    transition: all .2s;
}
.tag:hover { background: var(--red); color: #fff; border-color: var(--red); }
.share-row { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
    flex: 1;
    min-width: 40px;
    padding: 10px 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
    color: var(--ink-mid);
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    transition: all .2s;
}
.share-btn.whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-btn.facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn.twitter:hover { background: #000; color: #fff; border-color: #000; }
.share-btn.telegram:hover { background: #0088cc; color: #fff; border-color: #0088cc; }
.share-btn.copy:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }






@media (max-width: 1024px) {
    .hero-inner { gap: 28px; padding: 32px 20px 40px; }
    .cover-img { width: 180px; }
    .hero-title { font-size: 1.6rem; }
    .page-body { grid-template-columns: 1fr; padding: 24px 20px 48px; display: block;}
    .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .subscribe-box { grid-column: 1 / -1; }
    
}
@media (max-width: 640px) {
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 0; }
    .cover-wrap { width: 100%; display: flex; justify-content: center; padding: 28px 20px; background: rgba(0,0,0,.15); border-bottom: 1px solid rgba(255,255,255,.06); }
    .cover-img { width: 160px; }
    .hero-info { padding: 24px 20px 32px; }
    .hero-title { font-size: 1.3rem; }
    .hero-subtitle { font-size: .82rem; }
    .btn-read, .btn-download { flex: 1; justify-content: center; font-size: .82rem; padding: 11px 14px; }
    .hero-stats { gap: 18px; }
    .stat-value { font-size: 1.1rem; }
    .pdf-toolbar { gap: 6px; }
    .pdf-toolbar-center { order: 3; width: 100%; justify-content: center; }
    .pdf-viewer-area { padding: 16px 8px; }
    .pdf-page.single { max-width: 100%; }
    .sidebar { grid-template-columns: 1fr; }
    
}














/* ============================================
                OUR RIGHTS
============================================ */
/* ================================================================
   our-rights.css — Karnataka Rakshana Vedike
   All class names prefixed with "our-rights-"
   (except topbar, search, header, footer, hero — shared styles)
   ================================================================ */

/* ─────────────────────────────────────────────
   REVEAL ANIMATION BASE
   ───────────────────────────────────────────── */
.our-rights-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.our-rights-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}


/* ─────────────────────────────────────────────
   MAIN LAYOUT (sidebar + content)
   ───────────────────────────────────────────── */
.our-rights-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ─────────────────────────────────────────────
   SIDEBAR
   ───────────────────────────────────────────── */
.our-rights-sidebar {
    position: sticky;
    top: 88px;
}
.our-rights-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.our-rights-sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
}
.our-rights-sidebar-head i { color: var(--gold); }

/* TOC nav */
.our-rights-toc {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.our-rights-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition);
    line-height: 1.4;
}
.our-rights-toc-link i {
    font-size: 0.6rem;
    color: var(--muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.our-rights-toc-link:hover,
.our-rights-toc-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(249,1,1,0.04);
}
.our-rights-toc-link:hover i,
.our-rights-toc-link.active i { color: var(--red); }

/* Sidebar promo ad */
.our-rights-sidebar-ad {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: 24px 18px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.our-rights-sidebar-ad::before {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(242,203,7,0.07);
    pointer-events: none;
}
.our-rights-sidebar-ad-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.our-rights-sidebar-ad h4 {
    font-family: var(--ff-kan);
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.our-rights-sidebar-ad p {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.our-rights-sidebar-ad-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.our-rights-sidebar-ad-btn:hover { background: var(--white); }

/* Share panel */
.our-rights-sidebar-share {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}
.our-rights-sidebar-share-title {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.our-rights-share-btns {
    display: flex;
    gap: 8px;
}
.our-rights-share-btn {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}
.our-rights-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--shadow); }
.our-rights-share-btn.whatsapp:hover { background: #25D366; color: var(--white); border-color: #25D366; }
.our-rights-share-btn.facebook:hover { background: #1877f2; color: var(--white); border-color: #1877f2; }
.our-rights-share-btn.twitter:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.our-rights-share-btn.copy:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ─────────────────────────────────────────────
   MOBILE TOC BUTTON
   ───────────────────────────────────────────── */
.our-rights-mobile-toc-btn {
    display: none;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
}
.our-rights-mobile-toc-btn:hover { background: var(--red); }

/* ─────────────────────────────────────────────
   INTRO BANNER
   ───────────────────────────────────────────── */
.our-rights-intro-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
.our-rights-intro-banner::before {
    content: '';
    position: absolute;
    right: -70px; top: -70px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(242,203,7,0.06);
    pointer-events: none;
}
.our-rights-intro-banner::after {
    content: '';
    position: absolute;
    left: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(249,1,1,0.06);
    pointer-events: none;
}
.our-rights-intro-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(242,203,7,0.12);
    border: 2px solid rgba(242,203,7,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    animation: our-rights-pulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.our-rights-intro-text {
    flex: 1;
    position: relative;
    z-index: 1;
}
.our-rights-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(242,203,7,0.15);
    border: 1px solid rgba(242,203,7,0.3);
    color: var(--gold);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--ff-body);
}
.our-rights-intro-text h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.our-rights-intro-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.our-rights-intro-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.our-rights-intro-btn {
    padding: 9px 20px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
}
.our-rights-intro-btn.primary {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
}
.our-rights-intro-btn.primary:hover { background: var(--white); }
.our-rights-intro-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.our-rights-intro-btn.secondary:hover { background: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────────
   SECTION HEADING
   ───────────────────────────────────────────── */
.our-rights-section {
    margin-bottom: 48px;
}
.our-rights-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.our-rights-section-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.our-rights-section-bar {
    width: 4px;
    height: 24px;
    background: var(--red);
    border-radius: 2px;
    animation: our-rights-bar-pulse 2s ease-in-out infinite;
}
.our-rights-section-heading h2 {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 700;
}
.our-rights-section-tag {
    font-size: 0.72rem;
    font-family: var(--ff-body);
    color: var(--red);
    background: rgba(249,1,1,0.07);
    border: 1px solid rgba(249,1,1,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}
.our-rights-section-intro {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

/* ─────────────────────────────────────────────
   CARDS GRID (Section 1)
   ───────────────────────────────────────────── */
.our-rights-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ─────────────────────────────────────────────
   CARD BASE
   ───────────────────────────────────────────── */
.our-rights-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    opacity: 0;
    transform: translateY(28px);
}
.our-rights-card.our-rights-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.our-rights-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(96,20,0,0.13);
    border-color: rgba(249,1,1,0.22);
}

/* Indentation lines — 4 levels */
.our-rights-card-indent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
    background: var(--red);
    opacity: 0.7;
}
[data-indent="2"] .our-rights-card-indent-line { background: var(--gold); }
[data-indent="3"] .our-rights-card-indent-line { background: #16a34a; }
[data-indent="4"] .our-rights-card-indent-line { background: #7c3aed; }

.our-rights-card-icon-wrap {
    width: 52px;
    min-height: 52px;
    background: rgba(var(--icon-color, 249,1,1), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--icon-color, var(--red));
    flex-shrink: 0;
    align-self: flex-start;
    margin: 16px 0 16px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(var(--icon-color, 249,1,1), 0.15);
    transition: var(--transition);
}
.our-rights-card:hover .our-rights-card-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

.our-rights-card-body {
    flex: 1;
    padding: 16px 16px 16px 12px;
}
.our-rights-card-article {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 5px;
}
.our-rights-card-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 7px;
}
.our-rights-card-desc {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 10px;
}
.our-rights-card-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.our-rights-tag {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(249,1,1,0.08);
    color: var(--red);
    border: 1px solid rgba(249,1,1,0.15);
}
.our-rights-tag.gold {
    background: rgba(242,203,7,0.12);
    color: #a0830a;
    border-color: rgba(242,203,7,0.3);
}
.our-rights-tag.green {
    background: rgba(22,163,74,0.08);
    color: #15803d;
    border-color: rgba(22,163,74,0.2);
}
.our-rights-tag.purple {
    background: rgba(124,58,237,0.08);
    color: #6d28d9;
    border-color: rgba(124,58,237,0.2);
}

/* ─────────────────────────────────────────────
   ACCORDION (Section 2)
   ───────────────────────────────────────────── */
.our-rights-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.our-rights-accord-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.our-rights-accord-item:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
}
.our-rights-accord-item.open {
    border-color: rgba(249,1,1,0.3);
    box-shadow: 0 6px 24px var(--shadow);
}

.our-rights-accord-head {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 600;
    transition: var(--transition);
    text-align: left;
}
.our-rights-accord-head:hover { color: var(--red); }
.our-rights-accord-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.our-rights-accord-num {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.5;
    min-width: 22px;
    transition: var(--transition);
}
.our-rights-accord-item.open .our-rights-accord-num { opacity: 1; }
.our-rights-accord-icon {
    font-size: 0.75rem;
    color: var(--muted);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
    flex-shrink: 0;
}
.our-rights-accord-item.open .our-rights-accord-icon {
    transform: rotate(180deg);
    color: var(--red);
}

.our-rights-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1),
                padding 0.4s;
    padding: 0 20px 0 54px;
}
.our-rights-accord-item.open .our-rights-accord-body {
    max-height: 200px;
    padding: 0 20px 16px 54px;
}
.our-rights-accord-body p {
    font-family: var(--ff-kan);
    font-size: 0.83rem;
    color: var(--ink-mid);
    line-height: 1.65;
}

/* Accordion indent lines */
.our-rights-accord-item[data-indent="1"] .our-rights-card-indent-line { background: var(--red); }
.our-rights-accord-item[data-indent="2"] .our-rights-card-indent-line { background: var(--gold); }
.our-rights-accord-item[data-indent="3"] .our-rights-card-indent-line { background: #16a34a; }
.our-rights-accord-item[data-indent="4"] .our-rights-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   TIMELINE (Section 3)
   ───────────────────────────────────────────── */
.our-rights-timeline {
    position: relative;
    padding-left: 32px;
}
.our-rights-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--gold), #16a34a, #7c3aed);
    border-radius: 2px;
}
.our-rights-timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.our-rights-timeline-item.our-rights-revealed {
    opacity: 1;
    transform: translateX(0);
    transition: none;
}
/* Stagger for timeline items */
.our-rights-timeline-item:nth-child(1) { transition-delay: 0.05s; }
.our-rights-timeline-item:nth-child(2) { transition-delay: 0.15s; }
.our-rights-timeline-item:nth-child(3) { transition-delay: 0.25s; }
.our-rights-timeline-item:nth-child(4) { transition-delay: 0.35s; }

.our-rights-timeline-dot {
    position: absolute;
    left: -27px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}
.our-rights-timeline-item:nth-child(2) .our-rights-timeline-dot { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.our-rights-timeline-item:nth-child(3) .our-rights-timeline-dot { background: #16a34a; box-shadow: 0 0 0 2px #16a34a; }
.our-rights-timeline-dot.last {
    background: #7c3aed;
    box-shadow: 0 0 0 2px #7c3aed;
    animation: our-rights-pulse 2s ease-in-out infinite;
}
.our-rights-timeline-content {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    flex: 1;
    transition: var(--transition);
}
.our-rights-timeline-content:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
    transform: translateX(4px);
}
.our-rights-timeline-year {
    font-family: var(--ff-head);
    font-size: 0.88rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.our-rights-timeline-content h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
}
.our-rights-timeline-content p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ─────────────────────────────────────────────
   EMPLOYMENT GRID (Section 4)
   ───────────────────────────────────────────── */
.our-rights-employ-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.our-rights-employ-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.our-rights-employ-card.our-rights-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.our-rights-employ-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.our-rights-employ-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 12px;
    transition: var(--transition);
}
.our-rights-employ-card:nth-child(2) .our-rights-employ-icon { color: var(--gold); }
.our-rights-employ-card:nth-child(3) .our-rights-employ-icon { color: #7c3aed; }
.our-rights-employ-card:nth-child(4) .our-rights-employ-icon { color: #16a34a; }
.our-rights-employ-card:hover .our-rights-employ-icon { transform: scale(1.15); }

.our-rights-employ-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.our-rights-employ-card p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}
.our-rights-employ-progress { margin-top: auto; }
.our-rights-employ-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 5px;
    font-family: var(--ff-body);
    font-weight: 600;
}
.our-rights-employ-bar {
    height: 6px;
    background: var(--cream2);
    border-radius: 3px;
    overflow: hidden;
}
.our-rights-employ-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.our-rights-employ-card:nth-child(2) .our-rights-employ-bar-fill { background: linear-gradient(90deg, var(--gold), #a0830a); }
.our-rights-employ-card:nth-child(3) .our-rights-employ-bar-fill { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.our-rights-employ-card:nth-child(4) .our-rights-employ-bar-fill { background: linear-gradient(90deg, #16a34a, #4ade80); }

/* Employ card indent lines */
.our-rights-employ-card[data-indent="1"] .our-rights-card-indent-line { background: var(--red); }
.our-rights-employ-card[data-indent="2"] .our-rights-card-indent-line { background: var(--gold); }
.our-rights-employ-card[data-indent="3"] .our-rights-card-indent-line { background: #7c3aed; }
.our-rights-employ-card[data-indent="4"] .our-rights-card-indent-line { background: #16a34a; }

/* ─────────────────────────────────────────────
   CONSTITUTION GRID (Section 5)
   ───────────────────────────────────────────── */
.our-rights-constitution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.our-rights-const-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(22px);
}
.our-rights-const-card.our-rights-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.our-rights-const-card:hover {
    border-color: rgba(249,1,1,0.22);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.our-rights-const-num {
    font-family: var(--ff-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.18;
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
    transition: var(--transition);
    letter-spacing: -0.04em;
}
.our-rights-const-card:hover .our-rights-const-num { opacity: 0.4; }
.our-rights-const-body { flex: 1; }
.our-rights-const-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 7px;
}
.our-rights-const-body p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Const card indent lines */
.our-rights-const-card[data-indent="1"] .our-rights-card-indent-line { background: var(--red); }
.our-rights-const-card[data-indent="2"] .our-rights-card-indent-line { background: var(--gold); }
.our-rights-const-card[data-indent="3"] .our-rights-card-indent-line { background: #16a34a; }
.our-rights-const-card[data-indent="4"] .our-rights-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   CULTURE GRID (Section 6)
   ───────────────────────────────────────────── */
.our-rights-culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.our-rights-culture-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px;
    position: relative;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(22px);
}
.our-rights-culture-card.our-rights-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.our-rights-culture-card:hover {
    border-color: rgba(249,1,1,0.22);
    box-shadow: 0 10px 32px var(--shadow);
    transform: translateY(-5px);
}
.our-rights-culture-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249,1,1,0.07);
    border: 2px solid rgba(249,1,1,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red);
    margin: 0 auto 14px;
    transition: var(--transition);
}
.our-rights-culture-card:nth-child(2) .our-rights-culture-icon-wrap {
    background: rgba(242,203,7,0.1);
    border-color: rgba(242,203,7,0.2);
    color: #a0830a;
}
.our-rights-culture-card:nth-child(3) .our-rights-culture-icon-wrap {
    background: rgba(22,163,74,0.08);
    border-color: rgba(22,163,74,0.2);
    color: #15803d;
}
.our-rights-culture-card:nth-child(4) .our-rights-culture-icon-wrap {
    background: rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.2);
    color: #6d28d9;
}
.our-rights-culture-card:hover .our-rights-culture-icon-wrap {
    transform: scale(1.12) rotate(5deg);
}
.our-rights-culture-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.our-rights-culture-card p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Culture card indent lines */
.our-rights-culture-card[data-indent="1"] .our-rights-card-indent-line { background: var(--red); }
.our-rights-culture-card[data-indent="2"] .our-rights-card-indent-line { background: var(--gold); }
.our-rights-culture-card[data-indent="3"] .our-rights-card-indent-line { background: #16a34a; }
.our-rights-culture-card[data-indent="4"] .our-rights-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────── */
.our-rights-cta {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 40px 32px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.our-rights-cta.our-rights-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.our-rights-cta::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(242,203,7,0.06);
    pointer-events: none;
}
.our-rights-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.our-rights-cta-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    animation: our-rights-float 2.5s ease-in-out infinite;
}
.our-rights-cta h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.our-rights-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.our-rights-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.our-rights-cta-btn {
    padding: 11px 28px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-weight: 700;
}
.our-rights-cta-btn.primary {
    background: var(--gold);
    color: var(--ink);
}
.our-rights-cta-btn.primary:hover { background: var(--white); }
.our-rights-cta-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
    font-weight: 400;
}
.our-rights-cta-btn.secondary:hover { background: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────────
   KEYFRAME ANIMATIONS
   ───────────────────────────────────────────── */
@keyframes our-rights-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes our-rights-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,1,1,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(249,1,1,0); }
}

@keyframes our-rights-bar-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes our-rights-slide-in {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Stagger delays for cards */
.our-rights-cards-grid .our-rights-card:nth-child(1) { transition-delay: 0.05s; }
.our-rights-cards-grid .our-rights-card:nth-child(2) { transition-delay: 0.10s; }
.our-rights-cards-grid .our-rights-card:nth-child(3) { transition-delay: 0.15s; }
.our-rights-cards-grid .our-rights-card:nth-child(4) { transition-delay: 0.20s; }

.our-rights-employ-grid .our-rights-employ-card:nth-child(1) { transition-delay: 0.05s; }
.our-rights-employ-grid .our-rights-employ-card:nth-child(2) { transition-delay: 0.10s; }
.our-rights-employ-grid .our-rights-employ-card:nth-child(3) { transition-delay: 0.15s; }
.our-rights-employ-grid .our-rights-employ-card:nth-child(4) { transition-delay: 0.20s; }

.our-rights-constitution-grid .our-rights-const-card:nth-child(1) { transition-delay: 0.05s; }
.our-rights-constitution-grid .our-rights-const-card:nth-child(2) { transition-delay: 0.10s; }
.our-rights-constitution-grid .our-rights-const-card:nth-child(3) { transition-delay: 0.15s; }
.our-rights-constitution-grid .our-rights-const-card:nth-child(4) { transition-delay: 0.20s; }

.our-rights-culture-grid .our-rights-culture-card:nth-child(1) { transition-delay: 0.05s; }
.our-rights-culture-grid .our-rights-culture-card:nth-child(2) { transition-delay: 0.10s; }
.our-rights-culture-grid .our-rights-culture-card:nth-child(3) { transition-delay: 0.15s; }
.our-rights-culture-grid .our-rights-culture-card:nth-child(4) { transition-delay: 0.20s; }

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 1024px)
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .our-rights-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }
    .our-rights-stat-item { padding: 24px 24px; }
    .our-rights-stat-num { font-size: 1.8rem; }
    .our-rights-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — iPAD (≤ 900px)
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .our-rights-layout {
        grid-template-columns: 1fr;
        padding: 32px 20px 50px;
    }
    .our-rights-sidebar {
        display: none;
        position: static;
    }
    .our-rights-sidebar.open {
        display: block;
        margin-bottom: 24px;
    }
    .our-rights-mobile-toc-btn {
        display: flex;
    }
    .our-rights-stats-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .our-rights-stat-divider {
        display: none;
    }
    .our-rights-stat-item {
        flex: 1 1 40%;
        min-width: 140px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 20px 16px;
    }
    .our-rights-intro-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    .our-rights-intro-icon-wrap {
        width: 76px;
        height: 76px;
        font-size: 1.6rem;
    }
    .our-rights-intro-actions {
        justify-content: center;
    }
    .our-rights-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .our-rights-employ-grid { grid-template-columns: repeat(2, 1fr); }
    .our-rights-constitution-grid { grid-template-columns: repeat(2, 1fr); }
    .our-rights-culture-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 640px)
   ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .our-rights-layout {
        padding: 24px 16px 40px;
    }
    .our-rights-stats-inner {
        flex-direction: column;
        gap: 0;
    }
    .our-rights-stat-item {
        flex: 1 1 100%;
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 14px 20px;
    }
    .our-rights-stat-icon { font-size: 1.2rem; margin-bottom: 0; animation: none; }
    .our-rights-stat-num { font-size: 1.4rem; }
    .our-rights-stat-label { font-size: 0.72rem; text-align: left; }

    .our-rights-cards-grid { grid-template-columns: 1fr; }
    .our-rights-employ-grid { grid-template-columns: 1fr; }
    .our-rights-constitution-grid { grid-template-columns: 1fr; }
    .our-rights-culture-grid { grid-template-columns: 1fr; }

    .our-rights-intro-banner { padding: 24px 16px; gap: 16px; }
    .our-rights-intro-text h3 { font-size: 1.1rem; }

    .our-rights-section-heading { flex-direction: column; align-items: flex-start; gap: 8px; }
    .our-rights-section-tag { align-self: flex-start; }

    .our-rights-cta { padding: 28px 20px; }
    .our-rights-cta h3 { font-size: 1.15rem; }

    .our-rights-accord-body { padding: 0 16px 0 16px; }
    .our-rights-accord-item.open .our-rights-accord-body { padding: 0 16px 14px 16px; }

    .our-rights-timeline { padding-left: 24px; }
    .our-rights-timeline::before { left: 7px; }
    .our-rights-timeline-dot { left: -21px; }
    .our-rights-timeline-content { padding: 12px 16px; }

    .our-rights-const-card {
        flex-direction: column;
        gap: 8px;
    }
    .our-rights-const-num {
        font-size: 1.8rem;
    }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (≤ 420px)
   ───────────────────────────────────────────── */
@media (max-width: 420px) {
    .our-rights-intro-banner {
        border-radius: 12px;
    }
    .our-rights-cta {
        border-radius: 12px;
    }
    .our-rights-card-body { padding: 12px 12px 12px 10px; }
    .our-rights-card-icon-wrap { width: 44px; min-height: 44px; font-size: 1.1rem; margin: 12px 0 12px 12px; }
    .our-rights-cta-btns { flex-direction: column; align-items: center; }
    .our-rights-cta-btn { width: 100%; text-align: center; justify-content: center; }
}



/* ===============================================
            MOTIVATION PAGE
================================================ */
/* ═══════════════════════════════════════════════════════════════
   motivation-words.css
   All class names begin with: motivation-words-
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   KEYFRAMES
   ───────────────────────────────────────────── */
@keyframes motivation-words-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes motivation-words-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,1,1,0.3); }
    50%       { box-shadow: 0 0 0 8px rgba(249,1,1,0); }
}
@keyframes motivation-words-bar-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}
@keyframes motivation-words-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes motivation-words-quote-bob {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50%       { transform: rotate(2deg) scale(1.05); }
}
@keyframes motivation-words-spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ─────────────────────────────────────────────
   REVEAL ANIMATION BASE
   ───────────────────────────────────────────── */
.motivation-words-reveal,
.motivation-words-quote-card,
.motivation-words-timeline-item,
.motivation-words-youth-card,
.motivation-words-leader-card,
.motivation-words-nature-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.25,0.8,0.25,1),
                transform 0.55s cubic-bezier(0.25,0.8,0.25,1);
}
.motivation-words-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none;
}

/* ─────────────────────────────────────────────
   MAIN LAYOUT
   ───────────────────────────────────────────── */
.motivation-words-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ─────────────────────────────────────────────
   SIDEBAR
   ───────────────────────────────────────────── */
.motivation-words-sidebar {
    position: sticky;
    top: 88px;
}
.motivation-words-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.motivation-words-sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
}
.motivation-words-sidebar-head i { color: var(--gold); }

/* TOC nav */
.motivation-words-toc {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.motivation-words-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition);
    line-height: 1.4;
}
.motivation-words-toc-link i {
    font-size: 0.6rem;
    color: var(--muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.motivation-words-toc-link:hover,
.motivation-words-toc-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(249,1,1,0.04);
}
.motivation-words-toc-link:hover i,
.motivation-words-toc-link.active i { color: var(--red); }

/* Sidebar promo */
.motivation-words-sidebar-ad {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: 24px 18px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.motivation-words-sidebar-ad::before {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(242,203,7,0.07);
    pointer-events: none;
}
.motivation-words-sidebar-ad-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.motivation-words-sidebar-ad h4 {
    font-family: var(--ff-kan);
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.motivation-words-sidebar-ad p {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.motivation-words-sidebar-ad-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.motivation-words-sidebar-ad-btn:hover { background: var(--white); }

/* Share panel */
.motivation-words-sidebar-share {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}
.motivation-words-sidebar-share-title {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.motivation-words-share-btns {
    display: flex;
    gap: 8px;
}
.motivation-words-share-btn {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}
.motivation-words-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--shadow); }
.motivation-words-share-btn.whatsapp:hover  { background: #25D366; color: var(--white); border-color: #25D366; }
.motivation-words-share-btn.facebook:hover  { background: #1877f2; color: var(--white); border-color: #1877f2; }
.motivation-words-share-btn.twitter:hover   { background: var(--ink); color: var(--white); border-color: var(--ink); }
.motivation-words-share-btn.copy:hover      { background: var(--red); color: var(--white); border-color: var(--red); }

/* ─────────────────────────────────────────────
   MOBILE TOC BUTTON
   ───────────────────────────────────────────── */
.motivation-words-mobile-toc-btn {
    display: none;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
}
.motivation-words-mobile-toc-btn:hover { background: var(--red); }

/* ─────────────────────────────────────────────
   INTRO BANNER
   ───────────────────────────────────────────── */
.motivation-words-intro-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
.motivation-words-intro-banner::before {
    content: '';
    position: absolute;
    right: -70px; top: -70px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(242,203,7,0.06);
    pointer-events: none;
}
.motivation-words-intro-banner::after {
    content: '';
    position: absolute;
    left: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(249,1,1,0.06);
    pointer-events: none;
}
.motivation-words-intro-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(242,203,7,0.12);
    border: 2px solid rgba(242,203,7,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    animation: motivation-words-pulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.motivation-words-intro-text {
    flex: 1;
    position: relative;
    z-index: 1;
}
.motivation-words-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(242,203,7,0.15);
    border: 1px solid rgba(242,203,7,0.3);
    color: var(--gold);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--ff-body);
}
.motivation-words-intro-text h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.motivation-words-intro-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.motivation-words-intro-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.motivation-words-intro-btn {
    padding: 9px 20px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
}
.motivation-words-intro-btn.primary {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
}
.motivation-words-intro-btn.primary:hover { background: var(--white); }
.motivation-words-intro-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.motivation-words-intro-btn.secondary:hover { background: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────────
   SECTION HEADING
   ───────────────────────────────────────────── */
.motivation-words-section {
    margin-bottom: 52px;
}
.motivation-words-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.motivation-words-section-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.motivation-words-section-bar {
    width: 4px;
    height: 24px;
    background: var(--red);
    border-radius: 2px;
    animation: motivation-words-bar-pulse 2s ease-in-out infinite;
}
.motivation-words-section-heading h2 {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 700;
}
.motivation-words-section-tag {
    font-size: 0.72rem;
    font-family: var(--ff-body);
    color: var(--red);
    background: rgba(249,1,1,0.07);
    border: 1px solid rgba(249,1,1,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}
.motivation-words-section-intro {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

/* ─────────────────────────────────────────────
   INDENT LINES (4 levels)
   ───────────────────────────────────────────── */
.motivation-words-card-indent-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
}
[data-indent="1"] .motivation-words-card-indent-line { background: var(--red); }
[data-indent="2"] .motivation-words-card-indent-line { background: var(--gold); }
[data-indent="3"] .motivation-words-card-indent-line { background: #16a34a; }
[data-indent="4"] .motivation-words-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   TAGS
   ───────────────────────────────────────────── */
.motivation-words-tag {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(249,1,1,0.08);
    color: var(--red);
    border: 1px solid rgba(249,1,1,0.15);
}
.motivation-words-tag.gold {
    background: rgba(242,203,7,0.12);
    color: #a0830a;
    border-color: rgba(242,203,7,0.3);
}
.motivation-words-tag.green {
    background: rgba(22,163,74,0.08);
    color: #15803d;
    border-color: rgba(22,163,74,0.2);
}
.motivation-words-tag.purple {
    background: rgba(124,58,237,0.08);
    color: #6d28d9;
    border-color: rgba(124,58,237,0.2);
}

/* ─────────────────────────────────────────────
   SECTION 1 — QUOTE CARDS GRID
   ───────────────────────────────────────────── */
.motivation-words-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.motivation-words-quote-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px 18px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* stagger handled inline */
}
.motivation-words-quote-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(96,20,0,0.14);
    border-color: rgba(249,1,1,0.22);
}

/* Big decorative quote mark */
.motivation-words-quote-mark {
    font-family: var(--ff-head);
    font-size: 5rem;
    line-height: 0.6;
    color: var(--red);
    opacity: 0.08;
    position: absolute;
    top: 14px; right: 16px;
    pointer-events: none;
    font-weight: 900;
    animation: motivation-words-quote-bob 5s ease-in-out infinite;
}

.motivation-words-quote-text {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.65;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.motivation-words-quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}
.motivation-words-author-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(var(--avatar-color, 249,1,1), 0.1);
    border: 1.5px solid rgba(var(--avatar-color, 249,1,1), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}
.motivation-words-quote-card:hover .motivation-words-author-avatar {
    transform: scale(1.1) rotate(-5deg);
}
.motivation-words-author-name {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
}
.motivation-words-author-role {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    color: var(--muted);
}

.motivation-words-quote-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

/* Copy button */
.motivation-words-copy-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 30px; height: 30px;
    border-radius: 7px;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}
.motivation-words-copy-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: scale(1.1);
}

/* ─────────────────────────────────────────────
   SECTION 2 — ACCORDION
   ───────────────────────────────────────────── */
.motivation-words-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.motivation-words-accord-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.motivation-words-accord-item:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
}
.motivation-words-accord-item.open {
    border-color: rgba(249,1,1,0.3);
    box-shadow: 0 6px 24px var(--shadow);
}

.motivation-words-accord-head {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 600;
    transition: var(--transition);
    text-align: left;
}
.motivation-words-accord-head:hover { color: var(--red); }
.motivation-words-accord-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.motivation-words-accord-num {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.5;
    min-width: 22px;
    transition: var(--transition);
}
.motivation-words-accord-item.open .motivation-words-accord-num { opacity: 1; }
.motivation-words-accord-icon {
    font-size: 0.75rem;
    color: var(--muted);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
    flex-shrink: 0;
}
.motivation-words-accord-item.open .motivation-words-accord-icon {
    transform: rotate(180deg);
    color: var(--red);
}

.motivation-words-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1), padding 0.4s;
    padding: 0 20px 0 54px;
}
.motivation-words-accord-item.open .motivation-words-accord-body {
    max-height: 180px;
    padding: 0 20px 18px 54px;
}
.motivation-words-accord-quote {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.motivation-words-accord-qmark {
    font-family: var(--ff-head);
    font-size: 2.4rem;
    line-height: 0.9;
    color: var(--red);
    opacity: 0.25;
    flex-shrink: 0;
    font-weight: 900;
}
.motivation-words-accord-body p {
    font-family: var(--ff-kan);
    font-size: 0.83rem;
    color: var(--ink-mid);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}
.motivation-words-accord-author {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 8px;
}

/* ─────────────────────────────────────────────
   SECTION 3 — TIMELINE
   ───────────────────────────────────────────── */
.motivation-words-timeline {
    position: relative;
    padding-left: 32px;
}
.motivation-words-timeline::before {
    content: '';
    position: absolute;
    left: 11px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--gold), #16a34a, #7c3aed);
    border-radius: 2px;
}

.motivation-words-timeline-item {
    position: relative;
    margin-bottom: 28px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.motivation-words-timeline-item:nth-child(1) { transition-delay: 0.05s; }
.motivation-words-timeline-item:nth-child(2) { transition-delay: 0.15s; }
.motivation-words-timeline-item:nth-child(3) { transition-delay: 0.25s; }
.motivation-words-timeline-item:nth-child(4) { transition-delay: 0.35s; }

.motivation-words-timeline-dot {
    position: absolute;
    left: -27px; top: 14px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}
.motivation-words-timeline-item:nth-child(2) .motivation-words-timeline-dot { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.motivation-words-timeline-item:nth-child(3) .motivation-words-timeline-dot { background: #16a34a; box-shadow: 0 0 0 2px #16a34a; }
.motivation-words-timeline-dot.last { background: #7c3aed; box-shadow: 0 0 0 2px #7c3aed; animation: motivation-words-pulse 2s ease-in-out infinite; }

.motivation-words-timeline-content {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.motivation-words-timeline-content:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 18px var(--shadow);
    transform: translateX(5px);
}

.motivation-words-timeline-qmark {
    font-family: var(--ff-head);
    font-size: 4rem;
    line-height: 0.7;
    color: var(--red);
    opacity: 0.08;
    position: absolute;
    top: 10px; right: 14px;
    font-weight: 900;
    pointer-events: none;
}

.motivation-words-timeline-quote {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.65;
    font-style: italic;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.motivation-words-timeline-author {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   SECTION 4 — YOUTH POWER GRID
   ───────────────────────────────────────────── */
.motivation-words-youth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.motivation-words-youth-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px 20px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.motivation-words-youth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(96,20,0,0.13);
    border-color: rgba(249,1,1,0.22);
}
.motivation-words-youth-icon {
    font-size: 1.8rem;
    color: var(--red);
    transition: var(--transition);
}
.motivation-words-youth-card:hover .motivation-words-youth-icon {
    transform: scale(1.15) rotate(-5deg);
}
.motivation-words-youth-quote {
    font-family: var(--ff-kan);
    font-size: 0.93rem;
    color: var(--ink);
    line-height: 1.65;
    font-style: italic;
    font-weight: 700;
    margin: 0;
    flex: 1;
}
.motivation-words-youth-author {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   SECTION 5 — LEADERS GRID
   ───────────────────────────────────────────── */
.motivation-words-leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.motivation-words-leader-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px 20px 20px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.motivation-words-leader-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.motivation-words-leader-num {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.15;
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition);
}
.motivation-words-leader-card:hover .motivation-words-leader-num { opacity: 0.5; }
.motivation-words-leader-body {
    flex: 1;
}
.motivation-words-leader-body blockquote {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.65;
    font-style: italic;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.motivation-words-leader-attr {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   SECTION 6 — NATURE GRID
   ───────────────────────────────────────────── */
.motivation-words-nature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.motivation-words-nature-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px 18px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.motivation-words-nature-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.motivation-words-nature-icon-wrap {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(249,1,1,0.07);
    border: 1.5px solid rgba(249,1,1,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--red);
    transition: var(--transition);
}
.motivation-words-nature-card:nth-child(2) .motivation-words-nature-icon-wrap { background: rgba(242,203,7,0.1); border-color: rgba(242,203,7,0.2); color: #a0830a; }
.motivation-words-nature-card:nth-child(3) .motivation-words-nature-icon-wrap { background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.2); color: #15803d; }
.motivation-words-nature-card:nth-child(4) .motivation-words-nature-icon-wrap { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: #6d28d9; }
.motivation-words-nature-card:hover .motivation-words-nature-icon-wrap { transform: rotate(-6deg) scale(1.1); }

.motivation-words-nature-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
}
.motivation-words-nature-quote {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    flex: 1;
}

/* ─────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────── */
.motivation-words-cta {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
}
.motivation-words-cta::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(242,203,7,0.06);
    pointer-events: none;
}
.motivation-words-cta-inner {
    position: relative;
    z-index: 1;
}
.motivation-words-cta-icon {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 14px;
    animation: motivation-words-float 3s ease-in-out infinite;
}
.motivation-words-cta h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.motivation-words-cta p {
    color: rgba(255,255,255,0.6);
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.motivation-words-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.motivation-words-cta-btn {
    padding: 10px 26px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-weight: 700;
}
.motivation-words-cta-btn.primary {
    background: var(--gold);
    color: var(--ink);
}
.motivation-words-cta-btn.primary:hover { background: var(--white); }
.motivation-words-cta-btn.secondary {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.22);
}
.motivation-words-cta-btn.secondary:hover { background: rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (iPad ≤ 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .motivation-words-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
        padding: 30px 20px 50px;
    }
    .motivation-words-stat-item {
        padding: 22px 24px;
    }
    .motivation-words-stat-num {
        font-size: 1.8rem;
    }
    .motivation-words-quote-grid,
    .motivation-words-youth-grid,
    .motivation-words-leaders-grid,
    .motivation-words-nature-grid {
        gap: 14px;
    }
    .motivation-words-intro-banner {
        padding: 24px;
        gap: 20px;
    }
    .motivation-words-intro-icon-wrap {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Stats strip */
    .motivation-words-stats-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .motivation-words-stat-item {
        padding: 18px 20px;
        max-width: 50%;
        min-width: 120px;
    }
    .motivation-words-stat-divider {
        display: none;
    }
    .motivation-words-stat-num { font-size: 1.6rem; }
    .motivation-words-stat-label { font-size: 0.68rem; }

    /* Layout — stack sidebar below (hidden by default) */
    .motivation-words-layout {
        grid-template-columns: 1fr;
        padding: 20px 16px 40px;
        gap: 0;
    }

    /* Sidebar */
    .motivation-words-sidebar {
        position: fixed;
        top: 0; left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        overflow-y: auto;
        padding: 20px 16px;
        box-shadow: 4px 0 24px rgba(0,0,0,0.18);
        transition: left 0.35s cubic-bezier(0.25,0.8,0.25,1);
    }
    .motivation-words-sidebar.open {
        left: 0;
    }

    /* Mobile TOC button */
    .motivation-words-mobile-toc-btn {
        display: flex;
    }

    /* Intro banner */
    .motivation-words-intro-banner {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
        gap: 16px;
    }
    .motivation-words-intro-actions {
        justify-content: center;
    }
    .motivation-words-intro-text h3 {
        font-size: 1.1rem;
    }

    /* Grids → single column */
    .motivation-words-quote-grid,
    .motivation-words-youth-grid,
    .motivation-words-leaders-grid,
    .motivation-words-nature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Section heading */
    .motivation-words-section-heading {
        flex-wrap: wrap;
        gap: 8px;
    }
    .motivation-words-section-tag { font-size: 0.65rem; }

    /* Timeline */
    .motivation-words-timeline { padding-left: 24px; }
    .motivation-words-timeline-dot { left: -20px; }

    /* Accordion body indent */
    .motivation-words-accord-item.open .motivation-words-accord-body {
        padding-left: 36px;
    }

    /* CTA */
    .motivation-words-cta { padding: 28px 18px; }
    .motivation-words-cta h3 { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .motivation-words-stat-item { max-width: 48%; padding: 14px 12px; }
    .motivation-words-stat-num  { font-size: 1.4rem; }

    .motivation-words-quote-text  { font-size: 0.88rem; }
    .motivation-words-youth-quote { font-size: 0.86rem; }

    .motivation-words-intro-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .motivation-words-cta-btn { padding: 8px 18px; font-size: 0.82rem; }
}



/* ==============================================
            ILLEGAL ACTIVITIES
============================================== */
/* ═══════════════════════════════════════════════════
   ILLEGAL ACTIVITIES PAGE — illegal-activities.css
   ═══════════════════════════════════════════════════ */

/* ─── KEYFRAME ANIMATIONS ─── */
@keyframes illegal-activities-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes illegal-activities-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,1,1,0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(249,1,1,0); }
}
@keyframes illegal-activities-bar-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
@keyframes illegal-activities-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes illegal-activities-spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ─── REVEAL BASE ─── */
.illegal-activities-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.illegal-activities-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none;
}


/* ═══════════════════════════════════════════════════
   MAIN LAYOUT (sidebar + content)
   ═══════════════════════════════════════════════════ */
.illegal-activities-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ═══════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════ */
.illegal-activities-sidebar {
    position: sticky;
    top: 88px;
}
.illegal-activities-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.illegal-activities-sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
}
.illegal-activities-sidebar-head i { color: var(--gold); }

/* TOC */
.illegal-activities-toc {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.illegal-activities-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition);
    line-height: 1.4;
}
.illegal-activities-toc-link i {
    font-size: 0.6rem;
    color: var(--muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.illegal-activities-toc-link:hover,
.illegal-activities-toc-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(249,1,1,0.04);
}
.illegal-activities-toc-link:hover i,
.illegal-activities-toc-link.active i { color: var(--red); }

/* Sidebar alert box */
.illegal-activities-sidebar-alert {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: 24px 18px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.illegal-activities-sidebar-alert::before {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(249,1,1,0.07);
    pointer-events: none;
}
.illegal-activities-sidebar-alert-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.illegal-activities-sidebar-alert h4 {
    font-family: var(--ff-kan);
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.illegal-activities-sidebar-alert p {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.illegal-activities-sidebar-alert-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.illegal-activities-sidebar-alert-btn:hover { background: var(--gold); color: var(--ink); }

/* Share panel */
.illegal-activities-sidebar-share {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}
.illegal-activities-sidebar-share-title {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.illegal-activities-share-btns {
    display: flex;
    gap: 8px;
}
.illegal-activities-share-btn {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}
.illegal-activities-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--shadow); }
.illegal-activities-share-btn.whatsapp:hover { background: #25D366; color: var(--white); border-color: #25D366; }
.illegal-activities-share-btn.facebook:hover { background: #1877f2; color: var(--white); border-color: #1877f2; }
.illegal-activities-share-btn.twitter:hover  { background: var(--ink); color: var(--white); border-color: var(--ink); }
.illegal-activities-share-btn.copy:hover     { background: var(--red); color: var(--white); border-color: var(--red); }

/* ═══════════════════════════════════════════════════
   MOBILE TOC BUTTON
   ═══════════════════════════════════════════════════ */
.illegal-activities-mobile-toc-btn {
    display: none;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
}
.illegal-activities-mobile-toc-btn:hover { background: var(--red); }

/* ═══════════════════════════════════════════════════
   INTRO BANNER
   ═══════════════════════════════════════════════════ */
.illegal-activities-intro-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
.illegal-activities-intro-banner::before {
    content: '';
    position: absolute;
    right: -70px; top: -70px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(249,1,1,0.06);
    pointer-events: none;
}
.illegal-activities-intro-banner::after {
    content: '';
    position: absolute;
    left: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(242,203,7,0.06);
    pointer-events: none;
}
.illegal-activities-intro-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(249,1,1,0.12);
    border: 2px solid rgba(249,1,1,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--red);
    flex-shrink: 0;
    animation: illegal-activities-pulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.illegal-activities-intro-text {
    flex: 1;
    position: relative;
    z-index: 1;
}
.illegal-activities-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(249,1,1,0.15);
    border: 1px solid rgba(249,1,1,0.3);
    color: var(--red);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--ff-body);
}
.illegal-activities-intro-text h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.illegal-activities-intro-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.illegal-activities-intro-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.illegal-activities-intro-btn {
    padding: 9px 20px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
}
.illegal-activities-intro-btn.primary {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
}
.illegal-activities-intro-btn.primary:hover { background: var(--gold); color: var(--ink); }
.illegal-activities-intro-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.illegal-activities-intro-btn.secondary:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════
   SECTION HEADING
   ═══════════════════════════════════════════════════ */
.illegal-activities-section {
    margin-bottom: 48px;
}
.illegal-activities-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.illegal-activities-section-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.illegal-activities-section-bar {
    width: 4px;
    height: 24px;
    background: var(--red);
    border-radius: 2px;
    animation: illegal-activities-bar-pulse 2s ease-in-out infinite;
}
.illegal-activities-section-heading h2 {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 700;
}
.illegal-activities-section-tag {
    font-size: 0.72rem;
    font-family: var(--ff-body);
    color: var(--red);
    background: rgba(249,1,1,0.07);
    border: 1px solid rgba(249,1,1,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}
.illegal-activities-section-intro {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}
.illegal-activities-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
}

.illegal-activities-video-section iframe {
    border-radius: 12px;
}
/* ═══════════════════════════════════════════════════
   INDENT LINE (shared helper)
   ═══════════════════════════════════════════════════ */
.illegal-activities-indent-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
}
[data-indent="1"] .illegal-activities-indent-line { background: var(--red); }
[data-indent="2"] .illegal-activities-indent-line { background: var(--gold); }
[data-indent="3"] .illegal-activities-indent-line { background: #16a34a; }
[data-indent="4"] .illegal-activities-indent-line { background: #7c3aed; }

/* ═══════════════════════════════════════════════════
   SECTION 1 — CARDS GRID (Types of Illegal Activities)
   ═══════════════════════════════════════════════════ */
.illegal-activities-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.illegal-activities-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow  0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    opacity: 0;
    transform: translateY(28px);
}
.illegal-activities-card.illegal-activities-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.illegal-activities-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(96,20,0,0.13);
    border-color: rgba(249,1,1,0.22);
}

.illegal-activities-card-icon-wrap {
    width: 52px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    align-self: flex-start;
    margin: 16px 0 16px 16px;
    border-radius: 10px;
    transition: var(--transition);
    background: rgba(249,1,1,0.08);
    border: 1.5px solid rgba(249,1,1,0.15);
    color: var(--red);
}
[data-indent="2"] .illegal-activities-card-icon-wrap { background: rgba(242,203,7,0.1); border-color: rgba(242,203,7,0.25); color: #a0830a; }
[data-indent="3"] .illegal-activities-card-icon-wrap { background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.2); color: #16a34a; }
[data-indent="4"] .illegal-activities-card-icon-wrap { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: #7c3aed; }

.illegal-activities-card:hover .illegal-activities-card-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

.illegal-activities-card-body {
    flex: 1;
    padding: 16px 16px 16px 12px;
}
.illegal-activities-card-label {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 5px;
}
.illegal-activities-card-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 7px;
}
.illegal-activities-card-desc {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 10px;
}
.illegal-activities-card-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.illegal-activities-tag {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(249,1,1,0.08);
    color: var(--red);
    border: 1px solid rgba(249,1,1,0.15);
}
.illegal-activities-tag.gold   { background: rgba(242,203,7,0.12); color: #a0830a; border-color: rgba(242,203,7,0.3); }
.illegal-activities-tag.green  { background: rgba(22,163,74,0.08); color: #15803d; border-color: rgba(22,163,74,0.2); }
.illegal-activities-tag.purple { background: rgba(124,58,237,0.08); color: #6d28d9; border-color: rgba(124,58,237,0.2); }

/* ═══════════════════════════════════════════════════
   SECTION 2 — ACCORDION (Legal Framework)
   ═══════════════════════════════════════════════════ */
.illegal-activities-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.illegal-activities-accord-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.illegal-activities-accord-item:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
}
.illegal-activities-accord-item.open {
    border-color: rgba(249,1,1,0.3);
    box-shadow: 0 6px 24px var(--shadow);
}
.illegal-activities-accord-head {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 600;
    transition: var(--transition);
    text-align: left;
}
.illegal-activities-accord-head:hover { color: var(--red); }
.illegal-activities-accord-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.illegal-activities-accord-num {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.5;
    min-width: 22px;
    transition: var(--transition);
}
.illegal-activities-accord-item.open .illegal-activities-accord-num { opacity: 1; }
.illegal-activities-accord-icon {
    font-size: 0.75rem;
    color: var(--muted);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
    flex-shrink: 0;
}
.illegal-activities-accord-item.open .illegal-activities-accord-icon {
    transform: rotate(180deg);
    color: var(--red);
}
.illegal-activities-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1), padding 0.4s;
    padding: 0 20px 0 54px;
}
.illegal-activities-accord-item.open .illegal-activities-accord-body {
    max-height: 220px;
    padding: 0 20px 16px 54px;
}
.illegal-activities-accord-body p {
    font-family: var(--ff-kan);
    font-size: 0.83rem;
    color: var(--ink-mid);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   SECTION 3 — TIMELINE (Historical Cases)
   ═══════════════════════════════════════════════════ */
.illegal-activities-timeline {
    position: relative;
    padding-left: 32px;
}
.illegal-activities-timeline::before {
    content: '';
    position: absolute;
    left: 11px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--gold), #16a34a, #7c3aed);
    border-radius: 2px;
}
.illegal-activities-timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.illegal-activities-timeline-item.illegal-activities-revealed {
    opacity: 1;
    transform: translateX(0);
    transition: none;
}
.illegal-activities-timeline-item:nth-child(1) { transition-delay: 0.05s; }
.illegal-activities-timeline-item:nth-child(2) { transition-delay: 0.15s; }
.illegal-activities-timeline-item:nth-child(3) { transition-delay: 0.25s; }
.illegal-activities-timeline-item:nth-child(4) { transition-delay: 0.35s; }

.illegal-activities-timeline-dot {
    position: absolute;
    left: -27px; top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}
.illegal-activities-timeline-item:nth-child(2) .illegal-activities-timeline-dot { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.illegal-activities-timeline-item:nth-child(3) .illegal-activities-timeline-dot { background: #16a34a; box-shadow: 0 0 0 2px #16a34a; }
.illegal-activities-timeline-dot.last { background: #7c3aed; box-shadow: 0 0 0 2px #7c3aed; animation: illegal-activities-pulse 2s ease-in-out infinite; }

.illegal-activities-timeline-content {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    flex: 1;
    transition: var(--transition);
}
.illegal-activities-timeline-content:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
    transform: translateX(4px);
}
.illegal-activities-timeline-year {
    font-family: var(--ff-head);
    font-size: 0.88rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.illegal-activities-timeline-content h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
}
.illegal-activities-timeline-content p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   SECTION 4 — IMPACT GRID (with progress)
   ═══════════════════════════════════════════════════ */
.illegal-activities-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.illegal-activities-impact-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.illegal-activities-impact-card.illegal-activities-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.illegal-activities-impact-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.illegal-activities-impact-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 12px;
    transition: var(--transition);
}
[data-indent="2"] .illegal-activities-impact-icon { color: var(--gold); }
[data-indent="3"] .illegal-activities-impact-icon { color: #7c3aed; }
[data-indent="4"] .illegal-activities-impact-icon { color: #16a34a; }

.illegal-activities-impact-card:hover .illegal-activities-impact-icon { transform: scale(1.15); }
.illegal-activities-impact-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.illegal-activities-impact-card p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}
.illegal-activities-progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 6px;
}
.illegal-activities-progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.illegal-activities-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--red);
    transition: width 1s cubic-bezier(0.25,0.8,0.25,1);
}
[data-indent="2"] .illegal-activities-progress-fill { background: var(--gold); }
[data-indent="3"] .illegal-activities-progress-fill { background: #7c3aed; }
[data-indent="4"] .illegal-activities-progress-fill { background: #16a34a; }

/* ═══════════════════════════════════════════════════
   SECTION 5 — CONSTITUTION ARTICLES GRID
   ═══════════════════════════════════════════════════ */
.illegal-activities-law-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.illegal-activities-law-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px 20px 20px 24px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}
.illegal-activities-law-card.illegal-activities-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.illegal-activities-law-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.illegal-activities-law-num {
    font-family: var(--ff-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.12;
    line-height: 1;
    position: absolute;
    right: 16px; top: 14px;
    transition: var(--transition);
}
[data-indent="2"] .illegal-activities-law-num { color: var(--gold); }
[data-indent="3"] .illegal-activities-law-num { color: #16a34a; }
[data-indent="4"] .illegal-activities-law-num { color: #7c3aed; }
.illegal-activities-law-card:hover .illegal-activities-law-num { opacity: 0.25; }

.illegal-activities-law-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.illegal-activities-law-body p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   SECTION 6 — CULTURE / AWARENESS CARDS
   ═══════════════════════════════════════════════════ */
.illegal-activities-awareness-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.illegal-activities-awareness-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px 20px;
    position: relative;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}
.illegal-activities-awareness-card.illegal-activities-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.illegal-activities-awareness-card:hover {
    border-color: rgba(249,1,1,0.22);
    box-shadow: 0 10px 32px var(--shadow);
    transform: translateY(-5px);
}
.illegal-activities-awareness-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(249,1,1,0.08);
    border: 2px solid rgba(249,1,1,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--red);
    margin: 0 auto 14px;
    transition: var(--transition);
}
[data-indent="2"] .illegal-activities-awareness-icon-wrap { background: rgba(242,203,7,0.1); border-color: rgba(242,203,7,0.25); color: #a0830a; }
[data-indent="3"] .illegal-activities-awareness-icon-wrap { background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.2); color: #16a34a; }
[data-indent="4"] .illegal-activities-awareness-icon-wrap { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: #7c3aed; }
.illegal-activities-awareness-card:hover .illegal-activities-awareness-icon-wrap { transform: scale(1.1) rotate(-5deg); }

.illegal-activities-awareness-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.illegal-activities-awareness-card p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════ */
.illegal-activities-cta {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}
.illegal-activities-cta::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(249,1,1,0.06);
    pointer-events: none;
}
.illegal-activities-cta-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: var(--red);
}
.illegal-activities-cta h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.illegal-activities-cta p {
    color: rgba(255,255,255,0.6);
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.illegal-activities-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.illegal-activities-cta-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.illegal-activities-cta-btn.primary { background: var(--red); color: var(--white); }
.illegal-activities-cta-btn.primary:hover { background: var(--gold); color: var(--ink); }
.illegal-activities-cta-btn.secondary { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.illegal-activities-cta-btn.secondary:hover { background: rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .illegal-activities-layout {
        grid-template-columns: 1fr;
        padding: 24px 16px 48px;
        gap: 0;
    }

    /* Sidebar becomes a slide-down drawer */
    .illegal-activities-sidebar {
        position: static;
        display: none;
        margin-bottom: 20px;
    }
    .illegal-activities-sidebar.open {
        display: block;
    }
    .illegal-activities-mobile-toc-btn {
        display: flex;
    }

    /* Stats strip */
    .illegal-activities-stats-inner {
        flex-wrap: wrap;
    }
    .illegal-activities-stat-item {
        padding: 18px 20px;
        max-width: 50%;
        flex: 0 0 50%;
    }
    .illegal-activities-stat-divider { display: none; }

    /* Cards 1 column */
    .illegal-activities-cards-grid,
    .illegal-activities-impact-grid,
    .illegal-activities-law-grid,
    .illegal-activities-awareness-grid { grid-template-columns: 1fr; }

    /* Intro banner stack */
    .illegal-activities-intro-banner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 24px 20px;
    }
    .illegal-activities-intro-actions { justify-content: center; }

    /* Section heading wrap */
    .illegal-activities-section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .illegal-activities-stat-item {
        padding: 16px 12px;
    }
    .illegal-activities-stat-num { font-size: 1.7rem; }

    .illegal-activities-intro-banner { padding: 20px 16px; border-radius: 12px; }
    .illegal-activities-intro-text h3 { font-size: 1.1rem; }
    .illegal-activities-intro-icon-wrap { width: 70px; height: 70px; font-size: 1.5rem; }

    .illegal-activities-card { flex-direction: column; }
    .illegal-activities-card-icon-wrap { margin: 14px 0 0 14px; }

    .illegal-activities-accordion .illegal-activities-accord-body,
    .illegal-activities-accord-item.open .illegal-activities-accord-body {
        padding-left: 18px;
    }

    .illegal-activities-timeline { padding-left: 22px; }
    .illegal-activities-timeline-dot { left: -18px; }

    .illegal-activities-cta { padding: 28px 18px; border-radius: 12px; }
    .illegal-activities-cta h3 { font-size: 1rem; }

    .illegal-activities-section-heading h2 { font-size: 0.95rem; }
    .illegal-activities-section-tag { font-size: 0.65rem; }

    .illegal-activities-intro-actions { flex-direction: column; }
    .illegal-activities-intro-btn { justify-content: center; }

    .illegal-activities-cta-btns { flex-direction: column; align-items: stretch; }
}



/* =================================================
                    Entertainment
================================================= */
/* ═══════════════════════════════════════════════════════════
   ENTERTAINMENT.CSS — Karnataka Rakshana Vedike
   All class names prefixed with: entertainment-
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   KEYFRAME ANIMATIONS
   ───────────────────────────────────────────── */
@keyframes entertainment-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes entertainment-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,1,1,0.3); }
    50%       { box-shadow: 0 0 0 10px rgba(249,1,1,0); }
}
@keyframes entertainment-bar-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
@keyframes entertainment-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes entertainment-spin-slow {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes entertainment-slide-in-left {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes entertainment-slide-in-right {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes entertainment-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes entertainment-scale-in {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes entertainment-glow {
    0%, 100% { text-shadow: 0 0 8px rgba(242,203,7,0.5); }
    50%       { text-shadow: 0 0 20px rgba(242,203,7,0.9), 0 0 40px rgba(242,203,7,0.4); }
}

/* ─────────────────────────────────────────────
   MAIN LAYOUT
   ───────────────────────────────────────────── */
.entertainment-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ─────────────────────────────────────────────
   SIDEBAR
   ───────────────────────────────────────────── */
.entertainment-sidebar {
    position: sticky;
    top: 88px;
}
.entertainment-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.entertainment-sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
}
.entertainment-sidebar-head i { color: var(--gold); }

.entertainment-toc {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.entertainment-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition);
    line-height: 1.4;
}
.entertainment-toc-link i {
    font-size: 0.6rem;
    color: var(--muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.entertainment-toc-link:hover,
.entertainment-toc-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(249,1,1,0.04);
}
.entertainment-toc-link:hover i,
.entertainment-toc-link.active i { color: var(--red); }

/* Sidebar promo */
.entertainment-sidebar-ad {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: 24px 18px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.entertainment-sidebar-ad::before {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(242,203,7,0.07);
    pointer-events: none;
}
.entertainment-sidebar-ad-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    animation: entertainment-float 2.5s ease-in-out infinite;
    display: block;
}
.entertainment-sidebar-ad h4 {
    font-family: var(--ff-kan);
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.entertainment-sidebar-ad p {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.entertainment-sidebar-ad-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.entertainment-sidebar-ad-btn:hover { background: var(--white); transform: translateY(-2px); }

/* Share panel */
.entertainment-sidebar-share {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}
.entertainment-sidebar-share-title {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.entertainment-share-btns {
    display: flex;
    gap: 8px;
}
.entertainment-share-btn {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}
.entertainment-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--shadow); }
.entertainment-share-btn.whatsapp:hover  { background: #25D366; color: var(--white); border-color: #25D366; }
.entertainment-share-btn.facebook:hover  { background: #1877f2; color: var(--white); border-color: #1877f2; }
.entertainment-share-btn.twitter:hover   { background: var(--ink); color: var(--white); border-color: var(--ink); }
.entertainment-share-btn.copy:hover      { background: var(--red); color: var(--white); border-color: var(--red); }

/* ─────────────────────────────────────────────
   MOBILE TOC BUTTON
   ───────────────────────────────────────────── */
.entertainment-mobile-toc-btn {
    display: none;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
}
.entertainment-mobile-toc-btn:hover { background: var(--red); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL — BASE STATE
   ───────────────────────────────────────────── */
.entertainment-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s cubic-bezier(0.25,0.8,0.25,1),
                transform 0.55s cubic-bezier(0.25,0.8,0.25,1);
}
.entertainment-reveal.entertainment-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

/* ─────────────────────────────────────────────
   INTRO BANNER
   ───────────────────────────────────────────── */
.entertainment-intro-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #2a0d00 60%, #1a0a00 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
.entertainment-intro-banner::before {
    content: '';
    position: absolute;
    right: -70px; top: -70px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(242,203,7,0.06);
    pointer-events: none;
    animation: entertainment-spin-slow 20s linear infinite;
}
.entertainment-intro-banner::after {
    content: '';
    position: absolute;
    left: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(249,1,1,0.06);
    pointer-events: none;
}

/* decorative film-strip dots */
.entertainment-intro-banner .entertainment-dots {
    position: absolute;
    top: 12px; right: 20px;
    display: flex;
    gap: 4px;
    opacity: 0.25;
}
.entertainment-intro-banner .entertainment-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: entertainment-float 2s ease-in-out infinite;
}
.entertainment-intro-banner .entertainment-dots span:nth-child(2) { animation-delay: 0.3s; }
.entertainment-intro-banner .entertainment-dots span:nth-child(3) { animation-delay: 0.6s; }

.entertainment-intro-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(242,203,7,0.12);
    border: 2px solid rgba(242,203,7,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    animation: entertainment-pulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.entertainment-intro-text {
    flex: 1;
    position: relative;
    z-index: 1;
}
.entertainment-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(242,203,7,0.15);
    border: 1px solid rgba(242,203,7,0.3);
    color: var(--gold);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--ff-body);
}
.entertainment-intro-text h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.4;
    animation: entertainment-glow 4s ease-in-out infinite;
}
.entertainment-intro-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.6;
    font-family: var(--ff-kan);
}
.entertainment-intro-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.entertainment-intro-btn {
    padding: 9px 20px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
}
.entertainment-intro-btn.primary {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
}
.entertainment-intro-btn.primary:hover  { background: var(--white); transform: translateY(-2px); }
.entertainment-intro-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.entertainment-intro-btn.secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   SECTION HEADING
   ───────────────────────────────────────────── */
.entertainment-section {
    margin-bottom: 48px;
}
.entertainment-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.entertainment-section-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.entertainment-section-bar {
    width: 4px;
    height: 24px;
    background: var(--red);
    border-radius: 2px;
    animation: entertainment-bar-pulse 2s ease-in-out infinite;
}
.entertainment-section-heading h2 {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 700;
}
.entertainment-section-tag {
    font-size: 0.72rem;
    font-family: var(--ff-body);
    color: var(--red);
    background: rgba(249,1,1,0.07);
    border: 1px solid rgba(249,1,1,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}
.entertainment-section-intro {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

/* ─────────────────────────────────────────────
   INDENT LINES — 4 levels
   ───────────────────────────────────────────── */
.entertainment-card-indent-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
    background: var(--red);
    opacity: 0.7;
}
[data-indent="2"] .entertainment-card-indent-line { background: var(--gold); }
[data-indent="3"] .entertainment-card-indent-line { background: #16a34a; }
[data-indent="4"] .entertainment-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   CARDS GRID (Section 1 — Cinema)
   ───────────────────────────────────────────── */
.entertainment-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.entertainment-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    opacity: 0;
    transform: translateY(28px);
}
.entertainment-card {
    flex-direction: column;   /* stack media on top, body below */
}

.entertainment-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.entertainment-card-media img,
.entertainment-card-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.entertainment-card-body {
    padding: 14px 16px 16px;
}
.entertainment-card.entertainment-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.entertainment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(96,20,0,0.13);
    border-color: rgba(249,1,1,0.22);
}

.entertainment-card-icon-wrap {
    width: 52px;
    min-height: 52px;
    background: rgba(var(--icon-color, 249,1,1), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--icon-color, var(--red));
    flex-shrink: 0;
    align-self: flex-start;
    margin: 16px 0 16px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(var(--icon-color, 249,1,1), 0.15);
    transition: var(--transition);
}
.entertainment-card:hover .entertainment-card-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
}

.entertainment-card-body {
    flex: 1;
    padding: 16px 16px 16px 12px;
}
.entertainment-card-article {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 5px;
}
.entertainment-card-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 7px;
}
.entertainment-card-desc {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 10px;
}
.entertainment-card-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.entertainment-tag {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(249,1,1,0.08);
    color: var(--red);
    border: 1px solid rgba(249,1,1,0.15);
}
.entertainment-tag.gold   { background: rgba(242,203,7,0.12);  color: #a0830a; border-color: rgba(242,203,7,0.3); }
.entertainment-tag.green  { background: rgba(22,163,74,0.08);  color: #15803d; border-color: rgba(22,163,74,0.2); }
.entertainment-tag.purple { background: rgba(124,58,237,0.08); color: #6d28d9; border-color: rgba(124,58,237,0.2); }

/* ─────────────────────────────────────────────
   ACCORDION (Section 2 — Music)
   ───────────────────────────────────────────── */
.entertainment-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.entertainment-accord-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.entertainment-accord-item:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
}
.entertainment-accord-item.open {
    border-color: rgba(249,1,1,0.3);
    box-shadow: 0 6px 24px var(--shadow);
}
.entertainment-accord-head {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 600;
    transition: var(--transition);
    text-align: left;
}
.entertainment-accord-head:hover { color: var(--red); }
.entertainment-accord-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.entertainment-accord-num {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.5;
    min-width: 22px;
    transition: var(--transition);
}
.entertainment-accord-item.open .entertainment-accord-num { opacity: 1; }
.entertainment-accord-icon {
    font-size: 0.75rem;
    color: var(--muted);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
    flex-shrink: 0;
}
.entertainment-accord-item.open .entertainment-accord-icon {
    transform: rotate(180deg);
    color: var(--red);
}
.entertainment-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1), padding 0.4s;
    padding: 0 20px 0 54px;
}
.entertainment-accord-item.open .entertainment-accord-body {
    max-height: 200px;
    padding: 0 20px 16px 54px;
}
.entertainment-accord-body p {
    font-family: var(--ff-kan);
    font-size: 0.83rem;
    color: var(--ink-mid);
    line-height: 1.65;
}

/* Accordion indent lines */
.entertainment-accord-item[data-indent="1"] .entertainment-card-indent-line { background: var(--red); }
.entertainment-accord-item[data-indent="2"] .entertainment-card-indent-line { background: var(--gold); }
.entertainment-accord-item[data-indent="3"] .entertainment-card-indent-line { background: #16a34a; }
.entertainment-accord-item[data-indent="4"] .entertainment-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   TIMELINE (Section 3 — Theatre)
   ───────────────────────────────────────────── */
.entertainment-timeline {
    position: relative;
    padding-left: 32px;
}
.entertainment-timeline::before {
    content: '';
    position: absolute;
    left: 11px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--gold), #16a34a, #7c3aed);
    border-radius: 2px;
}
.entertainment-timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.entertainment-timeline-item.entertainment-revealed {
    opacity: 1;
    transform: translateX(0);
    transition: none;
}
.entertainment-timeline-item:nth-child(1) { transition-delay: 0.05s; }
.entertainment-timeline-item:nth-child(2) { transition-delay: 0.15s; }
.entertainment-timeline-item:nth-child(3) { transition-delay: 0.25s; }
.entertainment-timeline-item:nth-child(4) { transition-delay: 0.35s; }

.entertainment-timeline-dot {
    position: absolute;
    left: -27px; top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}
.entertainment-timeline-item:nth-child(2) .entertainment-timeline-dot { background: var(--gold);  box-shadow: 0 0 0 2px var(--gold); }
.entertainment-timeline-item:nth-child(3) .entertainment-timeline-dot { background: #16a34a; box-shadow: 0 0 0 2px #16a34a; }
.entertainment-timeline-dot.last {
    background: #7c3aed;
    box-shadow: 0 0 0 2px #7c3aed;
    animation: entertainment-pulse 2s ease-in-out infinite;
}
.entertainment-timeline-content {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    flex: 1;
    transition: var(--transition);
}
.entertainment-timeline-content:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
    transform: translateX(4px);
}
.entertainment-timeline-year {
    font-family: var(--ff-head);
    font-size: 0.88rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.entertainment-timeline-content h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
}
.entertainment-timeline-content p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ─────────────────────────────────────────────
   EMPLOY/FOLK GRID (Section 4)
   ───────────────────────────────────────────── */
.entertainment-employ-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.entertainment-employ-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.entertainment-employ-card.entertainment-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.entertainment-employ-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.entertainment-employ-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 12px;
    transition: var(--transition);
    display: block;
}
.entertainment-employ-card:nth-child(2) .entertainment-employ-icon { color: var(--gold); }
.entertainment-employ-card:nth-child(3) .entertainment-employ-icon { color: #7c3aed; }
.entertainment-employ-card:nth-child(4) .entertainment-employ-icon { color: #16a34a; }
.entertainment-employ-card:hover .entertainment-employ-icon {
    transform: scale(1.18) rotate(-5deg);
}
.entertainment-employ-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.entertainment-employ-card p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}
.entertainment-employ-progress { margin-top: 4px; }
.entertainment-employ-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-family: var(--ff-body);
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.entertainment-employ-bar {
    height: 5px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.entertainment-employ-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.25,0.8,0.25,1);
}
.entertainment-employ-card:nth-child(2) .entertainment-employ-bar-fill {
    background: linear-gradient(90deg, var(--gold), #f0a500);
}
.entertainment-employ-card:nth-child(3) .entertainment-employ-bar-fill {
    background: linear-gradient(90deg, #7c3aed, #a855f7);
}
.entertainment-employ-card:nth-child(4) .entertainment-employ-bar-fill {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

/* ─────────────────────────────────────────────
   CONSTITUTION-STYLE GRID (Section 5 — Digital)
   ───────────────────────────────────────────── */
.entertainment-constitution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.entertainment-const-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px 20px 20px 24px;
    display: flex;
    gap: 16px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.entertainment-const-card.entertainment-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.entertainment-const-card:hover {
    border-color: rgba(249,1,1,0.22);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.entertainment-const-num {
    font-family: var(--ff-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.18;
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}
.entertainment-const-card:hover .entertainment-const-num { opacity: 0.6; }
.entertainment-const-body { flex: 1; }
.entertainment-const-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
}
.entertainment-const-body p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}
/* Const-card indent per data-indent */
.entertainment-const-card[data-indent="1"] .entertainment-card-indent-line { background: var(--red); }
.entertainment-const-card[data-indent="2"] .entertainment-card-indent-line { background: var(--gold); }
.entertainment-const-card[data-indent="3"] .entertainment-card-indent-line { background: #16a34a; }
.entertainment-const-card[data-indent="4"] .entertainment-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   CULTURE / EVENTS GRID (Section 6)
   ───────────────────────────────────────────── */
.entertainment-culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.entertainment-culture-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(24px);
    text-align: center;
}
.entertainment-culture-card.entertainment-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.entertainment-culture-card:hover {
    border-color: rgba(249,1,1,0.22);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-5px);
}
.entertainment-culture-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249,1,1,0.07);
    border: 2px solid rgba(249,1,1,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red);
    margin: 0 auto 14px;
    transition: var(--transition);
}
.entertainment-culture-card:nth-child(2) .entertainment-culture-icon-wrap {
    background: rgba(242,203,7,0.1);
    border-color: rgba(242,203,7,0.25);
    color: #a0830a;
}
.entertainment-culture-card:nth-child(3) .entertainment-culture-icon-wrap {
    background: rgba(124,58,237,0.07);
    border-color: rgba(124,58,237,0.2);
    color: #7c3aed;
}
.entertainment-culture-card:nth-child(4) .entertainment-culture-icon-wrap {
    background: rgba(22,163,74,0.07);
    border-color: rgba(22,163,74,0.2);
    color: #16a34a;
}
.entertainment-culture-card:hover .entertainment-culture-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}
.entertainment-culture-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.entertainment-culture-card p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ─────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────── */
.entertainment-cta {
    margin-top: 12px;
}
.entertainment-cta-inner {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.entertainment-cta-inner::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(242,203,7,0.05);
    pointer-events: none;
}
.entertainment-cta-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    animation: entertainment-float 3s ease-in-out infinite;
    display: block;
}
.entertainment-cta-inner h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.entertainment-cta-inner p {
    font-family: var(--ff-kan);
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.entertainment-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.entertainment-cta-btn {
    padding: 11px 28px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-weight: 700;
}
.entertainment-cta-btn.primary {
    background: var(--gold);
    color: var(--ink);
}
.entertainment-cta-btn.primary:hover  { background: var(--white); transform: translateY(-2px); }
.entertainment-cta-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.entertainment-cta-btn.secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .entertainment-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
        padding: 32px 20px 48px;
    }
    .entertainment-stat-item {
        padding: 22px 20px;
    }
    .entertainment-stat-num { font-size: 1.9rem; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — iPad (≤ 860px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
    /* Layout: sidebar hidden by default, overlay on mobile */
    .entertainment-layout {
        grid-template-columns: 1fr;
        padding: 24px 16px 48px;
    }

    .entertainment-sidebar {
        position: fixed;
        top: 0; left: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        overflow-y: auto;
        padding: 80px 16px 40px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        transition: left 0.4s cubic-bezier(0.25,0.8,0.25,1);
    }
    .entertainment-sidebar.open {
        left: 0;
    }

    .entertainment-mobile-toc-btn {
        display: flex;
    }

    .entertainment-stats-inner {
        flex-wrap: wrap;
        gap: 0;
    }
    .entertainment-stat-item {
        flex: 1 1 45%;
        padding: 18px 12px;
        max-width: none;
    }
    .entertainment-stat-divider {
        display: none;
    }
    .entertainment-stat-num { font-size: 1.7rem; }

    .entertainment-cards-grid,
    .entertainment-employ-grid,
    .entertainment-constitution-grid,
    .entertainment-culture-grid {
        grid-template-columns: 1fr;
    }

    .entertainment-intro-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 18px;
    }
    .entertainment-intro-actions {
        justify-content: center;
    }

    .entertainment-section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 540px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
    .entertainment-stats-strip {
        padding: 0 12px;
    }
    .entertainment-stat-item {
        flex: 1 1 48%;
        padding: 14px 8px;
    }
    .entertainment-stat-num { font-size: 1.5rem; }
    .entertainment-stat-label { font-size: 0.68rem; }

    .entertainment-layout {
        padding: 16px 12px 40px;
    }

    .entertainment-intro-banner {
        padding: 20px 16px;
        border-radius: 12px;
    }
    .entertainment-intro-icon-wrap {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    .entertainment-intro-text h3 { font-size: 1.1rem; }
    .entertainment-intro-text p  { font-size: 0.8rem; }

    .entertainment-intro-actions {
        flex-direction: column;
        gap: 8px;
    }
    .entertainment-intro-btn {
        width: 100%;
        justify-content: center;
    }

    .entertainment-section-heading h2 {
        font-size: 1rem;
    }
    .entertainment-section-tag {
        font-size: 0.68rem;
        padding: 2px 8px;
    }

    .entertainment-card {
        flex-direction: column;
    }
    .entertainment-card-icon-wrap {
        margin: 16px 0 0 16px;
        align-self: flex-start;
    }
    .entertainment-card-body {
        padding: 12px 16px 16px;
    }

    .entertainment-const-card {
        flex-direction: column;
        gap: 10px;
    }
    .entertainment-const-num {
        width: auto;
        font-size: 1.3rem;
        opacity: 0.4;
    }

    .entertainment-cta-inner {
        padding: 28px 20px;
    }
    .entertainment-cta-btn {
        width: 100%;
        padding: 12px 20px;
    }
    .entertainment-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .entertainment-timeline {
        padding-left: 24px;
    }
    .entertainment-timeline::before { left: 7px; }
    .entertainment-timeline-dot { left: -21px; width: 12px; height: 12px; }

    .entertainment-employ-card { padding: 16px; }
    .entertainment-culture-card { padding: 18px 14px; }

    .entertainment-sidebar {
        width: 100%;
        left: -110%;
        padding-top: 70px;
    }
}

/* ─────────────────────────────────────────────
   SIDEBAR OVERLAY BACKDROP (mobile)
   ───────────────────────────────────────────── */
@media (max-width: 860px) {
    .entertainment-sidebar.open::before {
        content: '';
        position: fixed;
        top: 0; left: 280px;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.35);
        z-index: -1;
    }
}

/* ================================================
            ACHIEVERS
================================================ */
/* ═══════════════════════════════════════════════════════════
   ACHIEVERS PAGE — achievers.css
   All class names prefixed with achievers-
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   KEYFRAME ANIMATIONS
   ───────────────────────────────────────────── */
@keyframes achievers-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes achievers-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,1,1,0.35); }
    50%       { box-shadow: 0 0 0 10px rgba(249,1,1,0); }
}
@keyframes achievers-bar-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
@keyframes achievers-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes achievers-spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes achievers-badge-pop {
    0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
    60%  { transform: scale(1.2) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes achievers-slide-in-left {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL BASE
   ───────────────────────────────────────────── */
.achievers-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.25,0.8,0.25,1),
                transform 0.55s cubic-bezier(0.25,0.8,0.25,1);
}
.achievers-reveal.achievers-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

/* ─────────────────────────────────────────────
   MAIN LAYOUT
   ───────────────────────────────────────────── */
.achievers-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ─────────────────────────────────────────────
   SIDEBAR
   ───────────────────────────────────────────── */
.achievers-sidebar {
    position: sticky;
    top: 88px;
}
.achievers-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.achievers-sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
}
.achievers-sidebar-head i { color: var(--gold); }

/* TOC */
.achievers-toc {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.achievers-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition);
    line-height: 1.4;
}
.achievers-toc-link i {
    font-size: 0.6rem;
    color: var(--muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.achievers-toc-link:hover,
.achievers-toc-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(249,1,1,0.04);
}
.achievers-toc-link:hover i,
.achievers-toc-link.active i { color: var(--red); }

/* Sidebar promo */
.achievers-sidebar-ad {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: 24px 18px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.achievers-sidebar-ad::before {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(242,203,7,0.07);
    pointer-events: none;
}
.achievers-sidebar-ad-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.achievers-sidebar-ad h4 {
    font-family: var(--ff-kan);
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.achievers-sidebar-ad p {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-bottom: 16px;
    line-height: 1.5;
}
.achievers-sidebar-ad-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.achievers-sidebar-ad-btn:hover { background: var(--white); }

/* Share */
.achievers-sidebar-share {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}
.achievers-sidebar-share-title {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.achievers-share-btns {
    display: flex;
    gap: 8px;
}
.achievers-share-btn {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}
.achievers-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px var(--shadow); }
.achievers-share-btn.whatsapp:hover { background:#25D366; color:var(--white); border-color:#25D366; }
.achievers-share-btn.facebook:hover { background:#1877f2; color:var(--white); border-color:#1877f2; }
.achievers-share-btn.twitter:hover  { background:var(--ink); color:var(--white); border-color:var(--ink); }
.achievers-share-btn.copy:hover     { background:var(--red); color:var(--white); border-color:var(--red); }

/* ─────────────────────────────────────────────
   MOBILE TOC BUTTON
   ───────────────────────────────────────────── */
.achievers-mobile-toc-btn {
    display: none;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
}
.achievers-mobile-toc-btn:hover { background: var(--red); }

/* ─────────────────────────────────────────────
   INTRO BANNER
   ───────────────────────────────────────────── */
.achievers-intro-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
.achievers-intro-banner::before {
    content: '';
    position: absolute;
    right: -70px; top: -70px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(242,203,7,0.06);
    pointer-events: none;
}
.achievers-intro-banner::after {
    content: '';
    position: absolute;
    left: -40px; bottom: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(249,1,1,0.06);
    pointer-events: none;
}
.achievers-intro-icon-wrap {
    width: 90px;
    height: 90px;
    background: rgba(242,203,7,0.12);
    border: 2px solid rgba(242,203,7,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
    animation: achievers-pulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.achievers-intro-text {
    flex: 1;
    position: relative;
    z-index: 1;
}
.achievers-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(242,203,7,0.15);
    border: 1px solid rgba(242,203,7,0.3);
    color: var(--gold);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--ff-body);
}
.achievers-intro-text h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.achievers-intro-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.achievers-intro-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.achievers-intro-btn {
    padding: 9px 20px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
}
.achievers-intro-btn.primary {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
}
.achievers-intro-btn.primary:hover { background: var(--white); }
.achievers-intro-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.achievers-intro-btn.secondary:hover { background: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────────
   SECTION HEADING
   ───────────────────────────────────────────── */
.achievers-section {
    margin-bottom: 48px;
}
.achievers-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.achievers-section-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.achievers-section-bar {
    width: 4px;
    height: 24px;
    background: var(--red);
    border-radius: 2px;
    animation: achievers-bar-pulse 2s ease-in-out infinite;
}
.achievers-section-heading h2 {
    font-family: var(--ff-kan);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 700;
}
.achievers-section-tag {
    font-size: 0.72rem;
    font-family: var(--ff-body);
    color: var(--red);
    background: rgba(249,1,1,0.07);
    border: 1px solid rgba(249,1,1,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}
.achievers-section-intro {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
}

/* ─────────────────────────────────────────────
   INDENT LINE (shared)
   ───────────────────────────────────────────── */
.achievers-card-indent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
    background: var(--red);
    opacity: 0.7;
}
[data-indent="2"] .achievers-card-indent-line { background: var(--gold); }
[data-indent="3"] .achievers-card-indent-line { background: #16a34a; }
[data-indent="4"] .achievers-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   TAGS
   ───────────────────────────────────────────── */
.achievers-tag {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(249,1,1,0.08);
    color: var(--red);
    border: 1px solid rgba(249,1,1,0.15);
}
.achievers-tag.gold {
    background: rgba(242,203,7,0.12);
    color: #a0830a;
    border-color: rgba(242,203,7,0.3);
}
.achievers-tag.green {
    background: rgba(22,163,74,0.08);
    color: #15803d;
    border-color: rgba(22,163,74,0.2);
}
.achievers-tag.purple {
    background: rgba(124,58,237,0.08);
    color: #6d28d9;
    border-color: rgba(124,58,237,0.2);
}

/* ─────────────────────────────────────────────
   SECTION 1 — PROFILE CARDS GRID
   ───────────────────────────────────────────── */
.achievers-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.achievers-profile-img-wrap img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.achievers-profile-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    opacity: 0;
    transform: translateY(28px);
}
.achievers-profile-card.achievers-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.achievers-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(96,20,0,0.13);
    border-color: rgba(249,1,1,0.22);
}

/* Profile image wrap */
.achievers-profile-img-wrap {
    position: relative;
    flex-shrink: 0;
    margin: 16px 0 16px 16px;
}
.achievers-profile-img-wrap img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    display: block;
    transition: var(--transition);
}
.achievers-profile-card:hover .achievers-profile-img-wrap img {
    border-color: var(--gold);
    transform: scale(1.06);
}
.achievers-profile-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    border: 2px solid var(--white);
    animation: achievers-badge-pop 0.5s cubic-bezier(0.25,0.8,0.25,1) forwards;
}
.achievers-profile-badge.gold   { background: var(--gold); color: var(--ink); }
.achievers-profile-badge.green  { background: #16a34a; }
.achievers-profile-badge.purple { background: #7c3aed; }

/* Profile body */
.achievers-profile-body {
    flex: 1;
    padding: 16px 16px 16px 12px;
}
.achievers-profile-year {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 4px;
}
.achievers-profile-name {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}
.achievers-profile-desc {
    font-family: var(--ff-kan);
    font-size: 0.79rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 10px;
}
.achievers-profile-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   SECTION 2 — ACCORDION
   ───────────────────────────────────────────── */
.achievers-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.achievers-accord-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.achievers-accord-item:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
}
.achievers-accord-item.open {
    border-color: rgba(249,1,1,0.3);
    box-shadow: 0 6px 24px var(--shadow);
}

.achievers-accord-head {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 600;
    transition: var(--transition);
    text-align: left;
}
.achievers-accord-head:hover { color: var(--red); }
.achievers-accord-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.achievers-accord-num {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.5;
    min-width: 22px;
    transition: var(--transition);
}
.achievers-accord-item.open .achievers-accord-num { opacity: 1; }
.achievers-accord-icon {
    font-size: 0.75rem;
    color: var(--muted);
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
    flex-shrink: 0;
}
.achievers-accord-item.open .achievers-accord-icon {
    transform: rotate(180deg);
    color: var(--red);
}
.achievers-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1), padding 0.4s;
    padding: 0 20px 0 54px;
}
.achievers-accord-item.open .achievers-accord-body {
    max-height: 200px;
    padding: 0 20px 16px 54px;
}
.achievers-accord-body p {
    font-family: var(--ff-kan);
    font-size: 0.83rem;
    color: var(--ink-mid);
    line-height: 1.65;
}
/* Accordion indent lines */
.achievers-accord-item[data-indent="1"] .achievers-card-indent-line { background: var(--red); }
.achievers-accord-item[data-indent="2"] .achievers-card-indent-line { background: var(--gold); }
.achievers-accord-item[data-indent="3"] .achievers-card-indent-line { background: #16a34a; }
.achievers-accord-item[data-indent="4"] .achievers-card-indent-line { background: #7c3aed; }

/* ─────────────────────────────────────────────
   SECTION 3 — TIMELINE
   ───────────────────────────────────────────── */
.achievers-timeline {
    position: relative;
    padding-left: 32px;
}
.achievers-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--gold), #16a34a, #7c3aed);
    border-radius: 2px;
}
.achievers-timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.achievers-timeline-item.achievers-revealed {
    opacity: 1;
    transform: translateX(0);
    transition: none;
}
.achievers-timeline-item:nth-child(1) { transition-delay: 0.05s; }
.achievers-timeline-item:nth-child(2) { transition-delay: 0.15s; }
.achievers-timeline-item:nth-child(3) { transition-delay: 0.25s; }
.achievers-timeline-item:nth-child(4) { transition-delay: 0.35s; }

.achievers-timeline-dot {
    position: absolute;
    left: -27px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}
.achievers-timeline-item:nth-child(2) .achievers-timeline-dot { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.achievers-timeline-item:nth-child(3) .achievers-timeline-dot { background: #16a34a; box-shadow: 0 0 0 2px #16a34a; }
.achievers-timeline-dot.last {
    background: #7c3aed;
    box-shadow: 0 0 0 2px #7c3aed;
    animation: achievers-pulse 2s ease-in-out infinite;
}
.achievers-timeline-content {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    flex: 1;
    transition: var(--transition);
}
.achievers-timeline-content:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 4px 16px var(--shadow);
    transform: translateX(4px);
}
.achievers-timeline-year {
    font-family: var(--ff-head);
    font-size: 0.88rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.achievers-timeline-content h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
}
.achievers-timeline-content p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ─────────────────────────────────────────────
   SECTION 4 — ARTS GRID
   ───────────────────────────────────────────── */
.achievers-arts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.achievers-arts-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.achievers-arts-card.achievers-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.achievers-arts-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-4px);
}
.achievers-arts-icon {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 12px;
    transition: var(--transition);
}
.achievers-arts-card:hover .achievers-arts-icon { transform: scale(1.15) rotate(-5deg); }
.achievers-arts-card h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.achievers-arts-card p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}
/* progress bars */
.achievers-arts-progress { }
.achievers-arts-progress-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--ff-body);
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.achievers-arts-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.achievers-arts-bar-fill {
    height: 100%;
    background: var(--red);
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.25,0.8,0.25,1);
}
.achievers-arts-bar-fill.gold   { background: var(--gold); }
.achievers-arts-bar-fill.green  { background: #16a34a; }
.achievers-arts-bar-fill.purple { background: #7c3aed; }

/* ─────────────────────────────────────────────
   SECTION 5 — CONSTITUTIONAL-STYLE GRID
   ───────────────────────────────────────────── */
.achievers-const-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.achievers-const-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px 20px 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.achievers-const-card.achievers-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.achievers-const-card:hover {
    border-color: rgba(249,1,1,0.2);
    box-shadow: 0 8px 28px var(--shadow);
    transform: translateY(-3px);
}
.achievers-const-num {
    font-family: var(--ff-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.18;
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition);
}
.achievers-const-card:hover .achievers-const-num { opacity: 0.5; }
.achievers-const-body h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 8px;
}
.achievers-const-body p {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────
   SECTION 6 — YOUTH CARDS GRID
   ───────────────────────────────────────────── */
.achievers-youth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.achievers-youth-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    opacity: 0;
    transform: translateY(28px);
}
.achievers-youth-card.achievers-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.achievers-youth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(96,20,0,0.13);
    border-color: rgba(249,1,1,0.22);
}
.achievers-youth-icon-wrap {
    width: 52px;
    min-height: 52px;
    background: rgba(var(--icon-color, 249,1,1), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--icon-color, var(--red));
    flex-shrink: 0;
    align-self: flex-start;
    margin: 16px 0 16px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(var(--icon-color, 249,1,1), 0.15);
    transition: var(--transition);
}
.achievers-youth-card:hover .achievers-youth-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}
.achievers-youth-body {
    flex: 1;
    padding: 16px 16px 16px 12px;
}
.achievers-youth-field {
    font-size: 0.67rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 5px;
}
.achievers-youth-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 7px;
}
.achievers-youth-desc {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 10px;
}
.achievers-youth-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────── */
.achievers-cta {
    background: linear-gradient(135deg, var(--ink) 0%, #3d1200 100%);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}
.achievers-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(242,203,7,0.05);
    pointer-events: none;
}
.achievers-cta-inner { position: relative; z-index: 1; }
.achievers-cta-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    animation: achievers-float 3s ease-in-out infinite;
}
.achievers-cta h3 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.achievers-cta p {
    color: rgba(255,255,255,0.6);
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.65;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.achievers-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.achievers-cta-btn {
    padding: 11px 28px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-weight: 700;
}
.achievers-cta-btn.primary {
    background: var(--gold);
    color: var(--ink);
}
.achievers-cta-btn.primary:hover { background: var(--white); transform: translateY(-2px); }
.achievers-cta-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.achievers-cta-btn.secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (iPad / ≤900px)
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .achievers-layout {
        grid-template-columns: 1fr;
        padding: 24px 16px 48px;
        gap: 0;
    }

    .achievers-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        overflow-y: auto;
        padding: 80px 0 40px;
        box-shadow: 4px 0 24px rgba(0,0,0,0.15);
        transition: left 0.35s cubic-bezier(0.25,0.8,0.25,1);
    }
    .achievers-sidebar.open { left: 0; }

    .achievers-mobile-toc-btn { display: flex; }

    .achievers-stats-inner {
        flex-wrap: wrap;
        gap: 0;
    }
    .achievers-stat-item {
        flex: 1 1 40%;
        min-width: 120px;
        padding: 20px 16px;
    }
    .achievers-stat-divider { display: none; }
    .achievers-stat-num { font-size: 1.7rem; }

    .achievers-profile-grid,
    .achievers-arts-grid,
    .achievers-const-grid,
    .achievers-youth-grid {
        grid-template-columns: 1fr;
    }

    .achievers-intro-banner {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    .achievers-intro-icon-wrap { width: 70px; height: 70px; font-size: 1.6rem; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤480px)
   ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .achievers-stats-strip { padding: 0 12px; }
    .achievers-stat-item {
        flex: 1 1 45%;
        padding: 16px 10px;
    }
    .achievers-stat-num { font-size: 1.4rem; }
    .achievers-stat-label { font-size: 0.68rem; }

    .achievers-layout { padding: 16px 12px 40px; }

    .achievers-intro-banner { padding: 20px 16px; gap: 12px; }
    .achievers-intro-text h3 { font-size: 1.05rem; }
    .achievers-intro-text p  { font-size: 0.78rem; }
    .achievers-intro-btn { font-size: 0.78rem; padding: 8px 14px; }

    .achievers-section-heading { flex-direction: column; align-items: flex-start; gap: 8px; }
    .achievers-section-heading h2 { font-size: 0.95rem; }

    .achievers-profile-grid,
    .achievers-arts-grid,
    .achievers-const-grid,
    .achievers-youth-grid { grid-template-columns: 1fr; }

    .achievers-profile-img-wrap img { width: 56px; height: 56px; }
    .achievers-profile-name { font-size: 0.85rem; }
    .achievers-profile-desc { font-size: 0.75rem; }

    .achievers-accord-head { font-size: 0.8rem; padding: 12px 14px; }
    .achievers-accord-body { padding: 0 14px 0 46px; }
    .achievers-accord-item.open .achievers-accord-body { padding: 0 14px 14px 46px; }

    .achievers-timeline::before { left: 9px; }
    .achievers-timeline-dot { left: -25px; width: 12px; height: 12px; }
    .achievers-timeline-content { padding: 12px 14px; }
    .achievers-timeline-content h4 { font-size: 0.82rem; }
    .achievers-timeline-content p  { font-size: 0.75rem; }

    .achievers-arts-card,
    .achievers-const-card { padding: 14px; }

    .achievers-cta { padding: 28px 16px; }
    .achievers-cta h3 { font-size: 1.05rem; }
    .achievers-cta p  { font-size: 0.8rem; }
    .achievers-cta-btns { flex-direction: column; align-items: center; }
    .achievers-cta-btn { width: 100%; max-width: 240px; }

    .achievers-section-tag { font-size: 0.65rem; }
    .achievers-section-intro { font-size: 0.82rem; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — LARGE DESKTOP (≥1400px)
   ───────────────────────────────────────────── */
@media (min-width: 1400px) {
    .achievers-layout { padding: 48px 40px 80px; }
    .achievers-stat-item { padding: 32px 60px; }
}






/* =========================================
                MOVEMENT
========================================== */


/* ─── HERO OVERRIDE (extra stats row below shared hero) ── */
.movement-hero-override {
    padding-bottom: 20px;
}
.movement-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
    flex-wrap: wrap;
    animation: mov-slide-up 0.7s 0.3s ease both;
}
.movement-hero-stat {
    text-align: center;
}
.movement-hero-stat-num {
    font-family: var(--ff-head);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}
.movement-hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    font-family: var(--ff-kan);
}

/* ─── TOOLBAR ──────────────────────────────────────────── */
.movement-toolbar {
    background: var(--cream);
    border-bottom: 1.5px solid var(--border);
    padding: 0 24px;
    position: sticky;
    top: 68px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.movement-toolbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 0;
}
.movement-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    min-width: 220px;
    flex: 1;
    max-width: 300px;
    transition: border-color 0.25s;
}
.movement-search-bar:focus-within { border-color: var(--red); }
.movement-search-bar i { color: var(--muted); font-size: 0.85rem; }
.movement-search-bar input {
    border: none;
    outline: none;
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    width: 100%;
    background: none;
    color: var(--ink);
}
.movement-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.movement-filter-tab {
    border: 1.5px solid var(--border);
    background: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    cursor: pointer;
    color: var(--muted);
    transition: var(--transition);
    white-space: nowrap;
}
.movement-filter-tab:hover,
.movement-filter-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.movement-sort-wrap { display: flex; align-items: center; gap: 8px; }
.movement-sort-wrap label { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }
.movement-sort-select {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
    outline: none;
}
.movement-sort-select:focus { border-color: var(--red); }
.movement-mobile-filter-btn {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 7px;
}

/* ─── MAIN LAYOUT ──────────────────────────────────────── */
.movement-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}

/* ─── SIDEBAR ──────────────────────────────────────────── */
.movement-sidebar { }
.movement-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.movement-sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
}
.movement-sidebar-head i { color: var(--gold); }
.movement-sidebar-body { padding: 16px 18px; }
.movement-filter-group { margin-bottom: 16px; }
.movement-filter-group:last-child { margin-bottom: 0; }
.movement-filter-group-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 10px;
    font-family: var(--ff-body);
    font-weight: 600;
}
.movement-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    transition: color 0.2s;
}
.movement-checkbox-item:hover { color: var(--red); }
.movement-checkbox-item input { accent-color: var(--red); width: 14px; height: 14px; }
.movement-price-range { display: flex; flex-direction: column; gap: 8px; }
.movement-price-range input[type=range] { accent-color: var(--red); width: 100%; }
.movement-price-vals {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
}
.movement-clear-btn {
    width: 100%;
    border: 1.5px solid var(--border);
    background: none;
    padding: 9px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.movement-clear-btn:hover { border-color: var(--red); color: var(--red); }
.movement-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }

/* Sidebar Promo */
.movement-sidebar-ad {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ink), #3d0800);
    padding: 24px 18px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.movement-sidebar-ad::before {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(242, 203, 7, 0.08);
    pointer-events: none;
}
.movement-sidebar-ad-icon { font-size: 2.5rem; margin-bottom: 12px; }
.movement-sidebar-ad h4 { font-family: var(--ff-kan); color: var(--gold); font-size: 0.95rem; margin-bottom: 8px; }
.movement-sidebar-ad p { color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; margin-bottom: 16px; line-height: 1.5; }
.movement-sidebar-ad-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.movement-sidebar-ad-btn:hover { background: var(--white); }

/* Sidebar Quick Links */
.movement-sidebar-links {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
}
.movement-sidebar-links h5 {
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: var(--ink);
    margin-bottom: 12px;
    font-weight: 700;
}
.movement-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, gap 0.2s;
}
.movement-sidebar-links a:last-child { border-bottom: none; }
.movement-sidebar-links a:hover { color: var(--red); gap: 12px; }
.movement-sidebar-links a i { font-size: 0.65rem; color: var(--red); }

/* ─── CONTENT AREA ─────────────────────────────────────── */
.movement-content { }

/* ─── FEATURED BANNER ──────────────────────────────────── */
.movement-featured-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #450e00 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.movement-featured-banner.movement-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.movement-featured-banner::before {
    content: '✊';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 200px;
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
}
.movement-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 203, 7, 0.18);
    border: 1px solid rgba(242, 203, 7, 0.35);
    color: var(--gold);
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: var(--ff-body);
    font-weight: 600;
    animation: mov-pulse 2.5s ease-in-out infinite;
}
.movement-featured-content {
    display: flex;
    gap: 28px;
    align-items: center;
}
.movement-featured-text { flex: 1; }
.movement-featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.movement-featured-year {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--ff-body);
}
.movement-featured-text h2 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.4;
}
.movement-featured-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.movement-featured-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.movement-featured-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
    border: none;
}
.movement-featured-btn.primary { background: var(--gold); color: var(--ink); font-weight: 700; }
.movement-featured-btn.primary:hover { background: var(--white); transform: translateY(-2px); }
.movement-featured-btn.secondary { background: rgba(255, 255, 255, 0.1); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.25); }
.movement-featured-btn.secondary:hover { background: rgba(255, 255, 255, 0.2); }
.movement-featured-media { position: relative; flex-shrink: 0; }
.movement-featured-img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: block;
    transition: transform 0.4s ease;
}
.movement-featured-banner:hover .movement-featured-img {
    transform: scale(1.03);
}
.movement-featured-img-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.movement-participants {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.72rem;
    font-family: var(--ff-kan);
    padding: 5px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.movement-participants i { color: var(--gold); }

/* ─── RESULTS BAR ──────────────────────────────────────── */
.movement-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}
.movement-results-count { font-size: 0.85rem; color: var(--muted); font-family: var(--ff-body); }
.movement-results-count span { color: var(--ink); font-weight: 600; }
.movement-active-filters { display: flex; gap: 6px; flex-wrap: wrap; }

/* ─── SECTION HEADING ──────────────────────────────────── */
.movement-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.movement-section-heading-left { display: flex; align-items: center; gap: 10px; }
.movement-section-bar { width: 4px; height: 22px; background: var(--red); border-radius: 2px; }
.movement-section-heading h2 { font-family: var(--ff-kan); font-size: 1.1rem; color: var(--ink); font-weight: 700; }

/* ─── TAGS (ongoing / victory) ─────────────────────────── */
.movement-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-family: var(--ff-body);
    font-weight: 600;
}
.movement-tag.ongoing {
    background: rgba(249, 1, 1, 0.1);
    color: var(--red);
    border: 1px solid rgba(249, 1, 1, 0.2);
}
.movement-tag.ongoing i { color: var(--red); font-size: 0.55rem; animation: mov-blink 1.2s ease-in-out infinite; }
.movement-tag.victory {
    background: rgba(242, 203, 7, 0.12);
    color: #9a7b00;
    border: 1px solid rgba(242, 203, 7, 0.35);
}
.movement-tag.victory i { color: #c8a200; }

/* ─── GRID ─────────────────────────────────────────────── */
.movement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─── CARD ─────────────────────────────────────────────── */
.movement-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s;
    opacity: 0;
    transform: translateY(32px);
}
.movement-card.movement-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.movement-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 50px rgba(96, 20, 0, 0.18);
    border-color: rgba(249, 1, 1, 0.3);
}

/* Card stagger delays */
.movement-card:nth-child(1) { transition-delay: 0.05s; }
.movement-card:nth-child(2) { transition-delay: 0.12s; }
.movement-card:nth-child(3) { transition-delay: 0.19s; }
.movement-card:nth-child(4) { transition-delay: 0.05s; }
.movement-card:nth-child(5) { transition-delay: 0.12s; }
.movement-card:nth-child(6) { transition-delay: 0.19s; }

.movement-card-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--cream2);
}
.movement-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.movement-card:hover .movement-card-cover img { transform: scale(1.07); }

.movement-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.67rem;
    font-weight: 700;
    font-family: var(--ff-body);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.movement-card-badge.ongoing {
    background: var(--red);
    color: var(--white);
}
.movement-card-badge.ongoing i { font-size: 0.5rem; animation: mov-blink 1.2s ease-in-out infinite; }
.movement-card-badge.victory {
    background: var(--gold);
    color: var(--ink);
}

.movement-card-year {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 0.72rem;
    font-family: var(--ff-head);
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.movement-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 10, 0, 0.88), transparent);
    padding: 18px 12px 12px;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    gap: 6px;
}
.movement-card:hover .movement-card-overlay { opacity: 1; }
.movement-overlay-btn {
    flex: 1;
    border: none;
    border-radius: 7px;
    padding: 7px 8px;
    font-size: 0.72rem;
    font-family: var(--ff-kan);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.movement-overlay-btn.primary { background: var(--red); color: var(--white); }
.movement-overlay-btn.secondary { background: rgba(255, 255, 255, 0.15); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3); }
.movement-overlay-btn:hover { opacity: 0.88; }

.movement-card-body { padding: 16px; }
.movement-card-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-family: var(--ff-body);
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 7px;
}
.movement-card-title {
    font-family: var(--ff-kan);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.movement-card-location {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-body);
}
.movement-card-location i { color: var(--red); font-size: 0.7rem; }
.movement-card-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.movement-card-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--border);
}
.movement-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--muted);
    font-family: var(--ff-body);
}
.movement-stat-item i { color: var(--red); font-size: 0.7rem; }
.movement-stat-item span { font-weight: 600; color: var(--ink-mid); }
.movement-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    gap: 8px;
}
.movement-support-btn {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 7px 14px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.movement-support-btn:hover {
    background: var(--red);
    transform: translateY(-1px);
}

/* ─── EMPTY STATE ──────────────────────────────────────── */
.movement-empty {
    text-align: center;
    padding: 60px 20px;
    display: none;
}
.movement-empty i { font-size: 3rem; color: var(--border); margin-bottom: 16px; display: block; }
.movement-empty h3 { font-family: var(--ff-kan); color: var(--ink-mid); margin-bottom: 8px; }
.movement-empty p { font-size: 0.85rem; color: var(--muted); }

/* ─── VIDEO SECTION ────────────────────────────────────── */
.movement-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 32px;
}
.movement-video-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(24px);
}
.movement-video-card.movement-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.movement-video-card:nth-child(1) { transition-delay: 0.05s; }
.movement-video-card:nth-child(2) { transition-delay: 0.12s; }
.movement-video-card:nth-child(3) { transition-delay: 0.19s; }
.movement-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.movement-video-thumb {
    position: relative;
    height: 170px;
    overflow: hidden;
    background: var(--ink);
}
.movement-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.4s;
}
.movement-video-card:hover .movement-video-thumb img {
    opacity: 0.5;
    transform: scale(1.05);
}
.movement-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--red);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s, background 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.movement-video-card:hover .movement-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--white);
}
.movement-video-duration {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    font-size: 0.7rem;
    font-family: var(--ff-body);
    padding: 2px 7px;
    border-radius: 4px;
}
.movement-video-info {
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.movement-video-info h4 {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.movement-video-info span {
    font-size: 0.72rem;
    color: var(--muted);
    white-space: nowrap;
    font-family: var(--ff-body);
}

/* ─── PAGINATION ───────────────────────────────────────── */
.movement-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.movement-page-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: var(--ff-body);
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--ink-mid);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.movement-page-btn:hover { border-color: var(--red); color: var(--red); }
.movement-page-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.movement-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── TOAST ────────────────────────────────────────────── */
.movement-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    background: var(--ink);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(80px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.movement-toast.show { transform: translateY(0); opacity: 1; }
.movement-toast i { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   TIMELINE SECTION
═══════════════════════════════════════════════════════════ */
.movement-timeline-section {
    background: linear-gradient(180deg, var(--cream) 0%, #f0ebe6 100%);
    padding: 72px 24px;
    overflow: hidden;
}
.movement-timeline-inner { max-width: 900px; margin: 0 auto; }
.movement-timeline-heading {
    text-align: center;
    margin-bottom: 56px;
}
.movement-timeline-heading h2 {
    font-family: var(--ff-kan);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 10px;
}
.movement-timeline-heading p {
    color: var(--muted);
    font-size: 0.9rem;
    font-family: var(--ff-body);
}

/* The vertical line */
.movement-timeline {
    position: relative;
    padding: 0;
}
.movement-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(180deg, var(--red), var(--gold));
    border-radius: 2px;
}

/* Each item */
.movement-timeline-item {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-bottom: 48px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.movement-timeline-item.movement-revealed { opacity: 1; transform: none !important;
    transition: none;
}
.movement-timeline-item.left {
    justify-content: flex-end;
    padding-right: calc(50% + 36px);
    transform: translateX(-30px);
}
.movement-timeline-item.right {
    justify-content: flex-start;
    padding-left: calc(50% + 36px);
    transform: translateX(30px);
}
.movement-timeline-item:last-child { margin-bottom: 0; }

/* Dot on the line */
.movement-timeline-dot {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(249, 1, 1, 0.25);
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
}
.movement-timeline-item:hover .movement-timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 6px rgba(249, 1, 1, 0.15);
}

/* Content bubble */
.movement-timeline-content {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    max-width: 340px;
    width: 100%;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.movement-timeline-item:hover .movement-timeline-content {
    box-shadow: 0 8px 28px rgba(96, 20, 0, 0.12);
    border-color: rgba(249, 1, 1, 0.25);
}

/* Arrow for left items */
.movement-timeline-item.left .movement-timeline-content::after {
    content: '';
    position: absolute;
    top: 14px;
    right: -9px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-right: 1.5px solid var(--border);
    border-top: 1.5px solid var(--border);
    transform: rotate(45deg);
    border-radius: 0 3px 0 0;
}
/* Arrow for right items */
.movement-timeline-item.right .movement-timeline-content::after {
    content: '';
    position: absolute;
    top: 14px;
    left: -9px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-left: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    transform: rotate(45deg);
    border-radius: 0 0 0 3px;
}
.movement-timeline-year {
    font-family: var(--ff-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}
.movement-timeline-content h4 {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.movement-timeline-content p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 10px;
}
.movement-timeline-tag { }

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════════════════════ */
.movement-gallery-section {
    background: var(--ink);
    padding: 60px 24px;
}
.movement-gallery-inner { max-width: 1280px; margin: 0 auto; }
.movement-gallery-heading {
    margin-bottom: 28px;
}
.movement-gallery-heading h2 {
    font-family: var(--ff-kan);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: var(--white);
    font-weight: 700;
}
.movement-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}
.movement-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.movement-gallery-item.movement-revealed {
    opacity: 1;
    transform: scale(1);
    transition: none;
}
.movement-gallery-item:nth-child(1) { transition-delay: 0.05s; }
.movement-gallery-item:nth-child(2) { transition-delay: 0.12s; }
.movement-gallery-item:nth-child(3) { transition-delay: 0.19s; }
.movement-gallery-item:nth-child(4) { transition-delay: 0.26s; }
.movement-gallery-item:nth-child(5) { transition-delay: 0.33s; }
.movement-gallery-item.large {
    grid-row: 1 / 3;
}
.movement-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.movement-gallery-item:hover img { transform: scale(1.07); }
.movement-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    padding: 16px 14px 12px;
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.movement-gallery-item:hover .movement-gallery-caption { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes mov-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes mov-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes mov-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(242, 203, 7, 0.2); }
    50%       { box-shadow: 0 0 0 6px rgba(242, 203, 7, 0); }
}
@keyframes mov-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}
@keyframes mov-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .movement-layout { grid-template-columns: 220px 1fr; gap: 24px; }
    .movement-grid { grid-template-columns: repeat(2, 1fr); }
    .movement-video-grid { grid-template-columns: repeat(2, 1fr); }
    .movement-featured-img { width: 200px; height: 150px; }
    .movement-gallery-grid {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .movement-gallery-item.large { grid-row: 1 / 3; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT (≤ 900px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .movement-layout { grid-template-columns: 1fr; }
    .movement-sidebar { display: none; }
    .movement-sidebar.open { display: block; }
    .movement-featured-content { flex-direction: column; }
    .movement-featured-img { width: 100%; max-width: 360px; align-self: center; height: 200px; }
    .movement-featured-text h2 { font-size: 1.2rem; }
    .movement-toolbar-inner { flex-direction: column; align-items: flex-start; }
    .movement-timeline::before { left: 20px; transform: none; }
    .movement-timeline-item.left,
    .movement-timeline-item.right {
        justify-content: flex-start;
        padding-left: 54px;
        padding-right: 0;
    }
    .movement-timeline-dot { left: 20px; }
    .movement-timeline-item.left .movement-timeline-content::after { display: none; }
    .movement-timeline-item.right .movement-timeline-content::after { display: none; }
    .movement-timeline-content { max-width: 100%; }
    .movement-timeline-item { transform: translateX(-20px) !important; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .movement-grid { grid-template-columns: 1fr; gap: 16px; }
    .movement-video-grid { grid-template-columns: 1fr; }
    .movement-layout { padding: 24px 16px 40px; }
    .movement-toolbar { padding: 0 16px; }
    .movement-toolbar-inner { gap: 10px; }
    .movement-search-bar { max-width: 100%; min-width: unset; }
    .movement-filter-tabs { display: none; }
    .movement-sort-wrap { display: none; }
    .movement-mobile-filter-btn { display: flex !important; }
    .movement-hero-stats { gap: 20px; }
    .movement-hero-stat-num { font-size: 1.6rem; }
    .movement-featured-banner { padding: 22px 18px; }
    .movement-featured-badge { display: none; }
    .movement-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 140px);
    }
    .movement-gallery-item.large { grid-row: 1 / 2; grid-column: 1 / 3; }
    .movement-timeline-section { padding: 48px 16px; }
    .movement-gallery-section { padding: 40px 16px; }
    .movement-results-bar { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .movement-card-body { padding: 12px; }
    .movement-card-cover { height: 180px; }
    .movement-card-title { font-size: 0.85rem; }
    .movement-support-btn { padding: 6px 10px; font-size: 0.72rem; }
    .movement-featured-text h2 { font-size: 1rem; }
    .movement-hero-stats { gap: 14px; }
    .movement-hero-stat-num { font-size: 1.4rem; }
}



/* ===========================================
        STRUGGLE IS INSPIRATION
=========================================== */
/* ═══════════════════════════════════════════════════════════════════
   STRUGGLE IS INSPIRATION — struggle-inspiration.css
   All class names prefixed: struggle-inspiration-
   ═══════════════════════════════════════════════════════════════════ */

/* ─── PAGE WRAPPER ─────────────────────────────────────────────── */
.struggle-inspiration-page {
    background: var(--cream, #faf7f2);
}

/* ─── HERO ENHANCEMENTS ─────────────────────────────────────────── */
.struggle-inspiration-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 64px !important;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* Animated red/gold glow overlay */
.struggle-inspiration-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(249,1,1,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(242,203,7,0.12) 0%, transparent 50%);
    animation: struggle-inspiration-pulse 6s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Fist watermark */
.struggle-inspiration-hero::after {
    content: '✊';
    position: absolute; right: -10px; top: 50%;
    transform: translateY(-50%);
    font-size: clamp(100px, 18vw, 240px);
    opacity: 0.05; pointer-events: none;
    filter: blur(3px);
    animation: struggle-inspiration-bob 5s ease-in-out infinite;
}

.struggle-inspiration-hero-inner {
    position: relative; z-index: 2;
    width: 100%; max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 20px;
}

/* Animated particles container */
.struggle-inspiration-hero-particles {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none; overflow: hidden;
}

.struggle-inspiration-particle {
    position: absolute; bottom: -20px;
    border-radius: 50%;
    background: var(--gold, #f2cb07);
    animation: struggle-inspiration-rise linear infinite;
}

/* Hero tag badge */
.struggle-inspiration-hero-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(249,1,1,0.18); border: 1px solid rgba(249,1,1,0.35);
    color: #ff6b6b; font-size: 0.73rem; font-family: var(--ff-body, sans-serif);
    padding: 5px 14px; border-radius: 24px; margin-bottom: 16px;
    animation: struggle-inspiration-fade-in 0.7s ease both;
    letter-spacing: 0.04em;
}
.struggle-inspiration-hero-tag i { animation: struggle-inspiration-flicker 2s ease-in-out infinite; }

/* Hero title override */
.struggle-inspiration-hero-title {
    animation: struggle-inspiration-slide-up 0.8s 0.1s ease both !important;
    text-shadow: 0 4px 32px rgba(249,1,1,0.3);
}

/* Hero subtitle */
.struggle-inspiration-hero-subtitle {
    animation: struggle-inspiration-slide-up 0.8s 0.22s ease both;
}

/* Hero stats */
.struggle-inspiration-hero-stats {
    display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap;
    animation: struggle-inspiration-slide-up 0.8s 0.35s ease both;
}

.struggle-inspiration-hero-stat {
    text-align: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    min-width: 100px;
    transition: transform 0.3s, background 0.3s;
}
.struggle-inspiration-hero-stat:hover {
    background: rgba(249,1,1,0.15);
    transform: translateY(-4px);
}
.struggle-inspiration-hero-stat-num {
    font-family: var(--ff-head, serif);
    font-size: 2.1rem; color: var(--gold, #f2cb07);
    font-weight: 700; line-height: 1;
}
.struggle-inspiration-hero-stat-label {
    font-size: 0.73rem; color: rgba(255,255,255,0.5);
    margin-top: 5px; font-family: var(--ff-kan, sans-serif);
}

/* ─── SECTION COMMON ──────────────────────────────────────────── */
.struggle-inspiration-section {
    padding: 72px 24px;
}
.struggle-inspiration-section-inner {
    max-width: 1280px; margin: 0 auto;
}
.struggle-inspiration-section-header {
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 40px;
}
.struggle-inspiration-section-header.centered {
    flex-direction: column; align-items: center; text-align: center;
}
.struggle-inspiration-section-bar {
    width: 4px; min-height: 60px; background: var(--red, #f90101);
    border-radius: 2px; flex-shrink: 0; margin-top: 4px;
}
.struggle-inspiration-section-tag {
    display: inline-block;
    font-size: 0.68rem; font-family: var(--ff-body, sans-serif);
    color: var(--red, #f90101); text-transform: uppercase;
    letter-spacing: 0.1em; font-weight: 700;
    margin-bottom: 6px;
}
.struggle-inspiration-section-title {
    font-family: var(--ff-kan, sans-serif);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: var(--ink, #1a0a00); font-weight: 700;
    line-height: 1.35; margin-bottom: 10px;
}
.struggle-inspiration-section-sub {
    font-size: 0.88rem; color: var(--muted, #7a6354);
    line-height: 1.6; max-width: 560px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.si-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s cubic-bezier(0.25,0.8,0.25,1),
                transform 0.65s cubic-bezier(0.25,0.8,0.25,1);
}
.si-reveal.si-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger for grids */
.si-reveal:nth-child(1) { transition-delay: 0.05s; }
.si-reveal:nth-child(2) { transition-delay: 0.13s; }
.si-reveal:nth-child(3) { transition-delay: 0.21s; }
.si-reveal:nth-child(4) { transition-delay: 0.29s; }
.si-reveal:nth-child(5) { transition-delay: 0.37s; }

/* ─── QUOTE BAND ─────────────────────────────────────────────── */
.struggle-inspiration-quote-band {
    background: linear-gradient(135deg, var(--ink, #1a0a00) 0%, #3d1200 100%);
    padding: 40px 24px;
    position: relative; overflow: hidden;
}
.struggle-inspiration-quote-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(242,203,7,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.struggle-inspiration-quote-band-inner {
    max-width: 900px; margin: 0 auto;
    text-align: center; position: relative;
}
.struggle-inspiration-quote-icon {
    font-size: 2.5rem; color: var(--gold, #f2cb07);
    opacity: 0.5; margin-bottom: 14px; display: block;
}
.struggle-inspiration-quote-text {
    font-family: var(--ff-kan, sans-serif);
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    color: var(--white, #fff); font-weight: 600;
    line-height: 1.5; margin-bottom: 14px;
    font-style: normal;
    text-shadow: 0 2px 16px rgba(249,1,1,0.2);
    animation: struggle-inspiration-fade-in 1s ease both;
}
.struggle-inspiration-quote-author {
    font-size: 0.85rem; color: var(--gold, #f2cb07);
    font-family: var(--ff-body, sans-serif); letter-spacing: 0.05em;
}

/* ─── VIDEO SECTION ──────────────────────────────────────────── */
.struggle-inspiration-video-section {
    background: var(--white, #fff);
}

.struggle-inspiration-video-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px; align-items: start;
}

/* Main video embed */
.struggle-inspiration-video-main {
    background: var(--ink, #1a0a00);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 12px 48px rgba(26,10,0,0.2);
    border: 1.5px solid rgba(249,1,1,0.15);
}
.struggle-inspiration-video-wrap {
    position: relative; width: 100%; padding-top: 56.25%;
    background: #0a0a0a;
}
.struggle-inspiration-video-wrap iframe {
    position: absolute; inset: 0; width: 100%; height: 100%;
    border-radius: 14px 14px 0 0;
}
.struggle-inspiration-video-main-info {
    padding: 20px 24px;
}
.struggle-inspiration-video-badge {
    display: inline-block; background: var(--red, #f90101);
    color: #fff; font-size: 0.65rem; padding: 3px 10px;
    border-radius: 12px; font-family: var(--ff-body, sans-serif);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.struggle-inspiration-video-main-info h3 {
    font-family: var(--ff-kan, sans-serif);
    color: var(--white, #fff); font-size: 1.05rem; font-weight: 700;
    line-height: 1.4; margin-bottom: 8px;
}
.struggle-inspiration-video-main-info p {
    color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.55;
    margin-bottom: 12px;
}
.struggle-inspiration-video-meta {
    display: flex; gap: 16px; flex-wrap: wrap;
    font-size: 0.73rem; color: rgba(255,255,255,0.4);
}
.struggle-inspiration-video-meta i { margin-right: 4px; color: var(--gold, #f2cb07); }

/* Side video list */
.struggle-inspiration-video-list {
    display: flex; flex-direction: column; gap: 12px;
}
.struggle-inspiration-video-item {
    display: flex; gap: 12px; align-items: center;
    background: var(--cream, #faf7f2); border: 1.5px solid var(--border, #e8ddd4);
    border-radius: 10px; padding: 10px; cursor: pointer;
    transition: all 0.3s ease;
}
.struggle-inspiration-video-item:hover,
.struggle-inspiration-video-item.active {
    border-color: var(--red, #f90101);
    background: rgba(249,1,1,0.04);
    transform: translateX(4px);
}
.struggle-inspiration-video-thumb {
    position: relative; flex-shrink: 0;
    width: 100px; height: 64px; border-radius: 7px; overflow: hidden;
}
.struggle-inspiration-video-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.struggle-inspiration-play-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35);
}
.struggle-inspiration-play-icon i {
    color: #fff; font-size: 1rem;
    transition: transform 0.2s;
}
.struggle-inspiration-video-item:hover .struggle-inspiration-play-icon i { transform: scale(1.2); }
.struggle-inspiration-video-item-info h4 {
    font-family: var(--ff-kan, sans-serif);
    font-size: 0.8rem; color: var(--ink, #1a0a00);
    font-weight: 600; line-height: 1.35; margin-bottom: 4px;
}
.struggle-inspiration-video-item-info span {
    font-size: 0.7rem; color: var(--muted, #7a6354);
}

/* ─── STORIES SECTION ────────────────────────────────────────── */
.struggle-inspiration-stories-section {
    background: var(--cream, #faf7f2);
}

/* Filter tabs */
.struggle-inspiration-filter-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.struggle-inspiration-filter-tab {
    border: 1.5px solid var(--border, #e8ddd4);
    background: var(--white, #fff);
    padding: 7px 18px; border-radius: 24px;
    font-family: var(--ff-kan, sans-serif); font-size: 0.8rem;
    cursor: pointer; color: var(--muted, #7a6354);
    transition: all 0.25s ease;
}
.struggle-inspiration-filter-tab:hover,
.struggle-inspiration-filter-tab.active {
    background: var(--red, #f90101);
    border-color: var(--red, #f90101);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(249,1,1,0.3);
}

/* Stories grid */
.struggle-inspiration-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Story card */
.struggle-inspiration-story-card {
    background: var(--white, #fff);
    border: 1.5px solid var(--border, #e8ddd4);
    border-radius: 14px; overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s, border-color 0.35s;
}
.struggle-inspiration-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(96,20,0,0.15);
    border-color: rgba(249,1,1,0.25);
}

/* Card image */
.struggle-inspiration-story-img-wrap {
    position: relative; height: 220px; overflow: hidden;
}
.struggle-inspiration-story-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.struggle-inspiration-story-card:hover .struggle-inspiration-story-img-wrap img {
    transform: scale(1.07);
}

/* Overlay gradient */
.struggle-inspiration-story-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,10,0,0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 14px;
}
.struggle-inspiration-story-cat-badge {
    background: var(--red, #f90101); color: #fff;
    font-size: 0.68rem; padding: 4px 10px; border-radius: 12px;
    font-family: var(--ff-body, sans-serif); text-transform: uppercase;
    letter-spacing: 0.06em; font-weight: 700;
}

/* Flame / icon in top-right of image */
.struggle-inspiration-story-flame {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    color: var(--red, #f90101); font-size: 1rem;
    animation: struggle-inspiration-flicker 3s ease-in-out infinite;
}

/* Card body */
.struggle-inspiration-story-body { padding: 20px; }
.struggle-inspiration-story-meta {
    display: flex; gap: 14px; font-size: 0.72rem;
    color: var(--muted, #7a6354); margin-bottom: 10px;
}
.struggle-inspiration-story-meta i {
    color: var(--red, #f90101); margin-right: 3px;
}
.struggle-inspiration-story-title {
    font-family: var(--ff-kan, sans-serif);
    font-size: 1rem; font-weight: 700; color: var(--ink, #1a0a00);
    line-height: 1.4; margin-bottom: 10px;
}
.struggle-inspiration-story-excerpt {
    font-size: 0.83rem; color: var(--muted, #7a6354);
    line-height: 1.55; margin-bottom: 16px;
}
.struggle-inspiration-story-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border, #e8ddd4); padding-top: 12px;
}
.struggle-inspiration-story-stats {
    display: flex; gap: 12px; font-size: 0.75rem; color: var(--muted, #7a6354);
}
.struggle-inspiration-story-stats i {
    color: var(--red, #f90101); margin-right: 4px;
}
.struggle-inspiration-read-btn {
    display: flex; align-items: center; gap: 6px;
    background: var(--ink, #1a0a00); color: #fff;
    border: none; padding: 7px 16px; border-radius: 7px;
    font-family: var(--ff-kan, sans-serif); font-size: 0.8rem;
    cursor: pointer; transition: all 0.25s ease;
}
.struggle-inspiration-read-btn:hover {
    background: var(--red, #f90101);
    gap: 10px;
}

/* ─── TIMELINE SECTION ───────────────────────────────────────── */
.struggle-inspiration-timeline-section {
    background: var(--white, #fff);
}

.struggle-inspiration-timeline {
    position: relative;
    max-width: 860px; margin: 0 auto;
    padding: 20px 0;
}

/* Center vertical line */
.struggle-inspiration-timeline::before {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 3px;
    background: linear-gradient(to bottom, var(--red, #f90101), var(--gold, #f2cb07), var(--red, #f90101));
    transform: translateX(-50%);
    border-radius: 2px;
}

.struggle-inspiration-timeline-item {
    position: relative;
    width: 46%;
    padding: 20px 24px;
    background: var(--cream, #faf7f2);
    border: 1.5px solid var(--border, #e8ddd4);
    border-radius: 12px;
    margin-bottom: 40px;
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.struggle-inspiration-timeline-item.right {
    margin-left: auto;
    transform: translateX(40px);
}
.struggle-inspiration-timeline-item.si-visible {
    opacity: 1; transform: translateX(0);
}
.struggle-inspiration-timeline-item:hover {
    box-shadow: 0 8px 32px rgba(249,1,1,0.12);
    border-color: rgba(249,1,1,0.3);
}

/* Center dot */
.struggle-inspiration-timeline-dot {
    position: absolute; top: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--red, #f90101), #8b0000);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    box-shadow: 0 0 0 4px var(--white, #fff), 0 0 0 7px rgba(249,1,1,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.struggle-inspiration-timeline-item:hover .struggle-inspiration-timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 4px var(--white, #fff), 0 0 0 9px rgba(249,1,1,0.35);
}

/* Dot position: left item → dot on right side; right item → dot on left side */
.struggle-inspiration-timeline-item.left .struggle-inspiration-timeline-dot {
    right: -54px;
}
.struggle-inspiration-timeline-item.right .struggle-inspiration-timeline-dot {
    left: -54px;
}

/* Connector lines from card to dot */
.struggle-inspiration-timeline-item.left::after {
    content: '';
    position: absolute; top: 30px; right: -23px;
    width: 23px; height: 2px;
    background: var(--border, #e8ddd4);
}
.struggle-inspiration-timeline-item.right::after {
    content: '';
    position: absolute; top: 30px; left: -23px;
    width: 23px; height: 2px;
    background: var(--border, #e8ddd4);
}

.struggle-inspiration-timeline-year {
    font-family: var(--ff-head, serif);
    font-size: 1.6rem; font-weight: 700;
    color: var(--red, #f90101); margin-bottom: 6px;
}
.struggle-inspiration-timeline-content h4 {
    font-family: var(--ff-kan, sans-serif);
    font-size: 0.95rem; font-weight: 700;
    color: var(--ink, #1a0a00); margin-bottom: 6px;
}
.struggle-inspiration-timeline-content p {
    font-size: 0.8rem; color: var(--muted, #7a6354); line-height: 1.55;
}

/* ─── GALLERY SECTION ────────────────────────────────────────── */
.struggle-inspiration-gallery-section {
    background: var(--ink, #1a0a00);
    padding: 72px 24px;
}
.struggle-inspiration-gallery-section .struggle-inspiration-section-title { color: var(--white, #fff); }
.struggle-inspiration-gallery-section .struggle-inspiration-section-sub { color: rgba(255,255,255,0.5); }

/* Masonry-style grid */
.struggle-inspiration-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}
.struggle-inspiration-gallery-item {
    position: relative; border-radius: 10px; overflow: hidden; cursor: pointer;
    background: rgba(255,255,255,0.04);
}
.struggle-inspiration-gallery-item.large {
    grid-column: span 2; grid-row: span 2;
}
.struggle-inspiration-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    display: block;
    min-height: 200px;
}
.struggle-inspiration-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

/* Caption on hover */
.struggle-inspiration-gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,10,0,0.9), transparent);
    padding: 28px 14px 12px;
    transform: translateY(100%); transition: transform 0.35s ease;
}
.struggle-inspiration-gallery-item:hover .struggle-inspiration-gallery-caption {
    transform: translateY(0);
}
.struggle-inspiration-gallery-caption span {
    font-family: var(--ff-kan, sans-serif);
    color: #fff; font-size: 0.82rem; font-weight: 600;
}

/* ─── LIGHTBOX ──────────────────────────────────────────────── */
.struggle-inspiration-lightbox {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.struggle-inspiration-lightbox.open {
    opacity: 1; pointer-events: all;
}
.struggle-inspiration-lightbox-inner {
    position: relative; max-width: 880px; width: 90%;
    text-align: center;
}
.struggle-inspiration-lightbox-inner img {
    width: 100%; border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.8);
    max-height: 80vh; object-fit: contain;
    animation: struggle-inspiration-zoom-in 0.35s ease;
}
.struggle-inspiration-lightbox-inner p {
    color: rgba(255,255,255,0.7); margin-top: 12px;
    font-family: var(--ff-kan, sans-serif); font-size: 0.88rem;
}
.struggle-inspiration-lightbox-close {
    position: absolute; top: -44px; right: 0;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.struggle-inspiration-lightbox-close:hover { background: var(--red, #f90101); border-color: transparent; }

/* ─── CALLOUT SECTION ────────────────────────────────────────── */
.struggle-inspiration-callout-section {
    padding: 0;
    background: linear-gradient(135deg, #1a0000 0%, #3d0800 50%, #1a0a00 100%);
    position: relative; overflow: hidden;
}

/* Animated flame backgrounds */
.struggle-inspiration-callout-flame-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: space-around;
    pointer-events: none;
}
.struggle-inspiration-callout-flame-bg i {
    font-size: clamp(80px, 12vw, 160px);
    color: rgba(249,1,1,0.08);
    animation: struggle-inspiration-flicker 3s ease-in-out infinite;
}
.struggle-inspiration-callout-flame-bg i:nth-child(2) { animation-delay: 1s; }
.struggle-inspiration-callout-flame-bg i:nth-child(3) { animation-delay: 2s; }

.struggle-inspiration-callout-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 80px 24px;
    position: relative; z-index: 2;
}

.struggle-inspiration-callout-content {
    max-width: 680px; margin: 0 auto; text-align: center;
}

.struggle-inspiration-callout-icon {
    font-size: 3rem; color: var(--gold, #f2cb07);
    display: block; margin-bottom: 20px;
    animation: struggle-inspiration-bob 3s ease-in-out infinite;
}

.struggle-inspiration-callout-content h2 {
    font-family: var(--ff-kan, sans-serif);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--white, #fff); font-weight: 700;
    margin-bottom: 16px; line-height: 1.35;
}
.struggle-inspiration-callout-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem; line-height: 1.65;
    margin-bottom: 28px;
}
.struggle-inspiration-callout-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.struggle-inspiration-callout-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 8px;
    font-family: var(--ff-kan, sans-serif); font-size: 0.9rem;
    font-weight: 700; text-decoration: none;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.struggle-inspiration-callout-btn.primary {
    background: var(--gold, #f2cb07); color: var(--ink, #1a0a00);
}
.struggle-inspiration-callout-btn.primary:hover {
    background: #fff; transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(242,203,7,0.4);
}
.struggle-inspiration-callout-btn.secondary {
    background: rgba(255,255,255,0.1); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.struggle-inspiration-callout-btn.secondary:hover {
    background: rgba(249,1,1,0.3); border-color: var(--red, #f90101);
    transform: translateY(-3px);
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes struggle-inspiration-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes struggle-inspiration-slide-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes struggle-inspiration-pulse {
    from { opacity: 0.7; }
    to   { opacity: 1; }
}

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

@keyframes struggle-inspiration-flicker {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.05); }
}

@keyframes struggle-inspiration-rise {
    0%   { transform: translateY(0) scale(1); opacity: var(--start-opacity, 0.3); }
    100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

@keyframes struggle-inspiration-zoom-in {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* ─── RESPONSIVE — TABLET ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .struggle-inspiration-video-layout {
        grid-template-columns: 1fr 280px;
        gap: 20px;
    }
    .struggle-inspiration-stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .struggle-inspiration-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .struggle-inspiration-gallery-item.large {
        grid-column: span 2; grid-row: span 1;
    }
    .struggle-inspiration-gallery-item.large img { min-height: 280px; }
    .struggle-inspiration-timeline::before { left: 28px; transform: none; }
    .struggle-inspiration-timeline-item,
    .struggle-inspiration-timeline-item.right {
        width: calc(100% - 72px);
        margin-left: 72px;
        transform: translateX(30px);
    }
    .struggle-inspiration-timeline-item .struggle-inspiration-timeline-dot,
    .struggle-inspiration-timeline-item.right .struggle-inspiration-timeline-dot {
        left: -56px; right: auto;
    }
    .struggle-inspiration-timeline-item::after,
    .struggle-inspiration-timeline-item.right::after {
        left: -22px; right: auto; top: 30px;
    }
}

@media (max-width: 900px) {
    .struggle-inspiration-video-layout {
        grid-template-columns: 1fr;
    }
    .struggle-inspiration-video-list {
        display: grid; grid-template-columns: repeat(2, 1fr);
    }
    .struggle-inspiration-hero-stats { gap: 16px; }
    .struggle-inspiration-hero-stat { padding: 10px 14px; min-width: 80px; }
}

/* ─── RESPONSIVE — MOBILE ─────────────────────────────────────── */
@media (max-width: 640px) {
    .struggle-inspiration-section { padding: 48px 16px; }
    .struggle-inspiration-hero-inner { padding: 28px 16px 12px; }

    .struggle-inspiration-hero-stats {
        gap: 10px; justify-content: flex-start;
    }
    .struggle-inspiration-hero-stat {
        min-width: 70px; padding: 8px 10px;
    }
    .struggle-inspiration-hero-stat-num { font-size: 1.5rem; }

    .struggle-inspiration-section-header { flex-direction: column; gap: 12px; }
    .struggle-inspiration-section-bar { min-height: 4px; width: 40px; }
    .struggle-inspiration-section-title { font-size: 1.25rem; }

    .struggle-inspiration-filter-tabs { gap: 6px; }
    .struggle-inspiration-filter-tab { padding: 5px 13px; font-size: 0.75rem; }

    .struggle-inspiration-stories-grid { grid-template-columns: 1fr; }
    .struggle-inspiration-story-img-wrap { height: 190px; }

    .struggle-inspiration-video-list {
        grid-template-columns: 1fr;
    }

    .struggle-inspiration-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .struggle-inspiration-gallery-item.large {
        grid-column: span 2; grid-row: span 1;
    }
    .struggle-inspiration-gallery-caption { display: none; }

    .struggle-inspiration-callout-inner { padding: 56px 16px; }
    .struggle-inspiration-callout-btns { flex-direction: column; align-items: center; }
    .struggle-inspiration-callout-btn { width: 100%; justify-content: center; }

    .struggle-inspiration-quote-text { font-size: 1.15rem; }

    .struggle-inspiration-timeline-item,
    .struggle-inspiration-timeline-item.right {
        width: calc(100% - 56px);
        margin-left: 56px;
    }
    .struggle-inspiration-timeline-dot { width: 36px; height: 36px; font-size: 0.85rem; }
    .struggle-inspiration-timeline-item .struggle-inspiration-timeline-dot,
    .struggle-inspiration-timeline-item.right .struggle-inspiration-timeline-dot {
        left: -48px;
    }
    .struggle-inspiration-timeline::before { left: 20px; }

    .struggle-inspiration-hero::after { font-size: 80px; opacity: 0.04; }
}

@media (max-width: 400px) {
    .struggle-inspiration-stories-grid { gap: 16px; }
    .struggle-inspiration-hero-stats { flex-wrap: wrap; }
    .struggle-inspiration-gallery-grid { grid-template-columns: 1fr; }
    .struggle-inspiration-gallery-item.large { grid-column: span 1; }
}


/* =======================================
            FOUNDERS-MESSAGE
======================================== */
/* ═══════════════════════════════════════════════════════════
   FOUNDERS MESSAGE PAGE — founders-message-*
   Matches existing KRV design system (var tokens from style.css)
═══════════════════════════════════════════════════════════ */

/* ── KEYFRAMES ─────────────────────────────────────────── */
@keyframes fm-slide-up {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fm-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fm-slide-left {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fm-slide-right {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fm-pulse-ring {
    0%   { box-shadow: 0 0 0 0   rgba(249, 1, 1, 0.35); }
    70%  { box-shadow: 0 0 0 18px rgba(249, 1, 1, 0); }
    100% { box-shadow: 0 0 0 0   rgba(249, 1, 1, 0); }
}
@keyframes fm-gold-glow {
    0%, 100% { text-shadow: 0 0 12px rgba(242, 203, 7, 0.4); }
    50%       { text-shadow: 0 0 28px rgba(242, 203, 7, 0.8); }
}
@keyframes fm-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}
@keyframes fm-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes fm-spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes fm-bar-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* ── HERO OVERRIDE ─────────────────────────────────────── */
.founders-message-hero-override {
    padding-bottom: 20px;
}

/* ── PROFILE BAND ──────────────────────────────────────── */
.founders-message-profile-band {
    background: linear-gradient(135deg, var(--ink) 0%, #2a0800 60%, #3d1200 100%);
    position: relative;
    overflow: hidden;
    padding: 72px 24px 80px;
}
.founders-message-profile-band::before {
    content: 'ಕನ್ನಡ';
    position: absolute;
    right: -60px;
    top: -30px;
    font-family: var(--ff-kan);
    font-size: 200px;
    font-weight: 700;
    color: rgba(242, 203, 7, 0.04);
    pointer-events: none;
    line-height: 1;
    user-select: none;
}
.founders-message-profile-band::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.founders-message-profile-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Photo card */
.founders-message-photo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fm-slide-left 0.8s 0.1s ease both;
}
.founders-message-photo-ring {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    padding: 5px;
    background: conic-gradient(var(--red) 0deg, var(--gold) 120deg, var(--red) 240deg, var(--gold) 360deg);
    animation: fm-spin-slow 12s linear infinite;
    flex-shrink: 0;
}
.founders-message-photo-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream2);
    animation: fm-spin-slow 12s linear reverse infinite;
    border: 4px solid var(--ink);
}
.founders-message-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.founders-message-photo-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    border: 3px solid var(--ink);
    animation: fm-pulse-ring 2.5s ease-in-out infinite;
    box-shadow: 0 4px 14px rgba(242, 203, 7, 0.5);
    z-index: 3;
}
.founders-message-signature {
    margin-top: 28px;
    text-align: center;
}
.founders-message-signature-name {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}
.founders-message-signature-title {
    font-size: 0.75rem;
    color: var(--gold);
    font-family: var(--ff-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.founders-message-since-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 203, 7, 0.12);
    border: 1px solid rgba(242, 203, 7, 0.3);
    color: var(--gold);
    font-size: 0.72rem;
    font-family: var(--ff-body);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.founders-message-social-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
}
.founders-message-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.founders-message-social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bio text side */
.founders-message-bio-side {
    animation: fm-slide-right 0.8s 0.2s ease both;
}
.founders-message-bio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 1, 1, 0.12);
    border: 1px solid rgba(249, 1, 1, 0.25);
    color: #ff8080;
    font-size: 0.7rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.founders-message-bio-heading {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}
.founders-message-bio-heading span {
    color: var(--gold);
    animation: fm-gold-glow 3s ease-in-out infinite;
}
.founders-message-bio-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    font-family: var(--ff-body);
    margin-bottom: 24px;
    font-style: italic;
    letter-spacing: 0.02em;
}
.founders-message-bio-text {
    font-family: var(--ff-kan);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 28px;
    border-left: 3px solid var(--red);
    padding-left: 18px;
    position: relative;
}
.founders-message-bio-text::before {
    content: '"';
    position: absolute;
    top: -14px;
    left: 14px;
    font-size: 3.5rem;
    color: var(--red);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}
.founders-message-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.founders-message-stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: background 0.3s, border-color 0.3s;
}
.founders-message-stat-box:hover {
    background: rgba(249, 1, 1, 0.1);
    border-color: rgba(249, 1, 1, 0.3);
}
.founders-message-stat-num {
    font-family: var(--ff-head);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}
.founders-message-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-top: 5px;
    font-family: var(--ff-kan);
    line-height: 1.3;
}
.founders-message-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.founders-message-cta-btn {
    padding: 11px 24px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    font-weight: 700;
    text-decoration: none;
}
.founders-message-cta-btn.primary {
    background: var(--gold);
    color: var(--ink);
}
.founders-message-cta-btn.primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242,203,7,0.3);
}
.founders-message-cta-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.founders-message-cta-btn.secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
}

/* ── LAYOUT ────────────────────────────────────────────── */
.founders-message-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 72px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* ── SECTION HEADING ───────────────────────────────────── */
.founders-message-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}
.founders-message-section-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.founders-message-section-bar {
    width: 4px;
    height: 24px;
    background: var(--red);
    border-radius: 2px;
    transform-origin: left;
    animation: fm-bar-grow 0.5s ease both;
}
.founders-message-section-heading h2 {
    font-family: var(--ff-kan);
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 700;
}
.founders-message-see-all {
    font-size: 0.78rem;
    color: var(--red);
    font-family: var(--ff-body);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.founders-message-see-all:hover { gap: 10px; }

/* ── MAIN CONTENT ──────────────────────────────────────── */
.founders-message-main { }

/* ── FEATURED MESSAGE CARD ─────────────────────────────── */
.founders-message-featured-card {
    background: linear-gradient(135deg, var(--ink), #3a0d00);
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.founders-message-featured-card.founders-message-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.founders-message-featured-card::before {
    content: '❝';
    position: absolute;
    top: -20px;
    right: 24px;
    font-size: 160px;
    color: rgba(242,203,7,0.06);
    font-family: Georgia, serif;
    pointer-events: none;
    line-height: 1;
}
.founders-message-featured-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    background-size: 200% 100%;
    animation: fm-bar-grow 0.8s 0.4s ease both;
}
.founders-message-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242,203,7,0.14);
    border: 1px solid rgba(242,203,7,0.3);
    color: var(--gold);
    font-size: 0.7rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 22px;
}
.founders-message-featured-quote {
    font-family: var(--ff-kan);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white);
    line-height: 1.85;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}
.founders-message-featured-quote em {
    color: var(--gold);
    font-style: normal;
}
.founders-message-featured-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.founders-message-featured-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.founders-message-featured-author-name {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
}
.founders-message-featured-author-role {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-family: var(--ff-body);
}
.founders-message-featured-date {
    margin-left: auto;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-family: var(--ff-body);
}
.founders-message-featured-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.founders-message-featured-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: none;
}
.founders-message-featured-btn.primary {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
}
.founders-message-featured-btn.primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}
.founders-message-featured-btn.secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.founders-message-featured-btn.secondary:hover { background: rgba(255,255,255,0.18); }

/* ── MESSAGE CARDS GRID ────────────────────────────────── */
.founders-message-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Individual message card */
.founders-message-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
                box-shadow 0.35s cubic-bezier(0.25,0.8,0.25,1),
                border-color 0.35s;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}
.founders-message-card.founders-message-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.founders-message-card:nth-child(1) { transition-delay: 0.05s; }
.founders-message-card:nth-child(2) { transition-delay: 0.12s; }
.founders-message-card:nth-child(3) { transition-delay: 0.19s; }
.founders-message-card:nth-child(4) { transition-delay: 0.26s; }
.founders-message-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 50px rgba(96,20,0,0.15);
    border-color: rgba(249,1,1,0.3);
}

/* Card top accent bar */
.founders-message-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.founders-message-card-body { padding: 22px; }
.founders-message-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.founders-message-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(249,1,1,0.08);
    color: var(--red);
    border: 1px solid rgba(249,1,1,0.15);
    font-size: 0.66rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 9px;
    border-radius: 20px;
}
.founders-message-card-date {
    font-size: 0.7rem;
    color: var(--muted);
    font-family: var(--ff-body);
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}
.founders-message-card-title {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.founders-message-card-excerpt {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-left: 2px solid var(--border);
    padding-left: 12px;
    transition: border-color 0.3s;
}
.founders-message-card:hover .founders-message-card-excerpt {
    border-color: var(--red);
}
.founders-message-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    gap: 10px;
    flex-wrap: wrap;
}
.founders-message-read-btn {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 7px 16px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.founders-message-read-btn:hover {
    background: var(--red);
    transform: translateY(-1px);
}
.founders-message-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: none;
    color: var(--muted);
    font-size: 0.78rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.founders-message-share-btn:hover {
    border-color: var(--red);
    color: var(--red);
    transform: rotate(20deg);
}

/* ── VIDEO SECTION ─────────────────────────────────────── */
.founders-message-video-section { margin-bottom: 48px; }
.founders-message-video-featured {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ink);
    margin-bottom: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.founders-message-video-featured.founders-message-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.founders-message-video-featured-thumb {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    opacity: 0.6;
    transition: opacity 0.4s, transform 0.5s;
}
.founders-message-video-featured:hover .founders-message-video-featured-thumb {
    opacity: 0.4;
    transform: scale(1.03);
}
.founders-message-video-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}
.founders-message-video-play-big {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: fm-float 3s ease-in-out infinite;
}
.founders-message-video-featured:hover .founders-message-video-play-big {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.founders-message-video-featured-title {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.founders-message-video-featured-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-family: var(--ff-body);
}
.founders-message-video-featured-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    font-size: 0.72rem;
    font-family: var(--ff-body);
    padding: 3px 9px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

/* Video grid — small cards */
.founders-message-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.founders-message-video-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(22px);
}
.founders-message-video-card.founders-message-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.founders-message-video-card:nth-child(1) { transition-delay: 0.04s; }
.founders-message-video-card:nth-child(2) { transition-delay: 0.10s; }
.founders-message-video-card:nth-child(3) { transition-delay: 0.16s; }
.founders-message-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.founders-message-video-thumb {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: var(--ink);
}
.founders-message-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.4s;
}
.founders-message-video-card:hover .founders-message-video-thumb img {
    opacity: 0.5;
    transform: scale(1.06);
}
.founders-message-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--red);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s, background 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.founders-message-video-card:hover .founders-message-video-play {
    transform: translate(-50%, -50%) scale(1.14);
    background: var(--white);
}
.founders-message-video-duration {
    position: absolute;
    bottom: 6px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: var(--white);
    font-size: 0.68rem;
    font-family: var(--ff-body);
    padding: 2px 6px;
    border-radius: 4px;
}
.founders-message-video-info {
    padding: 12px 14px;
}
.founders-message-video-info h4 {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.founders-message-video-info span {
    font-size: 0.68rem;
    color: var(--muted);
    font-family: var(--ff-body);
}

/* ── PHOTO GALLERY ─────────────────────────────────────── */
.founders-message-gallery-section { margin-bottom: 48px; }
.founders-message-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}
.founders-message-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}
.founders-message-gallery-item.founders-message-revealed {
    opacity: 1;
    transform: scale(1);
    transition: none;
}
.founders-message-gallery-item:nth-child(1) { transition-delay: 0.04s; grid-row: span 2; }
.founders-message-gallery-item:nth-child(2) { transition-delay: 0.10s; }
.founders-message-gallery-item:nth-child(3) { transition-delay: 0.15s; }
.founders-message-gallery-item:nth-child(4) { transition-delay: 0.20s; }
.founders-message-gallery-item:nth-child(5) { transition-delay: 0.25s; }
.founders-message-gallery-item:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.founders-message-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 160px;
    transition: transform 0.5s ease;
}
.founders-message-gallery-item:hover img { transform: scale(1.07); }
.founders-message-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,10,0,0.85), transparent);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    padding: 20px 12px 10px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.founders-message-gallery-item:hover .founders-message-gallery-caption {
    transform: translateY(0);
}
.founders-message-gallery-item.large img { min-height: 340px; }
.founders-message-gallery-view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249,1,1,0.05);
    border: 1.5px dashed rgba(249,1,1,0.3);
    border-radius: 12px;
    min-height: 160px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    flex-direction: column;
    gap: 8px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}
.founders-message-gallery-view-more:hover {
    background: rgba(249,1,1,0.1);
    border-color: var(--red);
}
.founders-message-gallery-view-more i { font-size: 1.6rem; }

/* ── SIDEBAR ───────────────────────────────────────────── */
.founders-message-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Sidebar card */
.founders-message-sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.founders-message-sidebar-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
}
.founders-message-sidebar-head i { color: var(--gold); }
.founders-message-sidebar-body { padding: 16px 18px; }

/* Quote of the day */
.founders-message-qotd {
    background: linear-gradient(135deg, var(--ink), #3d0800);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 0;
}
.founders-message-qotd::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 120px;
    color: rgba(242,203,7,0.07);
    font-family: Georgia, serif;
    pointer-events: none;
    line-height: 1;
}
.founders-message-qotd-label {
    font-size: 0.65rem;
    color: var(--gold);
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    display: block;
}
.founders-message-qotd-text {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.founders-message-qotd-attr {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-family: var(--ff-body);
}

/* Timeline quick links */
.founders-message-sidebar-timeline { }
.founders-message-timeline-item-mini {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.2s;
    cursor: pointer;
}
.founders-message-timeline-item-mini:last-child { border-bottom: none; }
.founders-message-timeline-item-mini:hover { padding-left: 6px; }
.founders-message-timeline-dot-mini {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 4px;
    transition: transform 0.2s;
}
.founders-message-timeline-item-mini:hover .founders-message-timeline-dot-mini {
    transform: scale(1.4);
}
.founders-message-timeline-year-mini {
    font-size: 0.65rem;
    color: var(--red);
    font-family: var(--ff-head);
    font-weight: 700;
    white-space: nowrap;
}
.founders-message-timeline-text-mini {
    font-family: var(--ff-kan);
    font-size: 0.78rem;
    color: var(--ink-mid);
    line-height: 1.4;
}

/* Join CTA box */
.founders-message-sidebar-join {
    background: linear-gradient(135deg, var(--red), #8b0000);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.founders-message-sidebar-join::before {
    content: '✊';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 100px;
    opacity: 0.06;
    pointer-events: none;
}
.founders-message-sidebar-join h4 {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}
.founders-message-sidebar-join p {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    margin-bottom: 16px;
    line-height: 1.5;
    font-family: var(--ff-kan);
}
.founders-message-sidebar-join-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 9px 22px;
    border-radius: 7px;
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.founders-message-sidebar-join-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Quick links */
.founders-message-quick-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, gap 0.2s;
}
.founders-message-quick-links a:last-child { border-bottom: none; }
.founders-message-quick-links a:hover { color: var(--red); gap: 14px; }
.founders-message-quick-links a i { font-size: 0.65rem; color: var(--red); }

/* ── FULL MESSAGE MODAL ─────────────────────────────────── */
.founders-message-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,4,0,0.85);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.founders-message-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.founders-message-modal {
    background: var(--white);
    border-radius: 18px;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
    scrollbar-width: thin;
    scrollbar-color: var(--red) transparent;
}
.founders-message-modal-overlay.open .founders-message-modal {
    transform: translateY(0) scale(1);
}
.founders-message-modal-top {
    background: linear-gradient(135deg, var(--ink), #3a0d00);
    padding: 28px 32px 24px;
    position: relative;
}
.founders-message-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.founders-message-modal-close:hover { background: var(--red); border-color: var(--red); }
.founders-message-modal-tag {
    display: inline-block;
    background: rgba(242,203,7,0.15);
    color: var(--gold);
    font-size: 0.68rem;
    font-family: var(--ff-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(242,203,7,0.25);
}
.founders-message-modal-title {
    font-family: var(--ff-kan);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.founders-message-modal-date {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--ff-body);
}
.founders-message-modal-body {
    padding: 32px;
}
.founders-message-modal-text {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}
.founders-message-modal-text p + p { margin-top: 14px; }
.founders-message-modal-text strong { color: var(--ink); }
.founders-message-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ── TOAST ─────────────────────────────────────────────── */
.founders-message-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 5000;
    background: var(--ink);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transform: translateY(80px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.founders-message-toast.show { transform: translateY(0); opacity: 1; }
.founders-message-toast i { color: var(--gold); }

/* ── EMPTY STATE ───────────────────────────────────────── */
.founders-message-empty {
    text-align: center;
    padding: 60px 20px;
    display: none;
}
.founders-message-empty i { font-size: 2.5rem; color: var(--border); margin-bottom: 14px; display: block; }
.founders-message-empty h3 { font-family: var(--ff-kan); color: var(--ink-mid); margin-bottom: 8px; }
.founders-message-empty p { font-size: 0.85rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── TABLET (iPad) ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .founders-message-profile-inner {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    .founders-message-photo-ring { width: 200px; height: 200px; }
    .founders-message-stats-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .founders-message-layout {
        grid-template-columns: 1fr 280px;
        gap: 28px;
        padding: 40px 20px 60px;
    }
    .founders-message-grid { grid-template-columns: repeat(2, 1fr); }
    .founders-message-video-grid { grid-template-columns: repeat(3, 1fr); }
    .founders-message-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .founders-message-gallery-item:nth-child(1) { grid-row: auto; }
    .founders-message-gallery-item.large img { min-height: 200px; }
}

/* ── SMALL TABLET ──────────────────────────────────────── */
@media (max-width: 768px) {
    .founders-message-profile-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .founders-message-photo-wrap { align-items: center; }
    .founders-message-bio-text { text-align: left; }
    .founders-message-bio-eyebrow { margin: 0 auto 18px; }
    .founders-message-stats-row { grid-template-columns: repeat(3, 1fr); }
    .founders-message-cta-row { justify-content: center; }
    .founders-message-layout {
        grid-template-columns: 1fr;
        padding: 32px 16px 56px;
    }
    .founders-message-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .founders-message-sidebar-card:first-child { grid-column: span 2; }
    .founders-message-grid { grid-template-columns: 1fr; }
    .founders-message-video-grid { grid-template-columns: repeat(2, 1fr); }
    .founders-message-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .founders-message-gallery-item:nth-child(1) { grid-column: span 2; }
    .founders-message-video-featured-thumb { height: 260px; }
}

/* ── MOBILE ────────────────────────────────────────────── */
@media (max-width: 480px) {
    .founders-message-profile-band { padding: 48px 16px 72px; }
    .founders-message-photo-ring { width: 170px; height: 170px; }
    .founders-message-bio-heading { font-size: 1.4rem; }
    .founders-message-stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .founders-message-stat-num { font-size: 1.4rem; }
    .founders-message-featured-card { padding: 24px 18px; }
    .founders-message-featured-quote { font-size: 0.92rem; }
    .founders-message-layout { padding: 24px 14px 48px; gap: 24px; }
    .founders-message-sidebar {
        grid-template-columns: 1fr;
    }
    .founders-message-sidebar-card:first-child { grid-column: auto; }
    .founders-message-grid { gap: 16px; }
    .founders-message-video-grid { grid-template-columns: 1fr; }
    .founders-message-gallery-grid { grid-template-columns: 1fr; }
    .founders-message-gallery-item:nth-child(1) { grid-column: auto; }
    .founders-message-gallery-item.large img { min-height: 220px; }
    .founders-message-video-featured-thumb { height: 210px; }
    .founders-message-modal { border-radius: 12px; }
    .founders-message-modal-body { padding: 22px 18px; }
    .founders-message-modal-top { padding: 22px 18px 18px; }
    .founders-message-modal-title { font-size: 1.1rem; }
}






/* ============================================================
   LOGIN PAGE — login.css
   All classes prefixed: login-section-
   ============================================================ */

/* ── WRAPPER LAYOUT ───────────────────────────────────────── */
.login-section-wrapper {
    display: flex;
    min-height: calc(100vh - 120px);
    background: var(--cream);
}

/* ── LEFT DECORATIVE PANEL ───────────────────────────────── */
.login-section-left {
    position: relative;
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a00 0%, #8b1010 50%, #F90101 100%);
}

.login-section-left-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(242,203,7,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(249,1,1,0.25) 0%, transparent 60%);
    z-index: 0;
}

.login-section-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255,255,255,0.03) 30px,
            rgba(255,255,255,0.03) 31px
        );
    z-index: 0;
}

.login-section-left-content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
}

.login-section-emblem {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(242,203,7,0.18);
    border: 2px solid rgba(242,203,7,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.6rem;
    color: var(--gold);
    animation: login-section-pulse 3s ease-in-out infinite;
}

@keyframes login-section-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(242,203,7,0.3); }
    50%       { box-shadow: 0 0 0 18px rgba(242,203,7,0); }
}

.login-section-tagline {
    font-family: var(--ff-kan);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--gold);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.login-section-sub {
    font-family: var(--ff-kan);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.login-section-stats {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-section-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.login-section-stat-num {
    font-family: var(--ff-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.login-section-stat-label {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── RIGHT FORM PANEL ─────────────────────────────────────── */
.login-section-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: var(--cream);
}

.login-section-card {
    width: 100%;
    max-width: 460px;
    background: var(--white);
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 4px 40px rgba(96,20,0,0.1);
    border: 1px solid var(--border);
}

/* ── LOGO ROW ────────────────────────────────────────────── */
.login-section-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.login-section-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-section-logo-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.login-section-logo-sub {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── HEADINGS ────────────────────────────────────────────── */
.login-section-heading {
    font-family: var(--ff-kan);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.login-section-desc {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ── FORM ────────────────────────────────────────────────── */
.login-section-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-section-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.login-section-label {
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-mid);
}

.login-section-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-section-input-icon {
    position: absolute;
    left: 14px;
    color: var(--muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: color var(--transition);
}

.login-section-input {
    width: 100%;
    height: 48px;
    padding: 0 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
}

.login-section-input:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(249,1,1,0.1);
}

.login-section-input:focus + .login-section-input-icon,
.login-section-input-wrap:focus-within .login-section-input-icon {
    color: var(--red);
}

.login-section-toggle-pass {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 6px;
    transition: color var(--transition);
}
.login-section-toggle-pass:hover { color: var(--red); }

/* ── ERROR ───────────────────────────────────────────────── */
.login-section-error {
    font-size: 0.75rem;
    color: var(--red);
    font-family: var(--ff-body);
    min-height: 14px;
}

/* ── REMEMBER / FORGOT ROW ───────────────────────────────── */
.login-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.login-section-check-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.login-section-checkbox {
    display: none;
}

.login-section-check-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.login-section-checkbox:checked + .login-section-check-box {
    background: var(--red);
    border-color: var(--red);
}

.login-section-checkbox:checked + .login-section-check-box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

.login-section-check-label {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
}

.login-section-forgot {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--red);
    font-weight: 600;
    transition: color var(--transition);
    text-decoration: none;
}
.login-section-forgot:hover { color: var(--red-dark); text-decoration: underline; }

/* ── SUBMIT BUTTON ───────────────────────────────────────── */
.login-section-submit {
    height: 50px;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    font-family: var(--ff-kan);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: 0 4px 16px rgba(249,1,1,0.3);
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.login-section-submit:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-deep) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,1,1,0.35);
}

.login-section-submit:active { transform: translateY(0); }

.login-section-submit.loading .login-section-submit-text::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: login-section-spin 0.7s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}
.login-section-submit.loading .login-section-submit-icon { display: none; }

@keyframes login-section-spin {
    to { transform: rotate(360deg); }
}

.login-section-submit-icon { font-size: 0.9rem; }

/* ── DIVIDER ────────────────────────────────────────────── */
.login-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.8rem;
    font-family: var(--ff-body);
}
.login-section-divider::before,
.login-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── SOCIAL BUTTONS ──────────────────────────────────────── */
.login-section-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.login-section-social-btn {
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.login-section-social-btn:hover {
    border-color: var(--red);
    background: var(--cream);
    transform: translateY(-1px);
}
.login-section-social-btn i { font-size: 1rem; }
.login-section-social-btn .fa-google { color: #DB4437; }
.login-section-social-btn .fa-facebook-f { color: #1877F2; }

/* ── REGISTER LINK ───────────────────────────────────────── */
.login-section-register-link {
    text-align: center;
    font-family: var(--ff-kan);
    font-size: 0.85rem;
    color: var(--muted);
}

.login-section-link {
    color: var(--red);
    font-weight: 700;
    margin-left: 6px;
    text-decoration: none;
    transition: color var(--transition);
}
.login-section-link:hover { text-decoration: underline; color: var(--red-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── TABLET (≤ 1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
    .login-section-left { flex: 0 0 42%; }
    .login-section-card { padding: 36px 32px; }
    .login-section-stat-num { font-size: 1.5rem; }
}

/* ── IPAD / SMALL TABLET (≤ 820px) ─────────────────────── */
@media (max-width: 820px) {
    .login-section-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .login-section-left {
        flex: none;
        width: 100%;
        padding: 40px 24px;
        min-height: 260px;
    }

    .login-section-left-content {
        padding: 24px 20px;
    }

    .login-section-emblem {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .login-section-tagline {
        font-size: 1.4rem;
    }

    .login-section-sub {
        display: none;
    }

    .login-section-stats {
        gap: 20px;
    }

    .login-section-stat-num { font-size: 1.4rem; }

    .login-section-right {
        padding: 36px 20px 48px;
    }

    .login-section-card {
        padding: 32px 28px;
        max-width: 520px;
    }
}

/* ── MOBILE (≤ 480px) ────────────────────────────────────── */
@media (max-width: 480px) {
    .login-section-left {
        min-height: 200px;
        padding: 28px 16px;
    }

    .login-section-emblem {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .login-section-tagline {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .login-section-stats {
        gap: 16px;
    }

    .login-section-stat-num { font-size: 1.25rem; }
    .login-section-stat-label { font-size: 0.7rem; }

    .login-section-right {
        padding: 28px 16px 40px;
    }

    .login-section-card {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .login-section-heading { font-size: 1.4rem; }

    .login-section-socials {
        grid-template-columns: 1fr;
    }

    .login-section-logo-title { font-size: 0.8rem; }

    .login-section-row {
        flex-direction: column;
        align-items: flex-start;
    }
}





/* ============================================================
   REGISTER PAGE — register.css
   All classes prefixed: register-section-
   ============================================================ */

/* ── WRAPPER LAYOUT ───────────────────────────────────────── */
.register-section-wrapper {
    display: flex;
    min-height: calc(100vh - 120px);
    background: var(--cream);
}

/* ── LEFT DECORATIVE PANEL ───────────────────────────────── */
.register-section-left {
    position: relative;
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0a00 0%, #3d1f0d 40%, #8b1010 80%, #F90101 100%);
}

.register-section-left-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 15%, rgba(242,203,7,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 25% 85%, rgba(249,1,1,0.3) 0%, transparent 55%);
    z-index: 0;
}

.register-section-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 28px,
            rgba(255,255,255,0.03) 28px,
            rgba(255,255,255,0.03) 29px
        );
    z-index: 0;
}

.register-section-left-content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    max-width: 380px;
}

.register-section-emblem {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(242,203,7,0.15);
    border: 2px solid rgba(242,203,7,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.4rem;
    color: var(--gold);
    animation: register-section-glow 3.5s ease-in-out infinite;
}

@keyframes register-section-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(242,203,7,0.28); }
    50%       { box-shadow: 0 0 0 20px rgba(242,203,7,0); }
}

.register-section-tagline {
    font-family: var(--ff-kan);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
    color: var(--gold);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.register-section-sub {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ── BENEFITS ────────────────────────────────────────────── */
.register-section-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.register-section-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 12px 16px;
    transition: background 0.2s;
}
.register-section-benefit:hover { background: rgba(255,255,255,0.12); }

.register-section-benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(242,203,7,0.18);
    border: 1px solid rgba(242,203,7,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.register-section-benefit-text {
    font-family: var(--ff-kan);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* ── RIGHT FORM PANEL ─────────────────────────────────────── */
.register-section-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px 60px;
    background: var(--cream);
    overflow-y: auto;
}

.register-section-card {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 40px 36px;
    box-shadow: 0 4px 40px rgba(96,20,0,0.1);
    border: 1px solid var(--border);
}

/* ── LOGO ROW ────────────────────────────────────────────── */
.register-section-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.register-section-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.register-section-logo-title {
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.register-section-logo-sub {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── STEP INDICATOR ──────────────────────────────────────── */
.register-section-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
}

.register-section-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.register-section-step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.register-section-step.active .register-section-step-dot {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(249,1,1,0.15);
}

.register-section-step.done .register-section-step-dot {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.register-section-step.done .register-section-step-dot::before {
    content: '✓';
    font-size: 0.9rem;
}

.register-section-step.done .register-section-step-dot { font-size: 0; }
.register-section-step.done .register-section-step-dot::before { font-size: 0.9rem; }

.register-section-step-label {
    font-family: var(--ff-kan);
    font-size: 0.7rem;
    color: var(--muted);
    white-space: nowrap;
}
.register-section-step.active .register-section-step-label { color: var(--red); font-weight: 700; }
.register-section-step.done .register-section-step-label { color: #22c55e; }

.register-section-step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    min-width: 40px;
    max-width: 80px;
    margin-bottom: 18px;
    transition: background 0.3s;
}

/* ── HEADINGS ────────────────────────────────────────────── */
.register-section-heading {
    font-family: var(--ff-kan);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.register-section-desc {
    font-family: var(--ff-kan);
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ── FORM ────────────────────────────────────────────────── */
.register-section-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* step panels */
.register-section-step-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: register-section-fadein 0.35s ease;
}
.register-section-step-panel.active { display: flex; }

@keyframes register-section-fadein {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* two-column row */
.register-section-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.register-section-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.register-section-label {
    font-family: var(--ff-kan);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink-mid);
}

/* ── INPUT WRAP ──────────────────────────────────────────── */
.register-section-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.register-section-input-icon {
    position: absolute;
    left: 14px;
    color: var(--muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: color var(--transition);
    z-index: 1;
}

.register-section-icon-top {
    top: 14px;
    align-self: flex-start;
}

.register-section-input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.register-section-input:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(249,1,1,0.1);
}

.register-section-input-wrap:focus-within .register-section-input-icon { color: var(--red); }

/* Textarea */
.register-section-textarea {
    height: auto;
    padding-top: 14px;
    resize: vertical;
}

/* Select */
.register-section-select-wrap { position: relative; }
.register-section-select { cursor: pointer; }
.register-section-select-arrow {
    position: absolute;
    right: 14px;
    color: var(--muted);
    font-size: 0.75rem;
    pointer-events: none;
}

/* Phone prefix */
.register-section-prefix {
    position: absolute;
    left: 14px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 600;
    z-index: 1;
    background: transparent;
    pointer-events: none;
}
.register-section-input-prefix {
    padding-left: 48px;
}

/* Toggle pass */
.register-section-toggle-pass {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 6px;
    transition: color var(--transition);
}
.register-section-toggle-pass:hover { color: var(--red); }

/* ── ERROR ───────────────────────────────────────────────── */
.register-section-error {
    font-size: 0.75rem;
    color: var(--red);
    font-family: var(--ff-body);
    min-height: 14px;
}

/* ── PASSWORD STRENGTH ───────────────────────────────────── */
.register-section-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.register-section-strength-track {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.register-section-strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.4s ease, background 0.4s ease;
}

.register-section-strength-label {
    font-size: 0.72rem;
    font-family: var(--ff-body);
    white-space: nowrap;
    font-weight: 600;
}

/* ── PLAN OPTIONS ────────────────────────────────────────── */
.register-section-plan-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.register-section-plan-opt {
    cursor: pointer;
}

.register-section-plan-opt input[type=radio] {
    display: none;
}

.register-section-plan-opt-box {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 8px;
    text-align: center;
    transition: all var(--transition);
    background: var(--cream);
}

.register-section-plan-opt-box.selected,
.register-section-plan-opt input:checked + .register-section-plan-opt-box {
    border-color: var(--red);
    background: rgba(249,1,1,0.05);
    box-shadow: 0 0 0 3px rgba(249,1,1,0.1);
}

.register-section-plan-opt-name {
    font-family: var(--ff-kan);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
}

.register-section-plan-opt-price {
    font-family: var(--ff-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--red);
    margin-top: 4px;
}

/* ── TERMS ───────────────────────────────────────────────── */
.register-section-terms-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.register-section-checkbox { display: none; }

.register-section-check-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.register-section-checkbox:checked + .register-section-check-box {
    background: var(--red);
    border-color: var(--red);
}

.register-section-checkbox:checked + .register-section-check-box::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}

.register-section-terms-label {
    font-family: var(--ff-kan);
    font-size: 0.82rem;
    color: var(--ink-mid);
    line-height: 1.5;
}

.register-section-terms-link {
    color: var(--red);
    font-weight: 700;
    margin: 0 4px;
    text-decoration: none;
}
.register-section-terms-link:hover { text-decoration: underline; }

/* ── BUTTON ROW ──────────────────────────────────────────── */
.register-section-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

/* Next button */
.register-section-next {
    flex: 1;
    height: 50px;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    font-family: var(--ff-kan);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(249,1,1,0.3);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.register-section-next:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-deep) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,1,1,0.35);
}

/* Also used alone (step 1) */
.register-section-step-panel:first-child .register-section-next { width: 100%; }

/* Back button */
.register-section-back {
    height: 50px;
    padding: 0 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink-mid);
    font-family: var(--ff-kan);
    font-size: 0.9rem;
    font-weight: 600;
 
   cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color var(--transition), background var(--transition);
}
.register-section-back:hover { border-color: var(--red); background: var(--cream); }

/* ── SUBMIT BUTTON ───────────────────────────────────────── */
.register-section-submit {
    flex: 1;
    height: 50px;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    font-family: var(--ff-kan);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(249,1,1,0.3);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.register-section-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,1,1,0.35);
}
.register-section-submit:active { transform: translateY(0); }

.register-section-submit.loading .register-section-submit-text::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: register-section-spin 0.7s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}
.register-section-submit.loading .register-section-submit-icon { display: none; }

@keyframes register-section-spin {
    to { transform: rotate(360deg); }
}

.register-section-submit-icon { font-size: 0.9rem; }

/* ── LOGIN LINK ──────────────────────────────────────────── */
.register-section-login-link {
    text-align: center;
    font-family: var(--ff-kan);
    font-size: 0.84rem;
    color: var(--muted);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.register-section-link {
    color: var(--red);
    font-weight: 700;
    margin-left: 6px;
    text-decoration: none;
    transition: color var(--transition);
}
.register-section-link:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── TABLET (≤ 1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
    .register-section-left { flex: 0 0 40%; }
    .register-section-card { padding: 32px 30px; }
}

/* ── IPAD / SMALL TABLET (≤ 820px) ─────────────────────── */
@media (max-width: 820px) {
    .register-section-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .register-section-left {
        flex: none;
        width: 100%;
        padding: 36px 20px;
        min-height: 240px;
    }

    .register-section-left-content { max-width: 100%; padding: 0; }

    .register-section-emblem {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .register-section-tagline { font-size: 1.3rem; }
    .register-section-sub { display: none; }

    .register-section-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .register-section-benefit {
        flex: 0 0 calc(50% - 10px);
        padding: 10px 12px;
    }

    .register-section-right {
        padding: 32px 20px 48px;
    }

    .register-section-card {
        padding: 28px 24px;
        max-width: 560px;
    }
}

/* ── MOBILE (≤ 480px) ────────────────────────────────────── */
@media (max-width: 480px) {
    .register-section-left {
        min-height: 180px;
        padding: 24px 16px;
    }

    .register-section-emblem {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .register-section-tagline { font-size: 1.15rem; margin-bottom: 10px; }

    .register-section-benefits {
        gap: 8px;
    }

    .register-section-benefit {
        flex: 0 0 calc(50% - 8px);
        padding: 8px 10px;
    }

    .register-section-benefit-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .register-section-benefit-text { font-size: 0.75rem; }

    .register-section-right {
        padding: 24px 14px 44px;
    }

    .register-section-card {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .register-section-heading { font-size: 1.35rem; }

    .register-section-field-row {
        grid-template-columns: 1fr;
    }

    .register-section-plan-options {
        grid-template-columns: 1fr;
    }

    .register-section-step-line { min-width: 24px; }

    .register-section-steps { gap: 0; }
}

/* ══════════════════════════════════════════
   FOOTER CONTACT STYLES
   ══════════════════════════════════════════ */
.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    line-height: 1.5;
    transition: 0.3s;
}

.footer-col ul li i {
    color: #F90101;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.footer-col ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-col ul li span {
    flex: 1;
}


/* ══════════════════════════════════════════
   PREMIUM FOOTER CONTACT STYLES
   ══════════════════════════════════════════ */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.94rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-contact-list li i {
    color: #F90101; /* Your signature Red */
    font-size: 1.15rem;
    width: 24px;
    margin-top: 4px;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(249, 1, 1, 0.3));
}

.footer-contact-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact-list li span {
    flex: 1;
}


/* ══════════════════════════════════════════
   FOOTER LOGO ENHANCEMENT
   ══════════════════════════════════════════ */
.footer-logo {
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-logo img {
    max-height: 55px;
    width: auto;
    display: block;
}



    .has-error .contact-us-input,
    .has-error .contact-us-select,
    .has-error .contact-us-textarea {
        border-color: #e53e3e !important;
        background:   #fff5f5 !important;
    }

    /* Inline field error message */
    .field-error {
        display:     flex;
        align-items: center;
        gap:         5px;
        color:       #e53e3e;
        font-size:   0.78rem;
        margin-top:  4px;
    }

    /* Validation summary box */
    .contact-us-errors {
        display:     flex;
        align-items: flex-start;
        gap:         10px;
        background:  #fff5f5;
        border:      1px solid #fed7d7;
        border-radius: 10px;
        padding:     14px 16px;
        margin-top:  16px;
        color:       #c53030;
        font-size:   0.85rem;
    }
    .contact-us-errors i        { margin-top: 2px; flex-shrink: 0; }
    .contact-us-errors ul       { margin: 0; padding-left: 16px; }
    .contact-us-errors li       { margin-bottom: 4px; }

    /* Flash alert banners */
    .alert-banner {
        display:       flex;
        align-items:   center;
        gap:           12px;
        padding:       14px 20px;
        margin:        16px auto;
        max-width:     1200px;
        border-radius: 10px;
        font-size:     0.9rem;
        font-weight:   500;
    }
    .alert-banner button {
        margin-left: auto;
        background:  none;
        border:      none;
        cursor:      pointer;
        font-size:   1rem;
        opacity:     0.6;
    }
    .alert-success-banner { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
    .alert-error-banner   { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; }

    /* Submit button spinner */
    .btn-loader { margin-left: 8px; }


    ====================================
             FAQ
    =====================================