/* ═══════════════════════════════════════════════════════
   SMYM KANJIRAPPALLY — MASTER STYLESHEET v4.0
   Premium Dark Luxury Edition
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --white: #FFFFFF;
    --ivory: #FAF9F6;
    --mist: #F8F8F8;
    --crimson: #8B0000;
    --crimson-mid: #A50000;
    --crimson-soft: rgba(139, 0, 0, 0.08);
    --gold: #D4AF37;
    --gold-warm: #F4C542;
    --gold-soft: rgba(212, 175, 55, 0.12);
    --rose-tint: rgba(255, 220, 220, 0.3);
    --text-dark: #111111;
    --text-mid: #3C3C3C;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.65);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --r-lg: 20px;
    --r-xl: 30px;
    --r-pill: 999px;

    /* Hero dark */
    --hero-bg-1: #0a0608;
    --hero-bg-2: #120308;
    --hero-bg-3: #0d0510;
}

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

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

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 40%, rgba(255, 230, 230, 0.4) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none !important;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none !important;
}

ul {
    list-style: none;
}

button {
    cursor: none !important;
}

input,
select,
textarea {
    cursor: none !important;
}

/* ─── LAYOUT ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   PARTICLE CANVAS
   ═══════════════════════════════════════════════════════ */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 99999;
    /* overlay over all elements as requested */
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--crimson);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    will-change: transform;
    opacity: 0;
    transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.25s ease, opacity 0.3s ease;
    top: 0;
    left: 0;
    box-shadow: 0 0 8px rgba(139, 0, 0, 0.4);
}

.cursor-ring {
    display: none !important;
    /* disabled: only the inner pointer is needed */
}

body.cursor-hovering .cursor-dot {
    width: 14px;
    height: 14px;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

/* ═══════════════════════════════════════════════════════
   CURSOR GLOW (ambient)
   ═══════════════════════════════════════════════════════ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    will-change: transform;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* ═══════════════════════════════════════════════════════
   FLOATING DOODLES
   ═══════════════════════════════════════════════════════ */
.doodle-layer {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.doodle {
    position: absolute;
    opacity: 0.04;
    color: var(--crimson);
    animation: doodleDrift 20s ease-in-out infinite alternate;
}

.cross-1 {
    width: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.cross-2 {
    width: 40px;
    top: 55%;
    right: 6%;
    animation-delay: -6s;
    animation-duration: 22s;
}

.cross-3 {
    width: 80px;
    bottom: 15%;
    left: 40%;
    animation-delay: -12s;
    animation-duration: 25s;
}

.dove-1 {
    width: 80px;
    top: 30%;
    right: 12%;
    animation-delay: -3s;
    animation-duration: 20s;
    color: var(--gold);
}

.dove-2 {
    width: 60px;
    bottom: 30%;
    left: 8%;
    animation-delay: -9s;
    animation-duration: 24s;
    color: var(--gold);
}

@keyframes doodleDrift {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(20px, -15px) rotate(8deg) scale(1.05);
    }

    66% {
        transform: translate(-10px, 10px) rotate(-5deg) scale(0.95);
    }

    100% {
        transform: translate(15px, 5px) rotate(12deg) scale(1.02);
    }
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Always smooth for hide/show on scroll */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    will-change: transform;
}

.nav.scrolled {
    padding: 0.65rem 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.nav-logo-media {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-media {
    transform: scale(1.05);
}

.nav-logo-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    line-height: 1;
}

.nav-brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--crimson);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links a {
    display: block;
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--r-pill);
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--crimson);
    background: var(--crimson-soft);
}

/* Nav Join Button */
.btn-nav {
    flex-shrink: 0;
    padding: 0.55rem 1.4rem;
    border-radius: var(--r-pill);
    background: var(--crimson);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(139, 0, 0, 0.25);
    transition: all 0.3s var(--ease);
}

.btn-nav:hover {
    background: var(--crimson-mid);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.35);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 65px;
    left: 1rem;
    right: 1rem;
    z-index: 999;
    padding: 1.5rem;
    border-radius: var(--r-xl);
    display: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--r-lg);
}

.mobile-menu a:hover {
    background: var(--crimson-soft);
    color: var(--crimson);
}

/* ═══════════════════════════════════════════════════════
   GLASSMORPHISM BASE
   ═══════════════════════════════════════════════════════ */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--glass-shadow);
    border-radius: var(--r-xl);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--r-pill);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s var(--ease);
    cursor: none;
    border: none;
    will-change: transform;
}

.btn-primary {
    background: var(--crimson);
    color: #fff;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.25);
}

.btn-primary:hover {
    background: var(--crimson-mid);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-dark);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: #1a1a1a;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.5);
}

.pulse-btn {
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35), 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35), 0 0 0 14px rgba(212, 175, 55, 0);
    }
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════ */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

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

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════════════
   UTILITY COLORS
   ═══════════════════════════════════════════════════════ */
.crimson {
    color: var(--crimson);
}

.gold {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL STATES — Enhanced with blur
   ═══════════════════════════════════════════════════════ */
.reveal-fade,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease),
        filter 1s var(--ease);
}

.reveal-fade {
    filter: blur(4px);
}

.reveal-up {
    transform: translateY(40px);
    filter: blur(3px);
}

.reveal-scale {
    transform: scale(0.93);
    filter: blur(4px);
}

