/* ======================================================
   openaccesspolicy.css - Open Access Policy Page Specific Styles
   Extracted from your HTML components with exact original styling
====================================================== */

/* ========== HERO BADGE ========== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-top: 15px;
    z-index: 1;
    position: relative;
}

.hero-badge::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
}

.badge-primary {
    background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
    color: #fff;
    border: 0;
}

/* ========== DEFINITION SECTION ========== */
.definition-section {
    margin: 30px 0;
}

.definition-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 20px 0;
}

.definition-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    border: 1px solid #e2edff;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.definition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
    border-color: #f39c12;
}

.definition-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s;
}

.definition-card:hover::before {
    opacity: 1;
}

.definition-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
}

.definition-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.definition-card:nth-child(2) .definition-icon {
    background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
}

.definition-card:nth-child(3) .definition-icon {
    background: linear-gradient(135deg, #ef4444 0, #dc2626 100%);
}

.definition-card:nth-child(4) .definition-icon {
    background: linear-gradient(135deg, #8b5cf6 0, #7c3aed 100%);
}

.definition-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

.definition-text strong {
    color: #0f3b5e;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
/* CARD LAYOUT */
.definition-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
}

/* ICON */
.definition-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: #eef6ff;
  border: 1px solid #dbeafe;

  font-size: 1.2rem;
  color: #2563eb;

  flex-shrink: 0;
}

/* TEXT */
.definition-text {
  margin: 0;
  line-height: 1.6;
  color: #334155;
  font-size: 0.95rem;
}

/* ================= ICON POSITION (LTR / RTL) ================= */

/* Default LTR (icon left) */
html[dir="ltr"] .definition-card {
  flex-direction: row;
  text-align: left;
}

/* RTL (icon right) */
html[dir="rtl"] .definition-card {
  flex-direction: row-reverse;
  text-align: right;
}

/* ================= NICE POLISH ================= */

/* Strong highlight */
.definition-text strong {
  color: #0f3b5e;
  font-weight: 700;
}

/* Optional hover */
.definition-card:hover {
  background: rgba(37, 99, 235, 0.05);
  transition: all 0.25s ease;
}
/* ========== LICENSE SECTION ========== */
.license-section {
    background: #f3f9fe;
    border-radius: 32px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.license-section::before {
    content: "\f1f9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    color: #0f3b5e;
    transform: rotate(10deg);
}

.license-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.license-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 12px -5px rgba(16, 185, 129, 0.4);
}

.license-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.license-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #002856;
    margin-bottom: 5px;
}

.license-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 20px 0;
}

.license-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #e2edff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.license-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #003f6f;
    margin-bottom: 15px;
}

.license-card-title i {
    color: #10b981;
    font-size: 1.3rem;
}

.license-card-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #1f3a57;
    margin-bottom: 15px;
}

/* ========== RIGHTS GRID ========== */
.rights-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 20px 0;
}

.right-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #8b5cf6;
}

.right-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #8b5cf6, #c084fc);
    opacity: 0;
    transition: opacity 0.3s;
}

.right-card:hover::before {
    opacity: 1;
}

.right-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #8b5cf6 0, #7c3aed 100%);
    box-shadow: 0 8px 12px -5px rgba(139, 92, 246, 0.4);
}

.right-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.right-card:first-child .right-icon {
    background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
}

.right-card:nth-child(2) .right-icon {
    background: linear-gradient(135deg, #10b981 0, #059669 100%);
}

.right-card:nth-child(3) .right-icon {
    background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
}

.right-card:nth-child(4) .right-icon {
    background: linear-gradient(135deg, #ef4444 0, #dc2626 100%);
}

.right-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 10px;
}

.right-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
/* ===== RIGHT CARD ===== */
.right-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);

  transition: all 0.25s ease;
}

/* ICON */
.right-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: #eef6ff;
  border: 1px solid #dbeafe;

  font-size: 1.3rem;
  color: #2563eb;

  flex-shrink: 0;
}

/* TEXT WRAPPER (auto without HTML change) */
.right-title {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f3b5e;
}

