/*
Theme Name: Cyber Workforce Coalition
Theme URI: https://new.cyberworkforces.com
Author: Cyber Workforce Coalitions Taskforce
Author URI: https://new.cyberworkforces.com
Description: A custom WordPress theme for the Cyber Workforce Coalitions Taskforce website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cyber-workforce
Tags: responsive, cyber-security, workforce, education
*/

/* Main stylesheet content moved inline to avoid 404 errors */

/* 社交媒体分享按钮样式 */
.social-share-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-share-buttons a:hover {
    transform: scale(1.1);
}

.twitter-share {
    background-color: #1DA1F2;
}

.facebook-share {
    background-color: #4267B2;
}

.linkedin-share {
    background-color: #0077B5;
}

/* 在线客服系统样式 */
.customer-service-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.cs-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cs-toggle:hover {
    transform: scale(1.1);
}

.cs-panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 20px;
    display: none;
}

.cs-panel.active {
    display: block;
}

.cs-panel h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.cs-content {
    font-size: 14px;
    color: #666;
}

.cs-content p {
    margin: 10px 0;
}

.cs-content a {
    color: #007bff;
    text-decoration: none;
}

.cs-content a:hover {
    text-decoration: underline;
}

/* 联系表单样式 */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

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

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .social-share-buttons {
        right: 10px;
    }
    
    .social-share-buttons a {
        width: 35px;
        height: 35px;
    }
    
    .cs-panel {
        width: 280px;
        right: -10px;
    }
}

/* 子站点样式 */
.subsite-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px;
}

.subsite-content {
    flex: 1;
    min-width: 0;
}

.subsite-article {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subsite-article .entry-header {
    margin-bottom: 20px;
}

.subsite-article .entry-title {
    font-size: 2em;
    margin: 0 0 10px;
    color: #333;
}

.subsite-article .entry-meta {
    color: #666;
    font-size: 0.9em;
}

.subsite-article .entry-meta span {
    margin-right: 15px;
}

.subsite-article .featured-image {
    margin: 20px 0;
}

.subsite-article .featured-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.subsite-article .entry-content {
    line-height: 1.6;
    color: #444;
}

.subsite-article .entry-content p {
    margin-bottom: 1.5em;
}

.subsite-article .entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9em;
}

.subsite-article .entry-footer span {
    margin-right: 15px;
}

/* 子站点管理页面样式 */
.subsite-management-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subsite-pages-list {
    margin-top: 20px;
}

.subsite-pages-list h2 {
    margin-bottom: 20px;
}

.subsite-pages-list .button {
    margin-bottom: 20px;
}

.subsite-pages-list table {
    width: 100%;
    border-collapse: collapse;
}

.subsite-pages-list th {
    text-align: left;
    padding: 10px;
    background: #f5f5f5;
}

.subsite-pages-list td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.subsite-pages-list .button-small {
    margin-right: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .subsite-page-container {
        flex-direction: column;
        padding: 10px;
    }

    .subsite-article {
        padding: 20px;
    }

    .subsite-article .entry-title {
        font-size: 1.5em;
    }
}

