/* ===========================
   1. GLOBAL VARIABLES
   =========================== */
:root {
    --colour-background: #050505;
    --colour-surface: #101010;
    --colour-accent-green: #c6ff00;
    --colour-accent-orange: #ff5c1a;
    --colour-text-main: #f5f5f5;
    --colour-text-muted: #c0c0c0;
    --shadow-soft: 0 0 25px rgba(0, 0, 0, 0.75);
}

/* ===========================
   2. RESET
   =========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1a1a1a 0, #000 55%);
    color: var(--colour-text-main);
    line-height: 1.6;
}

/* Layout helper */
.container {
    width: min(1200px, 100%);
    padding: 0 1.25rem;
    margin: 0 auto;
}

/* ===========================
   3. HEADER AND NAVIGATION
   =========================== */
.site-header {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

/* Logo block */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tagline {
    font-size: 0.8rem;
    color: var(--colour-accent-green);
}

/* Desktop navigation */
.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--colour-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--colour-accent-orange),
        var(--colour-accent-green)
    );
    transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #ffffff;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--colour-text-main);
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===========================
   4. HERO SECTION
   =========================== */
.hero {
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at top, #1a1a1a 0, #000 60%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 2rem;
}

/* Hero text */
.hero-text h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
    color: var(--colour-accent-green);
    animation: heroTitle 0.9s ease-out forwards;
}

.hero-text p {
    margin-bottom: 1.25rem;
    color: var(--colour-text-muted);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.1s ease, box-shadow 0.1s ease,
        background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--colour-accent-orange),
        var(--colour-accent-green)
    );
    color: #000;
    box-shadow: var(--shadow-soft);
}

.btn-outline {
    background: transparent;
    color: var(--colour-accent-green);
    border-color: var(--colour-accent-green);
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 0 18px rgba(198, 255, 0, 0.4);
}

/* Hero highlights */
.hero-highlights {
    list-style: none;
    margin-top: 0.5rem;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: var(--colour-text-muted);
}

.hero-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--colour-accent-orange);
}

/* Hero logo – always visible, responsive */
.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 92, 26, 0.9));
    animation: logoGlow 2.6s ease-in-out infinite alternate;
}

/* ===========================
   5. GENERIC SECTIONS
   =========================== */
.section {
    padding: 3rem 0;
    background: var(--colour-background);
}

.section-dark {
    padding: 3rem 0;
    background: var(--colour-surface);
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--colour-accent-green);
}

.section-lead {
    max-width: 640px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    color: var(--colour-text-muted);
    font-size: 0.95rem;
}

/* About section with background image */
.about-section {
    position: relative;
    padding: 0;
    background-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/about-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay to keep text readable */
.about-overlay {
    width: 100%;
    height: 100%;
    padding: 4rem 0;
    backdrop-filter: blur(1px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    max-width: 640px;
}

.section-lead-light {
    color: #e7e7e7;
}

.about-body {
    color: #f0f0f0;
    font-size: 0.95rem;
}

/* Stats cards */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(5, 5, 5, 0.9);
    padding: 1rem 1.25rem;
    border-radius: 0.9rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--colour-accent-green);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--colour-text-muted);
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.card p {
    font-size: 0.9rem;
    color: var(--colour-text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    background: #000;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item figcaption {
    padding: 0.6rem 0.8rem 0.9rem;
    font-size: 0.8rem;
    color: var(--colour-text-muted);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Schedule */
.schedule {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.schedule-column h4 {
    margin-bottom: 0.5rem;
    color: var(--colour-accent-green);
}

.schedule-column ul {
    list-style: none;
    font-size: 0.9rem;
}

.schedule-column li + li {
    margin-top: 0.25rem;
}

.schedule-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--colour-text-muted);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.contact-details {
    list-style: none;
    margin-top: 0.75rem;
}

.contact-details li + li {
    margin-top: 0.35rem;
}

/* Contact form */
.contact-form {
    background: rgba(10, 10, 10, 0.95);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form h4 {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.5rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #050505;
    color: var(--colour-text-main);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 1px solid var(--colour-accent-green);
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--colour-text-muted);
}

.enquiry-status.is-ok{
    color: #c6ff00;
    font-weight: 700;
}

.enquiry-status.is-error{
    color: #ff6b6b;
    font-weight: 700;
}

/* ===========================
   6. FOOTER
   =========================== */
.site-footer {
    background: #000;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    text-align: center;
    font-size: 0.8rem;
    color: var(--colour-text-muted);
}

.footer-small {
    margin-top: 0.25rem;
    color: var(--colour-accent-green);
}

/* ===========================
   7. SCROLL REVEAL ANIMATION
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes heroTitle {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 18px rgba(255, 92, 26, 0.7));
    }
    to {
        filter: drop-shadow(0 0 32px rgba(198, 255, 0, 0.9));
    }
}

/* ===========================
   8. RESPONSIVE DESIGN
   =========================== */

/* Tablet and smaller */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .schedule,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile navigation and layout */
@media (max-width: 768px) {
    .header-inner {
        align-items: center;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    /* show hamburger, hide nav by default */
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #000;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
        display: none; /* hidden until opened */
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav a {
        font-size: 0.9rem;
    }

    /* when JS adds .open, show the menu */
    .main-nav.open {
        display: flex;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.5rem;
    }
}

/* Very small screens – tweak hero logo size */
@media (max-width: 600px) {
    .hero-logo img {
        max-width: 200px;
        margin-top: 1rem;
    }
}
/* ===========================
   EXTRA SECTIONS FOR HOME
   =========================== */

/* Feature strip under hero */
.feature-strip {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.feature-card h4 {
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--colour-text-muted);
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    background: radial-gradient(circle, var(--colour-accent-orange), #000000);
    box-shadow: 0 0 14px rgba(255, 92, 26, 0.8);
}

/* Testimonials */
.testimonials-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    background: rgba(5, 5, 5, 0.98);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.play-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: radial-gradient(circle, var(--colour-accent-green), #000);
    color: #000;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--colour-text-muted);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--colour-text-muted);
}

/* Belts and special offers */
.belts-offers-section {
    background: var(--colour-background);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.belt-strip {
    display: flex;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.belt-strip-image {
    display: block;
    width: min(100%, 980px);
    height: auto;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

.special-offers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.offers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.offer-pill {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--colour-text-muted);
}

.whatsapp-cta {
    white-space: nowrap;
}

/* RESPONSIVE TWEAKS FOR NEW SECTIONS */
@media (max-width: 900px) {
    .feature-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .feature-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .belt-strip-image {
        width: 100%;
        border-radius: 0.85rem;
    }

    .special-offers {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-cta {
        width: 100%;
        text-align: center;
    }
}
/* ===========================
   ABOUT PAGE STYLES
   =========================== */

.about-page {
    background: var(--colour-background, #050608);
}

/* Split hero */
.about-hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.about-hero-text h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.4rem);
    margin-bottom: 0.6rem;
}

.about-hero-text .section-lead {
    margin-bottom: 0.9rem;
}

.about-hero-points {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
}

.about-hero-points li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: var(--colour-text-muted);
}

.about-hero-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--colour-accent-green, #7CFF4F);
}

/* Hero image */
.about-hero-image-wrap {
    display: flex;
    justify-content: center;
}

.about-hero-image-frame {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    background: radial-gradient(circle at top left, rgba(124, 255, 79, 0.12), rgba(0, 0, 0, 0.9));
}

.about-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* General about layout */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-single-column {
    max-width: 900px;
}

.about-text-block h3 {
    margin-bottom: 0.5rem;
}

.about-text-block p {
    font-size: 0.95rem;
}

/* Lists */
.bullet-list {
    padding-left: 1.1rem;
    margin: 0.3rem 0 0.8rem;
    font-size: 0.95rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: var(--colour-text-muted);
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    color: var(--colour-accent-green, #7CFF4F);
}

/* Cards */
.about-cards-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
}

.about-card {
    background: rgba(5, 5, 5, 0.95);
    border-radius: 1.3rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft, 0 12px 30px rgba(0, 0, 0, 0.7));
}

.about-card h3 {
    margin-bottom: 0.6rem;
}

.about-location-card .highlight-box {
    margin: 0.4rem 0 0.7rem;
    padding: 0.7rem 0.9rem;
    border-radius: 0.75rem;
    background: radial-gradient(circle, rgba(124, 255, 79, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(124, 255, 79, 0.4);
    font-size: 0.9rem;
}

/* CTA section */
.about-cta-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.about-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-cta-text h3 {
    margin-bottom: 0.6rem;
}

.about-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
}

.about-cta-actions .btn {
    width: 100%;
    text-align: center;
}

.about-cta-actions .cta-link {
    font-size: 0.9rem;
    text-decoration: underline;
    color: var(--colour-text-muted);
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-image-frame {
        max-width: 420px;
        width: 100%;
    }

    .about-content-grid,
    .about-cards-grid,
    .about-cta-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding-top: 3rem;
        padding-bottom: 2.4rem;
    }

    .about-card {
        padding: 1.1rem 1.2rem;
    }

    .about-hero-text h2 {
        font-size: 1.6rem;
    }
}
/* ===========================
   ABOUT PAGE ENHANCEMENTS
   Image responsiveness, justified text, animated icons, and gentle contrast
   =========================== */

/* Text justification for desktop and tablet */
.about-page .about-justify,
.about-page .about-panel p,
.about-page .about-panel li {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.75;
}

/* On narrow mobile screens, left alignment reads better */
@media (max-width: 600px) {
    .about-page .about-justify,
    .about-page .about-panel p,
    .about-page .about-panel li {
        text-align: left;
    }
}

/* Subtle contrast panels, same theme */
.about-page .about-panel {
    background: linear-gradient(
        135deg,
        rgba(124, 255, 79, 0.07),
        rgba(255, 255, 255, 0.02),
        rgba(0, 0, 0, 0.88)
    );
    border: 1px solid rgba(124, 255, 79, 0.18);
    border-radius: 1.2rem;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
}

.about-page .about-panel:hover {
    transform: translateY(-3px);
    transition: transform 220ms ease, border-color 220ms ease;
    border-color: rgba(124, 255, 79, 0.34);
}

/* Responsive hero image (dojo.png) */
.about-hero-image-frame {
    width: 100%;
    max-width: 560px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(124, 255, 79, 0.22);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.78);
    background: radial-gradient(circle at top left, rgba(124, 255, 79, 0.10), rgba(0, 0, 0, 0.90));
}

.about-hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    filter: contrast(1.10) saturate(1.06);
}

@media (max-width: 992px) {
    .about-hero-image-frame {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Animated icons for headings */
.icon-heading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
}

.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at 30% 30%, rgba(124, 255, 79, 1), rgba(124, 255, 79, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 16px rgba(124, 255, 79, 0.55);

    animation: ascendPulse 2.4s ease-in-out infinite;
}

.icon-svg {
    width: 20px;
    height: 20px;
    color: #0a0a0a;
}

@keyframes ascendPulse {
    0% { transform: scale(1); box-shadow: 0 0 14px rgba(124, 255, 79, 0.45); }
    50% { transform: scale(1.06); box-shadow: 0 0 26px rgba(124, 255, 79, 0.72); }
    100% { transform: scale(1); box-shadow: 0 0 14px rgba(124, 255, 79, 0.45); }
}

/* Optional animated icons for subheadings */
.sub-icon-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.sub-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle at 30% 30%, rgba(255, 92, 26, 1), rgba(255, 92, 26, 0.30));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 14px rgba(255, 92, 26, 0.48);

    animation: ascendPulseWarm 2.6s ease-in-out infinite;
}