.reveal-fade.visible {
    opacity: 1;
    filter: blur(0);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* ═══════════════════════════════════════════════════════
   HERO — PREMIUM DARK CINEMATIC
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: #FFFFFF;
    background-image:
        radial-gradient(circle at 10% 30%, rgba(239, 68, 68, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 90% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    overflow: hidden;
}

/* Subtle grid overlay for premium texture */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Vignette */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 65%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Soft gradient blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    will-change: transform;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: #FFF9F3;
    /* Warm cream */
    top: 15%;
    left: 5%;
}

.hero-blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.12);
    /* Soft gold radial glow */
    bottom: 10%;
    right: 20%;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(139, 0, 0, 0.04);
    /* Soft red left glow */
    top: 40%;
    left: 25%;
}

/* Noise overlay */
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.012;
    pointer-events: none;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Light rays — subtle pulse */
.hero-rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.ray {
    position: absolute;
    top: -20%;
    width: 1px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.03), transparent);
    transform-origin: top center;
    animation: rayPulse 8s ease-in-out infinite;
}

.ray-1 {
    left: 20%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.ray-2 {
    left: 35%;
    transform: rotate(-5deg);
    animation-delay: 1.5s;
    opacity: 0.5;
}

.ray-3 {
    left: 50%;
    transform: rotate(5deg);
    animation-delay: 3s;
}

.ray-4 {
    left: 65%;
    transform: rotate(15deg);
    animation-delay: 4.5s;
    opacity: 0.5;
}

.ray-5 {
    left: 80%;
    transform: rotate(25deg);
    animation-delay: 6s;
}

@keyframes rayPulse {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.hero-inner {
    display: grid;
    /* Centre column width ≈ logo (320px) + 2cm gap each side (≈76px×2) = ~470px */
    grid-template-columns: 1fr minmax(430px, 0.95fr) 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
    /* Push side columns to the very outer edge of the container */
    padding: 0;
}

@media (max-width: 1023px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 4rem 0;
        width: 100%;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 0;
    }

    .hero-center {
        display: none;
    }

    /* Mobile logo: inline, centered, uses viewport/percentage sizes, appears first */
    .logo-glass-bg {
        position: relative !important;
        width: 60vw !important;
        height: 60vw !important;
        max-width: 220px;
        max-height: 220px;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: flex;
        margin: 2rem auto 1rem;
        overflow: visible;
    }

    /* Mobile: stack naturally */
    .hero-left {
        order: 1;
        width: 100%;
    }

    .hero-right-details {
        order: 2;
        width: 100%;
    }
}

/* LEFT COLUMN — nudged down so top clears the fixed navbar */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-right: 1rem;
    /* Small positive offset: pushes content slightly below logo mid-point
       so the tall text block doesn't go behind the fixed header */
    transform: translateY(30px);
}

@media (max-width: 1023px) {
    .hero-left {
        text-align: center;
        align-items: center;
        padding-right: 0;
        transform: none;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--r-pill);
    background: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.15);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--crimson);
    margin-bottom: 2rem;
    width: fit-content;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--crimson);
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(139, 0, 0, 0);
    }
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
}

.line-script {
    font-family: 'Great Vibes', cursive;
    color: var(--crimson);
    font-size: 1.3em;
    line-height: 0.85;
    text-transform: none;
    font-weight: 400;
    display: block;
    margin-top: 0.15rem;
}

.hero-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    font-weight: 600;
    font-style: italic;
    color: var(--crimson);
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    margin-top: 0.8rem;
}

.hero-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 2.2rem;
    max-width: 480px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.6rem;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--gold), var(--gold-warm));
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: all 0.35s var(--ease);
    width: fit-content;
}

.hero-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.6);
}

/* CENTER COLUMN — invisible grid spacer; real logo is positioned above grid */
.hero-center {
    min-height: 340px;
    visibility: hidden;
    pointer-events: none;
}

.logo-glass-bg {
    /* Logo lives as direct child of #hero (position:relative)
       so it moves with the hero on Stage 5 parallax.
       GSAP overrides width/height on init to fill viewport height. */
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    /* Use CSS variables for the base translate so hover keeps centering */
    --tx: -50%;
    --ty: -50%;
    transform: translate(var(--tx), var(--ty));
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.90);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.18),
        0 40px 100px rgba(0, 0, 0, 0.22),
        inset 0 0 80px rgba(0, 0, 0, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: width, height;
    z-index: 20;
    overflow: visible;
}

/* Warm yellow light highlight behind the video frame */
.logo-glass-bg::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 245, 180, 0.38) 0%,
            rgba(244, 197, 66, 0.22) 35%,
            rgba(212, 175, 55, 0.10) 60%,
            transparent 80%);
    pointer-events: none;
    z-index: -1;
    animation: yellowGlowPulse 3.5s ease-in-out infinite alternate;
    filter: blur(4px);
}

@keyframes yellowGlowPulse {
    0% {
        opacity: 0.55;
        transform: scale(0.97);
    }

    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.logo-glass-bg::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    opacity: 0.6;
    animation: pulseGlow 4s ease-in-out infinite alternate;
    z-index: 1;
}

/* Hover: gentle scale — JS tilt handles rotation; no translate shift */
.logo-glass-bg:hover {
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.35),
        0 30px 60px rgba(139, 0, 0, 0.08),
        0 0 50px rgba(212, 175, 55, 0.30),
        inset 0 0 80px rgba(0, 0, 0, 0.40);
}

