/* Chamber pages */

/* Global Paragraph Consistency Fix - Applied to all content areas */
.content-main p {
    font-size: var(--font-lg);
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
}

/* Ensure consistent styling across all content sections */
.content-main .content-section p,
.content-main .section-intro p,
.content-main .sponsorship-intro p,
.content-main .fund-usage-intro p,
.content-main .membership-explanation p,
.content-main .benefits-overview p,
.content-main .perks-intro p,
.content-main .why-sponsor-content p,
.content-main .about-waterford-content p,
.content-main .future-chamber-content p,
.content-main .sponsorship-content p,
.content-main .volunteer-content p,
.content-main .who-we-are-content p,
.content-main .waterford30-intro p,
.content-main .membership-levels-intro p,
.content-main .membership-does-content p,
.content-main .membership-benefits-content p,
.content-main .achieving-intro p,
.content-main .achieving-goals-content p,
.content-main .conclusion-content p,
.content-main .ten-year-content p,
.content-main .vision-details p {
    font-size: var(--font-lg);
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
}

/* Keep special intro sections with their extra bottom margin */
.section-intro, 
.sponsorship-intro, 
.fund-usage-intro {
    margin-bottom: var(--space-xl);
}

/* Vision Sections with Inline Images */
.vision-section {
    margin: 0rem 0;
    padding: 1rem 0;
}

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

.vision-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.vision-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 2px;
}

/* Vision Grid Layouts - Text Wrapping Around Images */
.vision-grid {
    overflow: hidden; /* Clear floats */
    margin-top: 2rem;
}

/* Left Image Layout - Image floats left, text wraps around */
.vision-image-left {
    float: left;
    margin: 0 3rem 0rem 0;
    width: 400px;
}

/* Right Image Layout - Image floats right, text wraps around */
.vision-image-right {
    float: right;
    margin: 0 0 2rem 3rem;
    width: 400px;
}

/* .vision-text-content {
} */

/* Image Styling */
.vision-image-left img,
.vision-image-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .vision-image-left img:hover,
.vision-image-right img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
} */

/* Vision Points Styling */
/* .vision-point {
    margin-bottom: 2rem;
    padding: 1.5rem;
} */

/* .vision-point:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(62, 162, 190, 0.1);
} */

.vision-point h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.vision-point p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* 10-Year Vision Grid */
.vision-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 0rem;
}

/* Simple Goals List with Inline Icons */
.achieving-goals-content {
    margin-top: 2rem;
}

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

.achieving-goals-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 12px;
    border-left: 4px solid #3EA2BE;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.achieving-goals-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(62, 162, 190, 0.1);
}

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

.goal-icon-inline {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.2rem !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(62, 162, 190, 0.3);
    transition: transform 0.3s ease;
}

.achieving-goals-list li:hover .goal-icon-inline {
    transform: scale(1.1);
}

/* Text content structure fix */
.achieving-goals-list li .goal-text-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.achieving-goals-list li strong {
    color: #1a365d;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 0.5rem;
    display: block;
}

.achieving-goals-list li .goal-description {
    color: #4a5568;
    line-height: 1.6;
    margin-top: 0.3rem;
}

/* Benefits Grid - Updated to match premium widget styling */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 6px 15px rgba(62, 162, 190, 0.3);
}

.benefit-item .benefit-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Sponsorship Table - Updated to match premium widget styling */
.sponsorship-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-top: 2rem;
}

.sponsorship-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.sponsorship-table thead th {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    color: #1a365d;
    font-weight: 600;
    padding: 1.5rem;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.sponsorship-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.sponsorship-table tbody tr:hover {
    background: #f8fafc;
}

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

.sponsorship-table td {
    padding: 2rem 1.5rem;
    vertical-align: top;
}

.level-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
}

.price-standard {
    font-size: 1.3rem;
    font-weight: 700;
    /* color: #3EA2BE; */
    margin-bottom: 0.5rem;
}

.price-nonprofit {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

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

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #4a5568;
}

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

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #3EA2BE;
    font-weight: 700;
    font-size: 1rem;
}

/* Custom Sponsorship Note */
.custom-sponsorship-note {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border-left: 0px solid #3EA2BE;
}

.custom-sponsorship-note p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

.custom-sponsorship-note a {
    color: #3EA2BE;
    text-decoration: none;
    font-weight: 600;
}

.custom-sponsorship-note a:hover {
    color: #2B7A8F;
    text-decoration: underline;
}

/* Fund Usage Grid - Updated to 400px width for proper stacking */
.fund-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.usage-category {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usage-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.usage-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f7fafc;
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 6px 15px rgba(62, 162, 190, 0.3);
}

.usage-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.usage-header h3 {
    color: #1a365d;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
}

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

.usage-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

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

.usage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #3EA2BE;
    font-weight: 700;
    font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.cta-title {
    color: #1a365d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    color: #ffffff;
    border: none;
}

