/* ============================================================
   Hess for Governor — Modern Sophisticated Theme
   ============================================================
   Premium design system with glassmorphism, refined animations,
   and sophisticated typography. Gold & Blue palette preserved.
   ============================================================ */

/* ── Google Fonts Import ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
    /* Primary: Refined Gold Palette */
    --gold-50: #FFFBEB;
    --gold-100: #FEF3C7;
    --gold-200: #FDE68A;
    --gold-300: #FCD34D;
    --gold-400: #FBBF24;
    --gold-500: #D4AF37;
    --gold-600: #B8960F;
    --gold-700: #A67C00;
    --gold-800: #855F00;
    
    /* Secondary: Deep Navy & Blue */
    --navy-900: #151d45;
    --navy-800: #1c2552;
    --navy-700: #232e60;
    --navy-600: #2d3870;
    --blue-500: #3C3B6E;
    --blue-400: #4A4980;
    
    /* Neutral Palette */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Semantic Colors */
    --text-primary: var(--gray-800);
    --text-secondary: var(--gray-600);
    --text-light: var(--gray-400);
    --text-inverse: var(--white);
    
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-dark: var(--navy-900);
    
    --accent-gold: var(--gold-500);
    --accent-gold-light: var(--gold-300);
    --accent-gold-dark: var(--gold-700);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;
    
    /* 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 -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-hfg {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.navbar-hfg.scrolled {
    background: rgba(10, 14, 39, 0.98);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-hfg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-700) 20%,
        var(--gold-500) 50%,
        var(--gold-300) 80%,
        transparent 100%
    );
}

.navbar-hfg .navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-hfg .navbar-brand i {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.navbar-hfg .nav-link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-hfg .nav-link:hover,
.navbar-hfg .nav-link.active {
    color: var(--gold-400) !important;
}

.navbar-hfg .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.navbar-hfg .nav-link:hover::after,
.navbar-hfg .nav-link.active::after {
    width: 60%;
}

/* ── Gold Accent Bar (now part of navbar via ::after) ────── */
.gold-bar {
    display: none;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
    background: var(--navy-900);
    color: var(--white);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: 108vh !important;
    margin-top: -74px !important;
    padding-top: 76px !important;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 50%, rgba(60, 59, 110, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

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

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 5.5rem;
    line-height: 1.1;
}

.hero h1 .text-gold {
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.25rem;
}

.hero .lead {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero .btn-gold {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Profile Image */
.profile-img-wrapper {
    position: relative;
    display: inline-block;
}

.profile-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-full);
    border: 4px solid transparent;
    background: linear-gradient(var(--navy-900), var(--navy-900)) padding-box,
                linear-gradient(135deg, var(--gold-400), var(--gold-600), var(--gold-300)) border-box;
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.1),
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.profile-img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 6px rgba(212, 175, 55, 0.15),
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(212, 175, 55, 0.2);
}

.profile-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: var(--radius-full);
    background: conic-gradient(from 0deg, transparent, var(--gold-500), transparent, var(--gold-500), transparent);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
    color: var(--navy-900);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    color: var(--navy-900);
}

.btn-gold:hover::before {
    left: 100%;
}

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

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

.btn-outline-gold:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ── Section Headings ─────────────────────────────────────── */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--navy-900);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    border-radius: 2px;
}

.section-heading.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ── Glassmorphism Cards ─────────────────────────────────── */
.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -2px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500), var(--gold-400));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card-glass:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        0 8px 16px -8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-glass:hover::before {
    opacity: 1;
}

.card-glass .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--gold-700);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all var(--transition-base);
}

.card-glass:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.card-glass h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.card-glass p {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Feature Cards (Alternative Style) ───────────────────── */
.card-feature {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
}

.card-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.card-feature:hover::after {
    opacity: 0.5;
}

/* ── Quote Styling ────────────────────────────────────────── */
.quote-hfg {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-left: 4px solid var(--gold-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--navy-800);
    line-height: 1.6;
    box-shadow: var(--shadow-sm);
}

.quote-hfg::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--gold-300);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: var(--white);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 30%, rgba(60, 59, 110, 0.3) 0%, transparent 50%);
}

.cta-section .section-heading {
    color: var(--white);
}

.cta-section .section-heading::after {
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer-hfg {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-hfg p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.footer-hfg a {
    color: var(--gold-400);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-hfg a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-400);
    transition: width var(--transition-fast);
}

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

.footer-hfg a:hover::after {
    width: 100%;
}

/* ── Login Page ───────────────────────────────────────────── */
.login-card {
    max-width: 420px;
    margin: 4rem auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

/* ── Form Styling ─────────────────────────────────────────── */
.form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ── Flash Messages ───────────────────────────────────────── */
.flash-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: none;
    border-radius: var(--radius-md);
    color: #155724;
    box-shadow: var(--shadow-sm);
}

.flash-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: none;
    border-radius: var(--radius-md);
    color: #721c24;
    box-shadow: var(--shadow-sm);
}