/* Conic Rotating Gradient Ring */
.logo-gradient-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--gold) 40%, var(--gold-warm) 60%, transparent 100%);
    animation: rotateConic 10s linear infinite;
    z-index: 1;
    opacity: 0.65;
    pointer-events: none;
    filter: blur(1px);
}

/* Orbiting Light Streak ring (dot removed) */
.logo-orbit-streak {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.06);
    pointer-events: none;
    z-index: 1;
}

/* The orbiting yellow dot is intentionally removed */
.logo-orbit-streak::after {
    display: none;
}

/* Expanding Ripple Waves */
.logo-ripple-wave {
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    pointer-events: none;
    z-index: 0;
    transform: scale(1);
    opacity: 0;
    animation: rippleOut 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.logo-ripple-wave.ripple-2 {
    animation-delay: 2s;
}

/* Keyframes for Luxury Animations */
@keyframes rotateConic {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitMotion {
    from {
        transform: rotate(0deg) translate(168px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translate(168px) rotate(-360deg);
    }
}

@keyframes rippleOut {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.hero-logo-vid,
.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-12px) rotate(0.5deg);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.8;
    }
}

/* Sparkles inside logo circle */
.logo-sparkle {
    position: absolute;
    width: 3.5px;
    height: 3.5px;
    border-radius: 50%;
    background-color: var(--gold);
    pointer-events: none;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0.75;
    box-shadow: 0 0 4px var(--gold);
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    50% {
        transform: translate(var(--sx), var(--sy)) scale(1.1);
        opacity: 0.95;
    }
}

/* RIGHT COLUMN — gentle upward nudge, pushed toward right edge */
.hero-right-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-left: 1rem;
    /* Small upward shift since right content is shorter */
    transform: translateY(-30px);
}

@media (max-width: 1023px) {
    .hero-right-details {
        align-items: center;
        text-align: center;
        padding-left: 0;
        transform: none;
    }
}

.hero-right-image-wrap {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 1023px) {
    .hero-right-image-wrap {
        justify-content: center;
    }
}

.hero-right-img-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.hero-right-img-frame:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.hero-right-img-el {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.hero-right-quote-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 1.8rem;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
    transition: var(--transition);
}

.hero-right-quote-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.hero-right-quote-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 10 rem;
    font-style: italic;
    color: var(--crimson);
    line-height: 1.6;
}

.hero-right-quote-card cite {
    display: block;
    margin-top: 0.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-right-stats-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 1.8rem;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
    transition: var(--transition);
}

.hero-right-stats-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.right-stat-val {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    display: block;
}

.right-stat-lbl {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.hero-right-deco {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deco-divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.6) 80%, transparent 100%);
}

.deco-star-spin {
    color: var(--gold);
    font-size: 0.95rem;
    text-shadow: 0 0 5px var(--gold);
    animation: starSpin 6s linear infinite;
}

@keyframes starSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

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

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

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
.about-section .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
}

.about-section .section-title em {
    color: var(--crimson);
    font-style: normal;
    background: linear-gradient(120deg, var(--crimson), #d0851d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-town {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    margin-top: 0.35rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-lead {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.6;
    color: #2b2b2b;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--crimson);
    padding-left: 1.25rem;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 2rem;
}

.about-body strong {
    color: #111111;
    font-weight: 700;
}

.about-body .highlight-gold {
    color: #b58d15;
    font-weight: 700;
}

.about-body .highlight-crimson {
    color: var(--crimson);
    font-weight: 700;
}

.about-quote {
    position: relative;
    padding: 1.75rem 1.75rem 1.75rem 2.25rem;
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #4a4a4a;
    box-shadow: 0 10px 30px rgba(212,175,55,0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.quote-mark {
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    font-family: 'Raleway', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
}

.about-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    opacity: 0.7;
}

.stat-card:nth-child(even)::before {
    background: var(--crimson);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
}

.stat-card:nth-child(even):hover {
    box-shadow: 0 20px 45px rgba(139, 0, 0, 0.10);
    border-color: rgba(139, 0, 0, 0.25);
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
}

.stat-num.crimson {
    color: var(--crimson);
    background: linear-gradient(135deg, var(--crimson), #e11d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-num.gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), #ca8a04);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════════════════════
   MISSION & VISION
   ═══════════════════════════════════════════════════════ */
.mission-section {
    background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.025) 50%, transparent);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mv-card {
    padding: 3rem 2.5rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
    transition-delay: var(--delay, 0s);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    color: var(--crimson);
}

.gold-icon {
    color: var(--gold);
}

.mv-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: var(--r-pill);
    background: var(--crimson-soft);
    border: 1px solid rgba(139, 0, 0, 0.15);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 1rem;
}

.gold-tag {
    background: var(--gold-soft);
    border-color: rgba(212, 175, 55, 0.2);
    color: #856404;
}

.mv-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.mv-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════
   ACTIVITIES
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   ACTIVITIES (DARK NEO-TACTILE GLASS THEME)
   ═══════════════════════════════════════════════════════ */
.activities-section {
    background: 
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.16) 0%, rgba(239, 68, 68, 0.02) 50%, transparent 80%), 
        radial-gradient(circle at bottom right, rgba(234, 179, 8, 0.18) 0%, rgba(234, 179, 8, 0.02) 50%, transparent 80%), 
        radial-gradient(circle at 50% 50%, #ffffff 0%, rgba(255, 255, 255, 0.95) 70%, rgba(255, 255, 255, 0.7) 100%),
        #ffffff;
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

/* Ambient glow orbs behind the grid matching the Red, White, and Yellow gradients */
.activities-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    pointer-events: none;
    z-index: 0;
}

.activities-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    pointer-events: none;
    z-index: 0;
}

