/**
 * global.css
 * 
 * DealernetX Consolidated Global Styles
 * All page styles unified into one file
 * Place in /assets/css/global.css
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Primary Colors - Dark Navy Theme */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --primary-lighter: #60a5fa;
    --header-bg: #1e3a5f;
    --footer-bg: #1e3a5f;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Background Colors */
    --bg-light: #f3f4f6;
    --bg-lighter: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #1e3a5f;
    
    /* Status Colors */
    --success-color: #10b981;
    --success-bg: #ecfdf5;
    --success-border: #a7f3d0;
    --error-color: #ef4444;
    --error-bg: #fef2f2;
    --error-border: #fecaca;
    --warning-color: #f59e0b;
    --warning-bg: #fef3c7;
    
    /* Accent Colors */
    --accent-color: #10b981;
    --accent-hover: #059669;
    --featured-color: #2563eb;
    --featured-light: #a78bfa;
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --header-height: 72px;
    --container-max-width: 1400px;
    --content-max-width: 900px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
}

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

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.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;
}

/* ==========================================================================
   Global Form Styles
   ========================================================================== */

/* Modern Form Container */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modern-form-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.modern-form-header {
    margin-bottom: 24px;
}

.modern-form-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.modern-form-header p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* Labels */
.form-label,
label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 6px;
}

.form-label .required,
label .required {
    color: #EF4444;
    margin-left: 2px;
}

/* Inputs, Selects, Textareas */
.form-input,
.form-select,
.form-textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
select,
textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #ffffff;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-input.error,
.form-textarea.error,
input.error,
textarea.error,
select.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Textarea specific */
.form-textarea,
textarea {
    resize: vertical;
    min-height: 100px;
}

/* Select specific */
.form-select,
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

/* Checkboxes and Radios */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-check-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Form Buttons */
.form-btn,
.btn-primary,
.btn-submit {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-lighter) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.form-btn:hover,
.btn-primary:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-btn:active,
.btn-primary:active,
.btn-submit:active {
    transform: translateY(0);
}

.form-btn:disabled,
.btn-primary:disabled,
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    background: #ffffff;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

/* Form Actions Row */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.form-actions-right {
    justify-content: flex-end;
}

.form-actions-center {
    justify-content: center;
}

/* Form Help Text */
.form-help {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Form Error Text */
.form-error {
    font-size: 0.8125rem;
    color: #EF4444;
    margin-top: 4px;
}

/* Form Success Text */
.form-success {
    font-size: 0.8125rem;
    color: #10B981;
    margin-top: 4px;
}

/* Inline Form (horizontal layout) */
.form-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
}

.form-inline .form-group {
    margin-bottom: 0;
    flex: 1;
    min-width: 150px;
}

.form-inline .form-btn {
    flex-shrink: 0;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--header-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Header Search */
.header-search-bar {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.header-search-bar-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: center;
}

.header-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 520px;
}

.header-search-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    transition: all var(--transition-normal);
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-search-wrapper:focus-within {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.header-search-input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 0.875rem;
    color: var(--text-primary);
    flex: 1;
    min-width: 0;
    outline: none;
}

.header-search-input::placeholder {
    color: #999;
}

.header-search-btn {
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    margin: 2px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.header-search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.header-btn {
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-login {
    color: rgba(255, 255, 255, 0.9);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-signup {
    background: var(--primary-color);
    color: #fff;
}

.btn-signup:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* New Mail Indicator */
.new-mail-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    color: #fff;
    text-decoration: none;
    animation: mail-pulse 1.5s ease-in-out infinite;
}

.new-mail-indicator i {
    font-size: 1.35rem;
}

.new-mail-indicator .mail-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: #ef4444;
    border-radius: 9px;
    animation: count-pulse 1.5s ease-in-out infinite;
}

.new-mail-indicator:hover {
    color: #fbbf24;
    animation: none;
}

.new-mail-indicator:hover .mail-count {
    animation: none;
    transform: scale(1.1);
}

@keyframes mail-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }
}

@keyframes count-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        background: #dc2626;
    }
}

/* Header Dropdown (Offers menu) */
.header-dropdown {
    position: relative;
}

.header-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-dropdown-toggle .chevron {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.header-dropdown-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.header-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 1000;
}

.header-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

.header-dropdown-menu a:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

.dropdown-section {
    padding: 4px 0;
}

.dropdown-section-title {
    display: block;
    padding: 6px 16px 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

/* Header Cart Icon */
.header-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.header-cart-icon:hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.header-cart-icon .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: #10b981;
    border-radius: 9px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.user-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
}

.user-menu-toggle .chevron {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: transform var(--transition-normal);
}

.user-menu-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

/* Proxy Indicator */
.user-menu.proxied .user-menu-toggle {
    background: rgba(239, 68, 68, 0.25);
    border: 2px solid #ef4444;
}

.user-menu.proxied .user-menu-toggle:hover {
    background: rgba(239, 68, 68, 0.35);
}

.proxied-avatar {
    background: #ef4444 !important;
}

.proxy-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ef4444;
    border-radius: 50%;
    color: #fff;
    font-size: 0.8rem;
    margin-right: 6px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.proxy-badge:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.proxy-return-link {
    color: #ef4444 !important;
    font-weight: 600 !important;
    background: #fef2f2 !important;
}

.proxy-return-link:hover {
    background: #fee2e2 !important;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    z-index: 100;
}

.user-dropdown[hidden] {
    display: none;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: #374151;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.user-dropdown a:hover {
    background: var(--bg-light);
}

.user-dropdown .logout-link {
    border-top: 1px solid var(--border-color);
    color: #dc2626;
}

.user-dropdown .logout-link:hover {
    background: var(--error-bg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-slow);
}

.menu-icon {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.mobile-menu-toggle.active .menu-icon {
    background: transparent;
}

.mobile-menu-toggle.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    background: var(--header-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    position: relative;
    z-index: 999;
}

.mobile-nav[hidden] {
    display: none;
}

/* Mobile Search */
.mobile-search-form {
    margin-bottom: 16px;
}

.mobile-search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mobile-search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    color: #fff;
    outline: none;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-search-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-normal);
}

.mobile-search-btn:hover {
    background: var(--primary-dark);
}