.sub-icon-svg {
    width: 16px;
    height: 16px;
    color: #0a0a0a;
}

@keyframes ascendPulseWarm {
    0% { transform: scale(1); box-shadow: 0 0 12px rgba(255, 92, 26, 0.40); }
    50% { transform: scale(1.06); box-shadow: 0 0 22px rgba(255, 92, 26, 0.62); }
    100% { transform: scale(1); box-shadow: 0 0 12px rgba(255, 92, 26, 0.40); }
}

/* Stronger contrast for the location highlight box only */
.about-location-card .highlight-box {
    background: linear-gradient(
        135deg,
        rgba(255, 92, 26, 0.12),
        rgba(124, 255, 79, 0.10),
        rgba(255, 255, 255, 0.03)
    );
    border: 1px solid rgba(255, 92, 26, 0.35);
}
/* ===== ABOUT PAGE SPACING IMPROVEMENTS (boxes not merging) ===== */

/* Give grids more breathing room */
.about-page .about-content-grid,
.about-page .about-cards-grid {
    gap: 28px;              /* was tighter; increase for clear separation */
    row-gap: 28px;
}

/* If your single-column section is too tight */
.about-page .about-single-column {
    margin-top: 28px;
}

/* Make each panel slightly larger and clearer */
.about-page .about-panel {
    padding: 1.35rem 1.45rem;      /* slightly bigger than before */
    border-radius: 1.35rem;        /* softer, more premium */
}

/* Ensure panels do not visually touch due to transforms */
.about-page .about-panel:hover {
    transform: translateY(-2px);   /* reduce lift slightly */
}

/* Add subtle separation even on dark backgrounds */
.about-page .about-panel {
    background-clip: padding-box;
}

/* Improve spacing inside lists so text does not feel cramped */
.about-page .bullet-list,
.about-page .check-list,
.about-page .about-hero-points {
    margin-top: 0.8rem;
    margin-bottom: 0;
}

.about-page .bullet-list li,
.about-page .check-list li,
.about-page .about-hero-points li {
    margin-bottom: 0.5rem;
}

/* Mobile: keep good separation */
@media (max-width: 992px) {
    .about-page .about-content-grid,
    .about-page .about-cards-grid {
        gap: 20px;
        row-gap: 20px;
    }
}

/* Small mobile: slightly reduce padding to prevent overflow but keep separation */
@media (max-width: 600px) {
    .about-page .about-panel {
        padding: 1.15rem 1.2rem;
    }
}
/* =========================
   SCHEDULE PAGE PREMIUM UI
   ========================= */

.schedule-hero{
  padding: 90px 0 60px;
  background: radial-gradient(circle at 20% 10%, rgba(124,255,79,0.14), transparent 45%),
              linear-gradient(135deg, #000 0%, #071006 100%);
  overflow: hidden;
}

.hero-inner-schedule{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.hero-kicker{
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(124,255,79,0.30);
  border-radius: 999px;
  color: #7cff4f;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: glowPulse 2.6s ease-in-out infinite;
}

.schedule-hero h2{
  color: #7cff4f;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 12px;
}

.schedule-hero .hero-sub{
  max-width: 720px;
  opacity: 0.88;
  margin: 0;
}

.hero-cta{
  margin-top: 22px;
}

.center-cta{
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.badge{
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  padding: 16px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease;
}

.badge:hover{
  transform: translateY(-3px);
  border-color: rgba(124,255,79,0.45);
}

.premium-table-wrap{
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 16px 55px rgba(0,0,0,0.45);
  overflow: hidden;
}

.premium-table{
  width: 100%;
  border-collapse: collapse;
}

.premium-table thead th{
  background: rgba(124,255,79,0.92);
  color: #000;
  text-align: left;
  padding: 14px 14px;
  font-weight: 800;
}

.premium-table tbody td{
  padding: 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}

.premium-table tbody tr{
  transition: background 220ms ease;
}

.premium-table tbody tr:hover{
  background: rgba(124,255,79,0.06);
}

.premium-table-fees tbody td:last-child{
  color: #7cff4f;
}

.small-note{
  opacity: 0.82;
  margin-top: 14px;
}

.justify{
  text-align: justify;
}

.guidance-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.guidance-card{
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.18);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}

.tip-pill{
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124,255,79,0.10);
  border: 1px solid rgba(124,255,79,0.25);
  color: #7cff4f;
  font-weight: 600;
}

.rules-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rule{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(124,255,79,0.16);
  background: rgba(255,255,255,0.03);
}

.location-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.location-card{
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.18);
  background: rgba(255,255,255,0.03);
  padding: 16px;
}