.btn-primary.btn-large:hover {
    background: linear-gradient(135deg, #2B7A8F, #1f5a6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 162, 190, 0.3);
}

.btn-secondary.btn-large {
    background: #ffffff;
    color: #3EA2BE;
    border: 2px solid #3EA2BE;
}

.btn-secondary.btn-large:hover {
    background: #3EA2BE;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Layout Adjustments - Slimmer content, wider sidebar */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Premium Sidebar Widgets */
.content-sidebar {
    padding-left: 0;
}

.premium-widget {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.premium-widget .widget-title {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #e2e8f0;
}

.premium-widget .widget-content {
    padding: 1.5rem;
}

.premium-widget .widget-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Timeline Widget */
.timeline-items {
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3EA2BE, #2B7A8F);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    background: #ffffff;
    border: 3px solid #3EA2BE;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(62, 162, 190, 0.2);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2B7A8F;
    line-height: 1;
}

.timeline-label {
    font-size: 0.7rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Button Styling */
.btn-widget {
    width: 100%;
    margin-bottom: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-widget:last-child {
    margin-bottom: 0;
}

.btn-primary.btn-widget {
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border: none;
    color: #ffffff;
}

.btn-primary.btn-widget:hover {
    background: linear-gradient(135deg, #2B7A8F, #1f5a6b);
    transform: translateY(-1px);
}

.btn-secondary.btn-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #4a5568;
}

.btn-secondary.btn-widget:hover {
    border-color: #3EA2BE;
    color: #2B7A8F;
    background: #f7fafc;
}

/* Contact Info Styling */
.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f7fafc;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.contact-item:hover {
    background: #edf2f7;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 0.9rem;
}

.contact-item a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #2B7A8F;
}

/* Sidebar Links */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.8rem;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    color: #4a5568;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.sidebar-links a:hover {
    background: #f7fafc;
    color: #2B7A8F;
    transform: translateX(5px);
}

.sidebar-links a i {
    margin-right: 0.8rem;
    color: #cbd5e0;
    transition: color 0.2s ease;
}

.sidebar-links a:hover i {
    color: #3EA2BE;
}

/* Benefits Highlights Widget */
.benefit-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.highlight-item:hover {
    background: #edf2f7;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-icon i {
    color: #ffffff;
    font-size: 0.9rem;
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.highlight-text span {
    color: #718096;
    font-size: 0.85rem;
}

/* Sponsorship Levels Quick Reference */
.levels-summary {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.level-summary {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.level-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: all 0.3s ease;
}

.level-summary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.level-summary.bronze::before {
    background: linear-gradient(135deg, #d4a574, #b8934a);
}

.level-summary.silver::before {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.level-summary.gold::before {
    background: linear-gradient(135deg, #ffd700, #e6c200);
}

.level-summary.presidents::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.level-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.level-badge.bronze {
    background: linear-gradient(135deg, #d4a574, #b8934a);
    color: #ffffff;
}

.level-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: #ffffff;
}

.level-badge.gold {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #ffffff;
}

.level-badge.presidents {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

.level-price {
    font-weight: 700;
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.level-description {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 500;
}

/* Quick Comparison Widget */
.quick-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.comparison-item:hover {
    background: #edf2f7;
}

.comparison-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.comparison-icon i {
    color: #ffffff;
    font-size: 0.9rem;
}

.comparison-text {
    display: flex;
    flex-direction: column;
}

.comparison-text strong {
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.comparison-text span {
    color: #718096;
    font-size: 0.85rem;
}

/* Membership Calculator Widget */
.calculator-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.question-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.question-item:hover {
    background: #edf2f7;
}

.question-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.question-icon i {
    color: #ffffff;
    font-size: 0.9rem;
}

.question-text {
    display: flex;
    flex-direction: column;
}

.question-text strong {
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.question-text span {
    color: #718096;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Membership Perks Content */
.membership-perks-content {
    margin-top: 2rem;
}

.perk-section {
    margin-bottom: 3rem;
}

.perk-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

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

.checkmark-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: var(--font-base);
}

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

/* Member Benefits List */
.sidebar-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-benefits li {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: #f7fafc;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sidebar-benefits li:hover {
    background: #edf2f7;
}

.benefit-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-check i {
    color: #ffffff;
    font-size: 0.8rem;
}

.sidebar-benefits span {
    color: #4a5568;
    font-weight: 500;
}

/* Newsletter Form */
.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-newsletter-form input {
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    border-color: #3EA2BE;
    box-shadow: 0 0 0 3px rgba(62, 162, 190, 0.1);
}

/* About Page Specific Styling */
.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.section-cta {
    margin-top: 2rem;
}

.section-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Highlight Sections */
.future-highlight,
.sponsorship-highlight,
.volunteer-highlight {
    padding: 2.5rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 12px;
    border-left: 4px solid #3EA2BE;
}

/* Action Buttons Widget */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

/* Values Widget */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.value-item:hover {
    background: #edf2f7;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3EA2BE, #2B7A8F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px 0 0 !important;
    flex-shrink: 0;
}

.value-icon i {
    color: #ffffff;
    font-size: 0.9rem;
}

.value-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.value-text strong {
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.value-text span {
    color: #718096;
    font-size: 0.85rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2B7A8F;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Stack images on mobile instead of floating */
    .vision-image-left,
    .vision-image-right {
        float: none;
        margin: 0 auto 2rem auto;
        display: block;
        width: 100%;
        max-width: 400px;
    }
    
    .content-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .vision-section .section-title {
        font-size: 2rem;
    }
    
    .timeline-items::before {
        left: 25px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .timeline-year {
        font-size: 1rem;
    }
    
    .fund-usage-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .content-layout {
        padding: 0 1rem;
    }
    
    .vision-section {
        margin: 0rem 0;
        padding: 1rem 0;
    }
    
    .vision-point {
        padding: 1rem;
    }
    
    .vision-image-left,
    .vision-image-right {
        width: 100%;
        margin: 0 0 1.5rem 0;
    }
    
    .vision-image-left img,
    .vision-image-right img {
        height: 200px;
    }
    
    .achieving-goals-list li {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .goal-icon-inline {
        margin: 0 auto 1rem auto;
    }
    
    .premium-widget .widget-title,
    .premium-widget .widget-content {
        padding: 1rem;
    }
    
    .benefit-item,
    .usage-category,
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .sponsorship-table td {
        padding: 1rem;
    }
    
    .fund-usage-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Updates for Existing Document Sections in future-chamber.css */
/* Replace the existing document styles in your CSS file with these cleaner versions */

/* Enhanced Documents Page Styling */
.documents-page {
    background: #fafbfc;
}

/* Featured Documents - Softer Modern Cards */
.featured-documents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.featured-doc-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3EA2BE, #764ba2);
}

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

/* Sidebar Widgets - Clean Modern Design */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
}

.widget-title {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Search Form Enhancement */
.search-form {
    padding: 1.5rem;
}

.search-input-group {
    display: flex;
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.25rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.search-input-group:focus-within {
    border-color: rgba(62, 162, 190, 0.3);
    box-shadow: 0 0 0 3px rgba(62, 162, 190, 0.08);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #1a202c;
}

.search-btn {
    background: transparent;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    /* transition: all 0.2s ease; */
}

.search-btn:hover {
    /* transform: translateY(-1px); */
    color: var(--secondary-color);
    /* box-shadow: 0 4px 12px rgba(62, 162, 190, 0.3); */
}

/* Category Links - Modern Clean Style */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.category-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 0.75rem;
}

.category-link:hover {
    background: rgba(62, 162, 190, 0.04);
    color: #3EA2BE;
}

.category-link.active {
    background: linear-gradient(135deg, rgba(62, 162, 190, 0.08), rgba(118, 75, 162, 0.06));
    color: #3EA2BE;
    border-right: 3px solid #3EA2BE;
}

.doc-count {
    margin-left: auto;
    background: rgba(62, 162, 190, 0.1);
    color: #2d7a91;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-link.active .doc-count {
    background: rgba(62, 162, 190, 0.2);
    color: #2d7a91;
}

/* Documents Grid - Enhanced Cards */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.document-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.document-header {
    position: relative;
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.document-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3EA2BE, #2d7a91);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-icon i {
    color: white;
    font-size: 1.2rem;
}

.featured-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.document-content {
    padding: 1.5rem;
}

.document-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.document-description {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.document-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #64748b;
    background: rgba(100, 116, 139, 0.06);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
}

.document-category {
    background: rgba(62, 162, 190, 0.1) !important;
    color: #2d7a91 !important;
    font-weight: 500;
}

.document-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
}

.document-actions {
    padding: 0 1.5rem 1.5rem;
}

.download-btn {
    width: 100%;
    background: linear-gradient(135deg, #3EA2BE, #2d7a91);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background: linear-gradient(135deg, #2d7a91, #1e5a6b);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(62, 162, 190, 0.3);
}

.document-footer {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(248, 250, 252, 0.7);
}

.document-date {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
}

/* No Documents State */
.no-documents {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.no-documents i {
    font-size: 3rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Sort Options */
.sort-options select {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: white;
    color: #1a202c;
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sort-options select:focus {
    outline: none;
    border-color: rgba(62, 162, 190, 0.3);
}

/* Popular Documents Widget */
.popular-docs {
    padding: 1.5rem;
}

.popular-doc {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.popular-doc:last-child {
    border-bottom: none;
}

.popular-doc i {
    color: #3EA2BE;
    font-size: 1rem;
    margin-top: 0.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .document-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

form.search-form-docs {
    padding: 10px 0;
    margin: 0 0 0 -7px;
}

.contact-item:hover i {
    color: var(--secondary-color) !important;
}