.activities-section .container {
    position: relative;
    z-index: 1;
}

.activities-section .section-label {
    color: var(--crimson-mid);
}

.activities-section .section-title {
    color: var(--text-dark);
}

.activities-section .section-title em {
    color: var(--crimson-mid);
    font-style: normal;
    background: linear-gradient(120deg, var(--crimson-mid), var(--gold-warm), var(--crimson));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.activities-section .section-sub {
    color: var(--text-mid);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.act-card {
    padding: 2.2rem 1.75rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--i, 0) * 0.05s);
    cursor: default;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ── 3-Phase Card Backlight Hover Glow Loop (Red, White, Yellow) ── */

/* Red Glow (Cards 1, 4, 7) */
.act-card:nth-child(3n+1):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1.5px rgba(239, 68, 68, 0.25),
        0 0 20px rgba(239, 68, 68, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(239, 68, 68, 0.3);
}

/* White/Slate Glow (Cards 2, 5, 8) */
.act-card:nth-child(3n+2):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1.5px rgba(17, 17, 17, 0.2),
        0 0 20px rgba(17, 17, 17, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(17, 17, 17, 0.2);
}

/* Yellow/Gold Glow (Cards 3, 6) */
.act-card:nth-child(3n):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1.5px rgba(202, 138, 4, 0.25),
        0 0 20px rgba(202, 138, 4, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(202, 138, 4, 0.3);
}

.act-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 
        inset 0 2px 5px rgba(255, 255, 255, 0.95),
        0 4px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, color 0.3s, filter 0.3s;
    display: inline-flex;
}

/* Default Icon Colors based on Loop */
.act-card:nth-child(3n+1) .act-icon {
    color: #ef4444;
    filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.2));
}
.act-card:nth-child(3n+2) .act-icon {
    color: var(--text-dark);
    filter: drop-shadow(0 0 4px rgba(17, 17, 17, 0.15));
}
.act-card:nth-child(3n) .act-icon {
    color: #ca8a04;
    filter: drop-shadow(0 0 4px rgba(202, 138, 4, 0.2));
}

.act-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.8;
}

.act-card:hover .act-icon {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 
        inset 0 2px 5px rgba(255, 255, 255, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.act-card:nth-child(3n+1):hover .act-icon {
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.35));
}
.act-card:nth-child(3n+2):hover .act-icon {
    filter: drop-shadow(0 0 8px rgba(17, 17, 17, 0.25));
}
.act-card:nth-child(3n):hover .act-icon {
    filter: drop-shadow(0 0 8px rgba(202, 138, 4, 0.35));
}

.act-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

.act-card p {
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════
   STATISTICS (DARK)
   ═══════════════════════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, #0a0505, #1a0000, #0f0800);
    color: #fff;
    padding: 8rem 0;
    overflow: hidden;
}

.stats-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 0, 0, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.stats-section .section-label {
    color: var(--gold);
}

.stats-section .section-title {
    color: #fff;
}

.stats-section .section-title em {
    color: var(--gold);
}

.big-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
}

.big-stat {
    text-align: center;
    flex: 1;
    padding: 2rem;
}

.big-num {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.big-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.big-stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--crimson), var(--gold), transparent);
    transform: translateX(-50%);
    animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    from {
        box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
    }

    to {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    }
}

.tl-item {
    display: flex;
    align-items: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.tl-left {
    flex-direction: row;
}

.tl-right {
    flex-direction: row-reverse;
}

.tl-card {
    width: calc(50% - 3rem);
    padding: 2rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.tl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tl-year {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--crimson);
    margin-bottom: 0.5rem;
}

.tl-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.tl-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.tl-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
    z-index: 2;
}

.tl-dot-active {
    background: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

/* ═══════════════════════════════════════════════════════
   EXECUTIVES
   ═══════════════════════════════════════════════════════ */
.executives-section {
    background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.02) 50%, transparent);
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.exec-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.exec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.exec-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
}

.exec-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.exec-role {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: var(--r-pill);
    background: var(--crimson-soft);
    border: 1px solid rgba(139, 0, 0, 0.15);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.5rem;
}

.exec-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════════════ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.event-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
    transition-delay: calc(var(--i, 0) * 0.08s);
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 56px;
    padding: 0.6rem;
    background: var(--crimson-soft);
    border: 1px solid rgba(139, 0, 0, 0.15);
    border-radius: var(--r-lg);
    text-align: center;
}

.event-month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--crimson);
    text-transform: uppercase;
}

.event-day {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--crimson);
    line-height: 1;
}

.event-info {
    flex: 1;
}

.event-type {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: var(--r-pill);
    background: var(--crimson-soft);
    border: 1px solid rgba(139, 0, 0, 0.15);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--crimson);
    margin-bottom: 0.5rem;
}

.event-type.spiritual {
    background: rgba(88, 28, 135, 0.08);
    border-color: rgba(88, 28, 135, 0.2);
    color: #6b21a8;
}

.event-type.social {
    background: rgba(6, 95, 70, 0.08);
    border-color: rgba(6, 95, 70, 0.2);
    color: #065f46;
}

