 /* Additional CSS for Publication Frequency Page */
        .frequency-hero {
            background: linear-gradient(135deg, #064e3b 0, #065f46 100%);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
            border-left: 6px solid #f1c40f;
        }
        
        .frequency-hero::before {
            content: "\f073";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            bottom: -30px;
            right: -30px;
            font-size: 150px;
            opacity: 0.1;
            color: #f1c40f;
            transform: rotate(10deg);
        }
        
        .frequency-hero::after {
            content: "\f017";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: -30px;
            left: -30px;
            font-size: 120px;
            opacity: 0.1;
            color: #fff;
            transform: rotate(-15deg);
        }
        
        .frequency-hero-text {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            position: relative;
            z-index: 1;
        }
        
        .frequency-hero-text strong {
            color: #f1c40f;
        }
        
        .frequency-badge-large {
            background: #fff;
            border-radius: 80px;
            padding: 25px 40px;
            display: inline-block;
            border: 3px solid #f1c40f;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
        }
        
        .frequency-title-large {
            font-size: 2.2rem;
            font-weight: 800;
            color: #064e3b;
            line-height: 1.2;
        }
        
        .frequency-subtitle-large {
            font-size: 1.3rem;
            color: #065f46;
            font-weight: 500;
        }
        
        .frequency-desc-large {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #1f2937;
            background: #f0fdf4;
            padding: 25px;
            border-radius: 28px;
            border: 1px solid #86efac;
        }
        
        .model-showcase {
            background: linear-gradient(135deg, #e0f2fe 0, #bae6fd 100%);
            border-radius: 32px;
            padding: 40px;
            margin: 40px 0;
            border: 2px solid #38bdf8;
            position: relative;
            overflow: hidden;
        }
        
        .model-showcase::before {
            content: "\f0e7";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 100px;
            opacity: 0.1;
            color: #0284c7;
            transform: rotate(15deg);
        }
        
        .model-header-large {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .model-icon-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0284c7 0, #0369a1 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2.5rem;
            box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.4);
        }
        
        .model-title-large {
            font-size: 2rem;
            font-weight: 700;
            color: #0c4a6e;
            margin: 0;
        }
        
        .model-grid-large {
            display: grid;
            gap: 25px;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        
        .model-step-card {
            background: #fff;
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .model-step-card:hover {
            transform: translateY(-5px);
            border-color: #0284c7;
        }
        
        .step-icon-large {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fde9d2 0, #fcd6a5 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #b45d00;
            font-size: 1.8rem;
        }
        
        .step-title-large {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }
        
        .step-desc-large {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.7;
        }
        
        .structure-showcase {
            display: grid;
            gap: 25px;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            margin: 30px 0;
        }
        
        .structure-card-enhanced {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .structure-card-enhanced:hover {
            transform: translateY(-5px);
            border-color: #f1c40f;
        }
        
        .structure-card-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #f1c40f, #f39c12);
        }
        
        .structure-icon-large {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f0f9ff 0, #e0f2fe 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #0369a1;
            font-size: 1.8rem;
        }
        
        .structure-title-large {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }
        
        .structure-desc-large {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .issue-example-enhanced {
            background: #f0f4fa;
            border-right: 4px solid #f39c12;
            padding: 10px 15px;
            border-radius: 12px;
            font-family: monospace;
            direction: ltr;
            text-align: left;
            font-size: 0.95rem;
            color: #002b4f;
            font-weight: 600;
        }
        
        .special-issue-card {
            background: linear-gradient(135deg, #fff5e6 0, #ffe4cc 100%);
            border-radius: 24px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f5cba0;
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .special-issue-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f97316 0, #ea580c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2.5rem;
            box-shadow: 0 15px 25px -5px rgba(249, 115, 22, 0.4);
        }
        
        .special-issue-content {
            flex: 1;
        }
        
        .special-issue-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #9a3412;
            margin-bottom: 10px;
        }
        
        .special-issue-text {
            font-size: 1rem;
            color: #7b341e;
            line-height: 1.7;
        }
        
        .archiving-note-card {
            background: linear-gradient(135deg, #fef3c7 0, #fde68a 100%);
            border-radius: 24px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f59e0b;
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .archiving-note-icon {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d97706;
            font-size: 2.5rem;
            box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.3);
        }
        
        .archiving-note-content {
            flex: 1;
        }
        
        .archiving-note-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #92400e;
            margin-bottom: 10px;
        }
        
        .archiving-note-text {
            font-size: 1rem;
            color: #7b341e;
            line-height: 1.7;
        }
        
        .notification-showcase {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            margin: 30px 0;
        }
        
        .notification-card-enhanced {
            background: #fff;
            border-radius: 20px;
            padding: 25px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .notification-card-enhanced:hover {
            transform: translateY(-5px);
            border-color: #3b82f6;
        }
        
        .notification-icon-large {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fde9d2 0, #fcd6a5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #b45d00;
            font-size: 2rem;
        }
        
        .notification-title-large {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }
        
        .notification-desc-large {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
        }
        
        .commitment-frequency {
            background: linear-gradient(135deg, #e1f0fa 0, #c7e0f5 100%);
            border-radius: 34px;
            padding: 40px;
            margin: 40px 0;
            border: 2px solid #3b82f6;
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .commitment-frequency-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f1c40f 0, #f39c12 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            font-size: 2.5rem;
        }
        
        .commitment-frequency-content {
            flex: 1;
        }
        
        .commitment-frequency-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }
        
        .commitment-frequency-text {
            font-size: 1.1rem;
            color: #1e293b;
            line-height: 1.8;
        }
        
        @media (max-width: 768px) {
            .frequency-hero {
                padding: 25px;
            }
            
            .frequency-badge-large {
                padding: 15px 25px;
            }
            
            .frequency-title-large {
                font-size: 1.8rem;
            }
            
            .frequency-subtitle-large {
                font-size: 1.1rem;
            }
            
            .model-header-large {
                flex-direction: column;
                text-align: center;
            }
            
            .special-issue-card,
            .archiving-note-card,
            .commitment-frequency {
                flex-direction: column;
                text-align: center;
            }
        }
		  /* RTL specific */
        html[dir="rtl"] .structure-card-enhanced::before {
            right: 0;
            left: auto;
        }
        
        html[dir="rtl"] .issue-example-enhanced {
            border-right: 4px solid #f39c12;
            border-left: none;
            text-align: right;
        }

        /* ======================================================
   frequency-policy.css - Complete Publication Frequency Page
   All icons and styles for the Publication Frequency & Schedule page
   ====================================================== */

/* ========== PAGE TITLE ICON ========== */
.page-title-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Calendar icon for publication frequency */
.page-title-icon::before {
    content: "\f073"; /* calendar icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 26px;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* Subtle animation on hover */
.page-title-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(217, 119, 6, 0.5);
}

.page-title-icon:hover::before {
    transform: scale(1.1);
}

/* Decorative shine effect */
.page-title-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.page-title-icon:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* ========== FREQUENCY HERO SECTION ========== */
.frequency-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 6px solid #d97706;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.frequency-hero::before {
    content: "\f073"; /* calendar icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 150px;
    opacity: 0.1;
    color: #d97706;
    transform: rotate(10deg);
    pointer-events: none;
}

.frequency-hero::after {
    content: "\f017"; /* clock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 120px;
    opacity: 0.1;
    color: #d97706;
    transform: rotate(-15deg);
    pointer-events: none;
}

.frequency-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.frequency-hero-text strong {
    color: #d97706;
    font-weight: 700;
}

/* ========== FREQUENCY BADGE ========== */
.frequency-badge-large {
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 60px;
    padding: 30px;
    margin: 30px 0 20px;
    text-align: center;
    box-shadow: 0 15px 30px -8px rgba(217, 119, 6, 0.3);
    position: relative;
    overflow: hidden;
}

.frequency-badge-large::before {
    content: "\f073";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
    color: #fff;
    transform: rotate(15deg);
}

.frequency-title-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.frequency-subtitle-large {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.frequency-desc-large {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1e2f44;
    margin: 20px 0 30px;
    padding: 0 10px;
    text-align: center;
}

/* ========== MODEL SHOWCASE ========== */
.model-showcase {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 32px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #e2e8f0;
}

.model-header-large {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.model-icon-large {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.model-icon-large::before {
    content: "\f0e7"; /* bolt icon - continuous */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.model-title-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
}

.model-grid-large {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 20px;
}

.model-step-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #e2edff;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.model-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(217, 119, 6, 0.15);
    border-color: #d97706;
}

.step-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.model-step-card:nth-child(1) .step-icon-large::before {
    content: "\f00c"; /* check icon - immediate */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.model-step-card:nth-child(2) .step-icon-large::before {
    content: "\f0ca"; /* list icon - compilation */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.model-step-card:nth-child(3) .step-icon-large::before {
    content: "\f02b"; /* tag icon - citation */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.step-title-large {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0 0 12px;
}

.step-desc-large {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ========== SECTION HEADER ========== */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.section-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 6px 12px rgba(217, 119, 6, 0.25);
}

.section-icon::before {
    content: "\f073"; /* calendar icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d97706, #f59e0b);
    border-radius: 3px;
}

/* ========== STRUCTURE SHOWCASE ========== */
.structure-showcase {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin: 30px 0;
}

.structure-card-enhanced {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #e2edff;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.structure-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(217, 119, 6, 0.15);
    border-color: #d97706;
}

.structure-icon-large {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.structure-card-enhanced:nth-child(1) .structure-icon-large::before {
    content: "\f1c6"; /* file-alt icon - electronic */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.structure-card-enhanced:nth-child(2) .structure-icon-large::before {
    content: "\f09c"; /* unlock icon - open access */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.structure-card-enhanced:nth-child(3) .structure-icon-large::before {
    content: "\f02c"; /* tag icon - identification */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.structure-title-large {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0 0 12px;
}

.structure-desc-large {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 15px;
}

.issue-example-enhanced {
    background: #f0f9ff;
    border: 1px solid #b8d6f0;
    border-radius: 40px;
    padding: 8px 15px;
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #0369a1;
    font-weight: 600;
}

/* ========== SPECIAL ISSUE CARD ========== */
.special-issue-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 28px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #b8d6f0;
    box-shadow: 0 15px 30px -10px rgba(2, 136, 209, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-issue-card::before {
    content: "\f0a1"; /* certificate icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    color: #0284c7;
    transform: rotate(10deg);
    pointer-events: none;
}

.special-issue-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.4);
}

.special-issue-icon::before {
    content: "\f0a3"; /* award icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.special-issue-content {
    flex: 1;
}

.special-issue-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
    margin: 0 0 10px;
}

.special-issue-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f3a57;
    margin: 0;
}

/* ========== ARCHIVING NOTE CARD ========== */
.archiving-note-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 28px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #bbf7d0;
    box-shadow: 0 15px 30px -10px rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.archiving-note-card::before {
    content: "\f187"; /* archive icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    color: #22c55e;
    transform: rotate(-10deg);
    pointer-events: none;
}

.archiving-note-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.4);
}

.archiving-note-icon::before {
    content: "\f1c0"; /* database icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.archiving-note-content {
    flex: 1;
}

.archiving-note-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    margin: 0 0 10px;
}

.archiving-note-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f3a57;
    margin: 0;
}

/* ========== NOTIFICATION SHOWCASE ========== */
.notification-showcase {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 30px 0;
}

.notification-card-enhanced {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #e2edff;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.notification-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(217, 119, 6, 0.15);
    border-color: #d97706;
}

.notification-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.notification-card-enhanced:nth-child(1) .notification-icon-large::before {
    content: "\f0e0"; /* envelope icon - email */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.notification-card-enhanced:nth-child(2) .notification-icon-large::before {
    content: "\f099"; /* twitter icon - social */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.notification-card-enhanced:nth-child(3) .notification-icon-large::before {
    content: "\f09e"; /* rss icon - RSS */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.notification-title-large {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0 0 10px;
}

.notification-desc-large {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ========== COMMITMENT FREQUENCY SECTION ========== */
.commitment-frequency {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 28px;
    padding: 30px;
    margin: 30px 0;
    border-left: 6px solid #d97706;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.commitment-frequency::before {
    content: "\f004"; /* heart icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    color: #d97706;
    transform: rotate(15deg);
    pointer-events: none;
}

.commitment-frequency-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.commitment-frequency-icon::before {
    content: "\f0e7"; /* bolt icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.commitment-frequency-content {
    flex: 1;
}

.commitment-frequency-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.commitment-frequency-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0;
}

/* ========== CONTACT BLOCK ========== */
.contact-block {
    background: linear-gradient(145deg, #0a1f33, #123b5e);
    color: #fff;
    border-radius: 22px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    box-shadow: 0 16px 28px rgba(0, 20, 40, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-block::before {
    content: "\f073"; /* calendar icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    left: -30px;
    font-size: 150px;
    opacity: 0.05;
    color: #f1c40f;
    transform: rotate(-15deg);
    pointer-events: none;
}

.contact-block::after {
    content: "\f017"; /* clock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 120px;
    opacity: 0.05;
    color: #f1c40f;
    transform: rotate(15deg);
    pointer-events: none;
}

.contact-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.contact-title::before {
    content: "\f059"; /* question circle icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.8rem;
    color: #f1c40f;
    opacity: 0.8;
}

.contact-text {
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.contact-email {
    background: #f1c40f;
    color: #00233b;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.contact-email:hover {
    background: #ffb854;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px #f39c12;
    border-color: white;
}

.contact-email::before {
    content: "\f0e0"; /* envelope icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
}

/* ========== UTILITY CLASSES ========== */
.content-block-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1e2f44;
    margin-bottom: 20px;
}

/* ========== RTL SUPPORT ========== */
html[dir="rtl"] .frequency-hero {
    border-left: none;
    border-right: 6px solid #d97706;
}

html[dir="rtl"] .frequency-hero::before {
    right: auto;
    left: -30px;
    transform: rotate(-10deg);
}

html[dir="rtl"] .frequency-hero::after {
    left: auto;
    right: -30px;
    transform: rotate(15deg);
}

html[dir="rtl"] .section-title::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .frequency-badge-large::before {
    right: auto;
    left: 20px;
    transform: rotate(-15deg);
}

html[dir="rtl"] .model-header-large {
    flex-direction: row-reverse;
}

html[dir="rtl"] .special-issue-card,
html[dir="rtl"] .archiving-note-card,
html[dir="rtl"] .commitment-frequency {
    flex-direction: row-reverse;
}

html[dir="rtl"] .special-issue-card::before,
html[dir="rtl"] .archiving-note-card::before,
html[dir="rtl"] .commitment-frequency::before {
    right: auto;
    left: -20px;
    transform: rotate(-10deg);
}

html[dir="rtl"] .contact-block::before {
    left: auto;
    right: -30px;
    transform: rotate(15deg);
}

html[dir="rtl"] .contact-block::after {
    right: auto;
    left: -30px;
    transform: rotate(-15deg);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .frequency-title-large {
        font-size: 1.8rem;
    }
    
    .frequency-subtitle-large {
        font-size: 1rem;
    }
    
    .model-title-large {
        font-size: 1.4rem;
    }
    
    .special-issue-card,
    .archiving-note-card,
    .commitment-frequency {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-title-icon {
        width: 50px;
        height: 50px;
    }
    
    .page-title-icon::before {
        font-size: 22px;
    }
    
    .page-title-main {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .frequency-hero {
        padding: 25px;
    }
    
    .frequency-hero-text {
        font-size: 1rem;
    }
    
    .frequency-hero::before,
    .frequency-hero::after {
        font-size: 80px;
    }
    
    .frequency-badge-large {
        padding: 20px;
    }
    
    .frequency-title-large {
        font-size: 1.5rem;
    }
    
    .model-header-large {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-title::before {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-title-wrapper {
        gap: 15px;
    }
    
    .page-title-main {
        font-size: 1.3rem;
    }
    
    .page-title-sub {
        font-size: 0.95rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .frequency-desc-large {
        font-size: 1rem;
    }
    
    .model-grid-large,
    .structure-showcase,
    .notification-showcase {
        grid-template-columns: 1fr;
    }
    
    .contact-email {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title-icon {
        width: 45px;
        height: 45px;
    }
    
    .page-title-icon::before {
        font-size: 20px;
    }
    
    .page-title-main {
        font-size: 1.2rem;
    }
    
    .frequency-hero::before,
    .frequency-hero::after {
        font-size: 60px;
    }
    
    .frequency-title-large {
        font-size: 1.3rem;
    }
    
    .frequency-subtitle-large {
        font-size: 0.9rem;
    }
    
    .special-issue-icon,
    .archiving-note-icon,
    .commitment-frequency-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .special-issue-title,
    .archiving-note-title,
    .commitment-frequency-title {
        font-size: 1.2rem;
    }
    
    .contact-block {
        padding: 25px;
    }
    
    .contact-email {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .page-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    html[dir="rtl"] .page-title-wrapper {
        align-items: flex-end;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.frequency-badge-large,
.model-step-card,
.structure-card-enhanced,
.notification-card-enhanced {
    animation: slideInUp 0.6s ease-out backwards;
}

.frequency-badge-large { animation-delay: 0.1s; }
.model-step-card:nth-child(1) { animation-delay: 0.2s; }
.model-step-card:nth-child(2) { animation-delay: 0.3s; }
.model-step-card:nth-child(3) { animation-delay: 0.4s; }

/* ========== PRINT STYLES ========== */
@media print {
    .page-title-icon {
        background: #d97706 !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        box-shadow: none;
    }
    
    .frequency-hero::before,
    .frequency-hero::after,
    .frequency-badge-large::before,
    .special-issue-card::before,
    .archiving-note-card::before,
    .commitment-frequency::before,
    .contact-block::before,
    .contact-block::after {
        display: none;
    }
    
    .frequency-badge-large {
        background: #d97706 !important;
        color: #fff !important;
    }
    
    .model-step-card,
    .structure-card-enhanced,
    .notification-card-enhanced,
    .special-issue-card,
    .archiving-note-card,
    .commitment-frequency {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .contact-email {
        color: #000;
        background: #f0f0f0;
        text-decoration: underline;
    }
}