.map-wrap{
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124,255,79,0.18);
}

.map-wrap iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Animated reveal */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowPulse{
  0%,100%{ box-shadow: 0 0 0 rgba(124,255,79,0.0); }
  50%{ box-shadow: 0 0 28px rgba(124,255,79,0.30); }
}

@media (max-width: 992px){
  .hero-inner-schedule{
    grid-template-columns: 1fr;
  }
  .guidance-grid{
    grid-template-columns: 1fr;
  }
  .rules-grid{
    grid-template-columns: 1fr;
  }
  .location-grid{
    grid-template-columns: 1fr;
  }
  .map-wrap iframe{
    height: 280px;
  }
}
/* ===== TIMETABLE ONLY: MOBILE FIX + SWIPE HINT ===== */

.scroll-hint{
  display:none; /* hidden on desktop */
  text-align: center;
  font-size: 14px;
  opacity: 0.75;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.75);
}

.timetable-wrap{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
}

/* Timetable gets a minimum width so columns never cut */
.timetable-table{
  min-width: 760px;
}

/* Make scrollbar look premium on mobile */
.timetable-wrap::-webkit-scrollbar{
  height: 6px;
}
.timetable-wrap::-webkit-scrollbar-thumb{
  background: #7cff4f;
  border-radius: 999px;

}

/* Slightly smaller text on mobile */
@media (max-width: 768px){
  .timetable-table thead th,
  .timetable-table tbody td{
    font-size: 14px;
    padding: 12px;
  }

  .scroll-hint {
    display: block;
  }
}
/* ==========================
   COACHES PAGE
   ========================== */

.coach-hero{
  padding: 90px 0 55px;
  background:
    radial-gradient(circle at 20% 15%, rgba(124,255,79,0.14), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(124,255,79,0.10), transparent 40%),
    linear-gradient(135deg, #000 0%, #071006 100%);
  overflow: hidden;
}

.coach-hero-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}

.hero-tags{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-chip{
  border: 1px solid rgba(124,255,79,0.25);
  background: rgba(255,255,255,0.03);
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 13px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.tag-chip:hover{
  transform: translateY(-2px);
  border-color: rgba(124,255,79,0.45);
}

.coach-hero-card{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 16px 55px rgba(0,0,0,0.45);
  padding: 18px;
}

.pulse-ring{
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  border: 1px solid rgba(124,255,79,0.16);
  filter: blur(0.2px);
  animation: ringPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ringPulse{
  0%,100%{ opacity: 0.35; transform: scale(0.985); }
  50%{ opacity: 0.75; transform: scale(1.01); }
}

.hero-stat-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  padding: 14px;
  transition: transform 240ms ease, border-color 240ms ease;
}

.stat:hover{
  transform: translateY(-2px);
  border-color: rgba(124,255,79,0.30);
}

.stat-num{
  color: #7cff4f;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
}

.stat-label{
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 600;
  font-size: 13px;
}

.hero-note{
  margin: 14px 0 0;
  opacity: 0.85;
}

/* Profiles */
.coach-profile{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: start;
}

.coach-profile.reverse{
  grid-template-columns: 1.15fr 0.85fr;
}

.coach-profile.reverse .coach-photo-wrap{ order: 2; }
.coach-profile.reverse .coach-details{ order: 1; }

.coach-photo-wrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(124,255,79,0.18);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 18px 60px rgba(0,0,0,0.50);
  transform: translateZ(0);
}

.coach-photo{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 500ms ease;
}

.coach-photo-wrap:hover .coach-photo{
  transform: scale(1.04);
}

.coach-badge{
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(124,255,79,0.35);
  color: #7cff4f;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coach-name{
  margin: 0;
  font-size: 30px;
  color: #fff;
}

.coach-cred{
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill{
  border: 1px solid rgba(124,255,79,0.22);
  background: rgba(255,255,255,0.03);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  opacity: 0.95;
}

.coach-box{
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.16);
  background: rgba(255,255,255,0.03);
  padding: 16px;
}

.coach-subhead{
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.icon-bubble{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124,255,79,0.30);
  background: rgba(124,255,79,0.10);
  box-shadow: 0 0 18px rgba(124,255,79,0.12);
  animation: iconFloat 3.2s ease-in-out infinite;
}

@keyframes iconFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}

.tick{
  color: #7cff4f;
  font-weight: 900;
  margin-right: 8px;
}

.philosophy-list, .focus-list, .commitment-list{
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 8px;
}

.philosophy-list li, .focus-list li, .commitment-list li{
  display: flex;
  align-items: flex-start;
  gap: 6px;
  opacity: 0.92;
}

/* Expertise grid */
.expertise-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.expertise-card{
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.16);
  background: rgba(255,255,255,0.03);
  padding: 18px;
  box-shadow: 0 16px 55px rgba(0,0,0,0.35);
}

.expertise-card.full{
  grid-column: 1 / -1;
}

