/* ================================================================
   AGRI MALAYSIA 2026 — Main Stylesheet
   Dark cinematic theme / Web Summit-inspired design
   ================================================================ */

/* ----------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
    /* Palette */
    --color-bg:           #0a0a0a;
    --color-bg-elevated:  #111111;
    --color-bg-card:      #161616;
    --color-bg-card-hover:#1c1c1c;
    --color-surface:      #1a1a1a;
    --color-border:       #2a2a2a;
    --color-border-light: #333333;

    --color-primary:      #2ecc71;
    --color-primary-dark: #27ae60;
    --color-primary-glow: rgba(46, 204, 113, 0.25);

    --color-secondary:    #f1c40f;
    --color-secondary-dark:#d4ac0d;
    --color-secondary-glow:rgba(241, 196, 15, 0.25);

    --color-text:         #ffffff;
    --color-text-muted:   #aaaaaa;
    --color-text-dim:     #777777;

    --color-danger:       #e74c3c;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Poppins', sans-serif;

    --fs-hero:     clamp(3rem, 8vw, 7rem);
    --fs-h1:       clamp(2rem, 4vw, 3.5rem);
    --fs-h2:       clamp(1.75rem, 3.5vw, 3rem);
    --fs-h3:       clamp(1.25rem, 2.5vw, 1.75rem);
    --fs-h4:       1.125rem;
    --fs-body:     1rem;
    --fs-sm:       0.875rem;
    --fs-xs:       0.75rem;

    /* Spacing */
    --space-xs:    0.25rem;
    --space-sm:    0.5rem;
    --space-md:    1rem;
    --space-lg:    1.5rem;
    --space-xl:    2rem;
    --space-2xl:   3rem;
    --space-3xl:   4rem;
    --space-4xl:   6rem;
    --space-5xl:   8rem;

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;

    /* Radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
    --shadow-hover:  0 8px 40px rgba(0,0,0,0.6);
    --shadow-glow-g: 0 0 30px rgba(46,204,113,0.15);
    --shadow-glow-y: 0 0 30px rgba(241,196,15,0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;

    /* Navbar */
    --navbar-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