.mobile-nav > a,
.mobile-nav-toggle {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.mobile-nav > a:hover,
.mobile-nav > a.active,
.mobile-nav-toggle:hover,
.mobile-nav-toggle.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-nav-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-arrow {
    transition: transform 0.2s ease;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-arrow {
    transform: rotate(90deg);
}

/* Mobile Submenu */
.mobile-nav-item {
    position: relative;
}

.mobile-submenu {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    margin: 4px 0 8px 0;
    padding: 8px;
    max-height: 60vh;
    overflow-y: auto;
}

.mobile-submenu[hidden] {
    display: none;
}

.mobile-submenu > a {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
}

.mobile-submenu > a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-submenu-group {
    margin-bottom: 12px;
}

.mobile-submenu-group:last-child {
    margin-bottom: 0;
}

.mobile-submenu-heading {
    display: block;
    padding: 8px 16px 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-submenu-group > a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
}

.mobile-submenu-group > a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Mobile Quick Actions (Cart, Messages, Profile) */
.mobile-nav-quick-actions {
    display: flex;
    gap: 8px;
    padding: 0 0 16px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-quick-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8rem;
    position: relative;
    transition: background var(--transition-normal);
}

.mobile-quick-action:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.mobile-quick-action i {
    font-size: 1.25rem;
}

.mobile-badge {
    position: absolute;
    top: 6px;
    right: calc(50% - 20px);
    background: var(--danger-color, #ef4444);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    padding: 0 4px;
}

/* Mobile Logout */
.mobile-nav-logout {
    display: block;
    padding: 12px 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.mobile-nav-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

/* ==========================================================================
   Activity Bar - Pending Offers/Purchases Notification
   ========================================================================== */
.activity-bar {
    background: linear-gradient(135deg, #fef3f2 0%, #fef9f8 100%);
    border-bottom: 1px solid #fecaca;
    padding: 12px 0;
}

.activity-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.activity-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #fca5a5;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.activity-item:hover {
    background: #fef2f2;
    border-color: #f87171;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.activity-label {
    color: #dc2626;
    font-weight: 600;
    font-size: 13px;
}

.activity-count {
    color: #dc2626;
    font-weight: 600;
    font-size: 13px;
}

.activity-separator {
    color: #d1d5db;
    font-size: 18px;
    margin: 0 8px;
}

.activity-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(249, 115, 22, 0.3);
}

.activity-link:hover {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.activity-link i {
    font-size: 11px;
}

@media (max-width: 768px) {
    .activity-bar {
        padding: 10px 0;
    }
    
    .activity-bar-container {
        gap: 6px;
    }
    
    .activity-item,
    .activity-link {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .activity-label,
    .activity-count {
        font-size: 12px;
    }
}

/* ==========================================================================
   Site Main
   ========================================================================== */
.site-main {
    flex: 1;
    width: 100%;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
    background: var(--footer-bg);
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-column a:hover {
    color: #fff;
}

/* Footer Meta */
.footer-meta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-meta-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-meta-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Common Button Styles
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-light);
    color: #374151;
}

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

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

.btn-outline:hover {
    background: var(--bg-lighter);
    border-color: #d1d5db;
    color: #374151;
}

.btn-danger {
    background: var(--error-color);
    color: #ffffff;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-success {
    background: var(--success-color);
    color: #ffffff;
}

.btn-success:hover {
    background: #059669;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ==========================================================================
   Common Card Styles
   ========================================================================== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.card-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.card-body {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
}

/* jQuery UI Datepicker Styles */
.ui-datepicker {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px;
    z-index: 1000 !important;
    font-family: inherit;
}

.ui-datepicker-header {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}

.ui-datepicker-title {
    font-weight: 600;
    font-size: 1rem;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ui-datepicker th {
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 4px;
    font-size: 0.85rem;
}

.ui-datepicker td {
    padding: 2px;
}

.ui-datepicker td a,
.ui-datepicker td span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.ui-datepicker td a:hover {
    background: var(--bg-light);
}

.ui-datepicker td .ui-state-active {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.ui-datepicker td .ui-state-highlight {
    background: #fef3c7;
    color: var(--text-primary);
}

.ui-datepicker .ui-state-disabled span {
    color: var(--text-light);
}

/* Datepicker Month/Year Dropdowns */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0 4px;
    appearance: auto;
}

.ui-datepicker select.ui-datepicker-month:hover,
.ui-datepicker select.ui-datepicker-year:hover {
    background: #fff;
}

.ui-datepicker select.ui-datepicker-month:focus,
.ui-datepicker select.ui-datepicker-year:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 1px;
}

/* ==========================================================================
   Alert Styles
   ========================================================================== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}

.alert-success {
    background: var(--success-bg);
    color: #065f46;
    border: 1px solid var(--success-border);
}

.alert-error {
    background: var(--error-bg);
    color: #991b1b;
    border: 1px solid var(--error-border);
}

.alert-warning {
    background: var(--warning-bg);
    color: #92400e;
    border: 1px solid #fcd34d;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ==========================================================================
   Section Headers (shared)
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   Hero Section (Reusable)
   ========================================================================== */
.hero-section,
.hero,
.membership-hero {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 50%, var(--primary-lighter) 100%);
    color: #ffffff;
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero::before,
.membership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.membership-hero .hero-container {
    max-width: 900px;
}

.hero-section h1,
.hero h1,
.membership-hero h1,
.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p,
.hero p,
.membership-hero p,
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 16px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons,
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-slow);
    cursor: pointer;
    border: none;
}

.btn-primary-hero {
    background: #ffffff;
    color: var(--primary-color);
}

.btn-primary-hero:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-hero {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   MEMBERSHIP PAGE STYLES
   ========================================================================== */

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-grid.five-column {
    grid-template-columns: repeat(5, 1fr);
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--featured-color);
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--featured-color);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    text-align: center;
}

.plan-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 8px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.plan-price.custom-pricing {
    font-size: 1.75rem;
}

.plan-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0 0 24px 0;
    min-height: 40px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.plan-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .check {
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
}

.verification-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin: 16px 0 0 0;
    font-style: italic;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-normal);
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.plan-button.primary {
    background: var(--primary-color);
    color: #ffffff;
}

.plan-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.plan-button.secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.upgrade-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    margin-top: 32px;
}

.upgrade-notice p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #92400e;
    margin: 0;
}

/* ==========================================================================
   Benefits Section - 2x2 Grid
   ========================================================================== */
.benefits-membership {
    padding: 80px 20px;
    background: #ffffff;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-group {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-normal);
}

.benefit-group:hover {
    box-shadow: var(--shadow-md);
}

.benefit-group h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-group h3 .icon {
    font-size: 1.5rem;
}

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

.benefit-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list .check {
    color: var(--accent-color);
    font-weight: bold;
}

/* ==========================================================================
   Transaction Fees Section
   ========================================================================== */
.fees-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.fees-container {
    max-width: 1000px;
    margin: 0 auto;
}

