/* ============================================
   1OH6 Events - Dark Theme Stylesheet
   Brand Colors: Dark (#0f172a), Gold (#fbbf24)

   Works alongside Tailwind CSS CDN for utility classes.
   All colors converted from light theme to dark theme
   with gold accent highlights.
   ============================================ */

/* CSS Custom Properties */
:root {
    --bg-darkest:    #000000;
    --bg-dark:       #111111;
    --bg-card:       #1a1a1a;
    --bg-elevated:   #222222;
    --border:        #333333;
    --border-light:  #444444;
    --text-primary:  #ffffff;
    --text-secondary:#e5e5e5;
    --text-muted:    #999999;
    --gold:          #fbbf24;
    --gold-hover:    #f59e0b;
    --gold-bg:       rgba(251,191,36,0.1);
    --gold-bg-strong:rgba(251,191,36,0.15);
    --success:       #22c55e;
    --error:         #ef4444;
    --info:          #3b82f6;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-darkest);
    color: var(--text-secondary);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
    background: var(--bg-dark);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border);
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-header .logo img {
    height: 42px;
    border-radius: 6px;
}

.site-header .logo h1 {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.site-header nav a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.site-header nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.site-header nav a.active {
    color: var(--gold);
    background: var(--gold-bg);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--border);
}

.nav-user-name {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-logout {
    font-size: 0.8rem;
    color: var(--text-muted) !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(251,191,36,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1,
.hero h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.hero h1 span,
.hero h2 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    position: relative;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-stat .label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Container & Sections
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-alt {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

/* ============================================
   Cards Grid
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

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

.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-body {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
}

/* ============================================
   Event Cards
   ============================================ */
.event-card .card-header {
    position: relative;
}

.event-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gold);
    color: var(--bg-darkest);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    min-width: 60px;
}

.event-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date-badge .day {
    font-size: 1.6rem;
}

.event-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.25rem;
}

.event-card .event-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-meta-item .icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: var(--gold);
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

.event-detail-item {
    background: var(--bg-elevated);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
}

.event-detail-item .value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: block;
}

.event-detail-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Events page full cards */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card-full {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.event-card-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.event-card-top {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 0;
}

.event-card-title-area {
    flex: 1;
}

.event-card-title-area h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.event-card-title-area .event-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.event-card-body {
    padding: 1rem 1.5rem 1.5rem;
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-info-block {
    background: var(--bg-elevated);
    border-radius: 8px;
    padding: 1rem;
}

.event-info-block h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.event-info-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.event-info-block .value-highlight {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.event-section {
    margin-bottom: 1.25rem;
}

.event-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

/* Ticket tiers */
.ticket-tiers {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ticket-tier {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    text-align: center;
    min-width: 100px;
}

.ticket-tier .tier-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gold);
    display: block;
}

.ticket-tier .tier-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Entertainment pills */
.entertainment-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.pill {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checklist-box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-light);
    border-radius: 3px;
    margin-top: 3px;
}

/* Partner list */
.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partner-item {
    background: rgba(34,197,94,0.15);
    color: #86efac;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
}

/* Budget grid */
.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.budget-item {
    background: var(--gold-bg);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(251,191,36,0.2);
}

.budget-item .budget-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
}

.budget-item .budget-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Kids zone pills */
.kids-zone-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.kids-pill {
    background: rgba(244,114,182,0.15);
    color: #f9a8d4;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
}

/* Card footer status */
.event-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.event-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--gold-bg);
    color: var(--gold);
    border: 1px solid rgba(251,191,36,0.2);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
}

.event-action-btn:hover {
    background: var(--gold-bg-strong);
    border-color: rgba(251,191,36,0.4);
}

/* ============================================
   Tags / Badges
   ============================================ */
.tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.tag-events, .tag-festival   { background: rgba(59,130,246,0.2);  color: #93c5fd; }
.tag-nightlife               { background: rgba(139,92,246,0.2);  color: #c4b5fd; }
.tag-brunch                  { background: rgba(244,114,182,0.2); color: #f9a8d4; }
.tag-block-party             { background: rgba(34,197,94,0.2);   color: #86efac; }
.tag-forms                   { background: rgba(251,191,36,0.2);  color: #fcd34d; }
.tag-legal                   { background: rgba(239,68,68,0.2);   color: #fca5a5; }
.tag-communication           { background: rgba(34,197,94,0.2);   color: #86efac; }

/* Vendor type tags */
.tag-retail      { background: rgba(59,130,246,0.2);  color: #93c5fd; }
.tag-food        { background: rgba(251,191,36,0.2);  color: #fcd34d; }
.tag-nonprofit   { background: rgba(34,197,94,0.2);   color: #86efac; }
.tag-corporate   { background: rgba(139,92,246,0.2);  color: #c4b5fd; }
.tag-services    { background: rgba(99,102,241,0.2);  color: #a5b4fc; }
.tag-government  { background: rgba(148,163,184,0.2); color: #cbd5e1; }
.tag-health      { background: rgba(244,114,182,0.2); color: #f9a8d4; }
.tag-art         { background: rgba(251,146,60,0.2);  color: #fdba74; }
.tag-beauty      { background: rgba(236,72,153,0.2);  color: #f9a8d4; }
.tag-sponsor     { background: rgba(139,92,246,0.2);  color: #c4b5fd; }

/* Status badges */
.status {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.status-planning   { background: rgba(251,191,36,0.2);  color: #fcd34d; }
.status-confirmed  { background: rgba(34,197,94,0.2);   color: #86efac; }
.status-active     { background: rgba(59,130,246,0.2);  color: #93c5fd; }
.status-completed  { background: rgba(59,130,246,0.2);  color: #93c5fd; }
.status-cancelled  { background: rgba(239,68,68,0.2);   color: #fca5a5; }
.status-paid       { background: rgba(34,197,94,0.2);   color: #86efac; }
.status-unpaid     { background: rgba(239,68,68,0.2);   color: #fca5a5; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    min-height: 44px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-primary:hover {
    background: var(--bg-elevated);
    color: #fff;
}

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

.btn-gold:hover {
    background: var(--gold-hover);
    color: var(--bg-darkest);
}

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

.btn-outline:hover {
    border-color: var(--text-muted);
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

.btn-danger {
    background: rgba(239,68,68,0.15);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,0.3);
}

.btn-danger:hover {
    background: rgba(239,68,68,0.25);
}

.btn-success {
    background: rgba(34,197,94,0.15);
    color: #86efac;
    border: 1px solid rgba(34,197,94,0.3);
}

.btn-success:hover {
    background: rgba(34,197,94,0.25);
}

/* Focus indicators (WCAG AA) */
.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================
   Tables
   ============================================ */
.data-table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    background: var(--bg-elevated);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    color: var(--text-secondary);
}

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

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

/* ============================================
   Search & Filters
   ============================================ */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-bg-strong);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.4rem 0.85rem;
    min-height: 44px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Open Sans', sans-serif;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-darkest);
}

.filter-btn .count {
    background: rgba(255,255,255,0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.filter-btn.active .count {
    background: rgba(0,0,0,0.2);
}

/* ============================================
   Document Sections
   ============================================ */
.document-view {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.document-view h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.document-view .doc-meta {
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.document-view p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.document-content {
    line-height: 1.8;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.document-content p {
    margin-bottom: 1.15rem;
}

.agreement-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.agreement-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.agreement-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.agreement-section .section-num {
    color: var(--gold);
    font-weight: 700;
    margin-right: 0.5rem;
}

.agreement-subsection {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.agreement-subsection h5 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.agreement-subsection p {
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.signature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.signature-item {
    text-align: center;
}

.signature-item .name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.signature-item .title {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.signature-line {
    width: 200px;
    border-bottom: 1px solid var(--border-light);
    margin: 0 auto 0.5rem;
}

/* Document selector */
.doc-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.doc-card {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.doc-card:hover {
    border-color: var(--gold);
}

.doc-card.active {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(251,191,36,0.15);
}

.doc-card-info h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.doc-card-icon {
    font-size: 1.75rem;
    opacity: 0.6;
}

.doc-card.active .doc-card-icon {
    opacity: 1;
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.service-item:hover {
    border-color: var(--gold);
}

.service-item .service-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.service-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   Team Section
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
}

.team-card .avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-darkest));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    border: 2px solid var(--gold);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.team-card .education {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.team-card .expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.team-card .expertise span {
    font-size: 0.7rem;
    background: var(--bg-elevated);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 3rem 2rem 2rem;
    margin-top: auto;
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
}

.site-footer a {
    color: var(--gold);
    display: block;
    margin-bottom: 0.35rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-contact span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Legacy footer-links (fallback) */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 200;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-elevated);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

/* ============================================
   Admin Specific
   ============================================ */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 70px);
}

.admin-sidebar {
    background: var(--bg-dark);
    border-right: 1px solid var(--border);
    padding: 1.5rem 0;
}

.admin-sidebar h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.15s;
}

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

.admin-sidebar a.active {
    background: var(--gold-bg);
    color: var(--gold);
    font-weight: 600;
    border-right: 3px solid var(--gold);
}

.admin-sidebar .icon {
    width: 20px;
    text-align: center;
}

.admin-content {
    padding: 2rem;
    background: var(--bg-darkest);
    overflow-y: auto;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-page-header h2 {
    font-size: 1.5rem;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stat-card .stat-info .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-card .stat-info .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-darkest);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-bg-strong);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Apply page events list */
.apply-events-list {
    background: var(--bg-darkest);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

/* ============================================
   Toast Notifications
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
}

.toast-success { border-left: 3px solid var(--success); }
.toast-error   { border-left: 3px solid var(--error); }
.toast-info    { border-left: 3px solid var(--info); }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* Loading skeleton animation */
.skeleton-block {
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(255,255,255,0.05) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center   { text-align: center; }
.text-muted    { color: var(--text-muted); }
.text-sm       { font-size: 0.85rem; }
.text-xs       { font-size: 0.75rem; }
.font-bold     { font-weight: 700; }
.mt-1          { margin-top: 0.5rem; }
.mt-2          { margin-top: 1rem; }
.mt-3          { margin-top: 1.5rem; }
.mb-1          { margin-bottom: 0.5rem; }
.mb-2          { margin-bottom: 1rem; }
.gap-1         { gap: 0.5rem; }
.flex          { display: flex; }
.flex-wrap     { flex-wrap: wrap; }
.items-center  { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden        { display: none !important; }

/* ============================================
   Package Cards (Services Page)
   ============================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.package-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.package-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 4px 16px rgba(251,191,36,0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-darkest);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    white-space: nowrap;
}

.package-tier {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.package-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-best-for {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.package-features li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.package-not-included {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.package-pricing {
    background: var(--bg-elevated);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.package-pricing .member-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}

.package-pricing .member-label {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-pricing .standard-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 0.25rem;
    display: block;
}

.package-pricing .savings-badge {
    display: inline-block;
    background: rgba(34,197,94,0.15);
    color: #86efac;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.35rem;
}

.package-pricing .custom-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    display: block;
    line-height: 1.4;
}

.package-pricing .custom-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

.package-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ============================================
   Member Benefits Banner
   ============================================ */
.member-banner {
    background: linear-gradient(135deg, rgba(251,191,36,0.08) 0%, rgba(251,191,36,0.03) 100%);
    border: 1px solid rgba(251,191,36,0.2);
    border-radius: 12px;
    padding: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.benefit-item h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.benefit-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   À La Carte Menu
   ============================================ */
.alacarte-group {
    margin-bottom: 1.5rem;
}

.alacarte-group-header {
    padding: 0.75rem 1rem;
    background: var(--bg-elevated);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    margin-bottom: 0;
}

.alacarte-group-header h4 {
    font-size: 0.9rem;
    color: var(--gold);
}

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

.alacarte-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.alacarte-table td:last-child {
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* ============================================
   Process Steps
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--bg-darkest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Services Page Intro Cards
   ============================================ */
.intro-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.intro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.intro-card h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.intro-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   Homepage Package Teaser
   ============================================ */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.teaser-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.teaser-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.teaser-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}

.teaser-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
}

/* Homepage value props grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-dark);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.value-card:hover {
    border-color: var(--gold);
}

.value-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.value-card h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   Dual CTA Section
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
}

/* ============================================
   Homepage Hero (extended)
   ============================================ */
.hero-home {
    padding: 6rem 2rem 5rem;
}

.hero-home h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 1.25rem;
}

.hero-home p {
    max-width: 720px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    position: relative;
}

/* ============================================
   Service Group Cards (What We Do, Partner)
   ============================================ */
.service-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-group-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
}

.service-group-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.service-group-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
    background: var(--gold-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-group-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-group-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Impact Stats
   ============================================ */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.impact-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.impact-mission {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.impact-mission p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    text-align: left;
}

/* ============================================
   Ecosystem Grid
   ============================================ */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ecosystem-point {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s;
}

.ecosystem-point:hover {
    border-color: var(--gold);
}

.ecosystem-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.ecosystem-point h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.ecosystem-point p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   Coordination Fields (Contact Page)
   ============================================ */
.coordination-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.coordination-fields.open {
    max-height: 800px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-grid input[type="checkbox"] {
    width: auto;
    accent-color: var(--gold);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 400;
}

.radio-group input[type="radio"] {
    width: auto;
    accent-color: var(--gold);
}

/* ============================================
   Contact Info Grid
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 1rem;
        border-top: 1px solid var(--border);
    }

    .site-header nav.open {
        display: block;
    }

    .site-header nav ul {
        flex-direction: column;
        gap: 0;
    }

    .site-header nav a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .nav-user {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1,
    .hero h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat .number {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }

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

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

    .search-box {
        max-width: 100%;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .admin-sidebar ul {
        display: flex;
        overflow-x: auto;
        padding: 0 1rem;
        gap: 0.25rem;
    }

    .admin-sidebar a {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }

    .admin-sidebar a.active {
        border-right: none;
        border-bottom: 3px solid var(--gold);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .signature-block {
        grid-template-columns: 1fr;
    }

    .document-view {
        padding: 1.5rem;
    }

    .event-detail-grid {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }

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

    .event-card-top {
        flex-direction: column;
        gap: 1rem;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .ticket-tiers {
        flex-direction: column;
    }

    .ticket-tier {
        min-width: unset;
    }

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

    .doc-selector {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

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

    .intro-cards {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .hero-home {
        padding: 3.5rem 1.5rem 3rem;
    }

    .hero-home h1 {
        font-size: 1.8rem;
    }

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

    .service-groups {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

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

/* ========================================
   Partnership Page
   ======================================== */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tier-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.tier-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
}

.tier-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier-card .tier-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.tier-card .tier-limit {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tier-benefits li .check {
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--bg-card);
    color: var(--gold);
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-secondary);
}

.comparison-table .check-mark {
    color: var(--success);
    font-weight: bold;
}

.comparison-table .dash {
    color: var(--text-muted);
}

/* ========================================
   Plan Your Event Page
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

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

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.event-type-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: border-color 0.2s ease;
}

.event-type-item:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}

.sponsorship-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

/* ========================================
   About Page
   ======================================== */
.about-story {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-story p {
    margin-bottom: 1.5rem;
}

.mission-card {
    background: var(--bg-card);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 2rem;
    margin: 2rem 0;
}

.mission-card h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.what-we-do-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.what-we-do-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.what-we-do-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   Add-ons List
   ======================================== */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.addon-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   Admin: Partnerships & Contracts
   ======================================== */
.tag-foundation { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.tag-growth { background: rgba(251, 191, 36, 0.15); color: var(--gold); }
.tag-legacy { background: rgba(168, 85, 247, 0.15); color: #a78bfa; }
.tag-active { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.tag-pending { background: rgba(251, 191, 36, 0.15); color: var(--gold); }
.tag-paused { background: rgba(156, 163, 175, 0.15); color: #9ca3af; }
.tag-cancelled { background: rgba(239, 68, 68, 0.15); color: var(--error); }
.tag-draft { background: rgba(156, 163, 175, 0.15); color: #9ca3af; }
.tag-sent { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.tag-signed { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.tag-completed { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.tag-terminated { background: rgba(239, 68, 68, 0.15); color: var(--error); }

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

/* Form radio groups */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.radio-group input[type="radio"] {
    width: auto;
    accent-color: var(--gold);
}

/* Visibility badge */
.visibility-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.visibility-badge.public {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.visibility-badge.admin-only {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}