.disc-list{
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.why-list{
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.why-item{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
  padding: 12px;
}

.why-title{
  color: #7cff4f;
  font-weight: 800;
  margin-bottom: 4px;
}

.small-note{
  opacity: 0.82;
}

/* Subtle tilt hover */
.hover-tilt{
  transform: translateZ(0);
  transition: transform 260ms ease, border-color 260ms ease;
}

.hover-tilt:hover{
  transform: translateY(-3px);
  border-color: rgba(124,255,79,0.32);
}

/* CTA */
.coach-cta{
  padding: 55px 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(124,255,79,0.14), transparent 45%),
    linear-gradient(135deg, #000 0%, #081108 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-inner{
  text-align: center;
  max-width: 860px;
}

.cta-inner h3{
  margin: 0 0 10px;
  color: #7cff4f;
  font-size: clamp(24px, 3vw, 34px);
}

.justify{
  text-align: justify;
}

/* Reveal (if not already present in your CSS) */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px){
  .coach-hero-inner{
    grid-template-columns: 1fr;
  }
  .coach-profile, .coach-profile.reverse{
    grid-template-columns: 1fr;
  }
  .coach-profile.reverse .coach-photo-wrap{ order: 1; }
  .coach-profile.reverse .coach-details{ order: 2; }
  .coach-photo{
    height: 360px;
  }
  .expertise-grid{
    grid-template-columns: 1fr;
  }
  .expertise-card.full{
    grid-column: auto;
  }
}
/* ==========================
   COACHES V2: PROFILE CARDS
   ========================== */

.coaches-v2 .cv2-hero{
  padding: 90px 0 55px;
  background:
    radial-gradient(circle at 18% 20%, rgba(124,255,79,0.14), transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(124,255,79,0.10), transparent 40%),
    linear-gradient(135deg, #000 0%, #071006 100%);
  overflow: hidden;
}

.coaches-v2 .cv2-hero-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.coaches-v2 .cv2-kicker{
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(124,255,79,0.30);
  border-radius: 999px;
  color: #7cff4f;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  animation: cv2Glow 2.8s ease-in-out infinite;
}

@keyframes cv2Glow{
  0%,100%{ box-shadow: 0 0 0 rgba(124,255,79,0.0); }
  50%{ box-shadow: 0 0 28px rgba(124,255,79,0.26); }
}

.coaches-v2 .cv2-hero h2{
  color: #7cff4f;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 0 12px;
}

.coaches-v2 .cv2-sub{
  opacity: 0.88;
  margin: 0;
}

.coaches-v2 .cv2-cta{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.coaches-v2 .cv2-metrics{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.coaches-v2 .cv2-metric{
  border-radius: 16px;
  border: 1px solid rgba(124,255,79,0.16);
  background: rgba(255,255,255,0.03);
  padding: 12px;
}

.coaches-v2 .cv2-metric-num{
  color: #7cff4f;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.coaches-v2 .cv2-metric-label{
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 600;
  font-size: 13px;
}

.coaches-v2 .cv2-hero-panel{
  position: relative;
}

.coaches-v2 .cv2-panel-glow{
  position: absolute;
  inset: -18px;
  border-radius: 22px;
  border: 1px solid rgba(124,255,79,0.14);
  animation: cv2Ring 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cv2Ring{
  0%,100%{ opacity: 0.35; transform: scale(0.985); }
  50%{ opacity: 0.75; transform: scale(1.01); }
}

.coaches-v2 .cv2-panel-card{
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 16px 55px rgba(0,0,0,0.45);
  padding: 18px;
}

.coaches-v2 .cv2-panel-card h3{
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
}

.coaches-v2 .cv2-standards{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.coaches-v2 .cv2-dot{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7cff4f;
  margin-right: 10px;
  box-shadow: 0 0 16px rgba(124,255,79,0.22);
}

.coaches-v2 .cv2-cards{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.coaches-v2 .cv2-card{
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.16);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 16px 55px rgba(0,0,0,0.40);
  overflow: hidden;
  position: relative;
}

.coaches-v2 .cv2-card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.24);
}

.coaches-v2 .cv2-role{
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}

.coaches-v2 .cv2-chip{
  border: 1px solid rgba(124,255,79,0.26);
  background: rgba(124,255,79,0.10);
  color: #7cff4f;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.coaches-v2 .cv2-card-body{
  padding: 16px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  align-items: start;
}

.coaches-v2 .cv2-avatar-wrap{
  border-radius: 16px;
  border: 1px solid rgba(124,255,79,0.18);
  overflow: hidden;
  position: relative;
  background: rgba(0,0,0,0.25);
}

.coaches-v2 .cv2-avatar{
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 500ms ease;
}

.coaches-v2 .cv2-card:hover .cv2-avatar{
  transform: scale(1.04);
}

.coaches-v2 .cv2-badge{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.68);
  border: 1px solid rgba(124,255,79,0.35);
  color: #7cff4f;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coaches-v2 .cv2-info h4{
  margin: 0 0 8px;
  font-size: 20px;
}

.coaches-v2 .cv2-cred{
  margin: 0 0 12px;
  opacity: 0.88;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.6;
}

.coaches-v2 .cv2-mini{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.coaches-v2 .cv2-mini-item{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
  padding: 10px;
}

.coaches-v2 .cv2-mini-item span{
  display: block;
  opacity: 0.75;
  font-size: 12px;
  margin-bottom: 4px;
}

.coaches-v2 .cv2-mini-item strong{
  color: #7cff4f;
  font-weight: 800;
  font-size: 13px;
}

.coaches-v2 .cv2-teaser{
  opacity: 0.90;
  margin: 0 0 12px;
}

.coaches-v2 .cv2-more{
  width: 100%;
  border: 1px solid rgba(124,255,79,0.30);
  background: rgba(124,255,79,0.10);
  color: #7cff4f;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease;
}

.coaches-v2 .cv2-more:hover{
  transform: translateY(-2px);
  border-color: rgba(124,255,79,0.55);
}

.coaches-v2 .cv2-skill-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.coaches-v2 .cv2-skill-card{
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.16);
  background: rgba(255,255,255,0.03);
  padding: 18px;
  box-shadow: 0 16px 55px rgba(0,0,0,0.35);
}

.coaches-v2 .cv2-wide{
  grid-column: 1 / -1;
}

.coaches-v2 .cv2-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(124,255,79,0.30);
  background: rgba(124,255,79,0.10);
  margin-right: 10px;
}

.coaches-v2 .cv2-bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

.coaches-v2 .cv2-points{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.coaches-v2 .cv2-point{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.20);
  padding: 12px;
}

.coaches-v2 .cv2-point-title{
  color: #7cff4f;
  font-weight: 900;
  margin-bottom: 4px;
}

.coaches-v2 .cv2-commit{
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.coaches-v2 .cv2-tick{
  color: #7cff4f;
  font-weight: 900;
  margin-right: 8px;
}

.coaches-v2 .cv2-final-cta{
  margin-top: 20px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.16);
  background: rgba(0,0,0,0.22);
  padding: 18px;
}

.coaches-v2 .cv2-final-cta h3{
  margin: 0 0 10px;
  color: #7cff4f;
}

/* Modals */
.coaches-v2 .cv2-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.coaches-v2 .cv2-modal.open{
  display: block;
}

.coaches-v2 .cv2-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
}

.coaches-v2 .cv2-modal-card{
  position: relative;
  width: min(860px, calc(100% - 26px));
  margin: 80px auto 24px;
  border-radius: 18px;
  border: 1px solid rgba(124,255,79,0.20);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.55));
  box-shadow: 0 22px 80px rgba(0,0,0,0.65);
  padding: 18px;
  animation: cv2Pop 240ms ease;
}

@keyframes cv2Pop{
  from{ transform: translateY(10px); opacity: 0.2; }
  to{ transform: translateY(0); opacity: 1; }
}

.coaches-v2 .cv2-modal-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(124,255,79,0.22);
  background: rgba(0,0,0,0.35);
  color: #7cff4f;
  font-size: 26px;
  cursor: pointer;
}

.coaches-v2 .cv2-modal-head{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.coaches-v2 .cv2-modal-avatar{
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(124,255,79,0.20);
}

.coaches-v2 .cv2-modal-role{
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(124,255,79,0.26);
  background: rgba(124,255,79,0.10);
  color: #7cff4f;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
}

.coaches-v2 .cv2-modal-cred{
  opacity: 0.88;
  font-weight: 600;
}

.coaches-v2 .cv2-modal-body{
  padding-top: 12px;
}

.coaches-v2 .cv2-modal-body h5{
  margin: 12px 0 8px;
  color: #7cff4f;
}

.coaches-v2 .cv2-modal-list{
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 8px;
}

/* Utilities */
.coaches-v2 .justify{
  text-align: justify;
}

.coaches-v2 .hover-tilt{
  transition: transform 260ms ease, border-color 260ms ease;
}
.coaches-v2 .hover-tilt:hover{
  transform: translateY(-3px);
  border-color: rgba(124,255,79,0.34);
}

/* Reveal, if not already in your CSS */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px){
  .coaches-v2 .cv2-hero-inner{
    grid-template-columns: 1fr;
  }
  .coaches-v2 .cv2-metrics{
    grid-template-columns: 1fr;
  }
  .coaches-v2 .cv2-cards{
    grid-template-columns: 1fr;
  }
  .coaches-v2 .cv2-card-body{
    grid-template-columns: 1fr;
  }
  .coaches-v2 .cv2-avatar{
    height: 260px;
  }
  .coaches-v2 .cv2-skill-grid{
    grid-template-columns: 1fr;
  }
  .coaches-v2 .cv2-wide{
    grid-column: auto;
  }
}
/* ===== Coaches V2 Modal: enable internal scrolling ===== */

.coaches-v2 .cv2-modal-card{
  max-height: calc(100vh - 120px);
  overflow: hidden; /* outer card does not scroll, inner body scrolls */
}

.coaches-v2 .cv2-modal-body{
  max-height: calc(100vh - 260px); /* leaves space for header + padding */
  overflow-y: auto;
  padding-right: 8px;
}

/* nicer scrollbar */
.coaches-v2 .cv2-modal-body::-webkit-scrollbar{
  width: 6px;
}
.coaches-v2 .cv2-modal-body::-webkit-scrollbar-thumb{
  background: rgba(124,255,79,0.85);
  border-radius: 999px;
}

/* Mobile adjustments */
@media (max-width: 768px){
  .coaches-v2 .cv2-modal-card{
    margin: 58px auto 16px;
    max-height: calc(100vh - 90px);
  }
  .coaches-v2 .cv2-modal-body{
    max-height: calc(100vh - 240px);
  }
}
/* ============================
   Coaches V2 Modal: Mobile-safe scrolling
   ============================ */

.cv2-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 18px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  overflow-y: auto;          /* KEY: overlay scrolls */
  -webkit-overflow-scrolling: touch;
}

.cv2-modal.open{ display: block; }

.cv2-modal-card{
  width: min(900px, 100%);
  margin: 60px auto 24px;    /* bottom margin prevents cut */
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(124,255,79,0.25);
  box-shadow: 0 0 40px rgba(0,0,0,0.65);
}

.cv2-modal-header{
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(124,255,79,0.16);
}