.right-desc {
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

/* LTR */
html[dir="ltr"] .right-card {
  flex-direction: row;
  text-align: left;
}

/* RTL */
html[dir="rtl"] .right-card {
  flex-direction: row-reverse;
  text-align: right;
}

/* Hover */
.right-card:hover {
  background: rgba(37, 99, 235, 0.05);
}
/* ========== FEATURE SECTION ========== */
.feature-section {
    margin: 30px 0;
}

.feature-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin: 20px 0;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #0c4a6e 0, #0369a1 100%);
    box-shadow: 0 6px 10px -3px rgba(2, 84, 121, 0.4);
}

.feature-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
}

.feature-content {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}
/* ===== FEATURE CARD ===== */
.feature-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);

  transition: all 0.25s ease;
}

/* HEADER (icon + title row) */
.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 8px;
}

/* ICON */
.feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: #eef6ff;
  border: 1px solid #dbeafe;

  font-size: 1.2rem;
  color: #2563eb;

  flex-shrink: 0;
}

/* TITLE */
.feature-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f3b5e;
}

/* CONTENT */
.feature-content {
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

/* LTR */
html[dir="ltr"] .feature-header {
  flex-direction: row;
  text-align: left;
}

/* RTL */
html[dir="rtl"] .feature-header {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .feature-card {
  text-align: right;
}

/* Hover */
.feature-card:hover {
  background: rgba(37, 99, 235, 0.05);
}
/* ========== BADGE ========== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}

.badge-success::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* ========== SECTION HEADER OVERRIDES ========== */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.section-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
    flex-shrink: 0;
}

.section-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    text-transform: uppercase;
}

/* ========== CONTENT BLOCK TEXT ========== */
.content-block-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1e2f44;
    margin-bottom: 20px;
}

/* ========== RTL SUPPORT ========== */
html[dir="rtl"] .definition-card::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .right-card::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .badge-success::before {
    margin-right: 0;
    margin-left: 5px;
}

html[dir="rtl"] .hero-badge::before {
    margin-left: 0;
    margin-right: 5px;
}