.event-type.gold-type {
    background: var(--gold-soft);
    border-color: rgba(212, 175, 55, 0.2);
    color: #856404;
}

.event-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.event-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.event-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    align-self: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.event-card:hover .event-arrow {
    transform: translateX(4px);
    color: var(--crimson);
}

/* ═══════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   MOMENTS (Premium Apple Bento Grid Showcase)
   ═══════════════════════════════════════════════════════ */
#gallery {
    background: #ffffff;
    background: radial-gradient(circle at top center, rgba(122, 0, 0, 0.04) 0%, #ffffff 70%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.moments-header {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.moments-header.entered {
    opacity: 1;
    transform: translateY(0);
}
.moments-header .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.moments-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.2;
}
.moments-header .section-title em {
    font-style: italic;
    color: var(--gold);
}

/* Bento Grid */
.moments-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 1.5rem;
    width: 100%;
}

.moments-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    background: #eaeaea;
    cursor: pointer;
    position: relative;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: 
        opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.85s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s ease;
}

.moments-card.entered {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.moments-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.moments-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

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

/* Specific item spans for bento layout */
.mb-card-1 { grid-column: span 2; grid-row: span 1; }
.mb-card-2 { grid-column: span 1; grid-row: span 2; }
.mb-card-3 { grid-column: span 1; grid-row: span 1; }
.mb-card-4 { grid-column: span 1; grid-row: span 1; }
.mb-card-5 { grid-column: span 1; grid-row: span 1; }
.mb-card-6 { grid-column: span 1; grid-row: span 1; }
.mb-card-7 { grid-column: span 2; grid-row: span 1; }
.mb-card-8 { grid-column: span 2; grid-row: span 1; }

/* Responsive Grid overrides */
@media (max-width: 1024px) {
    .moments-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 1.2rem;
    }
    .mb-card-1 { grid-column: span 2; }
    .mb-card-2 { grid-column: span 1; grid-row: span 2; }
    .mb-card-3 { grid-column: span 1; }
    .mb-card-4 { grid-column: span 1; }
    .mb-card-5 { grid-column: span 1; }
    .mb-card-6 { grid-column: span 2; }
    .mb-card-7 { grid-column: span 2; }
    .mb-card-8 { grid-column: span 2; }
}

@media (max-width: 600px) {
    #gallery {
        padding: 4rem 0;
    }
    .moments-header {
        margin-bottom: 2rem;
    }
    .moments-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 1rem;
    }
    .moments-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-carousel {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
}

.testi-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s var(--ease);
}

.testi-card {
    flex: 0 0 calc(33.333% - 1rem);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testi-quote {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-mid);
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    cursor: none;
    font-size: 1.1rem;
    color: var(--text-mid);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-btn:hover {
    background: var(--crimson);
    color: #fff;
    border-color: var(--crimson);
}

.testi-dots {
    display: flex;
    gap: 0.5rem;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testi-dot.active {
    background: var(--crimson);
    transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--ivory), rgba(255, 230, 220, 0.6), var(--ivory));
    text-align: center;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-glow-1,
.cta-glow-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.2;
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--crimson);
    left: -10%;
    top: -20%;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    right: -8%;
    bottom: -10%;
    animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.1);
    }
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cta-title em {
    font-style: italic;
    color: var(--crimson);
}

.cta-sub {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER / CONTACT
   ═══════════════════════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 2;
    padding: 0 2rem 2rem;
}

.footer-glass {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 5, 5, 0.95), rgba(26, 0, 0, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 4rem 3rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.footer-watermark {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.06);
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
    line-height: 1;
}

/* ─── Social Connect ─── */
.social-connect {
    text-align: center;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.social-connect-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

/* ─── Social Cards Grid — perspective 500px as requested ─── */
.social-cards-grid {
    perspective: 500px;
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

/* ─── Individual Social Card — matching custom 3D hover ─── */
.social-card {
    display: block;
    text-decoration: none;
    position: relative;
    width: 200px;
    height: 250px;
    border-radius: 16px;
    cursor: none;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .5s var(--ease);
}

.social-card:hover {
    transform: translateZ(10px) rotateX(20deg) rotateY(20deg);
}

.social-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: visible;
    transform-style: preserve-3d;
    background: #16161d;
    border: 2px solid #555555;
    transition: border-color .5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Background glow (brand colored, appears on hover) */
.social-card-glow {
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    filter: blur(40px);
}

/* Light sweep effect */
.social-card-sweep {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.06) 40%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0.06) 60%,
            transparent 80%);
    background-size: 200% 100%;
    background-position: -100% 0;
    transition: background-position 0s;
    pointer-events: none;
}

.social-card:hover .social-card-sweep {
    background-position: 200% 0;
    transition: background-position 0.6s ease;
}

/* Icon wrap pop-out transform: translateZ(50px) on hover */
.social-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform .5s var(--ease), box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.social-card:hover .social-icon-wrap {
    transform: translateZ(50px) scale(1.05);
}

.social-icon {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, filter 0.3s ease;
}

.social-card-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: transform .5s var(--ease), color 0.3s ease;
}

.social-card:hover .social-card-label {
    transform: translateZ(30px);
}

.social-card-handle {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    position: relative;
    z-index: 2;
    transition: transform .5s var(--ease), color 0.3s ease;
    text-align: center;
    padding: 0 1rem;
}

