/* Section Titles - Common Styles */
.section-title {
    color: #002245;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

/* Content Card - Common wrapper */
.content-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

/* Content Section - Generic content container */
.content-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.content-section h3 {
    color: #002245;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-section p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Section Header with underline */
.section-header {
    color: #002245;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F37039, #ff8c5a);
    border-radius: 2px;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #F37039, transparent);
    margin: 40px 0;
    border-radius: 2px;
}

/* Subsection Header */
.subsection-header {
    color: #002245;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

/* Policy Intro paragraph style */
.policy-intro {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

/* Highlight Section - Gray background with border */
.highlight-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #F37039;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.highlight-section:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(3px);
}

.highlight-section h3,
.highlight-section h4 {
    color: #002245;
    margin-bottom: 15px;
}

.highlight-section p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Important Note - Orange gradient background */
.important-note {
    background: linear-gradient(135deg, #fff5f2, #ffe8e0);
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid #F37039;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(243, 112, 57, 0.15);
}

.important-note h3,
.important-note h4 {
    color: #F37039;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.important-note p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.important-note p:last-child {
    margin-bottom: 0;
}

/* Role Section - Blue accent */
.role-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #002245;
    margin-bottom: 25px;
}

.role-section h3,
.role-section h4 {
    color: #002245;
    font-weight: 600;
    margin-bottom: 15px;
}

.role-section p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* List Styles */
.guidelines-list,
.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.guidelines-list li,
.policy-list li {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.guidelines-list li:before,
.policy-list li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #F37039;
    font-size: 18px;
}

/* Role List - Arrow bullets */
.role-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.role-list li {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.role-list li:before {
    content: "\f0a4";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #002245;
    font-size: 14px;
}

/* Criteria List - Numbered circles */
.criteria-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    counter-reset: criteria-counter;
}

.criteria-list li {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 45px;
    position: relative;
    counter-increment: criteria-counter;
}

.criteria-list li:before {
    content: counter(criteria-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #F37039, #ff8c5a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Icon Container Styles */
.card-icon,
.feature-icon,
.advantage-icon,
.need-icon,
.impact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon.primary,
.feature-icon.primary,
.advantage-icon.primary,
.need-icon.primary {
    background: linear-gradient(135deg, #F37039, #ff8c5a);
}

.card-icon.secondary,
.feature-icon.secondary,
.advantage-icon.secondary,
.need-icon.secondary {
    background: linear-gradient(135deg, #002245, #003366);
}

.card-icon i,
.feature-icon i,
.advantage-icon i,
.need-icon i,
.impact-icon i {
    color: #fff;
    font-size: 32px;
}

.feature-icon {
    width: 60px;
    height: 60px;
}

.feature-icon i {
    font-size: 24px;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F37039, #ff8c5a);
}

.impact-icon i {
    font-size: 36px;
}

/* Call to Action Section - Common */
.cta-section {
    background: linear-gradient(135deg, #F37039 0%, #ff8c5a 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(243, 112, 57, 0.3);
}

.cta-section h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #F37039;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #002245;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Hover Effects - Common */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Responsive adjustments - Common */
@media (max-width: 768px) {
    .content-card,
    .content-section {
        padding: 30px 20px;
    }
    
    .section-header {
        font-size: 24px;
    }
    
    .cta-section h3 {
        font-size: 24px;
    }
    
    .cta-section {
        padding: 40px 25px;
    }
}

/* Submit Manuscript Page - Minimal Clean Styles */

/* Quick Access Links */
.quick-access-section {
    margin: 40px auto;
}

.access-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.access-link:hover {
    border-color: #F37039;
    transform: translateX(5px);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(243, 112, 57, 0.15);
}

.access-link.active {
    border-color: #F37039;
    background: #fff5f2;
}

.access-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.access-icon.primary {
    background: linear-gradient(135deg, #F37039, #ff8c5a);
}

.access-icon.secondary {
    background: linear-gradient(135deg, #002245, #003366);
}

.access-icon i {
    color: #fff;
    font-size: 18px;
}

.access-link span {
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.access-link:hover span {
    color: #F37039;
}

/* Instructions Modal - Minimal */
.instructions-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.instructions-modal-content {
    background: #fff;
    margin: 8% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
}

.instructions-modal-content h3 {
    color: #002245;
    margin-bottom: 25px;
    font-size: 24px;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #666;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #F37039;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.instruction-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #F37039;
}

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

.instruction-item h4 {
    color: #002245;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.instruction-item h4 i {
    color: #F37039;
    margin-right: 8px;
}

.instruction-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.instruction-item ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.instruction-item ul li {
    color: #555;
    font-size: 14px;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.instruction-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #F37039;
    font-weight: bold;
}

/* Form Section Titles */
.form-section-title {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 15px;
}

.form-section-title i {
    color: #F37039;
    font-size: 18px;
    margin-right: 10px;
}

.form-section-title span {
    color: #002245;
    font-size: 16px;
    font-weight: 600;
}

/* File Upload - Minimal */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #F37039;
    background: #fff5f2;
}

.file-upload-label i {
    font-size: 24px;
    color: #F37039;
    margin-right: 10px;
}

.file-upload-label span {
    color: #666;
    font-size: 14px;
}

.file-name-display {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 5px;
    color: #2e7d32;
    font-size: 14px;
}

.file-name-display i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .instructions-modal-content {
        width: 95%;
        padding: 20px;
        margin: 15% auto;
    }
    
    .access-link {
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   Journals Listing Page Styles
   ========================================================================== */

/* Journals Listing Section */
.journals-listing-section {
    margin-bottom: 50px;
}

.journal-letter-block {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-top: 4px solid #002245;
}

.journal-letter-block:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    background: #f8f9fa;
}

.letter-title {
    color: #002245;
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #002245;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.journals-grid {
    margin-top: 15px;
}

.journal-card {
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.journal-card:hover {
    background: #fff5f2;
    border-left-color: #F37039;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.journal-link {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    color: #002245;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.journal-link:hover {
    color: #F37039;
}

.journal-link i {
    font-size: 18px;
    margin-right: 12px;
    color: #F37039;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.journal-card:hover .journal-link i {
    transform: scale(1.15);
}

.journal-link span {
    flex: 1;
}

/* No Journals State */
.no-journals {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.no-journals i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-journals h4 {
    color: #002245;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.no-journals p {
    color: #999;
    font-size: 16px;
}

/* Journals Page Responsive */
@media (max-width: 992px) {
    .journals-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .journal-letter-block {
        padding: 30px 20px;
    }
    
    .letter-title {
        font-size: 28px;
    }
    
    .journals-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .journal-card:hover {
        transform: none;
    }
}