.cv2-modal-body{
  padding: 18px 18px 26px;   /* KEY: extra bottom padding */
}

/* Ensure close button never overlaps content */
.cv2-modal-close{
  position: sticky;
  top: 10px;
  margin-left: auto;
  z-index: 3;
}

/* Mobile: tighter margins, more usable height */
@media (max-width: 768px){
  .cv2-modal{
    padding: 12px;
  }
  .cv2-modal-card{
    margin: 52px auto 18px;
    border-radius: 16px;
  }
  .cv2-modal-body{
    padding: 16px 16px 34px; /* extra bottom space on mobile */
  }
}
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #25D366; /* WhatsApp green */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/* Registration floating button, stacked above WhatsApp */
.reg-float {
  position: fixed;
  right: 16px;
  bottom: 80px; /* above WhatsApp button */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #007BFF; /* blue for registration */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  -webkit-tap-highlight-color: transparent;
}

.reg-float:hover {
  transform: translateY(-2px);
}

.wa-float:hover {
  transform: translateY(-2px);
}

.wa-icon {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .wa-float {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }
  .wa-icon {
    width: 28px;
    height: 28px;
  }
}

/* Optional: respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .wa-float:hover {
    transform: none;
  }
}
/* checkbox grid for courses and similar lists */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
@media (max-width: 600px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */

/* Container button */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;

  width: 56px;
  height: 56px;
  border-radius: 9999px;

  background: #25D366; /* WhatsApp green */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9000;

  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;

  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

/* Hover and active states */
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.30);
}

.wa-float:active{
  transform: translateY(0);
  filter: brightness(0.95);
}

/* Keyboard focus (accessibility) */
.wa-float:focus-visible{
  outline: 3px solid rgba(198, 255, 0, 0.65);
  outline-offset: 3px;
}

/* SVG icon sizing (if using inline SVG) */
.wa-icon{
  width: 30px;
  height: 30px;
  fill: #ffffff;
  display: block;
}

/* Image icon sizing (if using <img>) */
.wa-img{
  width: 30px;
  height: 30px;
  display: block;
}