html[dir="rtl"] .license-section::before {
    right: auto;
    left: -20px;
    transform: rotate(-10deg);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .definition-card,
    .license-card,
    .right-card,
    .feature-card {
        padding: 20px;
    }

    .license-title {
        font-size: 1.5rem;
    }

    .definition-icon {
        width: 50px;
        height: 50px;
    }

    .definition-icon i {
        font-size: 1.5rem;
    }

    .right-icon {
        width: 45px;
        height: 45px;
    }

    .right-icon i {
        font-size: 1.1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .license-section {
        padding: 20px;
    }

    .license-card-title {
        font-size: 1.1rem;
    }

    .definition-text strong {
        font-size: 1.3rem;
    }

    .right-title {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.definition-card,
.license-card,
.right-card,
.feature-card {
    animation: fadeIn 0.5s ease-out backwards;
}

.definition-card:nth-child(1) { animation-delay: 0.1s; border-top: 4px solid #3b82f6; }
.definition-card:nth-child(2) { animation-delay: 0.2s; border-top: 4px solid #3b82f6; }
.definition-card:nth-child(3) { animation-delay: 0.3s; border-top: 4px solid #3b82f6;}
.definition-card:nth-child(4) { animation-delay: 0.4s; border-top: 4px solid #3b82f6;}

/* ======================================================
   openaccess-policy.css - Complete Open Access Policy Page
   All icons and styles for the Open Access Policy page
   ====================================================== */

/* ========== PAGE TITLE ICON ========== */
.page-title-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Open Access icon - unlocked */
.page-title-icon::before {
    content: "\f09c"; /* unlock 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(37, 99, 235, 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);
}

/* ========== HERO BLOCK ICON ========== */
.hero-block::before {
    content: "\f09c"; /* unlock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 120px;
    opacity: 0.1;
    color: #2563eb;
    transform: rotate(-10deg);
    pointer-events: none;
}

.hero-badge.badge-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.hero-badge.badge-primary::before {
    content: "\f0a3"; /* certificate icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
}

/* ========== SECTION HEADER ICON ========== */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.section-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 6px 12px rgba(243, 156, 18, 0.25);
}

/* Definition section icon */
.definition-section .section-icon::before {
    content: "\f129"; /* info icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Feature section icon */
.feature-section .section-icon::before {
    content: "\f0eb"; /* lightbulb 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;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, #f1c40f);
    border-radius: 3px;
}

/* ========== DEFINITION CARDS ========== */
.definition-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 20px 0;
}

.definition-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    border: 1px solid #e2edff;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.definition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
    border-color: #f39c12;
}

.definition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s;
}

.definition-card:hover::before {
    opacity: 1;
}

.definition-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2);
}

/* Definition card 1 - Free online */
.definition-card:nth-child(1) .definition-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}
.definition-card:nth-child(1) .definition-icon::before {
    content: "\f0ac"; /* globe icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Definition card 2 - No barriers */
.definition-card:nth-child(2) .definition-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.definition-card:nth-child(2) .definition-icon::before {
    content: "\f023"; /* unlock icon - actually lock but we'll use unlock */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f09c"; /* unlock-alt icon */
}

/* Definition card 3 - No embargo */
.definition-card:nth-child(3) .definition-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.definition-card:nth-child(3) .definition-icon::before {
    content: "\f017"; /* clock icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Definition card 4 - No registration */
.definition-card:nth-child(4) .definition-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.definition-card:nth-child(4) .definition-icon::before {
    content: "\f007"; /* user icon with slash */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f2f3"; /* user-slash icon */
}

.definition-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

.definition-text strong {
    color: #0f3b5e;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* ========== LICENSE SECTION ========== */
.license-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 32px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #b8d6f0;
    position: relative;
    overflow: hidden;
}

.license-section::before {
    content: "\f1f9"; /* copyright icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    color: #2563eb;
    transform: rotate(10deg);
    pointer-events: none;
}

.license-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.license-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 15px -5px rgba(16, 185, 129, 0.4);
}

.license-icon::before {
    content: "\f1f9"; /* copyright icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.license-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003160;
    margin: 0;
}

.license-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.license-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #cde1ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
        border-left: 4px solid #10b981;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.license-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003f6f;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* First license card - Author Retains Copyright */
.license-card:first-child .license-card-title::before {
    content: "\f007"; /* user icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #10b981;
    font-size: 1.3rem;
}

/* Second license card - Licensing Terms */
.license-card:last-child .license-card-title::before {
    content: "\f1f9"; /* copyright icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #10b981;
    font-size: 1.3rem;
}

.license-card-content {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.license-card-content strong {
    color: #059669;
}

.badge-success {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-success::before {
    content: "\f00c"; /* check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

/* ========== RIGHTS CARDS ========== */
.rights-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 20px 0;
}

.right-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #8b5cf6;
}

.right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #8b5cf6, #c084fc);
    opacity: 0;
    transition: opacity 0.3s;
}

.right-card:hover::before {
    opacity: 1;
}

.right-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 8px 12px -5px rgba(0, 0, 0, 0.2);
}

/* Card 1 - Read and Download */
.right-card:nth-child(1) .right-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.right-card:nth-child(1) .right-icon::before {
    content: "\f019"; /* download icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Card 2 - Share Freely */
.right-card:nth-child(2) .right-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}
.right-card:nth-child(2) .right-icon::before {
    content: "\f064"; /* share icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Card 3 - Data Mining */
.right-card:nth-child(3) .right-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.right-card:nth-child(3) .right-icon::before {
    content: "\f200"; /* chart line icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Card 4 - Reuse and Adapt */
.right-card:nth-child(4) .right-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.right-card:nth-child(4) .right-icon::before {
    content: "\f0c5"; /* copy icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.right-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 10px;
}

.right-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ========== FEATURE CARDS ========== */
.feature-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin: 20px 0;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 6px 12px -4px rgba(0, 0, 0, 0.2);
}

.feature-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f3b5e;
    margin: 0;
    line-height: 1.3;
}

.feature-content {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Author Rights Section */
.feature-section .feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.feature-section .feature-card:nth-child(1) .feature-icon::before {
    content: "\f0c0"; /* users icon - non-exclusive */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-section .feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}
.feature-section .feature-card:nth-child(2) .feature-icon::before {
    content: "\f187"; /* archive icon - repository */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-section .feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.feature-section .feature-card:nth-child(3) .feature-icon::before {
    content: "\f19d"; /* graduation cap - academic */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-section .feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
.feature-section .feature-card:nth-child(4) .feature-icon::before {
    content: "\f21b"; /* shield - responsibility */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Archiving Section */
.feature-section:nth-of-type(2) .feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}
.feature-section:nth-of-type(2) .feature-card:nth-child(1) .feature-icon::before {
    content: "\f1c0"; /* database icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-section:nth-of-type(2) .feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.feature-section:nth-of-type(2) .feature-card:nth-child(2) .feature-icon::before {
    content: "\f0c0"; /* users - self-archiving */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-section:nth-of-type(2) .feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}
.feature-section:nth-of-type(2) .feature-card:nth-child(3) .feature-icon::before {
    content: "\f0e0"; /* envelope - preservation */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Compliance Section */
.feature-section:nth-of-type(3) .feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.feature-section:nth-of-type(3) .feature-card:nth-child(1) .feature-icon::before {
    content: "\f0a3"; /* certificate - compliance */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.feature-section:nth-of-type(3) .feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.feature-section:nth-of-type(3) .feature-card:nth-child(2) .feature-icon::before {
    content: "\f02c"; /* tag - metadata */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* ========== 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: 40px;
    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: "\f0e0"; /* envelope 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: "\f09c"; /* unlock 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;
}

/* ========== RTL SUPPORT ========== */
html[dir="rtl"] .hero-block::before {
    left: auto;
    right: -20px;
    transform: rotate(10deg);
}

html[dir="rtl"] .license-section::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);
}

html[dir="rtl"] .section-title::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .badge-success::before {
    margin-left: 0;
    margin-right: 5px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .license-title {
        font-size: 1.6rem;
    }
    
    .contact-title {
        font-size: 1.7rem;
    }
}

@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;
    }
    
    .license-title {
        font-size: 1.4rem;
    }
    
    .license-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .hero-block::before {
        font-size: 80px;
    }
    
    .license-section::before {
        font-size: 80px;
    }
    
    .contact-block::before,
    .contact-block::after {
        font-size: 100px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-title::before {
        font-size: 1.5rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    .contact-email {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .definition-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .page-title-wrapper {
        gap: 15px;
    }
    
    .page-title-main {
        font-size: 1.3rem;
    }
    
    .page-title-sub {
        font-size: 1rem;
    }
    
    .license-section,
    .contact-block {
        padding: 25px;
    }
    
    .license-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-title::before {
        font-size: 1.3rem;
    }
}

@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;
    }
    
    .page-title-sub {
        font-size: 0.95rem;
    }
    
    .hero-block::before {
        font-size: 60px;
    }
    
    .license-section::before {
        font-size: 60px;
    }
    
    .contact-block::before,
    .contact-block::after {
        font-size: 80px;
    }
    
    .contact-email {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .license-card {
        padding: 20px;
    }
    
    .license-card-title {
        font-size: 1.2rem;
    }
    
    .definition-grid,
    .rights-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@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;
    }
    
    .contact-email {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.definition-card,
.right-card,
.feature-card,
.license-card {
    animation: fadeIn 0.5s ease-out backwards;
}

.definition-card:nth-child(1) { animation-delay: 0.1s; }
.definition-card:nth-child(2) { animation-delay: 0.2s; }
.definition-card:nth-child(3) { animation-delay: 0.3s; }
.definition-card:nth-child(4) { animation-delay: 0.4s; }

/* ========== PRINT STYLES ========== */
@media print {
    .page-title-icon {
        background: #2563eb !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        box-shadow: none;
    }
    
    .hero-block::before,
    .license-section::before,
    .contact-block::before,
    .contact-block::after {
        display: none;
    }
    
    .definition-card,
    .right-card,
    .feature-card,
    .license-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .contact-email {
        color: #000;
        background: #f0f0f0;
        text-decoration: underline;
    }
}