/* CSS Variables */
:root {
    --primary-green: #239F40;
    --primary-white: #FFFFFF;
    --primary-red: #DA0000;
    --accent-gold: #F4C430;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.logo-emblem {
    display: none;
}

.logo-text {
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-green);
    color: var(--primary-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a7a32 50%, var(--text-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.05">🦁</text></svg>') center/contain no-repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-crest {
    width: 128px;
    height: 128px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), rgba(255,255,255,0)) var(--primary-green);
    border: 3px solid rgba(244, 196, 48, 0.8);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.hero-crest::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/67/Lion_and_sun_Emblem2.svg') center/70% 70% no-repeat;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4));
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .highlight {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-btn-hero {
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(218, 0, 0, 0.4);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.cta-btn-hero:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(218, 0, 0, 0.5);
    color: var(--primary-white);
}

.cta-btn-red {
    background: var(--primary-red);
    box-shadow: 0 4px 20px rgba(218, 0, 0, 0.4);
}

.cta-btn-red:hover {
    box-shadow: 0 6px 30px rgba(218, 0, 0, 0.5);
}

.cta-urgent {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid var(--primary-red);
}

.share-btn-hero {
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(218, 0, 0, 0.4);
}

.share-btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(218, 0, 0, 0.5);
}

.share-icon {
    font-size: 1.3rem;
}

/* Main Content */
.main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.main-content-full {
    padding-top: 6rem;
}

/* Big Title Section */
.big-title-section {
    text-align: center;
    margin-bottom: 0;
    padding: 2rem 1rem;
}

.big-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.big-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    font-weight: 400;
    text-transform: lowercase;
}

/* Sub Navigation */
.sub-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 auto 3rem;
    padding: 1rem;
    max-width: 600px;
    position: sticky;
    top: 70px; /* Just below the navbar */
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Add scroll margin to sections to prevent overlap with sticky elements */
section[id] {
    scroll-margin-top: 180px; /* navbar (70px) + subnav (~70px) + padding (40px) */
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 160px; /* Adjust for mobile */
    }
}

.sub-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 1rem;
}

.sub-nav-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-white);
    color: var(--text-dark);
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.sub-nav-link:hover {
    background: var(--primary-green);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.sub-nav-link.active {
    background: var(--primary-green);
    color: var(--primary-white);
}

.intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    padding: 0 1rem;
}