.reg-float,
.notice-float{
  position: fixed;
  right: 16px;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.reg-float{
  bottom: 84px;
  background: transparent;
  box-shadow: none;
}

.notice-float{
  bottom: 152px;
  background: transparent;
  box-shadow: none;
}

.reg-img,
.notice-img{
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

.reg-img,
.notice-img{
  animation: reg-float-pulse 1.9s ease-in-out infinite;
  will-change: transform;
}

.reg-float:hover,
.notice-float:hover{
  transform: translateY(-2px);
}

.reg-float:focus-visible,
.notice-float:focus-visible{
  outline: 3px solid rgba(198, 255, 0, 0.65);
  outline-offset: 3px;
}



/* Mobile adjustments */
@media (max-width: 480px){
  .wa-float{
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .wa-icon,
  .wa-img{
    width: 28px;
    height: 28px;
  }

  .reg-float,
  .notice-float{
    right: 12px;
    width: 58px;
    height: 58px;
  }

  .reg-float{
    bottom: 76px;
  }

  .notice-float{
    bottom: 140px;
  }

  .reg-img,
  .notice-img{
    width: 58px;
    height: 58px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .wa-float{
    transition: none;
  }
  .wa-float:hover{
    transform: none;
  }
  .reg-img,
  .notice-img{
    animation: none;
  }
}

@keyframes reg-float-pulse{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.09);
  }
  100%{
    transform: scale(1);
  }
}

/* Ensure mobile dropdown menu overlays the WhatsApp button when open */
@media (max-width: 768px){
  .main-nav.open{
    position: absolute; /* keep your existing behaviour */
    z-index: 9999;
  }

  .wa-float{
    z-index: 9000;
  }
}
/* ===========================
   LOGIN PAGE (PRO)
   =========================== */
.page-login{
  background: radial-gradient(circle at top, #1a1a1a 0, #000 55%);
}

.login-shell{
  min-height: calc(100vh - 140px);
}

.login-section{
  padding: 60px 0 80px;
}

.login-wrap{
  display: grid;
  place-items: center;
}

.pro-card{
  width: min(520px, 92vw);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(198,255,0,0.18);
  background: rgba(10,10,10,0.75);
  box-shadow: 0 0 45px rgba(0,0,0,0.70);
  position: relative;
  overflow: hidden;
}

.pro-card::before{
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(198,255,0,0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255,92,26,0.14), transparent 55%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.login-head{
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.login-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198,255,0,0.22);
  background: rgba(0,0,0,0.35);
  color: #eaffb4;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.pulse-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c6ff00;
  box-shadow: 0 0 18px rgba(198,255,0,0.85);
  animation: pulseDot 1.3s infinite ease-in-out;
}

@keyframes pulseDot{
  0%{ transform: scale(0.85); opacity: 0.65; }
  50%{ transform: scale(1.15); opacity: 1; }
  100%{ transform: scale(0.85); opacity: 0.65; }
}

.login-h2{
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #f5f5f5;
  font-size: 28px;
}

.login-p{
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(245,245,245,0.72);
  line-height: 1.55;
}

.login-form{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.field label{
  display: block;
  margin-bottom: 6px;
  color: rgba(245,245,245,0.78);
  font-weight: 600;
  font-size: 13px;
}

.field input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  color: #f5f5f5;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus{
  border-color: rgba(198,255,0,0.6);
  box-shadow: 0 0 0 3px rgba(198,255,0,0.12);
}

.password-wrap{
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn{
  border: 1px solid rgba(198,255,0,0.26);
  background: rgba(0,0,0,0.35);
  color: #c6ff00;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.btn-full{
  width: 100%;
  justify-content: center;
}

.hint{
  min-height: 18px;
  font-size: 13px;
  color: rgba(245,245,245,0.72);
}

.hint.is-error{
  color: #ff6b6b;
}

.hint.is-ok{
  color: #c6ff00;
}

.login-foot{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.soft-link{
  color: rgba(198,255,0,0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.soft-link:hover{
  text-decoration: underline;
}

.login-note{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(245,245,245,0.58);
  line-height: 1.45;
}

/* ===========================
   LOGIN OPTIONS UI
   =========================== */
.page-login{
  background: radial-gradient(circle at top, #1a1a1a 0, #000 55%);
}

.login-shell{
  min-height: calc(100vh - 140px);
}

.login-section{
  padding: 56px 0 80px;
}

.login-hero{
  max-width: 880px;
  margin: 0 auto 18px;
  text-align: center;
}

.login-kicker{
  color: rgba(198,255,0,0.9);
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0 0 6px;
}

.login-title{
  margin: 0 0 10px;
  font-size: 34px;
  color: #f5f5f5;
}

.login-subtitle{
  margin: 0 auto;
  max-width: 740px;
  color: rgba(245,245,245,0.72);
  line-height: 1.6;
}

.login-options{
  margin: 22px auto 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
}

.option-card{
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,10,10,0.70);
  cursor: pointer;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.option-card:hover{
  transform: translateY(-2px);
  border-color: rgba(198,255,0,0.28);
  box-shadow: 0 0 30px rgba(0,0,0,0.55);
}

.option-card.is-active{
  border-color: rgba(198,255,0,0.55);
  box-shadow: 0 0 0 3px rgba(198,255,0,0.10);
}

.option-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(198,255,0,0.12);
  color: #c6ff00;
  font-size: 18px;
}

.option-text h3{
  margin: 0 0 4px;
  color: #f5f5f5;
  font-size: 16px;
}

.option-text p{
  margin: 0;
  color: rgba(245,245,245,0.70);
  font-size: 13px;
  line-height: 1.45;
}

.option-chip{
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: #0b0b0b;
  background: #c6ff00;
}

.option-chip.is-soon{
  color: #f5f5f5;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

/* ===========================
   LOGIN CARD (ADMIN)
   =========================== */
.login-grid{
  margin: 14px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.pro-card, .info-card{
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(198,255,0,0.18);
  background: rgba(10,10,10,0.75);
  box-shadow: 0 0 45px rgba(0,0,0,0.70);
}

.pro-card{
  position: relative;
  overflow: hidden;
}

.pro-card::before{
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(198,255,0,0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255,92,26,0.14), transparent 55%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.login-head{
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.login-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198,255,0,0.22);
  background: rgba(0,0,0,0.35);
  color: #eaffb4;
  font-weight: 700;
  margin-bottom: 12px;
}

.pulse-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c6ff00;
  box-shadow: 0 0 18px rgba(198,255,0,0.85);
  animation: pulseDot 1.3s infinite ease-in-out;
}

@keyframes pulseDot{
  0%{ transform: scale(0.85); opacity: 0.65; }
  50%{ transform: scale(1.15); opacity: 1; }
  100%{ transform: scale(0.85); opacity: 0.65; }
}

.login-h3{
  margin: 0 0 8px;
  color: #f5f5f5;
  font-size: 22px;
}

.login-p{
  margin: 0;
  color: rgba(245,245,245,0.72);
  line-height: 1.55;
}

.login-form{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.field label{
  display: block;
  margin-bottom: 6px;
  color: rgba(245,245,245,0.78);
  font-weight: 700;
  font-size: 13px;
}

.field input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  color: #f5f5f5;
  outline: none;
}

.password-wrap{
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn{
  border: 1px solid rgba(198,255,0,0.26);
  background: rgba(0,0,0,0.35);
  color: #c6ff00;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.btn-full{
  width: 100%;
  justify-content: center;
}

.hint{
  min-height: 18px;
  font-size: 13px;
  color: rgba(245,245,245,0.72);
}

.hint.is-error{ color: #ff6b6b; }
.hint.is-ok{ color: #c6ff00; }

.login-foot{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.soft-link{
  color: rgba(198,255,0,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.soft-link:hover{
  text-decoration: underline;
}

.login-note{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(245,245,245,0.58);
  line-height: 1.45;
}

.info-title{
  margin: 0 0 10px;
  color: #f5f5f5;
  font-size: 18px;
}

.info-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(245,245,245,0.74);
  line-height: 1.65;
}

.info-callout{
  margin-top: 14px;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,92,26,0.25);
  background: rgba(255,92,26,0.08);
}

.info-callout-title{
  margin: 0 0 6px;
  color: rgba(255,92,26,0.95);
  font-weight: 800;
}

.info-callout-text{
  margin: 0;
  color: rgba(245,245,245,0.70);
  line-height: 1.55;
}

/* ===========================
   DASHBOARD (BASIC SHELL)
   =========================== */
.page-dashboard{
  background: radial-gradient(circle at top, #1a1a1a 0, #000 55%);
}

.dash-shell{
  padding: 44px 0 80px;
  min-height: calc(100vh - 120px);
}

.dash-hero{
  margin-bottom: 16px;
}

.dash-title{
  margin: 0 0 10px;
  color: #f5f5f5;
  font-size: 30px;
}

.dash-subtitle{
  margin: 0;
  color: rgba(245,245,245,0.72);
  line-height: 1.6;
}

.dash-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.dash-card{
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(198,255,0,0.18);
  background: rgba(10,10,10,0.75);
  box-shadow: 0 0 35px rgba(0,0,0,0.62);
}

.dash-card h3{
  margin: 0 0 8px;
  color: #f5f5f5;
  font-size: 18px;
}

.dash-card p{
  margin: 0 0 12px;
  color: rgba(245,245,245,0.72);
  line-height: 1.55;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 980px){
  .login-options{ grid-template-columns: 1fr; }
  .login-grid{ grid-template-columns: 1fr; }
  .dash-grid{ grid-template-columns: 1fr; }
}
.login-options.two-cols{
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 980px){
  .login-options.two-cols{
    grid-template-columns: 1fr;
  }
}

/* ===========================
   DASHBOARD LAYOUT
   =========================== */
.page-dashboard{
  background: radial-gradient(circle at top, #1a1a1a 0, #000 55%);
}

.dash-shell{
  padding: 38px 0 80px;
  min-height: calc(100vh - 110px);
}

.dash-layout{
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  transition: grid-template-columns 0.2s ease;
}

.dash-sidebar{
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(198,255,0,0.18);
  background: rgba(10,10,10,0.75);
  box-shadow: 0 0 35px rgba(0,0,0,0.60);
  position: sticky;
  top: 16px;
  transition: width 0.2s ease, padding 0.2s ease;
  overflow: hidden;
}

.dash-role{
  margin: 0 0 6px;
  color: rgba(198,255,0,0.9);
  font-weight: 800;
}

.dash-h2{
  margin: 0 0 12px;
  color: #f5f5f5;
  font-size: 20px;
}

.dash-nav-btn{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border-radius: 14px;
  padding: 12px 12px;
  margin: 8px 0 0;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.35);
  color: rgba(245,245,245,0.86);
  font-weight: 700;
  cursor: pointer;
}

.dash-nav-icon{
  width: 20px;
  min-width: 20px;
  text-align: center;
  font-size: 16px;
}

.dash-nav-text{
  display: inline-block;
  white-space: nowrap;
}

.dash-nav-btn.is-active{
  border-color: rgba(198,255,0,0.55);
  box-shadow: 0 0 0 3px rgba(198,255,0,0.10);
  color: #f5f5f5;
}

.dash-nav-btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}

.dash-side-note{
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,92,26,0.25);
  background: rgba(255,92,26,0.08);
  color: rgba(245,245,245,0.70);
  line-height: 1.55;
}

.dash-main{
  display: grid;
  gap: 14px;
}

.dash-view.is-hidden{
  display: none;
}

.is-hidden{
  display: none !important;
}

.dash-head{
  margin-bottom: 10px;
}

.dash-title{
  margin: 0 0 8px;
  color: #f5f5f5;
  font-size: 22px;
}

.dash-subtitle{
  margin: 0;
  color: rgba(245,245,245,0.72);
  line-height: 1.6;
}

.dash-card{
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(198,255,0,0.18);
  background: rgba(10,10,10,0.75);
  box-shadow: 0 0 35px rgba(0,0,0,0.60);
}

.dash-form{
  display: grid;
  gap: 12px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.form-field{
  display: grid;
  gap: 6px;
  color: rgba(245,245,245,0.82);
  font-weight: 700;
  font-size: 13px;
}

.form-field input, .form-field select, .form-field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  color: #f5f5f5;
  outline: none;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color: rgba(198,255,0,0.6);
  box-shadow: 0 0 0 3px rgba(198,255,0,0.10);
}

.form-help{
  color: rgba(245,245,245,0.62);
  font-weight: 600;
  font-size: 12px;
}

.form-switch{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,245,245,0.78);
  font-weight: 700;
}

.list-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.list-head h4{
  margin: 0;
  color: #f5f5f5;
}

.list-filters{
  display: flex;
  gap: 10px;
  align-items: center;
}

.select-mini{
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.35);
  color: #f5f5f5;
  font-weight: 700;
}

.dash-grid-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.storage-usage-card{
  margin-bottom: 14px;
}

.storage-usage-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.storage-usage-head h4,
.storage-inline-head h4{
  margin: 0;
  color: #f5f5f5;
}

.storage-usage-track{
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.storage-usage-track.is-small{
  height: 10px;
}

.storage-usage-fill{
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7cff4f 0%, #c6ff00 60%, #ffd166 100%);
  transition: width 260ms ease;
}

.storage-usage-fill.is-high{
  background: linear-gradient(90deg, #ffd166 0%, #ff9f1c 55%, #ff5c1a 100%);
}

.storage-usage-text{
  margin: 10px 0 0;
  color: rgba(245,245,245,0.86);
  font-weight: 700;
  font-size: 13px;
}

.storage-breakdown-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.storage-breakdown-item{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 10px;
  background: rgba(0,0,0,0.28);
}

.storage-breakdown-label{
  margin: 0 0 8px;
  color: rgba(245,245,245,0.72);
  font-size: 12px;
  font-weight: 700;
}

.storage-breakdown-text{
  margin: 7px 0 0;
  color: rgba(245,245,245,0.86);
  font-size: 12px;
  font-weight: 700;
}

.storage-inline-card{
  margin-bottom: 12px;
}

.storage-inline-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.storage-inline-text{
  margin: 0;
  color: rgba(245,245,245,0.76);
  font-size: 12px;
  font-weight: 700;
}

.gallery-preview-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-preview-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.32);
  overflow: hidden;
}

.gallery-preview-compare{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.gallery-preview-mode{
  margin: 0 0 6px;
  color: rgba(245,245,245,0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-preview-image-wrap{
  height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.gallery-preview-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-preview-body{
  padding: 12px;
  display: grid;
  gap: 10px;
}

.gallery-preview-name{
  margin: 0;
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 700;
  word-break: break-word;
}

.gallery-crop-label{
  display: grid;
  gap: 6px;
  color: rgba(245,245,245,0.74);
  font-size: 12px;
  font-weight: 700;
}

.mini-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}

.mini-img-wrap{
  height: 200px;
  overflow: hidden;
}

.mini-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-body{
  padding: 12px;
}

.mini-top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.mini-cat{
  color: #c6ff00;
  font-weight: 800;
  font-size: 12px;
}

.mini-date{
  color: rgba(245,245,245,0.60);
  font-weight: 700;
  font-size: 12px;
}

.mini-title{
  margin: 0 0 10px;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.45;
}

.mini-text{
  margin: 0 0 10px;
  color: rgba(245,245,245,0.72);
  line-height: 1.55;
}

.mini-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-btn{
  flex: 1 1 120px;
  justify-content: center;
}

/* ===========================
   PUBLIC GALLERY
   =========================== */
.gallery-controls .btn{
  min-width: 126px;
}

.gallery-controls{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.album-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.album-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,10,10,0.72);
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0,0,0,0.52);
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease;
}

.album-card:hover,
.album-card:focus-visible{
  transform: translateY(-2px);
  border-color: rgba(198,255,0,0.42);
}

.album-preview-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
}

.album-preview-tile{
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

.album-preview-tile.is-main{
  grid-column: span 2;
  height: 124px;
}

.album-preview-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-card-body{
  padding: 12px;
}

.album-card-title{
  margin: 0;
  color: #f5f5f5;
  font-weight: 800;
}

.album-card-meta{
  margin: 6px 0 0;
  color: rgba(245,245,245,0.62);
  font-size: 12px;
  font-weight: 700;
}

.album-view-head{
  margin: 10px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.album-view-title{
  margin: 0;
  color: #f5f5f5;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.public-gallery-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,10,10,0.70);
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0,0,0,0.55);
}

.public-gallery-img-wrap{
  height: clamp(220px, 32vw, 300px);
  overflow: hidden;
}

.public-gallery-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.public-gallery-body{
  padding: 12px;
}

.public-gallery-cap{
  margin: 0 0 6px;
  color: #f5f5f5;
  font-weight: 700;
  line-height: 1.45;
}

.public-gallery-meta{
  margin: 0;
  color: rgba(245,245,245,0.62);
  font-weight: 700;
  font-size: 12px;
}

@media (max-width: 980px){
  .dash-layout{ grid-template-columns: 1fr; }
  .dash-sidebar{ position: relative; top: 0; }
  .form-row{ grid-template-columns: 1fr; }
  .dash-grid-cards{ grid-template-columns: 1fr; }
  .storage-breakdown-grid{ grid-template-columns: 1fr; }
  .storage-inline-head{ align-items: flex-start; flex-direction: column; }
  .gallery-preview-grid{ grid-template-columns: 1fr; }
  .gallery-preview-compare{ grid-template-columns: 1fr; }
  .album-grid{ grid-template-columns: 1fr; }
  .album-preview-tile{ height: 84px; }
  .album-preview-tile.is-main{ height: 118px; }
  .public-gallery-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 980px){
  .site-header{
    position: relative;
    z-index: 999;
  }
}

/* ===========================
   GLOBAL NOTICE POPUP
   =========================== */
.notice-modal{
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 16px;
}

.notice-modal-open{
  overflow: hidden;
}

.notice-inner{
  width: min(820px, 96vw);
  background: rgba(10,10,10,0.95);
  border: 1px solid rgba(198,255,0,0.24);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.55);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  max-height: min(78vh, 620px);
}

.notice-left{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}

.notice-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(198,255,0,0.12);
  border: 1px solid rgba(198,255,0,0.22);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex: 0 0 auto;
}

.notice-content{
  min-width: 0;
  max-height: min(64vh, 520px);
  overflow: auto;
  padding-right: 6px;
}

.notice-title{
  margin: 0 0 6px;
  color: rgba(198,255,0,0.92);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.notice-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice-pill{
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: rgba(245,245,245,0.85);
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  flex-wrap: wrap;
}

.notice-tag{
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #0b0b0b;
  background: #c6ff00;
  flex: 0 0 auto;
}

.notice-tag.pinned{
  background: rgba(255,92,26,0.95);
  color: #0b0b0b;
}

.notice-text{
  font-size: 13px;
  font-weight: 700;
  color: rgba(245,245,245,0.86);
  white-space: normal;
  word-break: break-word;
  flex: 1 1 240px;
}

.notice-attachment{
  color: rgba(198,255,0,0.95);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  flex: 1 0 100%;
}

.notice-close{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: rgba(245,245,245,0.9);
  border-radius: 12px;
  padding: 7px 10px;
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px){
  .notice-inner{
    align-items: flex-start;
    max-height: 86vh;
    padding: 14px;
  }
  .notice-text{
    font-size: 12px;
  }
}

.mini-attach{
  margin: 8px 0 10px;
  display: grid;
  gap: 4px;
}

.mini-attach-link{
  color: rgba(198,255,0,0.92);
  font-weight: 800;
  text-decoration: none;
}

.mini-attach-link:hover{
  text-decoration: underline;
}

.mini-attach-meta{
  color: rgba(245,245,245,0.58);
  font-weight: 700;
  font-size: 12px;
}

.mini-status{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  width: fit-content;
}

.mini-status.is-active{
  color: #0b0b0b;
  background: rgba(198,255,0,0.92);
}

.mini-status.is-expired{
  color: #0b0b0b;
  background: rgba(255,92,26,0.95);
}

/* Admin dashboard overrides */
.page-dashboard .dash-layout{
  position: relative;
}

.page-dashboard .dash-sidebar-toggle{
  position: fixed;
  top: 84px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(198,255,0,0.35);
  background: rgba(0,0,0,0.76);
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  z-index: 1300;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.page-dashboard .dash-stat-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-dashboard .dash-kpi-card{
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 220px;
}

.page-dashboard .dash-kpi-label{
  margin: 0;
  color: rgba(245,245,245,0.74);
  font-size: 14px;
  font-weight: 700;
}

.page-dashboard .dash-kpi-value{
  margin: 0;
  font-size: 52px;
  font-weight: 900;
  color: #c6ff00;
  line-height: 1;
}

.page-dashboard .dash-chart-wrap{
  display: grid;
  gap: 14px;
  justify-items: center;
}

.page-dashboard .dash-pie-chart{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: conic-gradient(#2e2e2e 0 100%);
}

.page-dashboard .dash-chart-legend{
  width: 100%;
  display: grid;
  gap: 8px;
}

.page-dashboard .dash-legend-item{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,245,245,0.86);
  font-size: 14px;
  font-weight: 600;
}

.page-dashboard .dash-legend-swatch{
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.page-dashboard .reg-more-btn{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.42);
  color: #f5f5f5;
  font-size: 20px;
  cursor: pointer;
}

.page-dashboard .reg-floating-menu{
  position: fixed;
  min-width: 148px;
  background: rgba(10,10,10,0.98);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  overflow: hidden;
  display: none;
  z-index: 2000;
  box-shadow: 0 16px 28px rgba(0,0,0,0.5);
}

.page-dashboard .reg-floating-menu.is-open{
  display: grid;
}

.page-dashboard .reg-more-item{
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: rgba(245,245,245,0.9);
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}

.page-dashboard .reg-more-item:last-child{
  border-bottom: 0;
}

.page-dashboard .reg-more-item:hover,
.page-dashboard .reg-more-item:focus{
  background: rgba(198,255,0,0.12);
}

body.page-dashboard.dash-sidebar-collapsed .dash-layout{
  grid-template-columns: 84px minmax(0, 1fr);
}

body.page-dashboard.dash-sidebar-collapsed .dash-sidebar{
  width: 84px;
  padding: 14px 10px;
}

body.page-dashboard.dash-sidebar-collapsed .dash-side-top,
body.page-dashboard.dash-sidebar-collapsed .dash-side-note,
body.page-dashboard.dash-sidebar-collapsed .dash-nav-text{
  display: none;
}

body.page-dashboard.dash-sidebar-collapsed .dash-nav-btn{
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

body.page-dashboard.dash-sidebar-collapsed .dash-sidebar-toggle{
  transform: translateX(0);
}

.page-dashboard .reg-gate-card{
  padding: 12px 14px;
  max-width: 760px;
}

.page-dashboard .reg-gate-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-dashboard .reg-gate-actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-dashboard .reg-gate-code-wrap{
  margin-top: 8px;
}

.page-dashboard .reg-gate-code-wrap #gateCodeText{
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

@media (max-width: 980px){
  .page-dashboard .dash-sidebar-toggle{
    top: 78px;
    left: 10px;
  }
  .page-dashboard .dash-sidebar{
    position: fixed;
    top: 72px;
    left: 0;
    width: min(320px, 86vw);
    height: calc(100vh - 72px);
    overflow-y: auto;
    border-radius: 0 16px 16px 0;
    transform: translateX(-110%);
    transition: transform 0.25s ease;
    z-index: 1250;
  }
  body.page-dashboard.dash-sidebar-open .dash-sidebar{
    transform: translateX(0);
  }
  body.page-dashboard.dash-sidebar-collapsed .dash-sidebar{
    display: block;
  }
  body.page-dashboard.dash-sidebar-collapsed .dash-side-top,
  body.page-dashboard.dash-sidebar-collapsed .dash-side-note,
  body.page-dashboard.dash-sidebar-collapsed .dash-nav-text{
    display: block;
  }
  body.page-dashboard.dash-sidebar-collapsed .dash-nav-btn{
    justify-content: flex-start;
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-dashboard .reg-gate-card{
    max-width: 100%;
  }
  .page-dashboard .dash-stat-grid{
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SAMPLE SIDEBAR STYLE (ADMIN)
   =========================== */
.page-dashboard .dash-layout{
  display: block;
  position: relative;
  padding-left: 56px;
  transition: padding-left 0.18s ease;
}

body.page-dashboard.dash-sidebar-open .dash-layout{
  padding-left: 224px;
}

.page-dashboard .dash-main{
  min-width: 0;
}

.page-dashboard .dash-sidebar{
  position: fixed;
  top: 84px;
  left: 0;
  bottom: 16px;
  width: 54px;
  height: auto;
  padding: 0;
  border: 1px solid rgba(198,255,0,0.2);
  border-radius: 0;
  background: rgba(10,10,10,0.92);
  box-shadow: 0 16px 30px rgba(0,0,0,0.55);
  transform: none !important;
  overflow: hidden;
  z-index: 1400;
  transition: width 0.18s ease;
}

.page-dashboard .dash-sidebar-rail{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.page-dashboard .dash-rail-top{
  display: block;
  align-items: left;
  height: 42px;
}

.page-dashboard .dash-sidebar-toggle{
  position: static;
  top: auto;
  left: auto;
  width: 100%;
  height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(198,255,0,0.2);
  background: rgba(198,255,0,0.08);
  color: #c6ff00;
  font-size: 26px;
  cursor: pointer;
  border-radius: 0;
  display: grid;
  place-items: center;
  transition: background 0.18s ease;
}

.page-dashboard .dash-sidebar-toggle:hover{
  background: rgba(198,255,0,0.16);
}

.page-dashboard .dash-rail-sep{
  width: 100%;
  height: 1px;
  background: rgba(198,255,0,0.2);
}

.page-dashboard .dash-rail-nav-btn{
  width: 100%;
  height: 50px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.16s ease;
}

.page-dashboard .dash-rail-nav-btn:hover,
.page-dashboard .dash-rail-nav-btn.is-active{
  background: rgba(198,255,0,0.12);
}

.page-dashboard .dash-rail-nav-btn.is-active{
  border-left-color: #c6ff00;
}

.page-dashboard .dash-rail-icon-img{
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
}

.page-dashboard .dash-sidebar-panel{
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  height: calc(100% - 42px);
  padding: 8px 2px 8px 0;
  background: transparent;
  border: 0;
  transform: translateX(0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
  overflow-y: auto;
}

body.page-dashboard.dash-sidebar-open .dash-sidebar-panel{
  opacity: 1;
  pointer-events: auto;
}

body.page-dashboard.dash-sidebar-open .dash-sidebar{
  width: 228px;
}

/* Prevent duplicate menus: closed = icon rail, open = full panel */
body.page-dashboard.dash-sidebar-open .dash-rail-nav-btn,
body.page-dashboard.dash-sidebar-open .dash-rail-sep{
  display: none;
}

body.page-dashboard:not(.dash-sidebar-open) .dash-sidebar-panel{
  display: none;
}

.page-dashboard .dash-side-top{
  padding: 4px 0 8px;
}

.page-dashboard .dash-role{
  font-size: 11px;
  margin: 0 0 4px;
}

.page-dashboard .dash-h2{
  margin: 0;
  font-size: 16px;
}

.page-dashboard .dash-nav-btn{
  width: 100%;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  border-radius: 10px;
  margin: 0 0 6px;
  padding: 10px 2px 10px 0;
  background: transparent;
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 700;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 8px;
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.page-dashboard .dash-nav-icon{
  width: 36px;
  min-width: 36px;
  line-height: 0;
}

.page-dashboard .dash-nav-icon-img{
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
}

.page-dashboard .dash-nav-text{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.page-dashboard .dash-nav-btn:hover,
.page-dashboard .dash-nav-btn.is-active{
  background: rgba(198,255,0,0.1);
  border-color: rgba(198,255,0,0.3);
}

.page-dashboard .dash-nav-btn.is-active{
  border-left-color: #c6ff00;
  box-shadow: 0 0 0 2px rgba(198,255,0,0.14);
}

.page-dashboard .dash-side-note{
  margin: 12px 2px 6px 0;
  border-radius: 10px;
  font-size: 12px;
}

@media (max-width: 1100px){
  .page-dashboard .dash-layout{
    padding-left: 56px;
  }
  body.page-dashboard.dash-sidebar-open .dash-layout{
    padding-left: 56px;
  }
  .page-dashboard .dash-sidebar{
    top: 74px;
    left: 0;
    bottom: 8px;
  }
  .page-dashboard .dash-sidebar-panel{
    width: 100%;
  }
  body.page-dashboard.dash-sidebar-open .dash-sidebar{
    width: calc(54px + min(174px, calc(100vw - 82px)));
  }
}

/* Mobile app-style bottom navigation */
.mobile-bottom-nav{
  display: none;
}

@media (max-width: 980px){
  .page-dashboard .dash-shell{
    overflow-x: hidden;
  }

  .page-dashboard .dash-shell .container.dash-layout{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .page-dashboard .dash-layout,
  body.page-dashboard.dash-sidebar-open .dash-layout{
    padding-left: 12px !important;
  }

  .page-dashboard .dash-sidebar{
    display: none !important;
  }

  .page-dashboard .dash-main{
    width: 100%;
    min-width: 0;
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-nav{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1600;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(198,255,0,0.25);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(8px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  body.mobile-nav-hidden .mobile-bottom-nav{
    transform: translateY(105%);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-btn{
    border: 0;
    background: transparent;
    color: rgba(245,245,245,0.82);
    padding: 8px 2px 7px;
    display: grid;
    justify-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav-btn.is-active{
    color: #c6ff00;
    background: rgba(198,255,0,0.10);
  }

  .mobile-nav-icon{
    width: 21px;
    height: 21px;
    object-fit: contain;
    display: block;
  }
}

