/* =====================================================
   PROFESSIONAL PAGE REORGANIZATION
   Complete restructuring for About & Projects pages
   ===================================================== */

/* ========== ABOUT PAGE REORGANIZATION ========== */

/* Education Section - Side-by-Side Layout */
.education-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.education-container-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    align-items: start;
}

@media (max-width: 991px) {
    .education-container-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left Side - Academic Degrees */
.academic-degrees-column {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(27, 67, 50, 0.1);
    border: 2px solid rgba(132, 169, 140, 0.2);
}

.academic-degrees-column h3 {
    font-size: 2rem;
    color: #1B4332;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 4px solid #52796F;
    position: relative;
}

.academic-degrees-column h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #84A98C, #B7E4C7);
}

.degree-item {
    padding: 25px;
    margin-bottom: 25px;
    background: #FFFFFF;
    border-radius: 16px;
    border-left: 5px solid #52796F;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.degree-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.12);
    border-left-color: #1B4332;
}

.degree-item h4 {
    font-size: 1.3rem;
    color: #1B4332;
    margin-bottom: 10px;
    font-weight: 700;
}

.degree-item .institution {
    font-size: 1.1rem;
    color: #52796F;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.degree-item .institution i {
    color: #84A98C;
}

.degree-item .years {
    font-size: 0.95rem;
    color: #84A98C;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.degree-item .years i {
    font-size: 0.9rem;
}

/* Right Side - Certifications */
.certifications-column {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 50px 35px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(27, 67, 50, 0.25);
    position: sticky;
    top: 100px;
}

.certifications-column h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 4px solid rgba(183, 228, 199, 0.3);
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-list-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cert-list-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cert-list-item i {
    font-size: 28px;
    color: #B7E4C7;
    flex-shrink: 0;
    margin-top: 3px;
}

.cert-list-item span {
    color: #FFFFFF;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Expertise Section - Professional Structured Layout */
.expertise-section {
    background: linear-gradient(135deg, #E8F3ED 0%, #F8FAF9 100%);
    padding: 100px 0;
}

.expertise-professional-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-professional-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.08);
    overflow: hidden;
    border: 1px solid #E8F3ED;
    transition: all 0.3s ease;
}

.expertise-professional-card:hover {
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.12);
    transform: translateY(-4px);
}

/* Title Section */
.expertise-title-section {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.expertise-title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #40916C 0%, #84A98C 100%);
}

.expertise-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    min-width: 80px;
}

.expertise-title-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.expertise-main-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.expertise-main-icon i {
    font-size: 40px;
    color: #B7E4C7;
}

.expertise-title-content h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.expertise-title-content h3 .subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 5px;
}

/* Content Grid */
.expertise-content-grid {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.expertise-role-card {
    background: #F8FAF9;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #E8F3ED;
    transition: all 0.3s ease;
}

.expertise-role-card:hover {
    background: #FFFFFF;
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.1);
    border-color: #B7E4C7;
    transform: translateY(-2px);
}

.role-card-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E8F3ED;
}

.role-card-header i {
    font-size: 32px;
    color: #2D6A4F;
    margin-top: 5px;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 12px;
}

.role-card-header h4 {
    font-size: 1.3rem;
    color: #1B4332;
    margin: 0 0 8px 0;
    font-weight: 700;
    line-height: 1.3;
}

.org-name {
    font-size: 0.95rem;
    color: #52796F;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

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

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
}

.achievement-item i {
    color: #40916C;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.achievement-item span {
    color: #52796F;
    font-size: 1rem;
    line-height: 1.7;
    flex: 1;
}

.achievement-item strong {
    color: #1B4332;
    font-weight: 700;
}