/* Reason Cards */
.reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-card {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.reason-card:hover {
    box-shadow: var(--shadow-hover);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.card-header:hover {
    background: rgba(35, 159, 64, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.card-icon.icon-urgent {
    animation: blink-urgent 1s ease-in-out infinite;
}

@keyframes blink-urgent {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.card-title-section {
    flex: 1;
}

.card-title-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.expand-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-green);
    transition: var(--transition);
    flex-shrink: 0;
}

.card-header.active .expand-icon {
    transform: rotate(45deg);
}

.card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.card-details.open {
    max-height: 1000px;
}

.detail-content {
    padding: 0 2rem 2rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.detail-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.detail-content li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.detail-content li strong {
    color: var(--primary-green);
}

.detail-links {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.detail-links h4 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.detail-links a {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-white);
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.detail-links a:hover {
    background: var(--primary-green);
    color: var(--primary-white);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--text-dark), #2d2d4a);
    border-radius: var(--border-radius);
    color: var(--primary-white);
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.share-btn-large {
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(218, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.share-btn-large:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(218, 0, 0, 0.5);
}

.cta-btn-large {
    background: var(--primary-green);
    color: var(--primary-white);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(35, 159, 64, 0.4);
    text-decoration: none;
}

.cta-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(35, 159, 64, 0.5);
    color: var(--primary-white);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(-20px);
    transition: var(--transition);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.share-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-white);
    transition: var(--transition);
}

.share-social span {
    font-size: 1.2rem;
}

.share-social.twitter {
    background: #000000;
}

.share-social.facebook {
    background: #1877F2;
}

.share-social.linkedin {
    background: #0A66C2;
}

.share-social.whatsapp {
    background: #25D366;
}

.share-social.telegram {
    background: #0088cc;
}

.share-social.email {
    background: #EA4335;
}

.share-social:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: var(--primary-white);
}

.copy-link {
    display: flex;
    gap: 0.5rem;
}

.copy-link input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.9rem;
}

.copy-link button {
    background: var(--primary-green);
    color: var(--primary-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-link button:hover {
    background: #1a7a32;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--primary-white);
    text-align: center;
    padding: 3rem 2rem;
}

.footer-content p {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-hashtags {
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 1rem;
}

/* Page Headers (for other pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a7a32 100%);
    padding: 8rem 2rem 3rem;
    text-align: center;
    color: var(--primary-white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-section h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.content-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.content-section ul, 
.content-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Timeline Specific */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-green), var(--primary-red));
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 15px;
    height: 15px;
    background: var(--primary-white);
    border: 3px solid var(--primary-green);
    border-radius: 50%;
}

.timeline-item .date {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 0.9rem;
}

.timeline-item h3 {
    margin: 0.25rem 0 0.5rem;
}

/* Help Cards */
.help-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f9f4 0%, #fff8f8 100%);
    border-radius: var(--border-radius);
}

.help-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.help-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.help-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.help-card {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.help-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.help-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.help-card .btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--primary-white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.help-card .btn:hover {
    background: #1a7a32;
    color: var(--primary-white);
}

/* How to Help Section */
.how-to-help-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
    border-radius: var(--border-radius);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.help-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.help-action-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.help-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.help-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.help-action-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.help-action-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.help-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 2rem;
}

.help-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Action List Styles */
.action-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.action-header h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.action-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-item {
    display: flex;
    gap: 1rem;
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}

.action-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.action-number {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.action-content {
    flex: 1;
}

.action-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.action-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Resources Section */
.resources-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.resource-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.resource-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--primary-white);
}

.resource-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.resource-info {
    flex: 1;
}

.resource-info h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.resource-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.resource-link {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
}

.resource-item:hover .resource-link {
    text-decoration: underline;
}

.resource-item-multi {
    cursor: default;
}

.resource-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.resource-links-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: var(--primary-white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.resource-links-list a:hover {
    background: var(--primary-red);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.resources-note {
    text-align: center;
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-top: 2px solid var(--primary-green);
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(35, 159, 64, 0.1);
}

.resources-note a {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.resources-note a:hover {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

@media (max-width: 768px) {
    .resource-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .resource-icon {
        margin: 0 auto;
    }
    
    .resource-info h4 {
        font-size: 1.1rem;
    }
    
    .resource-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .action-item {
        padding: 1.25rem;
    }
    
    .action-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .action-content h4 {
        font-size: 1rem;
    }
    
    .action-content p {
        font-size: 0.9rem;
    }
}

/* Generic Content Sections */
.content-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-light);
    border: 2px dashed #ddd;
}

/* Jump to Top Button */
.jump-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.jump-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jump-to-top:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.jump-to-top span {
    display: block;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-white);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: var(--shadow);
        display: none;
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .nav-link {
        display: block;
        text-align: center;
    }
    
    .hero {
        min-height: 50vh;
        padding: 7rem 1.5rem 3rem;
    }
    
    .card-header {
        padding: 1.25rem 1.5rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-title-section h2 {
        font-size: 1.1rem;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
    }
    
    .detail-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .cta {
        padding: 3rem 1.5rem;
    }
    
    .copy-link {
        flex-direction: column;
    }
    
    .sub-nav {
        top: 70px; /* Match navbar height on mobile - adjusted to be safe */
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .sub-nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .sub-nav.scrolled {
        padding: 0.5rem;
    }
    
    .jump-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .navbar {
        position: fixed;
        width: 100%;
    }
}

/* Animation for cards on scroll */
.reason-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

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