.social-card:hover .social-card-handle {
    transform: translateZ(20px);
}

/* ── Instagram brand ── */
.social-card[data-brand="instagram"] .social-card-glow {
    background: radial-gradient(circle, rgba(193, 53, 132, 0.6), rgba(253, 29, 29, 0.4), rgba(255, 149, 35, 0.3));
}

.social-card[data-brand="instagram"]:hover .social-card-glow {
    opacity: 1;
}

.social-card[data-brand="instagram"]:hover .social-icon {
    color: #e1306c;
    filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.7));
}

.social-card[data-brand="instagram"]:hover .social-icon-wrap {
    box-shadow: 0 8px 30px rgba(193, 53, 132, 0.4);
}

.social-card[data-brand="instagram"]:hover .social-card-inner {
    border-color: rgba(193, 53, 132, 0.35);
}

/* ── WhatsApp brand ── */
.social-card[data-brand="whatsapp"] .social-card-glow {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.5), rgba(18, 140, 126, 0.4));
}

.social-card[data-brand="whatsapp"]:hover .social-card-glow {
    opacity: 1;
}

.social-card[data-brand="whatsapp"]:hover .social-icon {
    color: #25d366;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.7));
}

.social-card[data-brand="whatsapp"]:hover .social-icon-wrap {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.social-card[data-brand="whatsapp"]:hover .social-card-inner {
    border-color: rgba(37, 211, 102, 0.3);
}

/* ── Facebook brand ── */
.social-card[data-brand="facebook"] .social-card-glow {
    background: radial-gradient(circle, rgba(24, 119, 242, 0.55), rgba(10, 80, 180, 0.4));
}

.social-card[data-brand="facebook"]:hover .social-card-glow {
    opacity: 1;
}

.social-card[data-brand="facebook"]:hover .social-icon {
    color: #1877f2;
    filter: drop-shadow(0 0 10px rgba(24, 119, 242, 0.7));
}

.social-card[data-brand="facebook"]:hover .social-icon-wrap {
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.35);
}

.social-card[data-brand="facebook"]:hover .social-card-inner {
    border-color: rgba(24, 119, 242, 0.3);
}

/* Soft shadow beneath floating card */
.social-card::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 15%;
    width: 70%;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    filter: blur(12px);
    transition: background 0.4s ease, bottom 0.4s ease;
    pointer-events: none;
}

.social-card:hover::after {
    bottom: -20px;
    background: rgba(0, 0, 0, 0.35);
}

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer PNG Logo */
.footer-logo-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    animation: footerLogoFloat 5s ease-in-out infinite;
}

@keyframes footerLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

.footer-brand h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.footer-tagline-script {
    font-family: 'Great Vibes', cursive;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-tagline-tag {
    font-style: italic;
    color: rgba(212, 175, 55, 0.6) !important;
    margin-top: 0.5rem !important;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

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

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-email {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.footer-email:hover {
    opacity: 0.75;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .crimson {
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        text-align: center !important;
    }

    .hero-left .hero-eyebrow {
        margin: 0 auto 1.5rem !important;
    }

    .hero-left .hero-slogan {
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-center {
        min-height: 260px;
        order: -1;
    }

    .hero-right-details {
        text-align: center !important;
    }

    .hero-mission {
        margin: 0 auto 2.5rem !important;
    }

    .hero-cta {
        justify-content: center;
    }

    .executives-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .big-stats {
        flex-direction: column;
    }

    .big-stat-divider {
        width: 80px;
        height: 1px;
    }



    .testi-card {
        flex: 0 0 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-glass {
        padding: 3rem 1.5rem 2rem;
        border-radius: 24px;
    }

    .timeline-line {
        left: 1.5rem;
    }

    .tl-item {
        flex-direction: column !important;
        padding-left: 3.5rem;
    }

    .tl-card {
        width: 100%;
    }

    .tl-dot {
        left: 1.5rem;
        position: absolute;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .executives-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        width: 170px;
        height: 210px;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

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

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .social-cards-grid {
        gap: 1rem;
    }

    .social-card {
        width: 150px;
        height: 190px;
    }
}

/* Clean up duplicate hero-bottom-cta — core rules already defined above */
.hero-bottom-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    box-shadow: 0 0 0 rgba(220, 40, 40, 0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hero-bottom-cta .btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 45px rgba(220, 40, 40, 0.45), 0 0 30px rgba(220, 40, 40, 0.25);
}

/* ═══════════════════════════════════════════════════════
   EXECUTIVES PREMIUM SECTION
   ═══════════════════════════════════════════════════════ */
.executives-premium-section {
    position: relative;
    background: linear-gradient(145deg, #0a0a0f 0%, #12060e 40%, #0d0a1a 70%, #0a0a0f 100%);
    padding: 7rem 0 8rem;
    overflow: hidden;
}

/* Animated blurred background orbs */
.exec-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.exec-bg-blur-1 {
    width: 600px;
    height: 600px;
    background: rgba(220, 40, 40, 0.25);
    top: -120px;
    left: -100px;
    animation: execOrbFloat 12s ease-in-out infinite;
}

.exec-bg-blur-2 {
    width: 550px;
    height: 550px;
    background: rgba(212, 175, 55, 0.18);
    bottom: -80px;
    right: -80px;
    animation: execOrbFloat 15s ease-in-out infinite reverse;
}

.exec-bg-blur-3 {
    width: 700px;
    height: 700px;
    background: rgba(220, 40, 40, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

@keyframes execOrbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -40px);
    }
}

/* Animated thin background lines */
.exec-bg-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 80, 80, 0.12), transparent);
    pointer-events: none;
    z-index: 0;
    animation: execLinePulse 8s ease-in-out infinite;
}

.exec-bg-line-1 {
    width: 70%;
    top: 25%;
    left: 5%;
}

.exec-bg-line-2 {
    width: 50%;
    bottom: 30%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes execLinePulse {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Section Header */
.exec-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.exec-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

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

.exec-section-sub {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto;
}

/* Executive Premium Grid */
.exec-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    position: relative;
    z-index: 2;
}

/* Executive Premium Card */
.exec-premium-card {
    perspective: 900px;
    cursor: none;
}

.exec-card-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(220, 40, 40, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
    transition:
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    will-change: transform;
    /* Entry animation — set by JS */
    opacity: 0;
}

.exec-premium-card:hover .exec-card-inner {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.8),
        0 0 45px rgba(220, 40, 40, 0.85),
        0 0 80px rgba(212, 175, 55, 0.4);
    border-color: rgba(220, 40, 40, 0.8);
}

/* Glassmorphism glow on hover */
.exec-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(220, 40, 40, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1; /* Sits behind the image */
}

.exec-premium-card:hover .exec-card-glow {
    opacity: 1;
}

/* Sweep/shine effect on hover */
.exec-card-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-15deg);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 3; /* Sits on top of the image to show sweep reflection */
}

.exec-premium-card:hover .exec-card-sweep {
    left: 150%;
}

/* Poster Image Area */
.exec-poster-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 591 / 1005;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 10, 15, 0.6), rgba(60, 20, 30, 0.8));
    z-index: 2; /* Positioned between card-glow (1) and card-sweep (3) */
}