/* ── Utility Classes ──────────────────────────────────────── */
.text-gold {
    color: var(--gold-500) !important;
}

.text-gold-light {
    color: var(--gold-300) !important;
}

.bg-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600)) !important;
}

.bg-light-gradient {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

/* ── Responsive Adjustments ───────────────────────────────── */
@media (max-width: 991.98px) {
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .profile-img {
        width: 260px;
        height: 260px;
    }
    
    :root {
        --section-padding: 4rem;
    }
    
    .card-glass {
        padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        text-align: center;
        padding: 5rem 0 3rem;
    }
    
    .hero .lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .profile-img {
        width: 220px;
        height: 220px;
        margin-top: 2rem;
    }
    
    .quote-hfg {
        padding: 1.5rem 1.75rem;
        font-size: 1.15rem;
    }
    
    .section-heading {
        text-align: center;
        display: block;
    }
    
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ── Scroll Reveal Animation Classes ─────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ── Issues Page Styles ─────────────────────────────────────── */

/* Navigation Sidebar */
.issues-nav {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.issues-nav-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-300);
}

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

.issues-nav-list li {
    margin-bottom: 0.25rem;
}

.issues-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.issues-nav-link:hover {
    color: var(--navy-900);
    background: var(--gray-50);
    border-left-color: var(--gold-300);
}

.issues-nav-link.active {
    color: var(--navy-900);
    background: linear-gradient(90deg, var(--gold-50) 0%, transparent 100%);
    border-left-color: var(--gold-500);
    font-weight: 600;
}

/* Category Headers */
.issues-category {
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.category-header-featured {
    border-bottom-color: var(--gold-400);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-md);
    color: var(--gold-400);
    font-size: 1.25rem;
}

.category-header-featured .category-icon {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--white);
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    margin: 0;
}

/* Issue Cards */
.issue-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    overflow: hidden;
}

.issue-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
    border-color: var(--gold-300);
}

.issue-card-featured {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border: 2px solid var(--gold-400);
}

.issue-card-featured:hover {
    border-color: var(--gold-300);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Issue Header */
.issue-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.issue-card-featured .issue-header {
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

.issue-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    border-radius: var(--radius-md);
    color: var(--navy-900);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.issue-icon-featured {
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
    color: var(--navy-900);
}

.issue-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    margin: 0;
}

.issue-card-featured .issue-title {
    color: var(--gold-300);
}

/* Issue Content */
.issue-content {
    padding: 1.25rem 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.issue-card-featured .issue-content {
    color: rgba(255, 255, 255, 0.9);
}

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

.issue-card-featured .issue-content p {
    color: rgba(255, 255, 255, 0.85);
}

.issue-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.issue-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.issue-card-featured .issue-content li {
    color: rgba(255, 255, 255, 0.85);
}

.issue-content strong {
    color: var(--navy-900);
    font-weight: 600;
}

.issue-card-featured .issue-content strong {
    color: var(--gold-300);
}

/* Highlight Box */
.issue-highlight {
    background: linear-gradient(135deg, var(--gold-50) 0%, var(--white) 100%);
    border-left: 4px solid var(--gold-500);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1rem 0;
}

.issue-card-featured .issue-highlight {
    background: rgba(212, 175, 55, 0.15);
    border-left-color: var(--gold-400);
}

/* Quote Styling */
.issue-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy-700);
    border-left: 3px solid var(--gold-400);
    padding-left: 1rem;
    margin: 1rem 0;
}

.quote-author {
    font-style: normal;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Proposal Box */
.issue-proposal {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin: 1.25rem 0;
    border: 1px solid var(--gray-200);
}

.issue-card-featured .issue-proposal {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.issue-proposal h6 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.issue-card-featured .issue-proposal h6 {
    color: var(--gold-300);
}

.issue-proposal ul {
    margin-bottom: 0;
}

/* Mission Box */
.mission-box {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin: 1.25rem 0;
    border-left: 4px solid var(--gold-500);
}

.mission-box h6 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
}

/* Vision Projects Grid */
.vision-project {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.vision-project h6 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 0.5rem;
}

.vision-project p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0;
    font-size: 0.95rem;
}

/* Vision Quote */
.vision-quote {
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold-400);
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.vision-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-300) !important;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .issues-nav {
        display: none;
    }
    
    .issue-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .issue-content {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .issue-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .issue-title {
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .issue-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