.fees-table {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.fees-table th,
.fees-table td {
    font-family: 'Inter', sans-serif;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.fees-table th {
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.fees-table td {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.fees-table td strong {
    color: var(--text-primary);
}

.fees-table tbody tr:hover {
    background: var(--bg-light);
}

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

/* ==========================================================================
   FAQ Section - Accordion
   ========================================================================== */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question.active {
    background: rgba(59, 130, 246, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform var(--transition-slow);
    flex-shrink: 0;
    min-width: 24px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

/* CRITICAL: Answers hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 24px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 24px 20px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
}

.cta-buttons {
    margin-bottom: 24px;
}

.cta-section .btn-hero {
    background: #ffffff;
    color: var(--primary-color);
}

.cta-section .btn-hero:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ==========================================================================
   LOGIN PAGE STYLES
   ========================================================================== */

/* Login Hero - Full page centered */
.login-hero {
    min-height: calc(100vh - var(--header-height) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.login-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.login-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    margin-bottom: 24px;
}

.login-logo img {
    max-width: 180px;
    height: auto;
}

.login-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.login-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Login Form */
.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.login-form input::placeholder {
    color: var(--text-light);
}

/* Login Button */
.login-form .btn-primary {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    margin-top: 8px;
}

/* Login Links */
.login-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.login-links a {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.login-links .separator {
    color: var(--text-light);
}

/* Login Footer Text */
.login-footer-text {
    text-align: center;
    margin-top: 24px;
}

.login-footer-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.login-footer-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.login-footer-text a:hover {
    text-decoration: underline;
}

/* Alert/Message Styles for Login */
.login-card .alert {
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

/* ==========================================================================
   HOME PAGE STYLES
   ========================================================================== */

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Sponsors Section - Full Width Single Row Slider */
.sponsors-section {
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.sponsors-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.sponsors-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 24px 0;
}

.sponsors-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.sponsors-slider {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: sponsorScroll 90s linear infinite;
    width: max-content;
}

.sponsors-slider:hover {
    animation-play-state: paused;
}

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

.sponsor-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
}

.sponsor-logo {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    filter: grayscale(20%);
}

.sponsor-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Corporate Sponsors Section (alternate styling) */
.corporate-sponsors {
    background: #f3f4f6;
    padding: 60px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Slider Track - Full Width */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: sponsorScroll 90s linear infinite;
    width: max-content;
    padding: 20px 0;
}

.slider-track:hover {
    animation-play-state: paused;
}

.sponsor-card {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 300px;
    height: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    transition: all 0.3s ease;
}

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

.sponsor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.sponsor-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-image {
    filter: grayscale(0%);
}

.sponsor-fallback,
.sponsor-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 8px;
}

/* Sponsor URL Link */
.sponsor-card {
    flex-direction: column;
    gap: 12px;
}

.sponsor-url {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    text-align: center;
    word-break: break-all;
    transition: color 0.2s ease;
}

.sponsor-url:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* App Section */
.app-section {
    padding: 80px 20px;
    background: #ffffff;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content {
    max-width: 500px;
}

.app-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.app-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-store-btn img,
.play-store-btn img {
    height: 48px;
    width: auto;
}

.app-mockup {
    text-align: center;
}

.phone-mockup {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-0 { padding: 0; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Pricing Grid Responsive */
@media (max-width: 1400px) {
    .pricing-grid.five-column {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .pricing-grid.five-column {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    
    .header-container {
        height: var(--header-height);
        padding: 0 16px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-right {
        display: none;
    }
    
    .header-search-bar {
        display: block;
    }
    
    .header-search-bar-inner {
        padding: 8px 16px;
    }
    
    .header-search-form {
        max-width: 100%;
    }
    
    .header-search-input {
        font-size: 0.9375rem;
        padding: 10px 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .user-name {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-meta {
        flex-direction: column;
        text-align: center;
    }
    
    /* Hero responsive */
    .hero-section,
    .hero,
    .membership-hero {
        padding: 36px 16px;
    }
    
    .hero-section h1,
    .hero h1,
    .membership-hero h1,
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section p,
    .hero p,
    .membership-hero p,
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    /* Pricing responsive */
    .pricing-grid.five-column {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    /* Benefits responsive */
    .benefits-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    /* Sections responsive */
    .pricing-section,
    .benefits-membership,
    .fees-section,
    .faq-section,
    .cta-section,
    .features-section,
    .app-section {
        padding: 60px 16px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Fees table scroll */
    .fees-table {
        overflow-x: auto;
    }
    
    .fees-table table {
        min-width: 600px;
    }
    
    /* Features responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Sponsor Slider responsive */
    .sponsors-section,
    .corporate-sponsors {
        padding: 32px 0;
    }
    
    .sponsors-slider,
    .slider-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .sponsor-card {
        min-width: 150px;
        max-width: 200px;
        padding: 16px 20px;
    }
    
    .sponsor-logo {
        max-height: 50px;
        max-width: 150px;
    }
    
    .sponsor-image {
        max-height: 60px;
    }

    /* Login responsive */
    .login-hero {
        padding: 40px 16px;
    }
    
    .login-card {
        padding: 32px 24px;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .login-links .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section h1,
    .hero h1,
    .membership-hero h1,
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons,
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .benefit-group {
        padding: 24px 20px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .card {
        padding: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero-section,
    .hero,
    .membership-hero,
    .cta-section {
        background: none !important;
        color: #000 !important;
        padding: 20px 0;
    }
    
    .hero-section::before,
    .hero::before,
    .membership-hero::before {
        display: none;
    }
    
    .pricing-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .faq-answer {
        max-height: none !important;
        padding: 0 24px 20px !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    body {
        background: #fff;
    }
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

/* Page Shell */
.page-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* FAQ Hero Section */
.faqs-hero {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(135deg, #0f3d8c 0%, #1a4d9e 25%, #112b61 60%, #081a3d 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faqs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(43, 107, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(43, 107, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faqs-hero .eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 600;
    color: #94c3ff;
    animation: fadeInDown 0.6s ease;
}

.faqs-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.faqs-hero .lede {
    max-width: 680px;
    margin: 0 auto 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* FAQ Search Form */
.faq-search {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.faq-search input[type="search"] {
    flex: 1 1 320px;
    min-width: 260px;
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.faq-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.faq-search input[type="search"]:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-search input[type="search"]:focus {
    border-color: #4d8fff;
    outline: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0f1f3a;
    box-shadow: 0 0 0 4px rgba(77, 143, 255, 0.2);
}

.faq-search input[type="search"]:focus::placeholder {
    color: #8892a6;
}

.faq-search .btn {
    padding: 1rem 2rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #2b6bff 0%, #1a4fd8 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(43, 107, 255, 0.35);
}

.faq-search .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 107, 255, 0.45);
    background: linear-gradient(135deg, #4d8fff 0%, #2b6bff 100%);
}

.faq-search .btn:active {
    transform: translateY(0);
}

/* FAQ Table of Contents Navigation */
.faq-toc {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.faq-toc .toc-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 1rem;
    justify-content: center;
}

.faq-toc .toc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    min-height: 100%;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-toc .toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-toc .toc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    border-color: #3b82f6;
}

.faq-toc .toc-card:hover::before {
    transform: scaleX(1);
}

.faq-toc .toc-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.faq-toc .toc-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toc .toc-arrow {
    display: none;
}

@media (max-width: 992px) {
    .faq-toc .toc-grid {
        flex-wrap: wrap !important;
    }
    
    .faq-toc .toc-card {
        flex: 0 0 calc(33.333% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .faq-toc .toc-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .faq-toc .toc-card {
        flex: 0 0 100%;
    }
}

.faq-toc ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 2.5rem 0;
    justify-content: center;
}

.faq-toc a {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 1rem;
    background: white;
    border: 2px solid #e8eef5;
    text-decoration: none;
    color: #0f1f3a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.faq-toc a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2b6bff, #4d8fff);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.faq-toc a:hover::before,
.faq-toc a:focus::before {
    transform: translateY(0);
}

.faq-toc a:hover,
.faq-toc a:focus {
    transform: translateY(-3px);
    border-color: #2b6bff;
    box-shadow: 0 12px 28px rgba(17, 49, 108, 0.12);
    outline: none;
    background: linear-gradient(to bottom, #ffffff, #f8faff);
}

.faq-toc .title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #0f1f3a;
}

.faq-toc .subtitle {
    display: block;
    font-size: 0.875rem;
    color: #677489;
    line-height: 1.5;
}

/* FAQ Sections Container */
.faq-sections {
    padding: 5rem 0 6rem;
    background: #f9fafb;
}

.faq-sections .faq-section {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.faq-sections .faq-section:nth-child(1) { animation-delay: 0.1s; }
.faq-sections .faq-section:nth-child(2) { animation-delay: 0.2s; }
.faq-sections .faq-section:nth-child(3) { animation-delay: 0.3s; }
.faq-sections .faq-section:nth-child(4) { animation-delay: 0.4s; }
.faq-sections .faq-section:nth-child(5) { animation-delay: 0.5s; }

.faq-sections .faq-section + .faq-section {
    margin-top: 5rem;
}

/* FAQ Section Header - Override for FAQ page */
.faq-sections .section-header {
    max-width: 720px;
    margin-bottom: 2rem;
    text-align: left;
}

.faq-sections .section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: #0f1f3a;
    position: relative;
    display: inline-block;
}

.faq-sections .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2b6bff, #4d8fff);
    border-radius: 2px;
}

.faq-sections .section-header p {
    color: #5a6785;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* FAQ Accordion */
.faq-accordion {
    border: 1px solid #dce3ed;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 24px rgba(15, 31, 58, 0.08);
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #e8eef5;
    transition: background-color 0.2s ease;
    background: transparent;
    border-radius: 0;
}

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

.faq-accordion .faq-item:hover {
    background-color: #fafbfd;
}

.faq-accordion .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #0f1f3a;
    transition: all 0.3s ease;
    position: relative;
    gap: 1rem;
}

.faq-accordion .faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #2b6bff, #4d8fff);
    transition: height 0.3s ease;
}

.faq-accordion .faq-question:hover::before,
.faq-accordion .faq-question[aria-expanded="true"]::before {
    height: 60%;
}

.faq-accordion .faq-question:focus-visible {
    outline: 2px solid #2b6bff;
    outline-offset: -2px;
    border-radius: 0.25rem;
}

.faq-accordion .faq-question .icon {
    font-size: 1.75rem;
    color: #2b6bff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    flex-shrink: 0;
}

.faq-accordion .faq-question .faq-icon {
    font-size: 1.75rem;
    color: #2b6bff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    margin-left: auto;
}

.faq-accordion .faq-question .faq-question-text {
    flex: 1;
}

.faq-accordion .faq-question .copy-link {
    display: none;
}

.faq-accordion .faq-question[aria-expanded="true"] .icon,
.faq-accordion .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.75rem;
    background: transparent;
    border-radius: 0;
}

.faq-accordion .faq-answer.active {
    max-height: 500px;
    padding: 0 1.75rem 1.75rem;
}

.faq-accordion .faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: #3c4a67;
    font-size: 1rem;
}

/* Search Highlighting */
.faq-item.highlight .faq-question {
    background: linear-gradient(to right, rgba(43, 107, 255, 0.05), transparent);
}

.faq-item.hidden {
    display: none;
}

.search-highlight {
    background: #ffd54f;
    padding: 0.1rem 0.25rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

/* FAQ CTA Section */
.faq-cta {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #0f3d8c 0%, #1a4d9e 30%, #112b61 100%);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 107, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.faq-cta .cta-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.faq-cta .cta-card h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.faq-cta .cta-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    border-radius: 0.875rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cta-actions .btn-primary {
    background: white;
    color: #0f3d8c;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* FAQ Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* FAQ Loading State */
.faq-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.faq-loading::after {
    content: '';
    width: 48px;
    height: 48px;
    border: 4px solid #e8eef5;
    border-top-color: #2b6bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 1.5rem;
    color: #5a6785;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f1f3a;
}

/* FAQ Responsive - Large Screens */
@media (min-width: 1200px) {
    .faq-toc ul {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .faq-toc li {
        flex: 1 1 0;
        min-width: 0;
    }
}

@media (max-width: 1199px) {
    .faq-toc ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (min-width: 768px) {
    .faq-cta .cta-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 3.5rem;
    }

    .faq-accordion {
        box-shadow: 0 12px 32px rgba(15, 31, 58, 0.08);
    }
}

@media (min-width: 1024px) {
    .faq-sections {
        padding: 6rem 0 7rem;
    }

    .faq-sections .faq-section + .faq-section {
        margin-top: 6rem;
    }

    .faq-sections .section-header h2 {
        font-size: 2.5rem;
    }
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faqs-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .faq-toc ul {
        padding: 1.5rem 0;
    }
    
    .faq-toc a {
        padding: 1rem;
    }
    
    .faq-sections {
        padding: 3rem 0 4rem;
    }
    
    .faq-sections .faq-section + .faq-section {
        margin-top: 3rem;
    }
    
    .faq-accordion .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .faq-accordion .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-accordion .faq-answer.active {
        padding: 0 1rem 1.25rem;
    }
    
    .faq-cta {
        padding: 3rem 0 4rem;
    }
    
    .faq-cta .cta-card {
        padding: 2rem;
    }
    
    .faq-cta .cta-card h2 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   REGISTRATION PAGE STYLES
   ========================================================================== */

/* Register Section */
.register-section {
    padding: 60px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.registration-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.registration-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

/* Container for form content to prevent overflow */
.form-content-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

.registration-header {
    background: linear-gradient(135deg, #0066FF 0%, #003D99 100%);
    color: white;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registration-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

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

.registration-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.registration-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Spam Notice */
.spam-notice {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.spam-notice i {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.spam-notice-content {
    flex: 1;
}

.spam-notice-content strong {
    display: inline;
    font-weight: 600;
}

.spam-notice-content p {
    color: #78350F;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Registration Form */
.registration-form {
    padding: 2.5rem;
    max-width: 100%;
    box-sizing: border-box;
}

.registration-form .form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid #e5e7eb;
    max-width: 100%;
    overflow: hidden;
}

.registration-form .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.registration-form .section-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.registration-form .section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 28px;
    background: linear-gradient(135deg, #0066FF 0%, #003D99 100%);
    border-radius: 2px;
}

/* Form Grid Layouts */
.registration-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-right: 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
}

.registration-form .form-group {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.registration-form .form-group.full-width {
    grid-column: span 2;
}

.registration-form .form-group.third {
    grid-column: span 1;
}

.registration-form .form-group label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.registration-form .form-group input,
.registration-form .form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.registration-form .form-group input:focus,
.registration-form .form-group select:focus {
    outline: none;
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.registration-form .form-group input:hover,
.registration-form .form-group select:hover {
    border-color: #CBD5E1;
}

.registration-form .required {
    color: #EF4444;
    font-weight: normal;
}

.registration-form .field-hint {
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 0.25rem;
}

/* Password Field */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 3rem;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #64748B;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0.25rem;
}

.toggle-password:hover {
    color: #0066FF;
}

/* Three Column Grid */
.registration-form .form-grid-three {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    padding-right: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

/* Four Column Grid for City/State/Zip/Country */
.registration-form .form-grid-four {
    display: grid;
    grid-template-columns: 1.8fr 0.7fr 0.9fr 1.3fr;
    gap: 0.75rem;
    padding-right: 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 1.25rem;
}

/* reCAPTCHA */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

/* Honeypot */
.ohnohoney {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Submit Section */
.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.required-note {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #0066FF 0%, #003D99 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    margin-right: 0.5rem;
}

.terms-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748B;
}

.terms-note a {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
}

.terms-note a:hover {
    text-decoration: underline;
}

/* Registration Responsive Design */
@media (max-width: 1024px) {
    .registration-form {
        padding: 2rem;
    }
    
    .registration-form .form-grid-four {
        grid-template-columns: 1fr 1fr;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .register-section {
        padding: 40px 0;
    }
    
    .registration-header {
        padding: 2rem 1.5rem;
    }
    
    .registration-header h1 {
        font-size: 2rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .spam-notice {
        margin: 1.5rem;
        flex-direction: row;
    }
    
    .spam-notice-content p {
        font-size: 0.85rem;
    }
    
    .registration-form .form-grid,
    .registration-form .form-grid-three,
    .registration-form .form-grid-four {
        grid-template-columns: 1fr;
        padding-right: 0;
    }
    
    .registration-form .form-group.full-width,
    .registration-form .form-group.third {
        grid-column: span 1;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .registration-form .form-grid-four {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .registration-header h1 {
        font-size: 1.75rem;
    }
    
    .registration-header p {
        font-size: 1rem;
    }
    
    .registration-form .section-title {
        font-size: 1.25rem;
    }
    
    .registration-form .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
}

/* Registration Print Styles */
@media print {
    .register-section {
        padding: 20px 0;
        background: white;
    }
    
    .registration-box {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .registration-header {
        background: none;
        color: #000;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .spam-notice,
    .recaptcha-wrapper,
    .btn-submit {
        display: none;
    }
}

/* ==========================================================================
   ADMIN DASHBOARD STYLES
   ========================================================================== */

/* Admin Container */
.admin-container {
    min-height: calc(100vh - 200px);
}

/* Admin Hero Section */
.admin-hero {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 50%, var(--primary-lighter) 100%);
    color: #ffffff;
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.admin-hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.admin-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.admin-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    margin: 0;
    opacity: 0.9;
}

/* Admin Content Section */
.admin-content {
    padding: 60px 24px 80px;
    background: var(--bg-light);
}

/* Admin Grid - 3 columns on desktop */
.admin-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Admin Cards */
.admin-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.admin-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.admin-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.admin-card-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.admin-card-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Admin Card Lists */
.admin-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-card-list li {
    margin: 0;
}

.admin-card-list a {
    display: block;
    padding: 10px 12px;
    margin: 0 -12px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.admin-card-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 16px;
}

.admin-card-list a:active {
    background: var(--primary-color);
    color: #ffffff;
}

/* Card Divider */
.admin-card-divider {
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
}

/* Admin Responsive */
@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-hero {
        padding: 48px 20px;
    }
    
    .admin-hero h1 {
        font-size: 2rem;
    }
    
    .admin-content {
        padding: 40px 16px 60px;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .admin-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .admin-hero h1 {
        font-size: 1.75rem;
    }
    
    .admin-hero p {
        font-size: 1rem;
    }
    
    .admin-card-header h2 {
        font-size: 1rem;
    }
    
    .admin-card-list a {
        font-size: 0.875rem;
        padding: 8px 12px;
    }
}

/* Admin Print Styles */
@media print {
    .admin-hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    .admin-hero::before {
        display: none;
    }
    
    .admin-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .admin-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 50%, var(--primary-lighter) 100%);
    color: #ffffff;
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.contact-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    margin: 0;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 60px 24px 80px;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Grid - 2 columns */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 100%);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: #ffffff;
    height: 100%;
}

.contact-info-card .contact-card-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.contact-info-card .contact-card-header p {
    font-size: 0.9375rem;
    margin: 0 0 32px 0;
    opacity: 0.85;
}

/* Contact Info Items */
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.contact-info-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.contact-info-content p {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color var(--transition-fast);
}

.contact-info-content a:hover {
    border-bottom-color: #ffffff;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card .contact-card-header {
    margin-bottom: 24px;
}

.contact-form-card .contact-card-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.contact-form-card .contact-card-header p {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-label .required {
    color: #EF4444;
}

.contact-form-input,
.contact-form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #ffffff;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    width: 100%;
    box-sizing: border-box;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-input.error,
.contact-form-textarea.error {
    border-color: #EF4444;
}

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

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-char-counter {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

.contact-form-error {
    font-size: 0.8125rem;
    color: #EF4444;
    min-height: 1.2em;
}

/* Contact Submit Button */
.contact-btn-submit {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-lighter) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-top: 8px;
}

.contact-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-btn-submit:active {
    transform: translateY(0);
}

.contact-btn-submit svg {
    width: 18px;
    height: 18px;
}

/* Contact Alerts */
.contact-alert {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.contact-alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
}

.contact-alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.contact-alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-alert-success .contact-alert-icon {
    background: #10B981;
    color: #ffffff;
}

.contact-alert-error .contact-alert-icon {
    background: #EF4444;
    color: #ffffff;
}

.contact-alert-content strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 4px;
}

.contact-alert-success .contact-alert-content strong {
    color: #065F46;
}

.contact-alert-error .contact-alert-content strong {
    color: #991B1B;
}

.contact-alert-content p {
    font-size: 0.875rem;
    margin: 0;
}

.contact-alert-success .contact-alert-content p {
    color: #047857;
}

.contact-alert-error .contact-alert-content p {
    color: #B91C1C;
}

/* Contact Success State */
.contact-success-state {
    text-align: center;
    padding: 40px 20px;
}

.contact-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-success-state h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-primary);
}

.contact-success-state p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 24px 0;
}

.contact-btn-home {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-lg);
    display: inline-block;
    transition: all var(--transition-normal);
}

.contact-btn-home:hover {
    background: var(--primary-lighter);
    transform: translateY(-2px);
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-info-card {
        order: 2;
    }
    
    .contact-form-card {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 48px 20px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 40px 16px 60px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-btn-submit {
        width: 100%;
    }
}

/* Contact Print Styles */
@media print {
    .contact-hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    .contact-hero::before {
        display: none;
    }
    
    .contact-info-card {
        background: none;
        color: #000;
        border: 1px solid #ccc;
    }
    
    .contact-form-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .contact-btn-submit {
        display: none;
    }
}
/* Send Message */
.info-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-item .info-icon {
    font-size: 1.1em;
}

.info-item p {
    margin-left: 1.75rem;
}

/* ==========================================================================
   LEGAL PAGES STYLES (Privacy Policy, Terms & Conditions)
   ========================================================================== */

/* Legal Hero Section */
.legal-hero {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 50%, var(--primary-lighter) 100%);
    color: #ffffff;
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.legal-hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.legal-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    margin: 0 0 20px 0;
    opacity: 0.9;
}

/* Legal Meta Chips */
.legal-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.legal-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.legal-meta-chip svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Legal Section */
.legal-section {
    padding: 60px 24px 80px;
    background: var(--bg-light);
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Legal Layout - Sidebar + Content */
.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Legal TOC Sidebar */
.legal-toc {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-toc-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.legal-toc-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.legal-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.legal-toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 8px;
}

.legal-toc-list li:last-child {
    margin-bottom: 0;
}

.legal-toc-list a {
    display: block;
    padding: 8px 12px;
    margin: 0 -12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.legal-toc-list a::before {
    content: counter(toc-counter) '. ';
    font-weight: 700;
    color: var(--primary-color);
}

.legal-toc-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Legal Support Card */
.legal-support-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
    border-radius: var(--radius-xl);
    padding: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.legal-support-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.legal-support-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.legal-support-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-support-link:hover {
    color: var(--primary-lighter);
}

/* Legal Content */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Legal Cards */
.legal-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    scroll-margin-top: 120px;
}

.legal-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.legal-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px 0;
}

.legal-card h3:first-of-type {
    margin-top: 16px;
}

.legal-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.legal-card a:hover {
    border-bottom-color: var(--primary-color);
}

/* Legal Lists */
.legal-list {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}

.legal-list li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.legal-list li strong {
    color: var(--text-primary);
}

.legal-list-ordered {
    list-style: decimal;
}

/* Legal Notes */
.legal-note {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    background: rgba(37, 99, 235, 0.06);
}

.legal-note strong {
    display: block;
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.legal-note p {
    margin: 0;
    font-size: 0.875rem;
}

.legal-note-info {
    border-left-color: #3B82F6;
    background: rgba(59, 130, 246, 0.06);
}

.legal-note-info strong {
    color: #3B82F6;
}

.legal-note-warning {
    border-left-color: #F59E0B;
    background: rgba(245, 158, 11, 0.06);
}

.legal-note-warning strong {
    color: #D97706;
}

/* Legal Definitions */
.legal-definitions {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-definition {
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.legal-definition dt {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.legal-definition dd {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Legal Contact Box */
.legal-contact-box {
    margin: 16px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.legal-contact-box p {
    margin: 0 0 12px 0;
}

.legal-contact-box p:last-child {
    margin-bottom: 0;
}

/* Legal CTA Card */
.legal-cta-card {
    background: linear-gradient(135deg, var(--header-bg) 0%, #1e293b 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #ffffff;
    text-align: center;
}

.legal-cta-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    padding: 0;
    border: none;
}

.legal-cta-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.legal-cta-card a {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.legal-cta-card a:hover {
    border-bottom-color: #ffffff;
}

.legal-cta-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    background: #ffffff;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.legal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Legal Responsive */
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        position: static;
        order: -1;
    }
    
    .legal-toc-card {
        padding: 20px;
    }
    
    .legal-toc-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px 16px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 48px 20px;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 40px 16px 60px;
    }
    
    .legal-card {
        padding: 24px;
    }
    
    .legal-toc-list {
        grid-template-columns: 1fr;
    }
    
    .legal-cta-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 1.75rem;
    }
    
    .legal-hero p {
        font-size: 1rem;
    }
    
    .legal-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-card h2 {
        font-size: 1.25rem;
    }
    
    .legal-card {
        padding: 20px;
    }
}

/* Legal Print Styles */
@media print {
    .legal-hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    .legal-hero::before {
        display: none;
    }
    
    .legal-meta-chip {
        background: #f0f0f0;
        color: #333;
    }
    
    .legal-toc {
        display: none;
    }
    
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .legal-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .legal-cta-card {
        display: none;
    }
}

/* ==========================================================================
   Content Section & Page Cards (Messages, Activities, etc.)
   ========================================================================== */

/* Content Section Wrapper */
.content-section {
    padding: 40px 20px 60px;
    background: var(--bg-light);
}

.content-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* Page Card - White card container for content */
.page-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px;
    margin-bottom: 24px;
}

.page-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* Search Filters */
.search-filters {
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.filter-group .form-control {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.filter-group .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-actions,
.filter-group.filter-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-end;
    padding-top: 24px;
}

/* Table Controls */
.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.reply-legend {
    color: var(--warning-color);
    font-size: 0.875rem;
}

.reply-legend i {
    margin-right: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

/* Table Responsive Wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Data Table Styling */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.data-table thead {
    background: var(--bg-light);
}

.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-color);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background-color var(--transition-fast);
}

.data-table tbody tr:hover {
    background-color: var(--bg-lighter);
}

.data-table tbody tr.unread {
    background-color: #fef3c7;
    font-weight: 700;
}

.data-table tbody tr.unread:hover {
    background-color: #fde68a;
}

/* Reply-required rows - distinct red/orange highlight */
.data-table tbody tr.reply-required {
    background-color: #fee2e2;
    font-weight: 700;
    border-left: 4px solid #dc2626;
}

.data-table tbody tr.reply-required:hover {
    background-color: #fecaca;
}

.data-table tbody tr.reply-required .indicator {
    color: #dc2626;
}

/* Reply-required banner below hero */
.reply-required-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 16px 0;
}

/* Reply-required banner inside hero section */
.reply-required-hero-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 14px 20px;
    background: rgba(220, 38, 38, 0.85);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: left;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.reply-required-hero-banner > i {
    font-size: 22px;
    color: #fef08a;
    flex-shrink: 0;
}

.reply-required-hero-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reply-required-hero-text strong {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.reply-required-hero-text span {
    font-size: 0.85rem;
    opacity: 0.92;
    line-height: 1.4;
}

.reply-required-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reply-required-banner-inner > i {
    font-size: 24px;
    color: #fef08a;
    flex-shrink: 0;
}

.reply-required-banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reply-required-banner-text strong {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.reply-required-banner-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.unread-legend {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-right: 1rem;
}

.unread-legend .legend-sample {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-color: #fef3c7;
    border: 1px solid #d4a90a;
    border-radius: 3px;
}

.data-table .number {
    font-family: 'SF Mono', 'Consolas', monospace;
    text-align: right;
}

.data-table .date {
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.data-table .debit {
    color: var(--error-color);
}

.data-table .indicator {
    width: 30px;
    text-align: center;
    color: var(--warning-color);
}

.data-table a {
    color: var(--primary-color);
    text-decoration: none;
}

.data-table a:hover {
    text-decoration: underline;
}

.data-table tfoot td {
    padding: 16px;
    background: var(--bg-lighter);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

/* Messages, Activities, Listings, Profile, EFT & Hotlist Hero */
.messages-hero,
.activities-hero,
.listings-hero,
.profile-hero,
.eft-hero,
.hotlist-hero {
    background: linear-gradient(135deg, var(--header-bg) 0%, #2d5a87 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.messages-hero .hero-container,
.activities-hero .hero-container,
.listings-hero .hero-container,
.profile-hero .hero-container,
.eft-hero .hero-container,
.hotlist-hero .hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.messages-hero h1,
.activities-hero h1,
.listings-hero h1,
.profile-hero h1,
.eft-hero h1,
.hotlist-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.messages-hero p,
.activities-hero p,
.listings-hero p,
.profile-hero p,
.eft-hero p,
.hotlist-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Messages Navigation for Admin/Staff */
.messages-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.messages-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.messages-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.messages-nav .nav-link.active {
    background: white;
    color: var(--header-bg);
}

.messages-nav .nav-link i {
    font-size: 1rem;
}

/* ==========================================================================
   SITE ANNOUNCEMENTS PAGE STYLES
   ========================================================================== */

/* Site Announcements Container */
.site-announcements {
    min-height: 100vh;
}

/* Announcements Hero */
.announcements-hero {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 50%, var(--primary-lighter) 100%);
    color: #ffffff;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.announcements-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.announcements-hero .hero-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.announcements-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.announcements-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Announcements Content Section */
.announcements-content {
    background: var(--bg-light);
    padding: 60px 24px;
}

.announcements-content-wrapper {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.announcements-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.announcements-card h2,
.announcements-card h3 {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    margin-top: 0;
}

.announcements-card h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-color);
}

.announcements-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.announcements-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.announcements-card ul,
.announcements-card ol {
    margin: 16px 0;
    padding-left: 24px;
}

.announcements-card li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.announcements-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.announcements-card a:hover {
    color: var(--primary-darker);
    text-decoration: underline;
}

/* Empty Announcements State */
.announcements-empty {
    text-align: center;
    padding: 60px 20px;
}

.announcements-empty h2 {
    border-bottom: none;
    color: var(--text-muted);
}

.announcements-empty p {
    color: var(--text-muted);
}

/* Admin Editor Section */
.announcements-editor {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
}

.editor-header {
    margin-bottom: 32px;
}

.editor-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.editor-heading h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.status-badge {
    display: inline-block;
    background: var(--warning-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.editor-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Editor Alerts */
.editor-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}

.editor-alert--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.editor-alert--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Editor Form */
.editor-form {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-field textarea {
    width: 100%;
    min-height: 300px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    resize: vertical;
}

.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.editor-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Preview Modal */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.preview-modal[hidden] {
    display: none;
}

.preview-modal__content {
    background: #ffffff;
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.preview-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.preview-modal__header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.preview-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition-fast);
}

.preview-modal__close:hover {
    color: var(--text-primary);
}

.preview-modal__body {
    padding: 24px;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* Announcements Responsive */
@media (max-width: 768px) {
    .announcements-hero {
        padding: 50px 16px;
    }
    
    .announcements-hero h1 {
        font-size: 1.75rem;
    }
    
    .announcements-hero p {
        font-size: 1rem;
    }
    
    .announcements-content {
        padding: 32px 16px;
    }
    
    .announcements-card {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }
    
    .announcements-card h2 {
        font-size: 1.5rem;
    }
    
    .announcements-editor {
        padding: 24px 16px;
    }
    
    .editor-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .editor-heading h1 {
        font-size: 1.5rem;
    }
    
    .editor-form {
        padding: 20px 16px;
    }
    
    .editor-actions {
        flex-direction: column;
    }
    
    .editor-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .current,
.pagination .selected a,
.pagination li.selected a {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 24px 16px 40px;
    }
    
    .page-card {
        padding: 16px;
        border-radius: var(--radius-md);
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-actions {
        padding-top: 0;
        width: 100%;
    }
    
    .filter-actions .btn {
        width: 100%;
    }
    
    .table-controls {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .messages-hero h1,
    .activities-hero h1,
    .listings-hero h1,
    .profile-hero h1,
    .eft-hero h1,
    .hotlist-hero h1 {
        font-size: 1.75rem;
    }
    
    .messages-hero p,
    .activities-hero p,
    .listings-hero p,
    .profile-hero p,
    .eft-hero p,
    .hotlist-hero p {
        font-size: 1rem;
    }

    /* Tab navigation horizontal scroll on mobile */
    .tab-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tab-navigation::-webkit-scrollbar {
        display: none;
    }

    .tab-navigation .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Pagination mobile */
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    /* Reply-required banners */
    .reply-required-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .reply-required-hero-banner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 16px;
    }

    /* Empty state */
    .empty-state i {
        font-size: 2rem;
    }

    .empty-state h3 {
        font-size: 1.1rem;
    }
    
    /* Messages nav on mobile */
    .messages-nav {
        gap: 8px;
        margin-top: 16px;
    }
    
    .messages-nav .nav-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .messages-nav .nav-link i {
        font-size: 0.9rem;
    }
    
    /* Mobile Table Cards */
    .data-table thead {
        display: none;
    }
    
    .data-table tbody tr {
        display: block;
        margin-bottom: 16px;
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 12px;
    }
    
    .data-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .data-table td:last-child {
        border-bottom: none;
    }
    
    .data-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
        font-size: 0.8125rem;
    }
    
    .data-table td[colspan] {
        display: block;
    }
    
    .data-table td[colspan]::before {
        display: none;
    }
    
    /* Disable horizontal scroll on mobile - table is now card-based */
    .table-responsive {
        overflow-x: visible;
    }
    
    /* Messages page tfoot pagination */
    .data-table tfoot {
        display: block;
    }
    
    .data-table tfoot tr {
        display: block;
        margin-top: 16px;
    }
    
    .data-table tfoot td {
        display: block;
        border: none;
        padding: 12px 0;
    }
    
    .data-table tfoot td::before {
        display: none;
    }
    
    /* Hide empty separator rows on mobile */
    .data-table tbody tr:has(td[colspan]:only-child:empty),
    .data-table tbody tr td[colspan]:only-child:has(> :empty) {
        display: none;
    }
    
    /* Mobile card adjustments for messages */
    .data-table td.indicator {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0;
        border: none;
    }
    
    .data-table td.indicator::before {
        display: none;
    }
    
    .data-table tbody tr:has(.indicator) {
        position: relative;
        padding-right: 40px;
    }
    
    /* Better date display on mobile */
    .data-table td.date {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .data-table td.date::before {
        margin-bottom: 4px;
    }
}

/* ===================================
   Blast Slider Section
   =================================== */
.blasts-slider-section {
    padding: 40px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.blasts-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.blasts-slider-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.blasts-slider-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.blasts-slider-title i {
    color: #2563eb;
    font-size: 1.5rem;
}

.blasts-slider-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0 0 15px 0;
}

.view-all-blasts {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 10px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.view-all-blasts:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.blasts-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.blasts-slider-track {
    display: flex;
    gap: 24px;
    width: fit-content;
}

.blasts-slider-track.auto-scroll {
    animation: blastScroll 90s linear infinite;
}

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

.blasts-slider-track:hover {
    animation-play-state: paused;
}

.blast-slider-card {
    flex: 0 0 auto;
    width: 280px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blast-slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.blast-slider-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blast-slider-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blast-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blast-slider-card:hover .blast-slider-image img {
    transform: scale(1.05);
}

.blast-slider-image.no-image {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.blast-slider-image.no-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.blast-slider-content {
    padding: 16px;
}

.blast-slider-content .blast-slider-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    justify-content: flex-start;
}

.blast-slider-dealer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 8px;
}

.blast-slider-dealer i {
    color: #94a3b8;
    font-size: 0.75rem;
}

.blast-slider-excerpt {
    font-size: 0.8125rem;
    color: #475569;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blast-slider-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
    transition: gap 0.2s ease;
}

.blast-slider-card:hover .blast-slider-cta {
    gap: 10px;
}

.blast-slider-cta i {
    font-size: 0.75rem;
}

/* Responsive Blast Slider */
@media (max-width: 768px) {
    .blasts-slider-section {
        padding: 30px 0;
    }
    
    .blasts-slider-title {
        font-size: 1.4rem;
    }
    
    .blast-slider-card {
        width: 240px;
    }
    
    .blast-slider-image {
        height: 120px;
    }
    
    .blasts-slider-track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .blast-slider-card {
        width: 200px;
    }
    
    .blast-slider-image {
        height: 100px;
    }
    
    .blast-slider-content {
        padding: 12px;
    }
    
    .blast-slider-content .blast-slider-title {
        font-size: 0.9rem;
    }
}

/* ===================================
   Blasts Page Styling
   =================================== */
.blasts-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.blasts-page .page-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.blasts-page .page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.blasts-page .page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blasts-page .page-header h1 i {
    color: rgba(255, 255, 255, 0.9);
}

.blasts-page .page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0625rem;
    margin: 0;
}

.blasts-page .actions-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blasts-page .actions-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blasts-page .filter-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blasts-page .filter-form label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.blasts-page .filter-form select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f9fafb;
    min-width: 180px;
}

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

.blasts-page .blast-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blasts-page .blast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blasts-page .blast-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.blasts-page .blast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blasts-page .blast-card:hover .blast-image img {
    transform: scale(1.05);
}

.blasts-page .blast-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blasts-page .blast-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.blasts-page .blast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.blasts-page .blast-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #475569;
}

.blasts-page .blast-meta .meta-item strong {
    color: #475569;
}

.blasts-page .blast-excerpt {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    flex: 1;
}

.blasts-page .btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.blasts-page .btn-read-more:hover {
    gap: 12px;
    color: #1d4ed8;
}

.blasts-page .btn-read-more i {
    font-size: 0.875rem;
}

/* Empty State */
.blasts-page .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.blasts-page .empty-state .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.blasts-page .empty-state h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.blasts-page .empty-state p {
    color: #64748b;
    margin: 0 0 1.5rem 0;
}

/* ===================================
   Blast View Page Styling
   =================================== */
.blastview-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.blastview-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.blastview-page .back-link:hover {
    color: #2563eb;
}

.blastview-page .page-header {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 2rem;
    border-radius: 16px;
    color: #ffffff;
}

.blastview-page .page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.blastview-page .page-header h1 i {
    color: #ffffff;
    font-size: 1.75rem;
}

.blastview-page .blast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9375rem;
}

.blastview-page .blast-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.blastview-page .blast-meta .meta-item strong {
    color: #ffffff;
}

.blastview-page .blast-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.blastview-page .blast-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.blastview-page .blast-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

.blastview-page .blast-content {
    padding: 2rem;
}

.blastview-page .blast-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 2rem;
}

.blastview-page .blast-description p {
    margin: 0 0 1rem 0;
}

.blastview-page .blast-description ul,
.blastview-page .blast-description ol {
    margin: 0 0 1rem 1.5rem;
}

.blastview-page .blast-description a {
    color: #2563eb;
}

.blastview-page .blast-document {
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.blastview-page .blast-document iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.blastview-page .blast-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Blasts */
@media (max-width: 768px) {
    .blasts-page,
    .blastview-page {
        padding: 1rem;
    }
    
    .blasts-page .page-header h1,
    .blastview-page .page-header h1 {
        font-size: 1.5rem;
    }
    
    .blasts-grid {
        grid-template-columns: 1fr;
    }
    
    .blasts-page .blast-image {
        height: 180px;
    }
    
    .blastview-page .blast-content {
        padding: 1.5rem;
    }
    
    .blastview-page .blast-document iframe {
        height: 400px;
    }
    
    .blastview-page .blast-actions {
        flex-direction: column;
    }
    
    .blastview-page .blast-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Product SKUs Page Styles
   ========================================================================== */

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.tab-navigation .tab-btn {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: -2px;
}

.tab-navigation .tab-btn:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.tab-navigation .tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.tab-navigation .tab-btn i {
    font-size: 0.875rem;
}

/* Info Alert */
.info-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    color: #1e40af;
}

.info-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-alert p {
    margin: 0;
    line-height: 1.5;
}

/* Result Count */
.result-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.result-count i {
    color: var(--primary-color);
}

/* Listing Badge */
.listing-badge,
.data-table .listing-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: var(--primary-color);
    color: white !important;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.listing-badge:hover,
.data-table .listing-badge:hover {
    background: var(--primary-dark);
    color: white !important;
    text-decoration: none;
}

/* Action Buttons Inline */
.action-buttons-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-icon.btn-danger:hover {
    background: var(--error-color);
    border-color: var(--error-color);
    color: white;
}

/* Section Divider for Inactive Products */
.data-table tr.section-divider td {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-top: 2px solid var(--border-color);
}

.data-table tr.section-divider td i {
    margin-right: 0.5rem;
    color: var(--text-muted);
}

/* Inactive Row */
.data-table tr.inactive td {
    background: #fafafa;
    color: var(--text-muted);
}

/* Note Row */
.data-table tr.note-row td {
    background: #fffbeb;
    border-top: none;
    padding-top: 0.5rem;
}

.data-table tr.note-row .note-cell {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.data-table tr.note-row .note-cell i {
    color: #f59e0b;
    margin-right: 0.375rem;
}

/* UPC Cell */
.data-table .upc-cell {
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.empty-state h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.empty-state p {
    margin: 0 0 1.5rem 0;
}

/* Admin Hero */
.hero.admin-hero {
    background: linear-gradient(135deg, var(--header-bg) 0%, #2d4a6f 100%);
    padding: 2rem 0;
}

.hero.admin-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero.admin-hero h1 i {
    margin-right: 0.75rem;
    opacity: 0.9;
}

.hero.admin-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==========================================================================
   Credit Card / Billing Info Page
   ========================================================================== */
.credit-card-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 3rem;
}

.credit-card-page .page-header {
    background: linear-gradient(135deg, var(--header-bg) 0%, var(--primary-color) 50%, var(--primary-lighter) 100%);
    color: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.credit-card-page .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.credit-card-page .page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.credit-card-page .page-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
}

.credit-card-page .info-banner {
    background: var(--info-bg, #eff6ff);
    border: 1px solid var(--info-border, #bfdbfe);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #1e40af;
    line-height: 1.6;
}

.credit-card-page .info-banner p {
    margin: 0;
}

.credit-card-page .credit-card-form {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 1.75rem 2rem;
}

.credit-card-page .credit-card-form h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.credit-card-page .credit-card-form input[type="text"],
.credit-card-page .credit-card-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-lighter, #fff);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.credit-card-page .credit-card-form input[type="text"]:focus,
.credit-card-page .credit-card-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.credit-card-page .credit-card-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.credit-card-page .credit-card-form .form-row .form-group {
    margin-bottom: 0;
}

.credit-card-page .button-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .credit-card-page {
        padding: 1rem;
    }
    .credit-card-page .credit-card-form {
        padding: 1.25rem;
    }
    .credit-card-page .credit-card-form .form-row {
        grid-template-columns: 1fr;
    }
    .credit-card-page .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    .credit-card-page .button-group .btn-primary,
    .credit-card-page .button-group .btn-secondary,
    .credit-card-page .button-group .btn-danger {
        text-align: center;
    }
}

/* ==========================================
   PRICE GUIDE PAGE
   ========================================== */

/* Hero Section - matches faqs-hero pattern */
.priceguide-hero {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(135deg, #0f3d8c 0%, #1a4d9e 25%, #112b61 60%, #081a3d 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.priceguide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(43, 107, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(43, 107, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.priceguide-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.priceguide-hero p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Filter Section */
.priceguide-filters {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.priceguide-alert {
    background: #fef3cd;
    border: 1px solid #ffc107;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: #856404;
}

.priceguide-alert p {
    margin: 0;
    font-size: 0.95rem;
}

.priceguide-alert i {
    margin-right: 0.5rem;
    color: #e0a800;
}

.priceguide-filter-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.priceguide-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    align-items: end;
}

.priceguide-filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.priceguide-filter-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.priceguide-filter-item select,
.priceguide-filter-item input[type="text"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.625rem;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    appearance: auto;
}

.priceguide-filter-item select:hover,
.priceguide-filter-item input[type="text"]:hover {
    border-color: #cbd5e1;
    background: white;
}

.priceguide-filter-item select:focus,
.priceguide-filter-item input[type="text"]:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.priceguide-filter-item select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
}

.priceguide-date-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    grid-column: span 1;
}

.priceguide-filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: end;
    padding-top: 0.25rem;
}

.btn-pg-primary {
    padding: 0.7rem 1.5rem;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, #2b6bff 0%, #1a4fd8 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(43, 107, 255, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-pg-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 107, 255, 0.35);
    background: linear-gradient(135deg, #4d8fff 0%, #2b6bff 100%);
    color: white;
    text-decoration: none;
}

.btn-pg-primary:active {
    transform: translateY(0);
}

.btn-pg-secondary {
    padding: 0.7rem 1.5rem;
    border-radius: 0.625rem;
    background: white;
    border: 2px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-pg-secondary:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #1e293b;
}

/* Results Section */
.priceguide-results {
    padding: 3rem 0 4rem;
    background: #f9fafb;
    min-height: 200px;
}

.priceguide-results-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #dce3ed;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 31, 58, 0.08);
    animation: fadeInUp 0.6s ease forwards;
}

.priceguide-results-header {
    padding: 1.75rem 2rem 1rem;
}

.priceguide-results-header h2 {
    font-size: 1.5rem;
    color: #0f1f3a;
    margin: 0 0 0.25rem;
    font-weight: 700;
}

.priceguide-results-header h2 i {
    color: #2b6bff;
    margin-right: 0.5rem;
}

.priceguide-caption {
    font-size: 0.9rem;
    color: #5a6785;
    margin: 0;
    font-style: italic;
}

.priceguide-results-card .table-responsive {
    padding: 0 0.5rem 1rem;
}

.priceguide-results-card .data-table {
    border-collapse: collapse;
}

.priceguide-results-card .data-table td.price {
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
    font-weight: 500;
}

.priceguide-results-card .data-table td.center {
    text-align: center;
}

/* Secondary subcategories toggle */
.priceguide-results-card .secondary-header {
    background: linear-gradient(90deg, #f0f4ff 0%, #f8fafc 100%);
}

.priceguide-results-card .secondary-header td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #374151;
}

.priceguide-results-card .toggle-btn {
    background: #2b6bff;
    color: white;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    transition: background 0.2s ease;
    vertical-align: middle;
}

.priceguide-results-card .toggle-btn:hover {
    background: #1a4fd8;
}

/* History section inside results card */
.priceguide-history {
    border-top: 2px solid #e8eef5;
    margin-top: 1rem;
}

/* No results state */
.priceguide-no-results {
    text-align: center;
    padding: 4rem 1.5rem;
    color: #5a6785;
}

.priceguide-no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #94a3b8;
}

.priceguide-no-results p {
    font-size: 1.1rem;
    margin: 0;
}

/* CTA Section - matches faq-cta pattern */
.priceguide-cta {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #0f3d8c 0%, #1a4d9e 30%, #112b61 100%);
    position: relative;
    overflow: hidden;
}

.priceguide-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 107, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.priceguide-cta .cta-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.priceguide-cta .cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.priceguide-cta .cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.priceguide-cta .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.priceguide-cta .btn-pg-primary {
    background: white;
    color: #0f3d8c;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.priceguide-cta .btn-pg-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #0f3d8c;
}

.priceguide-cta .btn.btn-outline {
    padding: 0.7rem 1.5rem;
    border-radius: 0.625rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.priceguide-cta .btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* Price Guide Responsive */
@media (max-width: 768px) {
    .priceguide-hero {
        padding: 2rem 0 1.75rem;
    }

    .priceguide-hero h1 {
        font-size: 1.5rem;
    }

    .priceguide-filters {
        padding: 1.5rem 0;
    }

    .priceguide-filter-card {
        padding: 1.25rem;
    }

    .priceguide-filter-grid {
        grid-template-columns: 1fr;
    }

    .priceguide-date-pair {
        grid-column: span 1;
    }

    .priceguide-filter-actions {
        flex-direction: column;
    }

    .btn-pg-primary,
    .btn-pg-secondary {
        width: 100%;
        justify-content: center;
    }

    .priceguide-results {
        padding: 2rem 0;
    }

    .priceguide-results-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .priceguide-results-header h2 {
        font-size: 1.25rem;
    }

    .priceguide-cta {
        padding: 3rem 0;
    }

    .priceguide-cta .cta-card {
        padding: 2rem 1.5rem;
    }

    .priceguide-cta .cta-content h2 {
        font-size: 1.5rem;
    }

    .priceguide-cta .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .priceguide-cta .cta-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   GLOBAL 480px BREAKPOINT - Small Phones
   ========================================== */
@media (max-width: 480px) {
    .page-shell {
        padding: 0 1rem;
    }

    .content-section {
        padding: 16px 10px 30px;
    }

    .page-card {
        padding: 12px;
        border-radius: 8px;
    }

    /* Hero sections */
    .faqs-hero,
    .priceguide-hero,
    .messages-hero,
    .activities-hero,
    .listings-hero,
    .profile-hero,
    .eft-hero,
    .hotlist-hero {
        padding: 1.5rem 0 1.25rem;
    }

    .faqs-hero h1,
    .priceguide-hero h1,
    .messages-hero h1,
    .activities-hero h1,
    .listings-hero h1,
    .profile-hero h1,
    .eft-hero h1,
    .hotlist-hero h1 {
        font-size: 1.35rem;
    }

    .faqs-hero p,
    .faqs-hero .lede,
    .priceguide-hero p {
        font-size: 0.9rem;
    }

    /* Messages nav compact */
    .messages-nav {
        gap: 6px;
    }

    .messages-nav .nav-link {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .messages-nav .nav-link i {
        display: none;
    }

    /* FAQ sections */
    .faq-sections {
        padding: 2.5rem 0 3rem;
    }

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

    .faq-accordion .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-accordion .faq-answer.active {
        padding: 0 1.25rem 1.25rem;
    }

    /* CTA sections */
    .faq-cta,
    .priceguide-cta {
        padding: 2.5rem 0;
    }

    .faq-cta .cta-card,
    .priceguide-cta .cta-card {
        padding: 1.5rem 1rem;
    }

    .faq-cta .cta-card h2,
    .priceguide-cta .cta-content h2 {
        font-size: 1.25rem;
    }

    .faq-cta .cta-card p,
    .priceguide-cta .cta-content p {
        font-size: 0.95rem;
    }

    /* Data table cards tighter on small phones */
    .data-table tbody tr {
        padding: 10px;
        margin-bottom: 12px;
    }

    .data-table td {
        padding: 6px 0;
        font-size: 0.8125rem;
    }

    /* Pagination */
    .pagination a,
    .pagination span {
        padding: 5px 8px;
        font-size: 0.75rem;
    }

    /* Blasts grid */
    .blasts-grid {
        grid-template-columns: 1fr;
    }

    /* Tab buttons further compact */
    .tab-navigation .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    /* Price guide filter */
    .priceguide-filter-card {
        padding: 1rem;
    }

    .priceguide-results-header {
        padding: 1rem 1rem 0.5rem;
    }

    .priceguide-results-header h2 {
        font-size: 1.1rem;
    }

    .btn-pg-primary,
    .btn-pg-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Search filters */
    .search-filters {
        padding: 12px;
    }

    /* Reply banner */
    .reply-required-hero-banner {
        max-width: 100%;
        padding: 10px 14px;
    }

    .reply-required-hero-text strong {
        font-size: 0.9rem;
    }

    .reply-required-hero-text span {
        font-size: 0.8rem;
    }
}