::selection {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* ----------------------------------------------------------------
   2. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--wide {
    max-width: var(--container-wide);
}

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section--sm {
    padding: var(--space-3xl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__title {
    font-size: var(--fs-h2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}

.section__title span {
    color: var(--color-primary);
}

.section__subtitle {
    font-size: var(--fs-body);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-muted { color: var(--color-text-muted); }

/* ----------------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-bg);
}

.btn--primary::before {
    background: var(--color-primary-dark);
}

.btn--primary:hover {
    box-shadow: var(--shadow-glow-g);
    transform: translateY(-2px);
}

.btn--secondary {
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    background: transparent;
}

.btn--secondary::before {
    background: var(--color-secondary);
}

.btn--secondary:hover {
    color: var(--color-bg);
    box-shadow: var(--shadow-glow-y);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.6rem 1.25rem;
    font-size: var(--fs-xs);
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: var(--fs-body);
}

.btn--ghost {
    border: 1px solid var(--color-border-light);
    color: var(--color-text-muted);
    background: transparent;
}

.btn--ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ----------------------------------------------------------------
   4. NAVBAR
   ---------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: background var(--transition-base), box-shadow var(--transition-base);
    background: transparent;
}

.navbar--scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__brand {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.navbar__brand-agri {
    color: var(--color-primary);
}

.navbar__brand-my {
    color: var(--color-text);
}

.navbar__brand-year {
    font-size: 0.7em;
    color: var(--color-secondary);
    margin-left: 4px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.navbar__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.navbar__link:hover {
    color: var(--color-text);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__cta {
    margin-left: var(--space-sm);
}

/* Mobile toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------------------------------
   5. HERO SECTION — Real Image Background
   ---------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: var(--navbar-height) var(--space-lg) var(--space-3xl);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Real banner background image */
.hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

/* Dark cinematic overlay on top of image (75-85% opacity for subtle photo) */
.hero__bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(10,10,10,0.88) 0%,
            rgba(10,10,10,0.8) 30%,
            rgba(10,10,10,0.78) 50%,
            rgba(10,10,10,0.82) 70%,
            rgba(10,10,10,0.95) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(46,204,113,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(241,196,15,0.03) 0%, transparent 50%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0) 30%,
        rgba(10,10,10,0) 70%,
        rgba(10,10,10,1) 100%);
    z-index: 2;
}

/* Animated grid lines */
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.015;
    background-image:
        linear-gradient(var(--color-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-primary) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating photo accents on hero edges */
.hero__float {
    position: absolute;
    z-index: 4;
    width: 180px;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(46,204,113,0.15);
    opacity: 0.3;
    filter: blur(0px);
    transition: opacity 0.6s ease;
}

.hero__float--left {
    left: 3%;
    bottom: 18%;
    transform: rotate(-4deg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(46,204,113,0.08);
}

.hero__float--right {
    right: 3%;
    top: 22%;
    transform: rotate(3deg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(241,196,15,0.08);
    border-color: rgba(241,196,15,0.15);
}

/* SVG Logo in hero */
.hero__logo-wrapper {
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: center;
}

.hero__logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(46,204,113,0.3)) drop-shadow(0 0 60px rgba(46,204,113,0.1));
    animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0%   { filter: drop-shadow(0 0 20px rgba(46,204,113,0.2)) drop-shadow(0 0 40px rgba(46,204,113,0.05)); }
    100% { filter: drop-shadow(0 0 40px rgba(46,204,113,0.4)) drop-shadow(0 0 80px rgba(46,204,113,0.15)); }
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero__edition {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    border: 1px solid rgba(241,196,15,0.35);
    padding: 0.5rem 1.75rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    background: rgba(241,196,15,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    line-height: 1;
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: var(--space-lg);
}

.hero__title-agri {
    display: block;
    color: var(--color-text);
    text-shadow: 0 0 60px rgba(255,255,255,0.1);
}

.hero__title-malaysia {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(46,204,113,0.2));
}

.hero__title-year {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    -webkit-text-fill-color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-sm);
}

.hero__tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-dim);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll i {
    width: 20px;
    height: 20px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50%      { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ----------------------------------------------------------------
   6. STATS SECTION — Parallax Image Background
   ---------------------------------------------------------------- */
.stats {
    position: relative;
    overflow: hidden;
    padding: var(--space-4xl) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark overlay for stats readability */
.stats__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(10,10,10,0.92) 0%,
            rgba(10,10,10,0.82) 50%,
            rgba(10,10,10,0.92) 100%);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    z-index: 2;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    z-index: 2;
}

.stats .container {
    position: relative;
    z-index: 3;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stats__item {
    padding: var(--space-lg);
    position: relative;
}

.stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(46,204,113,0.15);
}

.stats__number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 40px rgba(46,204,113,0.25);
}

.stats__number .stats__suffix {
    font-size: 0.6em;
    color: var(--color-secondary);
}

.stats__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------------------
   7. EXHIBITOR SHOWCASE (Carousel)
   ---------------------------------------------------------------- */
.showcase {
    background: var(--color-bg);
    overflow: hidden;
}

.showcase__track-wrapper {
    position: relative;
    margin-top: var(--space-xl);
}

.showcase__track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-md) var(--space-lg);
    scrollbar-width: none;
}

.showcase__track::-webkit-scrollbar {
    display: none;
}

.showcase__card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.showcase__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: var(--color-bg-card-hover);
}

/* Photo-backed fallback showcase cards */
.showcase__card--photo {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color-border);
}

.showcase__card--photo .showcase__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.6) 40%,
        rgba(10,10,10,0.9) 100%);
    z-index: 1;
    transition: background var(--transition-base);
}

.showcase__card--photo:hover .showcase__card-overlay {
    background: linear-gradient(180deg,
        rgba(10,10,10,0.2) 0%,
        rgba(10,10,10,0.5) 40%,
        rgba(10,10,10,0.85) 100%);
}

.showcase__card--photo .showcase__card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    height: 100%;
    justify-content: flex-end;
}

.showcase__logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-primary-dark);
    border: 2px solid rgba(46,204,113,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.showcase__card--photo .showcase__logo {
    background: rgba(39, 174, 96, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(46,204,113,0.4);
}

.showcase__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.showcase__logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.showcase__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-body);
    color: var(--color-text);
}