.achievement-item em {
    color: #2D6A4F;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .expertise-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .expertise-professional-container {
        gap: 50px;
    }
    
    .expertise-title-section {
        padding: 35px 40px;
        flex-wrap: wrap;
    }
    
    .expertise-number {
        font-size: 3rem;
        min-width: 70px;
    }
    
    .expertise-main-icon {
        width: 70px;
        height: 70px;
    }
    
    .expertise-main-icon i {
        font-size: 35px;
    }
    
    .expertise-title-content h3 {
        font-size: 1.75rem;
    }
    
    .expertise-title-content h3 .subtitle {
        font-size: 1.25rem;
    }
    
    .expertise-content-grid {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 60px 0;
    }
    
    .expertise-professional-container {
        gap: 40px;
    }
    
    .expertise-title-section {
        padding: 30px 25px;
        gap: 20px;
    }
    
    .expertise-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .expertise-title-content {
        gap: 20px;
    }
    
    .expertise-main-icon {
        width: 60px;
        height: 60px;
    }
    
    .expertise-main-icon i {
        font-size: 28px;
    }
    
    .expertise-title-content h3 {
        font-size: 1.5rem;
    }
    
    .expertise-title-content h3 .subtitle {
        font-size: 1.1rem;
    }
    
    .expertise-content-grid {
        padding: 30px 25px;
        gap: 25px;
    }
    
    .expertise-role-card {
        padding: 25px 20px;
    }
    
    .role-card-header {
        gap: 15px;
    }
    
    .role-card-header i {
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
    
    .role-card-header h4 {
        font-size: 1.15rem;
    }
    
    .achievement-item {
        gap: 12px;
    }
    
    .achievement-item span {
        font-size: 0.95rem;
    }
}

/* Values Section - Compact 2x2 Grid */
.values-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.values-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .values-compact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.value-compact-card {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(27, 67, 50, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-compact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 50px rgba(27, 67, 50, 0.15);
    border-color: #52796F;
    background: #FFFFFF;
}

.value-compact-card .value-icon {
    margin-bottom: 20px;
}

.value-compact-card h3 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-compact-card p {
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========== PROJECTS PAGE REORGANIZATION ========== */

/* Projects Section - Clean Professional Layout */
.projects-section {
    padding: 80px 0;
    background: #F8FAF9;
}

.projects-category-section {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 3px solid #84A98C;
}

.category-header h2 {
    font-size: 2.2rem;
    color: #1B4332;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-header h2 i {
    font-size: 2rem;
    color: #52796F;
}

/* Project Cards - Modern Design */
.project-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .project-modern-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

.project-modern-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.project-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #52796F;
}

.project-header-badge {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 25px 30px;
    color: #FFFFFF;
    position: relative;
}

.project-header-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #FFFFFF;
}

.project-status {
    display: inline-block;
    background: rgba(183, 228, 199, 0.2);
    color: #B7E4C7;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(183, 228, 199, 0.3);
}

.project-body {
    padding: 30px;
}