/* 全局管理页面样式 */
.global-management-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.management-filters {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.management-filters select {
    min-width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 模板管理样式 */
.template-management-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.template-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.template-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.template-item h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.template-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.add-template-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.add-template-section h2 {
    margin: 0 0 20px 0;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* 模板选择模态框样式 */
.template-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.template-modal-content {
    position: relative;
    background: #fff;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.template-modal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.template-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.template-option {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-option:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.template-option h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.template-option p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .template-management-container {
        grid-template-columns: 1fr;
    }

    .management-filters {
        flex-direction: column;
    }

    .management-filters select {
        width: 100%;
    }

    .template-modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }
}

/* Enhanced School Alliance Styles */
.alliance-dashboard {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.stat-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.stat-box h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.3em;
    font-weight: 600;
}

.stat-box .stat-number {
    font-size: 2.8em;
    font-weight: 700;
    color: #007bff;
    margin: 15px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stat-box .button {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.stat-box .button:hover {
    background: #0056b3;
}

/* Enhanced School Cards */
.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin: 35px 0;
}

.school-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.school-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.school-card .school-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.school-card:hover .school-image {
    transform: scale(1.05);
}

.school-card .school-content {
    padding: 25px;
    position: relative;
}

.school-card h3 {
    margin: 0 0 12px 0;
    color: #2c3e50;
    font-size: 1.4em;
    font-weight: 600;
}

.school-card .school-meta {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.school-card .school-description {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Enhanced Event Styles */
.events-list {
    margin: 35px 0;
}

.event-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
}

.event-item .event-image {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event-item:hover .event-image {
    transform: scale(1.05);
}

.event-item .event-content {
    flex: 1;
}

.event-item h3 {
    margin: 0 0 12px 0;
    color: #2c3e50;
    font-size: 1.4em;
    font-weight: 600;
}

.event-item .event-meta {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-item .event-description {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Enhanced Resource Center */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.resource-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.resource-card .resource-icon {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
}

.resource-card h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.3em;
    font-weight: 600;
}

.resource-card .resource-meta {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 18px;
}

.resource-card .resource-description {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Enhanced News Section */
.news-list {
    margin: 35px 0;
}

.news-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-item h3 {
    margin: 0 0 12px 0;
    color: #2c3e50;
    font-size: 1.4em;
    font-weight: 600;
}

.news-item .news-meta {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-item .news-excerpt {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .alliance-dashboard {
        padding: 20px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-item {
        flex-direction: column;
        padding: 20px;
    }

    .event-item .event-image {
        width: 100%;
        height: 200px;
    }

    .schools-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item {
        padding: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

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

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

/* ===========================================
   ADVANCED HERO SECTION
   =========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 2;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    animation: slideUp 1s ease-out 0.6s both;
}

.hero-hosted {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.8s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: slideUp 1s ease-out 1s both;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-hero.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 1.2s both;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-text {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===========================================
   SECTION HEADERS
   =========================================== */

.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================================
   MISSION SECTION
   =========================================== */

.mission-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px 20px 0 0;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-content-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-content-text p {
    color: #64748b;
    line-height: 1.6;
}

/* ===========================================
   COALITIONS SECTION
   =========================================== */

.coalitions-section {
    background: white;
}

/* ===========================================
   TRAINING SECTION
   =========================================== */

.training-section {
    background: linear-gradient(135deg, #fefbff 0%, #f3f0ff 100%);
}

/* ===========================================
   EVENTS SECTION
   =========================================== */

.events-section {
    background: linear-gradient(135deg, #fffbf0 0%, #fef3c7 100%);
}

/* ===========================================
   FRONT PAGE STYLES
   =========================================== */

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

.coalition-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.coalition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.coalition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.coalition-card.featured {
    background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.coalition-card.featured::before {
    transform: scaleX(1);
}

.coalition-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.coalition-card:hover .coalition-logo {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.coalition-logo i {
    font-size: 2rem;
    color: white;
}

.organization-location {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.coalition-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coalition-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coalition-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-card .stat-label {
    color: #bfdbfe;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

.program-card i {
    font-size: 3.5rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.program-card:hover i {
    transform: scale(1.1);
    color: #7c3aed;
}

.program-details {
    margin: 1rem 0;
}

.program-detail {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

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

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 158, 11, 0.2);
}

.event-date {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-details {
    margin: 1rem 0;
}

.event-detail {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-image {
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-image i {
    font-size: 4rem;
    color: #e5e7eb;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
    margin-top: 1rem;
}

.testimonial-position {
    color: #6b7280;
    font-size: 0.9rem;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.no-content-message {
    background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.no-content-message i {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.no-content-message h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-content-message p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.no-content-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #6b7280;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

/* ===========================================
   RESPONSIVE IMPROVEMENTS
   =========================================== */

@media (max-width: 1200px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .coalition-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .coalition-grid {
        grid-template-columns: 1fr;
    }
    
    .coalition-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: unset;
        padding: 1.5rem;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .event-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .mission-card,
    .coalition-card,
    .program-card {
        padding: 1.5rem;
    }
    
    .mission-icon,
    .coalition-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .mission-icon i,
    .coalition-logo i {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