.showcase__country {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.showcase__footer {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Badge */
.badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(46,204,113,0.12);
    color: var(--color-primary);
    border: 1px solid rgba(46,204,113,0.2);
}

.badge--secondary {
    background: rgba(241,196,15,0.12);
    color: var(--color-secondary);
    border-color: rgba(241,196,15,0.2);
}

.badge--neutral {
    background: rgba(255,255,255,0.06);
    color: var(--color-text-muted);
    border-color: var(--color-border);
}

/* ----------------------------------------------------------------
   8. CATEGORIES SECTION — Photo Card Backgrounds
   ---------------------------------------------------------------- */
.categories {
    background: var(--color-bg-elevated);
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* Original flat card style (used by dynamic categories) */
.categories__card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.categories__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    background: var(--color-bg-card-hover);
}
.categories__card:hover .categories__card-bg {
    transform: scale(1.08);
}

/* Photo-backed category cards */
.categories__card--photo {
    position: relative;
    padding: 0;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.categories__card--photo .categories__card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.6s ease;
}

.categories__card--photo:hover .categories__card-bg {
    transform: scale(1.08);
}

.categories__card--photo .categories__card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(10,10,10,0.75) 0%,
        rgba(10,10,10,0.55) 50%,
        rgba(10,10,10,0.8) 100%);
    transition: background var(--transition-base);
}

.categories__card--photo:hover .categories__card-overlay {
    background: linear-gradient(135deg,
        rgba(10,10,10,0.6) 0%,
        rgba(10,10,10,0.4) 50%,
        rgba(10,10,10,0.65) 100%);
}

.categories__card--photo .categories__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    width: 100%;
    height: 100%;
}

.categories__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(46,204,113,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.categories__card--photo .categories__icon {
    background: rgba(46,204,113,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(46,204,113,0.2);
}

.categories__icon svg,
.categories__icon i {
    width: 24px;
    height: 24px;
}

.categories__icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.categories__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-body);
    color: var(--color-text);
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.categories__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-top: 2px;
}

.categories__card--photo .categories__desc {
    color: rgba(255,255,255,0.7);
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ----------------------------------------------------------------
   8b. EVENT PHOTOS GALLERY — Masonry Grid
   ---------------------------------------------------------------- */
.gallery-photos {
    background: var(--color-bg);
    overflow: hidden;
}

.photo-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: var(--space-md);
}

.photo-masonry__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.photo-masonry__item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 40px rgba(46,204,113,0.12);
    transform: translateY(-3px);
}

.photo-masonry__item--tall {
    grid-row: span 2;
}

.photo-masonry__item--wide {
    grid-column: span 2;
}

.photo-masonry__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-masonry__item:hover img {
    transform: scale(1.06);
}

.photo-masonry__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.photo-masonry__item:hover .photo-masonry__caption {
    transform: translateY(0);
}

.photo-masonry__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.photo-masonry__caption p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ----------------------------------------------------------------
   9. WHY SECTION — Photo Backgrounds
   ---------------------------------------------------------------- */
.why {
    background: var(--color-bg);
    overflow: hidden;
}

.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.why__col {
    padding: 0;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    position: relative;
    overflow: hidden;
}

.why__col--exhibit {
    border-top: 3px solid var(--color-primary);
}

.why__col--visit {
    border-top: 3px solid var(--color-secondary);
}

/* Photo background for why columns */
.why__col-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.12;
    transition: opacity 0.6s ease;
}

.why__col:hover .why__col-photo {
    opacity: 0.18;
}

.why__col-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(22,22,22,0.95) 0%,
        rgba(22,22,22,0.98) 100%);
}

.why__col-inner {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl);
}

.why__col-title {
    font-size: var(--fs-h3);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.why__col--exhibit .why__col-title {
    color: var(--color-primary);
}

.why__col--visit .why__col-title {
    color: var(--color-secondary);
}

.why__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.why__item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.why__item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.why__col--exhibit .why__item-icon {
    background: rgba(46,204,113,0.1);
    color: var(--color-primary);
}

.why__col--visit .why__item-icon {
    background: rgba(241,196,15,0.1);
    color: var(--color-secondary);
}

.why__item-icon svg,
.why__item-icon i {
    width: 18px;
    height: 18px;
}

.why__item-text h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-body);
    margin-bottom: 2px;
}