.exec-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    image-rendering: high-quality;
    filter: brightness(0.95) contrast(0.98); /* Slightly dimmed initially */
}

.exec-premium-card:hover .exec-poster {
    transform: scale(1.07);
    filter: brightness(1.08) contrast(1.05) saturate(1.05); /* Premium highlight/vibrancy effect */
}

/* Placeholder when image not found */
.exec-poster-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    /* shown only via JS onerror */
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(30, 10, 15, 0.85), rgba(60, 20, 35, 0.9));
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(220, 40, 40, 0.3);
}

/* Card Info Block */
.exec-card-body {
    padding: 1.1rem 1.2rem 1.3rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: relative;
    z-index: 3;
}

.exec-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
}

.exec-designation {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(220, 40, 40, 0.9);
    letter-spacing: 0.03em;
}

/* Decorative border on card bottom */
.exec-card-border {
    position: absolute;
    bottom: 0;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 40, 40, 0.6), rgba(212, 175, 55, 0.5), rgba(220, 40, 40, 0.6), transparent);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.exec-premium-card:hover .exec-card-border {
    opacity: 1;
}

/* Card scroll-entry animations via JS classes */
.exec-premium-card.exec-slide-left {
    transform: translateX(-60px);
}

.exec-premium-card.exec-slide-right {
    transform: translateX(60px);
}

.exec-premium-card.exec-fade-up {
    transform: translateY(50px);
}

.exec-premium-card.exec-scale-in {
    transform: scale(0.9);
}

.exec-premium-card.exec-animated .exec-card-inner {
    opacity: 1;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exec-premium-card.exec-animated {
    transform: none !important;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive exec grid */
@media (max-width: 1200px) {
    .exec-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .exec-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .exec-section-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }
}

@media (max-width: 480px) {
    .exec-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }
}

/* ═══════════════════════════════════════════════════════
   CINEMATIC LOADER OVERLAY SYSTEM (PREMIUM EDITION)
   ═══════════════════════════════════════════════════════ */
.cinema-loader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    /* Dark red -> deep crimson -> warm burgundy radial gradient with light bloom center */
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(139, 0, 0, 0.82) 40%, rgba(106, 0, 21, 0.95) 75%, #2a0006 100%);
    background-color: #4A0010;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: opacity, transform, filter;
    transform: scale(1);
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}

/* Subtle Film Grain overlay for realism */
.cinema-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.012;
    pointer-events: none;
    z-index: 1;
}

#loader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.loader-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 480px;
    padding: 2.5rem;
    margin: auto;
}

/* ── Logo Container ── */
.loader-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.loader-logo-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.45));
    transition: transform 0.8s var(--ease);
}

/* Dynamic Golden Outline (40% Reveal) */
.loader-logo-outline {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.8s;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Ambient Gold Glow (70% Reveal) */
.loader-logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    pointer-events: none;
}

/* Cinematic Golden Sweep (90% Reveal) */
.loader-logo-sweep {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 235, 170, 0.5) 50%,
            transparent 70%);
    background-size: 250% 100%;
    background-position: -200% 0;
    mix-blend-mode: overlay;
    opacity: 0.85;
}