.project-description {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.metric-item {
    text-align: center;
    padding: 18px 15px;
    background: linear-gradient(135deg, #F8FAF9 0%, #E8F3ED 100%);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 600;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tag {
    background: rgba(82, 121, 111, 0.1);
    color: #52796F;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Impact Stats Section */
.impact-stats-section {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 80px 0;
    color: #FFFFFF;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

@media (max-width: 991px) {
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.impact-stat-item {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.impact-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #B7E4C7;
    margin-bottom: 10px;
    display: block;
}

.impact-stat-label {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
}

/* ========== PUBLICATIONS PAGE REORGANIZATION ========== */

/* Publications List - Enhanced with Green Accents */
.publications-section {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Featured Publication - Special Highlighting */
.publication-item.featured {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    border-radius: 24px;
    padding: 45px;
    color: #FFFFFF;
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.25);
    border: 3px solid #52796F;
    position: relative;
    overflow: hidden;
}

.publication-item.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(183, 228, 199, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.publication-item.featured .pub-year-badge {
    background: #B7E4C7;
    color: #1B4332;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(183, 228, 199, 0.3);
}

.publication-item.featured .pub-title {
    font-size: 1.85rem;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.publication-item.featured .pub-authors {
    color: #B7E4C7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.publication-item.featured .pub-journal {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.publication-item.featured .pub-abstract {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.publication-item.featured .pub-abstract p {
    color: #FFFFFF;
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0;
}

/* Regular Publication Items */
.publication-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(27, 67, 50, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #84A98C;
    position: relative;
}

.publication-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(27, 67, 50, 0.15);
    border-left-color: #1B4332;
}

.pub-year-badge {
    background: linear-gradient(135deg, #52796F, #84A98C);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.pub-title {
    font-size: 1.5rem;
    color: #1B4332;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.publication-item:hover .pub-title {
    color: #2D6A4F;
}

.pub-authors {
    color: #52796F;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pub-journal {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pub-journal i {
    color: #84A98C;
    font-size: 1.1rem;
}

.pub-volume {
    font-weight: 600;
    color: #52796F;
}

/* Publication Tags */
.pub-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pub-tags .tag {
    background: rgba(82, 121, 111, 0.12);
    color: #1B4332;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(82, 121, 111, 0.2);
    transition: all 0.3s ease;
}

.pub-tags .tag:hover {
    background: #52796F;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.publication-item.featured .pub-tags .tag {
    background: rgba(183, 228, 199, 0.2);
    color: #B7E4C7;
    border-color: rgba(183, 228, 199, 0.3);
}

.publication-item.featured .pub-tags .tag:hover {
    background: #B7E4C7;
    color: #1B4332;
}

/* Publication Metrics */
.pub-metrics {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(132, 169, 140, 0.2);
    border-bottom: 1px solid rgba(132, 169, 140, 0.2);
}

.pub-metrics .metric {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #52796F;
    font-weight: 600;
    font-size: 1rem;
}

.pub-metrics .metric i {
    color: #84A98C;
    font-size: 1.1rem;
}

.publication-item.featured .pub-metrics {
    border-color: rgba(255, 255, 255, 0.3);
}

.publication-item.featured .pub-metrics .metric {
    color: #B7E4C7;
}

.publication-item.featured .pub-metrics .metric i {
    color: #FFFFFF;
}

/* Publication Actions */
.pub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pub-actions .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1B4332;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(132, 169, 140, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.pub-actions .btn-text:hover {
    background: #52796F;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(82, 121, 111, 0.3);
}

.publication-item.featured .pub-actions .btn-text {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.publication-item.featured .pub-actions .btn-text:hover {
    background: #B7E4C7;
    color: #1B4332;
    border-color: #B7E4C7;
}

/* Research Areas Section - Green Gradient Cards */
.research-areas-section {
    background: #FFFFFF;
    padding: 100px 0;
}

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

@media (max-width: 991px) {
    .research-areas-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

.research-area {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 35px rgba(27, 67, 50, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.research-area:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(27, 67, 50, 0.15);
    border-color: #84A98C;
    background: #FFFFFF;
}

.research-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #52796F, #84A98C);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(82, 121, 111, 0.25);
}

.research-icon i {
    font-size: 32px;
    color: #FFFFFF;
}

.research-content h3 {
    font-size: 1.5rem;
    color: #1B4332;
    margin-bottom: 15px;
    font-weight: 700;
}

.research-content p {
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.research-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.research-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #52796F;
    font-weight: 600;
    font-size: 0.95rem;
}

.research-stats i {
    color: #84A98C;
}

/* Citation Impact Section - Deep Green Background */
.citation-impact-section {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 100px 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.citation-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(132, 169, 140, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(183, 228, 199, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.citation-impact-section .section-title {
    color: #FFFFFF;
}

.citation-impact-section .section-title::after {
    background: linear-gradient(90deg, #B7E4C7, #84A98C);
}

.citation-impact-section .section-subtitle {
    color: #B7E4C7;
}

.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .impact-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .impact-metrics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.impact-metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.impact-metric-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.metric-icon {
    margin-bottom: 20px;
}

.metric-icon i {
    font-size: 48px;
    color: #B7E4C7;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 2px 10px rgba(183, 228, 199, 0.3);
}

.metric-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.metric-growth {
    font-size: 0.95rem;
    color: #B7E4C7;
    font-weight: 500;
}

/* Citation Chart Container */
.citation-chart-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.citation-chart-container h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.citation-chart {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
}

.chart-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

/* Load More Section */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.load-more-container .btn-secondary {
    background: linear-gradient(135deg, #52796F, #84A98C);
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.load-more-container .btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(82, 121, 111, 0.3);
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .publication-item,
    .publication-item.featured {
        padding: 30px 25px;
    }

    .pub-title {
        font-size: 1.3rem;
    }

    .publication-item.featured .pub-title {
        font-size: 1.6rem;
    }

    .pub-metrics,
    .pub-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========== MEDIA PAGE - GREEN DESIGN ENHANCEMENTS ========== */

/* Filter Buttons - Green Styling */
.filter-section {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
}

.filter-btn {
    background: #FFFFFF;
    color: #52796F;
    border: 2px solid rgba(132, 169, 140, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(132, 169, 140, 0.1);
    border-color: #84A98C;
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #52796F, #84A98C);
    color: #FFFFFF;
    border-color: #52796F;
    box-shadow: 0 5px 20px rgba(82, 121, 111, 0.3);
}

/* Media Cards - Green Accents */
.media-grid-section {
    background: #FFFFFF;
}

.media-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(27, 67, 50, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.media-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
    border-color: #84A98C;
}

.media-type {
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    color: #B7E4C7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.media-card h3 {
    color: #1B4332;
    transition: color 0.3s ease;
}

.media-card:hover h3 {
    color: #2D6A4F;
}

.read-more {
    color: #52796F;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(132, 169, 140, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #52796F;
    color: #FFFFFF;
    transform: translateX(5px);
}

.play-btn {
    background: linear-gradient(135deg, #52796F, #84A98C);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(82, 121, 111, 0.4);
}

.presentation-stats span,
.podcast-platforms a {
    color: #52796F;
}

.platform-link {
    background: rgba(132, 169, 140, 0.1);
    color: #52796F;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: #52796F;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* ========== CONTACT PAGE - GREEN DESIGN ENHANCEMENTS ========== */

/* Quick Contact Info */
.quick-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.quick-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 1.05rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-contact .contact-item i {
    color: #B7E4C7;
    font-size: 1.2rem;
}

.quick-contact .contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact .contact-item a:hover {
    color: #B7E4C7;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Contact Form Container */
.contact-form-container {
    background: #FFFFFF;
    padding: 50px 45px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(27, 67, 50, 0.1);
    border: 2px solid rgba(132, 169, 140, 0.2);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: #1B4332;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-form .form-group label {
    color: #1B4332;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(132, 169, 140, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #52796F;
    box-shadow: 0 0 0 3px rgba(132, 169, 140, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #52796F, #84A98C);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(82, 121, 111, 0.3);
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
}

/* Contact Info Container */
.contact-info-container {
    position: sticky;
    top: 100px;
}

.contact-info-container h2 {
    font-size: 1.8rem;
    color: #1B4332;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, #F8FAF9 0%, #FFFFFF 100%);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #52796F;
    box-shadow: 0 5px 20px rgba(27, 67, 50, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.12);
    border-left-color: #1B4332;
}

.info-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #52796F, #84A98C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-card .card-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #1B4332;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Response Info */
.response-info {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    padding: 30px;
    border-radius: 16px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.response-info h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.response-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.availability-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6B7280;
}

.indicator-dot.active {
    background: #34d399;
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.5);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.availability-indicator span {
    color: #B7E4C7;
    font-weight: 600;
}

/* Social Connect */
.social-connect h3 {
    color: #1B4332;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(132, 169, 140, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, #52796F, #84A98C);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(82, 121, 111, 0.25);
}

.social-link i {
    font-size: 24px;
    color: #52796F;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: #FFFFFF;
}

.social-link span {
    color: #1B4332;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover span {
    color: #FFFFFF;
}

/* Form Status Messages */
.status-success {
    display: none;
    padding: 15px 20px;
    background: rgba(52, 211, 153, 0.1);
    border: 2px solid #34d399;
    border-radius: 12px;
    color: #047857;
    margin-top: 20px;
}

.status-success i {
    color: #34d399;
    margin-right: 10px;
}

.status-error {
    display: none;
    padding: 15px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 12px;
    color: #b91c1c;
    margin-top: 20px;
}

.status-error i {
    color: #ef4444;
    margin-right: 10px;
}

/* Character Count */
.char-count {
    text-align: right;
    color: #6B7280;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 768px) {
    .quick-contact {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .form-row {
        flex-direction: column;
    }
}