.why__item-text p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ----------------------------------------------------------------
   9b. VENUE SECTION
   ---------------------------------------------------------------- */
.venue {
    background: var(--color-bg-elevated);
    overflow: hidden;
}

.venue__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.venue__map-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.venue__map-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.venue__map-container:hover .venue__map-img {
    transform: scale(1.03);
}

.venue__map-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 60px rgba(46,204,113,0.06);
    border: 1px solid rgba(46,204,113,0.08);
}

.venue__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.venue__info-card {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-primary);
}

.venue__info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(46,204,113,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.venue__info-icon svg,
.venue__info-icon i {
    width: 22px;
    height: 22px;
}

.venue__info-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--fs-h4);
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.venue__info-address {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.venue__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.venue__feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.venue__feature:hover {
    border-color: rgba(46,204,113,0.3);
    background: var(--color-bg-card-hover);
}

.venue__feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(241,196,15,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
}

.venue__feature-icon svg,
.venue__feature-icon i {
    width: 16px;
    height: 16px;
}

.venue__feature h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--color-text);
    margin-bottom: 2px;
}

.venue__feature p {
    font-size: var(--fs-xs);
    color: var(--color-text-dim);
}

.venue__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-md);
}

/* ----------------------------------------------------------------
   10. FOOTER
   ---------------------------------------------------------------- */
.footer {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4xl) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.footer__brand {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer__logo-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer__logo-svg {
    width: 60px;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 12px rgba(46,204,113,0.15));
}

.footer__brand-agri { color: var(--color-primary); }
.footer__brand-my   { color: var(--color-text); }
.footer__brand-year {
    font-size: 0.6em;
    color: var(--color-secondary);
    margin-left: 4px;
}

.footer__tagline {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-sm);
}

.footer__dates {
    color: var(--color-text-dim);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.footer__social a svg {
    width: 16px;
    height: 16px;
}

.footer__social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(46,204,113,0.08);
}

.footer__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__list a,
.footer__list span {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-primary);
}

.footer__list--contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__list--contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-text-dim);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-sm);
    color: var(--color-text-dim);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer__bottom-links a {
    color: var(--color-text-dim);
    font-size: var(--fs-sm);
}

.footer__bottom-links a:hover {
    color: var(--color-primary);
}

/* ----------------------------------------------------------------
   11. GALLERY PAGE
   ---------------------------------------------------------------- */
.page-header {
    padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(46,204,113,0.06) 0%, transparent 70%);
}

.page-header__title {
    font-size: var(--fs-h1);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
}

.page-header__subtitle {
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    position: relative;
}

/* Filter bar */
.filter-bar {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: var(--navbar-height);
    z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.filter-bar__inner {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 var(--space-lg);
}

.filter-bar__inner::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    background: transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.filter-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-pill--active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
}

/* Exhibitor grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

.exhibitor-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.exhibitor-card:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-g);
}

.exhibitor-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.exhibitor-card__logo {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.exhibitor-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.exhibitor-card__logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.exhibitor-card__info {
    flex: 1;
    min-width: 0;
}

.exhibitor-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exhibitor-card__country {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-top: 2px;
}

.exhibitor-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.exhibitor-card__excerpt {
    font-size: var(--fs-sm);
    color: var(--color-text-dim);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Empty state */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    color: var(--color-text-dim);
}

.gallery-empty i {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--color-border-light);
}

/* ----------------------------------------------------------------
   12. EXHIBITOR PROFILE PAGE
   ---------------------------------------------------------------- */
.profile-hero {
    padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(46,204,113,0.06) 0%, transparent 60%);
}

.profile-hero__inner {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    position: relative;
}

.profile-hero__logo {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.profile-hero__logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-primary);
}

.profile-hero__info {
    flex: 1;
}

.profile-hero__name {
    font-size: var(--fs-h2);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.profile-hero__country {
    font-size: var(--fs-body);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.profile-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* Profile content layout */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0;
}

.profile-main {
    min-width: 0;
}

.profile-sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + var(--space-lg));
    align-self: start;
}

