/* ——————————————————————————————————————————————————————————————————————————
   GLOBAL PAGE UPGRADE - PREMIUM THEME
   —————————————————————————————————————————————————————————————————————————— */

/* Section Titles & Breadcrumbs */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 102, 0, 0.1);
}

.breadcrumb a {
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Header Design */
.page-header {
    margin-bottom: 3rem;
    position: relative;
    padding: 1rem 0;
}

.page-header h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.page-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 10px;
}

/* Premium Lists & Links */
.premium-list {
    list-style: none;
    padding: 0;
}

.premium-list li {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--card-shadow);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
}

.premium-list li:hover {
    transform: translateX(5px);
    border-color: rgba(0, 102, 0, 0.2);
}

.premium-list li i {
    width: 32px;
    height: 32px;
    background: rgba(0, 102, 0, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Content Layouts */
.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card h2 i {
    color: var(--primary-color);
}

.content-card p {
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Forms & Inputs Upgrade */
.premium-form .form-group {
    margin-bottom: 1.5rem;
}

.premium-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.9rem;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    transition: 0.3s;
    background: #f8fafc;
}

.premium-form input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 0, 0.05);
    outline: none;
}

/* Grid Upgrades */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .content-card {
        padding: 1.5rem;
    }
}