@keyframes sweepLight {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ── Typography Block ── */
.loader-branding {
    margin-bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.loader-brand-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(3.2rem, 9vw, 4.4rem);
    font-weight: 800;
    color: #F8F5EE; /* Soft Ivory */
    letter-spacing: 7px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.loader-brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.72rem, 2.5vw, 0.90rem);
    font-weight: 600;
    color: #D4AF37; /* Golden Yellow */
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.loader-brand-tagline {
    font-family: 'Great Vibes', 'Raleway', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.65rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(248, 245, 238, 0.85); /* Soft Ivory with opacity */
    margin: 0.5rem 0 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ── Premium Loading Animation (Uiverse) ── */
.loader {
    --main-size: 2.1rem;
    --text-color: #F8F5EE; /* Soft Ivory */
    --shine-color: rgba(212, 175, 55, 0.45);
    --shadow-color: #6A0015;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
    position: relative;
    font-size: var(--main-size);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-color);
    width: 7.3em;
    height: 1.6em;
    filter: drop-shadow(0 0 0.05em var(--shine-color));
    margin: 0.5rem auto;
}

.loader .text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: 0.15em;
}

.loader .text:nth-child(1) {
    clip-path: polygon(0% 0%, 11.11% 0%, 11.11% 100%, 0% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: -2.1em;
    opacity: 0.6;
}

.loader .text:nth-child(2) {
    clip-path: polygon(11.11% 0%, 22.22% 0%, 22.22% 100%, 11.11% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: -0.98em;
    opacity: 0.7;
}

.loader .text:nth-child(3) {
    clip-path: polygon(22.22% 0%, 33.33% 0%, 33.33% 100%, 22.22% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: -0.33em;
    opacity: 0.8;
}

.loader .text:nth-child(4) {
    clip-path: polygon(33.33% 0%, 44.44% 0%, 44.44% 100%, 33.33% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: -0.05em;
    opacity: 0.9;
}

.loader .text:nth-child(5) {
    clip-path: polygon(44.44% 0%, 55.55% 0%, 55.55% 100%, 44.44% 100%);
    font-size: calc(var(--main-size) / 10);
    margin-left: 0em;
    opacity: 1;
}

.loader .text:nth-child(6) {
    clip-path: polygon(55.55% 0%, 66.66% 0%, 66.66% 100%, 55.55% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: 0.05em;
    opacity: 0.9;
}

.loader .text:nth-child(7) {
    clip-path: polygon(66.66% 0%, 77.77% 0%, 77.77% 100%, 66.66% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: 0.33em;
    opacity: 0.8;
}

.loader .text:nth-child(8) {
    clip-path: polygon(77.77% 0%, 88.88% 0%, 88.88% 100%, 77.77% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: 0.98em;
    opacity: 0.7;
}

.loader .text:nth-child(9) {
    clip-path: polygon(88.88% 0%, 100% 0%, 100% 100%, 88.88% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: 2.1em;
    opacity: 0.6;
}

.loader .text span {
    animation:
        scrolling 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite,
        shadow 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite;
    display: inline-block;
}

.loader .text:nth-child(1) span {
    background: linear-gradient(to right, var(--text-color) 4%, var(--shadow-color) 7%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(2) span {
    background: linear-gradient(to right, var(--text-color) 9%, var(--shadow-color) 13%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(3) span {
    background: linear-gradient(to right, var(--text-color) 15%, var(--shadow-color) 18%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(4) span {
    background: linear-gradient(to right, var(--text-color) 20%, var(--shadow-color) 23%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(6) span {
    background: linear-gradient(to right, var(--shadow-color) 29%, var(--text-color) 32%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(7) span {
    background: linear-gradient(to right, var(--shadow-color) 34%, var(--text-color) 37%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(8) span {
    background: linear-gradient(to right, var(--shadow-color) 39%, var(--text-color) 42%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .text:nth-child(9) span {
    background: linear-gradient(to right, var(--shadow-color) 45%, var(--text-color) 48%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.loader .line {
    position: absolute;
    bottom: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 0.06em;
    width: calc(var(--main-size) * 1.5);
    border-radius: 0.05em;
}

.loader .line::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--text-color);
    opacity: 0.15;
}

.loader .line::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #D4AF37; /* Thin gold progress line */
    border-radius: 0.05em;
    transform: translateX(-90%);
    animation: wobble 2s cubic-bezier(0.5, 0.8, 0.5, 0.2) infinite;
}

@keyframes wobble {
    0% {
        transform: translateX(-90%);
    }
    50% {
        transform: translateX(90%);
    }
    100% {
        transform: translateX(-90%);
    }
}

@keyframes scrolling {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shadow {
    0% {
        background-position: -98% 0;
    }
    100% {
        background-position: 102% 0;
    }
}

/* ── Minimal status displays ── */
.loader-percent-minimal {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #D4AF37; /* Gold */
    letter-spacing: 2px;
    margin-top: 0.8rem;
    opacity: 0.85;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.loader-message-minimal {
    font-family: 'Raleway', sans-serif;
    font-size: 0.76rem;
    font-style: italic;
    color: rgba(248, 245, 238, 0.65);
    margin-top: 0.4rem;
    height: 1rem;
    letter-spacing: 0.5px;
    transition: opacity 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* ── Responsive Loading Screens ── */
@media (max-width: 768px) {
    .loader-content {
        max-width: 340px;
        padding: 1.5rem;
    }
    .loader-logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 1.4rem;
    }
    .loader-branding {
        margin-bottom: 1.6rem;
    }
    .loader {
        --main-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .loader-content {
        max-width: 300px;
        padding: 1rem;
    }
    .loader-logo-container {
        width: 90px;
        height: 90px;
        margin-bottom: 1.2rem;
    }
    .loader {
        --main-size: 1.6rem;
    }
}