/* Profile sections */
.profile-section {
    margin-bottom: var(--space-3xl);
}

.profile-section__title {
    font-size: var(--fs-h3);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border);
}

.profile-section__title span {
    color: var(--color-primary);
}

.profile-overview {
    font-size: var(--fs-body);
    color: var(--color-text-muted);
    line-height: 1.8;
}

.profile-overview p {
    margin-bottom: var(--space-md);
}

.profile-overview h1,
.profile-overview h2,
.profile-overview h3 {
    color: var(--color-text);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.profile-overview ul,
.profile-overview ol {
    margin-left: var(--space-xl);
    margin-bottom: var(--space-md);
    list-style: disc;
}

.profile-overview li {
    margin-bottom: var(--space-sm);
    list-style: inherit;
}

/* Sidebar card */
.sidebar-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.sidebar-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-h4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.sidebar-card__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.sidebar-card__item:last-child {
    border-bottom: none;
}

.sidebar-card__item svg,
.sidebar-card__item i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.sidebar-card__item a {
    color: var(--color-primary);
}

.sidebar-card__item a:hover {
    text-decoration: underline;
}

/* Media gallery */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.media-grid__item {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-base);
}

.media-grid__item:hover {
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.media-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-embed {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    margin-bottom: var(--space-xl);
}

.back-link:hover {
    color: var(--color-primary);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.product-tag {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.product-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-text);
}

.product-tag svg,
.product-tag i {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

/* ----------------------------------------------------------------
   13. ANIMATION HELPERS
   ---------------------------------------------------------------- */
.js-fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.js-fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
}

.js-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
}

.js-scale-in {
    opacity: 0;
    transform: scale(0.9);
}

/* ----------------------------------------------------------------
   14. RESPONSIVE BREAKPOINTS (mobile-first)
   ---------------------------------------------------------------- */

/* Up to 768px (mobile) */
@media (max-width: 767px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--navbar-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-lg);
        border-left: 1px solid var(--color-border);
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .navbar__menu.active {
        right: 0;
    }

    .navbar__cta {
        margin-left: 0;
        margin-top: var(--space-md);
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__float {
        display: none;
    }

    .hero__logo-img {
        max-width: 180px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .stats__item:nth-child(2)::after {
        display: none;
    }

    .stats__item::after {
        display: none !important;
    }

    /* Disable parallax on mobile for performance */
    .stats {
        background-attachment: scroll;
    }

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

    .categories__card--photo {
        min-height: 160px;
    }

    .photo-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .photo-masonry__item--tall {
        grid-row: span 1;
    }

    .photo-masonry__item--wide {
        grid-column: span 1;
    }

    .photo-masonry__caption {
        transform: translateY(0);
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .venue__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .venue__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

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

    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: static;
    }

    .profile-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .profile-hero__badges {
        justify-content: center;
    }

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

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

/* Tablet: 768px-1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        max-width: 380px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--navbar-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-lg);
        border-left: 1px solid var(--color-border);
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .navbar__menu.active {
        right: 0;
    }

    .navbar__cta {
        margin-left: 0;
        margin-top: var(--space-md);
    }

    .hero__float {
        width: 140px;
        height: 190px;
        opacity: 0.2;
    }

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

    .photo-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .photo-masonry__item--wide {
        grid-column: span 2;
    }

    .venue__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: static;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Wide: 1200px+ */
@media (min-width: 1200px) {
    .categories__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----------------------------------------------------------------
   15. MISC UTILITIES
   ---------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden {
    composes: sr-only;
}

/* Overlay for mobile nav */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* Smooth loading transition */
.page-loading {
    opacity: 0;
    animation: pageIn 0.5s ease forwards;
    animation-delay: 0.1s;
}

@keyframes pageIn {
    to { opacity: 1; }
}

/* Horizontal divider with glow */
.divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    position: relative;
    margin: var(--space-xl) 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Skeleton loader for images */
.skeleton {
    background: linear-gradient(90deg,
        var(--color-surface) 25%,
        var(--color-bg-card) 50%,
        var(--color-surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

/* Glow text */
.glow-green {
    text-shadow: 0 0 20px rgba(46,204,113,0.4);
}

.glow-gold {
    text-shadow: 0 0 20px rgba(241,196,15,0.4);
}

/* ============================================================
   AUTH PAGES — Register, Login
   ============================================================ */

.auth-page {
    min-height: 100vh;
    padding: 120px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-page__header {
    text-align: center;
    margin-bottom: 48px;
}

.auth-page__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

.auth-page__subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Register choice cards */
.register-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    width: 100%;
}

.register-choice__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--color-text);
}

.register-choice__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.register-choice__card--exhibitor:hover {
    border-color: var(--color-primary);
}

.register-choice__card--visitor:hover {
    border-color: var(--color-secondary);
}

.register-choice__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.register-choice__card--exhibitor .register-choice__icon {
    background: rgba(46, 204, 113, 0.15);
    color: var(--color-primary);
}

.register-choice__card--visitor .register-choice__icon {
    background: rgba(241, 196, 15, 0.15);
    color: var(--color-secondary);
}

.register-choice__icon svg {
    width: 32px;
    height: 32px;
}

.register-choice__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.register-choice__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.register-choice__benefits li {
    padding: 8px 0;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.register-choice__benefits li::before {
    content: '\2713';
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.register-choice__card--visitor .register-choice__benefits li::before {
    color: var(--color-secondary);
}

/* Auth form styling */
.auth-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 560px;
    width: 100%;
}

.auth-form__group {
    margin-bottom: 20px;
}

.auth-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form__input {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.auth-form__input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.auth-form__input::placeholder {
    color: #555;
}

.auth-form__select {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    appearance: none;
    cursor: pointer;
    box-sizing: border-box;
}

.auth-form__select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.auth-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-form__checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.auth-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.auth-form__checkbox-label:hover {
    border-color: var(--color-primary);
    background: rgba(46, 204, 113, 0.05);
}

.auth-form__checkbox-label input:checked + span,
.auth-form__checkbox-label:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-text);
}

.auth-form__terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.auth-form__submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 8px;
}

.auth-form__footer {
    text-align: center;
    margin-top: 24px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.auth-form__footer a {
    color: var(--color-primary);
    text-decoration: none;
}

.auth-form__footer a:hover {
    text-decoration: underline;
}

.auth-form__divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

@media (max-width: 768px) {
    .register-choice {
        grid-template-columns: 1fr;
    }
    .auth-form {
        padding: 32px 24px;
    }
    .auth-form__row {
        grid-template-columns: 1fr;
    }
    .auth-page__title {
        font-size: 1.8rem;
    }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */

.admin-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 72px;
}

.admin-sidebar {
    width: 260px;
    background: #0f0f0f;
    border-right: 1px solid var(--color-border);
    padding: 24px 0;
    position: fixed;
    top: 72px;
    bottom: 0;
    overflow-y: auto;
}

.admin-sidebar__brand {
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
}

.admin-sidebar__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-sidebar__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.admin-sidebar__link:hover {
    color: var(--color-text);
    background: rgba(255,255,255,0.03);
}

.admin-sidebar__link--active {
    color: var(--color-primary);
    background: rgba(46, 204, 113, 0.05);
    border-left-color: var(--color-primary);
}

.admin-sidebar__link--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.admin-sidebar__link svg {
    width: 18px;
    height: 18px;
}

.admin-sidebar__badge {
    margin-left: auto;
    background: var(--color-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
}

.admin-main__header {
    margin-bottom: 32px;
}

.admin-main__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.admin-main__subtitle {
    color: var(--color-text-muted);
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card__icon--green { background: rgba(46, 204, 113, 0.15); color: #2ecc71; }
.stat-card__icon--yellow { background: rgba(241, 196, 15, 0.15); color: #f1c40f; }
.stat-card__icon--red { background: rgba(231, 76, 60, 0.15); color: #e74c3c; }
.stat-card__icon--blue { background: rgba(52, 152, 219, 0.15); color: #3498db; }
.stat-card__icon--purple { background: rgba(155, 89, 182, 0.15); color: #9b59b6; }

.stat-card__icon svg { width: 22px; height: 22px; }

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-card__label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Admin table */
.admin-table-container {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    background: rgba(255,255,255,0.02);
}

.admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* Status badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--pending { background: rgba(241, 196, 15, 0.15); color: #f1c40f; }
.badge--approved { background: rgba(46, 204, 113, 0.15); color: #2ecc71; }
.badge--rejected { background: rgba(231, 76, 60, 0.15); color: #e74c3c; }

.badge--category {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    margin: 2px 4px 2px 0;
}

/* Admin action buttons */
.admin-actions {
    display: flex;
    gap: 8px;
}

.btn--sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.btn--approve { background: rgba(46, 204, 113, 0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.btn--approve:hover { background: rgba(46, 204, 113, 0.25); }
.btn--reject { background: rgba(231, 76, 60, 0.15); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }
.btn--reject:hover { background: rgba(231, 76, 60, 0.25); }
.btn--view { background: rgba(52, 152, 219, 0.15); color: #3498db; border: 1px solid rgba(52,152,219,0.3); }
.btn--view:hover { background: rgba(52, 152, 219, 0.25); }

/* Status filter pills */
.status-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.status-filter {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--color-surface);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.status-filter:hover {
    color: var(--color-text);
    border-color: var(--color-text-muted);
}

.status-filter--active {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
    font-weight: 600;
}

/* Exhibitor detail */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.detail-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.detail-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.detail-field {
    margin-bottom: 12px;
}

.detail-field__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.detail-field__value {
    font-size: 1rem;
}

.detail-field__value a {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTAL LAYOUT (Exhibitor / Visitor)
   ============================================================ */
.portal-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 72px;
}

.portal-sidebar {
    width: 260px;
    background: #0f0f0f;
    border-right: 1px solid var(--color-border);
    padding: 24px 0;
    position: fixed;
    top: 72px;
    bottom: 0;
    overflow-y: auto;
    z-index: 10;
}

.portal-sidebar__brand {
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
}

.portal-sidebar__user {
    padding: 0 24px 20px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 16px;
}

.portal-sidebar__user-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-sidebar__user-email {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    word-break: break-all;
}

.portal-sidebar__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portal-sidebar__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.portal-sidebar__link:hover {
    color: var(--color-text);
    background: rgba(255,255,255,0.03);
}

.portal-sidebar__link--active {
    color: var(--color-primary);
    background: rgba(46, 204, 113, 0.05);
    border-left-color: var(--color-primary);
}

.portal-sidebar__link--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.portal-sidebar__link svg {
    width: 18px;
    height: 18px;
}

.portal-sidebar__coming-soon {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portal-sidebar__divider {
    height: 1px;
    background: var(--color-border);
    margin: 12px 0;
}

.portal-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
}

.portal-main__header {
    margin-bottom: 32px;
}

.portal-main__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.portal-main__subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Portal cards grid */
.portal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.portal-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.portal-card:hover {
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: translateY(-4px);
}

.portal-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(46,204,113,0.1);
    color: var(--color-primary);
}

.portal-card__icon svg { width: 20px; height: 20px; }

.portal-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 6px;
}

.portal-card__desc {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Alert boxes */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.alert--info    { background: rgba(52,152,219,0.1);  border: 1px solid rgba(52,152,219,0.2);  color: #3498db; }
.alert--success { background: rgba(46,204,113,0.1);  border: 1px solid rgba(46,204,113,0.2);  color: #2ecc71; }
.alert--warning { background: rgba(241,196,15,0.1);  border: 1px solid rgba(241,196,15,0.2);  color: #f1c40f; }
.alert--danger  { background: rgba(231,76,60,0.1);   border: 1px solid rgba(231,76,60,0.2);   color: #e74c3c; }

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.status-badge svg { width: 13px; height: 13px; }

.status-badge--pending  { background: rgba(241,196,15,0.12); color: #f1c40f; border: 1px solid rgba(241,196,15,0.25); }
.status-badge--approved { background: rgba(46,204,113,0.12); color: #2ecc71; border: 1px solid rgba(46,204,113,0.25); }
.status-badge--rejected { background: rgba(231,76,60,0.12);  color: #e74c3c; border: 1px solid rgba(231,76,60,0.25); }

/* Portal stat cards */
.portal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.portal-stat {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.portal-stat__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portal-stat__icon--green  { background: rgba(46,204,113,0.12); color: #2ecc71; }
.portal-stat__icon--blue   { background: rgba(52,152,219,0.12); color: #3498db; }
.portal-stat__icon--yellow { background: rgba(241,196,15,0.12); color: #f1c40f; }

.portal-stat__icon svg { width: 22px; height: 22px; }

.portal-stat__number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
}

.portal-stat__label {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-top: 2px;
}

/* Welcome banner */
.welcome-banner {
    background: linear-gradient(135deg, rgba(46,204,113,0.08) 0%, rgba(52,152,219,0.06) 100%);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.welcome-banner__text h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.welcome-banner__text p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.welcome-banner__status {
    flex-shrink: 0;
}

/* Completion bar */
.completion-bar {
    background: #222;
    border-radius: var(--radius-full);
    height: 8px;
    overflow: hidden;
    margin-top: 8px;
}

.completion-bar__fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--color-primary), #27ae60);
    transition: width 0.6s ease;
}

/* Quick actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.quick-action {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.quick-action:hover {
    border-color: var(--color-primary);
    background: rgba(46, 204, 113, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.quick-action__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-action__icon--green  { background: rgba(46,204,113,0.12); color: #2ecc71; }
.quick-action__icon--blue   { background: rgba(52,152,219,0.12); color: #3498db; }
.quick-action__icon--yellow { background: rgba(241,196,15,0.12); color: #f1c40f; }
.quick-action__icon--purple { background: rgba(155,89,182,0.12);  color: #9b59b6; }

.quick-action__icon svg { width: 22px; height: 22px; }

.quick-action__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.quick-action__desc {
    font-size: 0.78rem;
    color: var(--color-text-dim);
    margin-top: 2px;
}

/* Profile form */
.profile-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 800px;
}

.profile-form__section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
}

.profile-form__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.profile-form__section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-form__section-title svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.profile-form__group {
    margin-bottom: 20px;
}

.profile-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-form__label--required::after {
    content: ' *';
    color: #e74c3c;
}

.profile-form__hint {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-top: 4px;
}

.profile-form__input {
    width: 100%;
    padding: 12px 16px;
    background: #141414;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.profile-form__input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.profile-form__input::placeholder {
    color: #444;
}

textarea.profile-form__input {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.profile-form__select {
    width: 100%;
    padding: 12px 16px;
    background: #141414;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    appearance: none;
    cursor: pointer;
    box-sizing: border-box;
}

.profile-form__select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.profile-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profile-form__checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.profile-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #141414;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.profile-form__checkbox-label:hover {
    border-color: var(--color-primary);
    background: rgba(46, 204, 113, 0.05);
}

.profile-form__checkbox-label:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-text);
}

.profile-form__checkbox-label input[type="checkbox"] {
    accent-color: var(--color-primary);
}

/* Multi-input (brand names, video links) */
.multi-input__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.multi-input__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25);
    border-radius: var(--radius-full);
    color: #2ecc71;
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.multi-input__tag button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.multi-input__tag button:hover { opacity: 1; }

.multi-input__row {
    display: flex;
    gap: 8px;
}

.multi-input__row .profile-form__input { flex: 1; }

.multi-input__add {
    padding: 10px 18px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25);
    border-radius: 8px;
    color: #2ecc71;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.multi-input__add:hover {
    background: rgba(46, 204, 113, 0.2);
}

.profile-form__submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 12px;
}

/* Portal empty state */
.portal-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--color-text-dim);
}

.portal-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.portal-empty h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.portal-empty p {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto 16px;
}

/* Portal section headings */
.portal-section {
    margin-bottom: 36px;
}

.portal-section__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portal-section__title svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

/* Portal responsive */
@media (max-width: 1024px) {
    .portal-sidebar { display: none; }
    .portal-main { margin-left: 0; }
}

@media (max-width: 768px) {
    .portal-stats { grid-template-columns: 1fr; }
    .portal-cards { grid-template-columns: 1fr; }
    .quick-actions { grid-template-columns: 1fr; }
    .welcome-banner { flex-direction: column; align-items: flex-start; }
    .profile-form { padding: 28px 20px; }
    .profile-form__row { grid-template-columns: 1fr; }
}
