﻿/* ===== CSS VARIABLES ===== */
:root {
    --jc-primary: #FF6B35;
    --jc-primary-dark: #E85A24;
    --jc-primary-light: #FF8A5B;
    --jc-secondary: #1A365D;
    --jc-secondary-light: #2D4A6F;
    --jc-accent: #138808;
    --jc-accent-light: #1DB954;
    --jc-bg-cream: #FFF8F3;
    --jc-bg-light: #F7F5F2;
    --jc-bg-white: #FFFFFF;
    --jc-text-dark: #1A1A2E;
    --jc-text-medium: #4A4A5A;
    --jc-text-light: #6B7280;
    --jc-shadow-sm: 0 2px 8px rgba(26,54,93,0.08);
    --jc-shadow-md: 0 4px 20px rgba(26,54,93,0.12);
    --jc-shadow-lg: 0 8px 40px rgba(26,54,93,0.16);
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== FONT FACES ===== */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
}

/* ===== BODY ===== */
body {
    font-family: 'Poppins', 'Mukta', sans-serif;
    background: var(--jc-bg-cream);
    color: var(--jc-text-dark);
    line-height: 1.6;
}

.gujarati-text {
    font-family: 'Mukta', sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--jc-secondary);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

    .top-bar a {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        transition: color 0.2s;
    }

        .top-bar a:hover {
            color: var(--jc-primary);
        }

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        gap: 5px;
    }

/* ===== MAIN HEADER ===== */
.main-header {
    background: var(--jc-bg-white);
    padding: 15px 0;
    box-shadow: var(--jc-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--jc-primary), var(--jc-primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--jc-secondary);
    line-height: 1.1;
}

    .logo-text span {
        color: var(--jc-primary);
    }

.logo-tagline {
    font-size: 0.75rem;
    color: var(--jc-text-light);
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-link {
    padding: 10px 16px;
    color: var(--jc-text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-link:hover {
        background: var(--jc-bg-light);
        color: var(--jc-primary);
    }

    .nav-link.active {
        background: rgba(255,107,53,0.1);
        color: var(--jc-primary);
    }

    .nav-link i {
        font-size: 0.85rem;
    }

.btn-admin {
    background: var(--jc-secondary);
    color: white !important;
}

    .btn-admin:hover {
        background: var(--jc-secondary-light);
    }

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--jc-shadow-lg);
    padding: 8px;
    min-width: 240px;
    max-height: 500px;
    overflow-y: auto;
    position: absolute;
    z-index: 1000;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

    .dropdown-item:hover {
        background: var(--jc-bg-light);
        color: var(--jc-primary);
        transform: translateX(3px);
    }

.dropdown-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--jc-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px 5px;
}

.dropdown-divider {
    margin: 5px 10px;
    border-color: var(--jc-bg-light);
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--jc-secondary);
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

    .mobile-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-toggle.active i {
        transform: rotate(90deg);
    }

/* ===== NEWS TICKER ===== */
.news-ticker {
    background: linear-gradient(135deg, var(--jc-primary), var(--jc-primary-dark));
    color: white;
    padding: 10px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--jc-secondary);
    padding: 6px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll 40s linear infinite;
}

    .ticker-content:hover {
        animation-play-state: paused;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    white-space: nowrap;
    padding: 0 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .ticker-item a {
        color: white;
        text-decoration: none;
    }

        .ticker-item a:hover {
            text-decoration: underline;
        }

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
    padding: 25px 0;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== LEFT SIDEBAR ===== */
.left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--jc-bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--jc-shadow-sm);
}

.sidebar-header {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

    .sidebar-header.blue {
        background: var(--jc-secondary);
    }

    .sidebar-header.orange {
        background: var(--jc-primary);
    }

    .sidebar-header.green {
        background: var(--jc-accent);
    }

    .sidebar-header.red {
        background: #DC2626;
    }

    .sidebar-header.purple {
        background: #7C3AED;
    }

    .sidebar-header.cyan {
        background: #0891B2;
    }

.sidebar-body {
    padding: 0;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    color: var(--jc-text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--jc-bg-light);
    font-size: 0.9rem;
    transition: all 0.2s;
}

    .cat-link:last-child {
        border-bottom: none;
    }

    .cat-link:hover {
        background: var(--jc-bg-light);
        color: var(--jc-primary);
        padding-left: 22px;
    }

    .cat-link .cat-icon {
        width: 32px;
        height: 32px;
        background: var(--jc-bg-light);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        transition: all 0.2s;
    }

    .cat-link:hover .cat-icon {
        background: var(--jc-primary);
        color: white;
    }

    .cat-link .cat-icon i {
        font-size: 0.9rem;
        color: var(--jc-primary);
    }

    .cat-link:hover .cat-icon i {
        color: white;
    }

    .cat-link .cat-name {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .cat-link .cat-count {
        background: var(--jc-bg-light);
        padding: 3px 10px;
        border-radius: 12px;
        font-size: 0.75rem;
        color: var(--jc-text-medium);
        font-weight: 600;
    }

    .cat-link:hover .cat-count {
        background: var(--jc-primary);
        color: white;
    }

/* ===== QUICK LINKS ===== */
.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--jc-text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--jc-bg-light);
    font-size: 0.9rem;
    transition: all 0.2s;
}

    .quick-link:last-child {
        border-bottom: none;
    }

    .quick-link:hover {
        background: var(--jc-bg-light);
        color: var(--jc-primary);
        padding-left: 22px;
    }

    .quick-link i {
        width: 20px;
        color: var(--jc-accent);
    }

/* ===== PORTAL LINKS ===== */
.portal-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: var(--jc-text-medium);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--jc-bg-light);
    transition: all 0.2s;
}

    .portal-link:last-child {
        border-bottom: none;
    }

    .portal-link:hover {
        background: var(--jc-bg-light);
        color: var(--jc-primary);
    }

    .portal-link i {
        color: var(--jc-secondary);
        width: 18px;
    }

    .portal-link .external-icon {
        margin-left: auto;
        font-size: 0.75rem;
        color: var(--jc-text-light);
    }

/* ===== MAIN CONTENT ===== */
.main-content {
    min-width: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, var(--jc-primary) 100%);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    color: white;
}

    .page-hero.results {
        background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, var(--jc-accent) 100%);
    }

    .page-hero.answerkey {
        background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, #F59E0B 100%);
    }

    .page-hero.oldpaper {
        background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, #DC2626 100%);
    }

    .page-hero.syllabus {
        background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, #7C3AED 100%);
    }

    .page-hero.admitcard {
        background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, #0D9488 100%);
    }

    .page-hero.jobs {
        background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, var(--jc-primary) 100%);
    }

    .page-hero.contact {
        background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 50%, #3B82F6 100%);
    }

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero-left h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .hero-left h1 i {
        font-size: 1.3rem;
    }

.hero-left p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.stat-box {
    background: rgba(255,255,255,0.15);
    padding: 12px 22px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.85;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: var(--jc-bg-white);
    padding: 10px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    font-size: 0.85rem;
}

    .breadcrumb-item a {
        color: var(--jc-text-medium);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .breadcrumb-item a:hover {
            color: var(--jc-primary);
        }

        .breadcrumb-item a i {
            color: var(--jc-primary);
        }

    .breadcrumb-item.active {
        color: var(--jc-text-dark);
        font-weight: 500;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 0.55rem;
        color: var(--jc-text-light);
        padding: 0 10px;
    }

/* ===== FILTER SECTION ===== */
.filter-section {
    background: var(--jc-bg-white);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 15px;
    box-shadow: var(--jc-shadow-sm);
}

.filter-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.filter-item {
    display: flex;
    flex-direction: column;
}

    .filter-item.search-input {
        flex: 2;
    }

    .filter-item.category-select,
    .filter-item.year-select,
    .filter-item.location-input {
        flex: 1;
        min-width: 140px;
    }

    .filter-item.filter-btn {
        flex: 0 0 auto;
    }

    .filter-item label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--jc-text-dark);
        margin-bottom: 5px;
    }

        .filter-item label i {
            color: var(--jc-primary);
            margin-right: 4px;
        }

    .filter-item input,
    .filter-item select {
        width: 100%;
        padding: 9px 12px;
        border: 2px solid var(--jc-bg-light);
        border-radius: 8px;
        font-size: 0.85rem;
        height: 40px;
        transition: all 0.2s;
    }

        .filter-item input:focus,
        .filter-item select:focus {
            outline: none;
            border-color: var(--jc-primary);
        }

    .filter-item button {
        background: var(--jc-primary);
        color: white;
        border: none;
        padding: 9px 18px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 40px;
        white-space: nowrap;
        transition: all 0.2s;
    }

        .filter-item button:hover {
            background: var(--jc-primary-dark);
        }

.active-filters {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--jc-bg-light);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

    .active-filters > span {
        color: var(--jc-text-medium);
    }

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

    .filter-tag.keyword {
        background: rgba(255,107,53,0.1);
        color: var(--jc-primary);
    }

    .filter-tag.category {
        background: rgba(13,148,136,0.1);
        color: #0D9488;
    }

    .filter-tag.location {
        background: rgba(34,197,94,0.1);
        color: #16A34A;
    }

    .filter-tag a {
        color: inherit;
        margin-left: 4px;
    }

        .filter-tag a:hover {
            color: #DC2626;
        }

.clear-btn {
    background: var(--jc-bg-light);
    color: var(--jc-text-dark);
    padding: 4px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s;
}

    .clear-btn:hover {
        background: #DC2626;
        color: white;
    }

/* ===== CONTENT SECTION ===== */
.content-section {
    background: var(--jc-bg-white);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 15px;
    box-shadow: var(--jc-shadow-sm);
}

.section-title,
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--jc-bg-light);
}

.title-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .title-left > i {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, var(--jc-primary), var(--jc-primary-dark));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
    }

    .title-left.green > i {
        background: linear-gradient(135deg, var(--jc-accent), #059669);
    }

    .title-left.yellow > i {
        background: linear-gradient(135deg, #F59E0B, #D97706);
    }

    .title-left.red > i {
        background: linear-gradient(135deg, #DC2626, #B91C1C);
    }

    .title-left.purple > i {
        background: linear-gradient(135deg, #7C3AED, #6D28D9);
    }

    .title-left.teal > i {
        background: linear-gradient(135deg, #0D9488, #0F766E);
    }

    .title-left.blue > i {
        background: linear-gradient(135deg, #3B82F6, #2563EB);
    }

    .title-left h2 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--jc-secondary);
        margin: 0;
    }

    .title-left p {
        font-size: 0.8rem;
        color: var(--jc-text-light);
        margin: 0;
    }

/* ===== ITEMS GRID ===== */
.items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

    .items-grid.single-col {
        grid-template-columns: 1fr;
    }

/* ===== ITEM CARD ===== */
.item-card {
    background: var(--jc-bg-light);
    border-radius: 10px;
    padding: 16px;
    border-left: 4px solid var(--jc-primary);
    transition: all 0.3s;
}

    .item-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--jc-shadow-md);
    }

    .item-card.green {
        border-left-color: var(--jc-accent);
    }

    .item-card.yellow {
        border-left-color: #F59E0B;
    }

    .item-card.red {
        border-left-color: #DC2626;
    }

    .item-card.purple {
        border-left-color: #7C3AED;
    }

    .item-card.teal {
        border-left-color: #0D9488;
    }

/* ===== BADGES ===== */
.card-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    .card-badges .badge,
    .details-badges .badge {
        padding: 4px 8px;
        border-radius: 5px;
        font-size: 0.65rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

.details-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

    .details-badges .badge {
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
    }

.badge.published,
.badge.declared {
    background: var(--jc-accent);
    color: white;
}

.badge.available {
    background: #0D9488;
    color: white;
}

.badge.new {
    background: var(--jc-primary);
    color: white;
}

.badge.featured {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.badge.urgent {
    background: #DC2626;
    color: white;
}

.badge.year {
    background: var(--jc-secondary);
    color: white;
}

.badge.syllabus-badge {
    background: #7C3AED;
    color: white;
}

.badge.answerkey-badge {
    background: #F59E0B;
    color: white;
}

.badge.paper-badge {
    background: #DC2626;
    color: white;
}

.badge.category {
    background: var(--jc-secondary);
    color: white;
}

/* ===== CARD COMPONENTS ===== */
.card-header-section {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .card-icon.green {
        background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    }

        .card-icon.green i {
            color: #059669;
        }

    .card-icon.yellow {
        background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    }

        .card-icon.yellow i {
            color: #92400E;
        }

    .card-icon.red {
        background: linear-gradient(135deg, #FEE2E2, #FECACA);
    }

        .card-icon.red i {
            color: #DC2626;
        }

    .card-icon.purple {
        background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
    }

        .card-icon.purple i {
            color: #7C3AED;
        }

    .card-icon.teal {
        background: linear-gradient(135deg, #CCFBF1, #99F6E4);
    }

        .card-icon.teal i {
            color: #0F766E;
        }

    .card-icon.blue {
        background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    }

        .card-icon.blue i {
            color: #2563EB;
        }

    .card-icon i {
        font-size: 1.1rem;
    }

.card-title-wrap {
    flex: 1;
    min-width: 0;
}

    .card-title-wrap h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0 0 4px 0;
        line-height: 1.3;
    }

        .card-title-wrap h3 a {
            color: var(--jc-text-dark);
            text-decoration: none;
        }

            .card-title-wrap h3 a:hover {
                color: var(--jc-primary);
            }

    .card-title-wrap .org-name {
        font-size: 0.8rem;
        color: var(--jc-text-medium);
        margin: 0;
    }

.card-info-box {
    background: var(--jc-bg-white);
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--jc-text-medium);
    margin-bottom: 5px;
}

    .info-row:last-child {
        margin-bottom: 0;
    }

    .info-row i {
        width: 16px;
        color: var(--jc-primary);
    }

        .info-row i.green {
            color: #059669;
        }

        .info-row i.red {
            color: #DC2626;
        }

.card-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

    .card-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.75rem;
        color: var(--jc-text-light);
    }

        .card-meta span i {
            color: var(--jc-primary);
        }

.card-category {
    display: inline-block;
    background: var(--jc-bg-white);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    color: var(--jc-text-medium);
    margin-bottom: 12px;
}

    .card-category i {
        color: var(--jc-primary);
        margin-right: 4px;
    }

.card-actions {
    display: flex;
    gap: 8px;
}

.btn-details,
.btn-primary-action {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s;
}

.btn-details {
    background: var(--jc-secondary);
    color: white;
}

    .btn-details:hover {
        background: var(--jc-secondary-light);
        color: white;
    }

.btn-primary-action {
    background: linear-gradient(135deg, var(--jc-accent), #059669);
    color: white;
}

    .btn-primary-action:hover {
        box-shadow: 0 3px 12px rgba(19, 136, 8, 0.3);
        color: white;
    }

    .btn-primary-action.yellow {
        background: linear-gradient(135deg, #F59E0B, #D97706);
    }

        .btn-primary-action.yellow:hover {
            box-shadow: 0 3px 12px rgba(245, 158, 11, 0.3);
        }

    .btn-primary-action.red {
        background: linear-gradient(135deg, #DC2626, #B91C1C);
    }

        .btn-primary-action.red:hover {
            box-shadow: 0 3px 12px rgba(220, 38, 38, 0.3);
        }

    .btn-primary-action.purple {
        background: linear-gradient(135deg, #7C3AED, #6D28D9);
    }

        .btn-primary-action.purple:hover {
            box-shadow: 0 3px 12px rgba(124, 58, 237, 0.3);
        }

    .btn-primary-action.teal {
        background: linear-gradient(135deg, #0D9488, #0F766E);
    }

        .btn-primary-action.teal:hover {
            box-shadow: 0 3px 12px rgba(13, 148, 136, 0.3);
        }

/* ===== DETAILS PAGE ===== */
.details-card {
    background: var(--jc-bg-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--jc-shadow-sm);
}

.details-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jc-secondary);
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.details-title-guj {
    font-size: 1.1rem;
    color: var(--jc-text-medium);
    margin: 0 0 20px 0;
}

.org-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--jc-bg-light);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.org-icon-large {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--jc-bg-light);
    overflow: hidden;
}

    .org-icon-large img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .org-icon-large i {
        font-size: 1.8rem;
        color: var(--jc-secondary);
    }

.org-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jc-text-dark);
    margin: 0 0 4px 0;
}

.org-details p {
    font-size: 0.9rem;
    color: var(--jc-text-medium);
    margin: 0;
}

/* ===== INFO GRID ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--jc-bg-light);
    padding: 15px;
    border-radius: 10px;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon.blue {
        background: #DBEAFE;
        color: #2563EB;
    }

    .info-icon.green {
        background: #D1FAE5;
        color: #059669;
    }

    .info-icon.purple {
        background: #EDE9FE;
        color: #7C3AED;
    }

    .info-icon.yellow {
        background: #FEF3C7;
        color: #D97706;
    }

    .info-icon.red {
        background: #FEE2E2;
        color: #DC2626;
    }

    .info-icon.orange {
        background: #FFEDD5;
        color: #EA580C;
    }

    .info-icon.teal {
        background: #CCFBF1;
        color: #0D9488;
    }

    .info-icon i {
        font-size: 1.2rem;
    }

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: var(--jc-text-light);
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--jc-text-dark);
}

/* ===== ALERT BOXES ===== */
.alert-box {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

    .alert-box.warning {
        background: #FEF3C7;
        border: 1px solid #F59E0B;
    }

    .alert-box.danger {
        background: #FEE2E2;
        border: 1px solid #DC2626;
    }

    .alert-box.info {
        background: #DBEAFE;
        border: 1px solid #3B82F6;
    }

    .alert-box.success {
        background: #D1FAE5;
        border: 1px solid #10B981;
    }

.alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.alert-box.warning .alert-header {
    color: #92400E;
}

.alert-box.danger .alert-header {
    color: #991B1B;
}

.alert-box.info .alert-header {
    color: #1E40AF;
}

.alert-box.success .alert-header {
    color: #065F46;
}

.alert-header i {
    font-size: 1.2rem;
}

.alert-body p {
    font-size: 0.85rem;
    color: var(--jc-text-medium);
    margin: 0 0 5px 0;
}

.exam-alert {
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

    .exam-alert.urgent {
        background: #FEE2E2;
        color: #991B1B;
        border: 1px solid #FECACA;
    }

    .exam-alert.warning {
        background: #FEF3C7;
        color: #92400E;
        border: 1px solid #FDE68A;
    }

    .exam-alert.completed {
        background: #D1FAE5;
        color: #065F46;
        border: 1px solid #A7F3D0;
    }

    .exam-alert i {
        font-size: 0.85rem;
    }

.objection-alert {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #92400E;
}

    .objection-alert i {
        color: #F59E0B;
    }

/* ===== DESCRIPTION SECTION ===== */
.description-section {
    background: var(--jc-bg-light);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--jc-primary);
}

    .description-section.green {
        border-left-color: var(--jc-accent);
    }

    .description-section.yellow {
        border-left-color: #F59E0B;
    }

    .description-section.red {
        border-left-color: #DC2626;
    }

    .description-section.purple {
        border-left-color: #7C3AED;
    }

    .description-section h5 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--jc-secondary);
        margin: 0 0 15px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .description-section h5 i {
            color: var(--jc-primary);
        }

.description-content {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--jc-text-medium);
}

    .description-content p {
        margin-bottom: 10px;
    }

    .description-content ul,
    .description-content ol {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .description-content table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 15px;
    }

        .description-content table th,
        .description-content table td {
            padding: 10px;
            border: 1px solid var(--jc-bg-light);
            text-align: left;
        }

        .description-content table th {
            background: var(--jc-bg-white);
            font-weight: 600;
        }

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-action:hover {
        transform: translateY(-2px);
    }

    .btn-action.primary {
        background: linear-gradient(135deg, var(--jc-primary), var(--jc-primary-dark));
        color: white;
    }

        .btn-action.primary:hover {
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            color: white;
        }

    .btn-action.green {
        background: linear-gradient(135deg, var(--jc-accent), #059669);
        color: white;
    }

        .btn-action.green:hover {
            box-shadow: 0 4px 15px rgba(19, 136, 8, 0.3);
            color: white;
        }

    .btn-action.yellow {
        background: linear-gradient(135deg, #F59E0B, #D97706);
        color: white;
    }

        .btn-action.yellow:hover {
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            color: white;
        }

    .btn-action.red {
        background: linear-gradient(135deg, #DC2626, #B91C1C);
        color: white;
    }

        .btn-action.red:hover {
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
            color: white;
        }

    .btn-action.purple {
        background: linear-gradient(135deg, #7C3AED, #6D28D9);
        color: white;
    }

        .btn-action.purple:hover {
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
            color: white;
        }

    .btn-action.teal {
        background: linear-gradient(135deg, #0D9488, #0F766E);
        color: white;
    }

        .btn-action.teal:hover {
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
            color: white;
        }

    .btn-action.secondary {
        background: var(--jc-secondary);
        color: white;
    }

        .btn-action.secondary:hover {
            background: var(--jc-secondary-light);
            color: white;
        }

    .btn-action.outline {
        background: white;
        color: var(--jc-text-dark);
        border: 2px solid var(--jc-bg-light);
    }

        .btn-action.outline:hover {
            border-color: var(--jc-primary);
            color: var(--jc-primary);
        }

/* ===== SHARE SECTION ===== */
.share-section {
    padding-top: 20px;
    border-top: 1px solid var(--jc-bg-light);
}

    .share-section h6 {
        font-size: 0.9rem;
        color: var(--jc-text-medium);
        margin-bottom: 12px;
    }

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

    .share-btn:hover {
        transform: translateY(-3px);
        color: white;
    }

    .share-btn.facebook {
        background: #1877F2;
    }

    .share-btn.twitter {
        background: #1DA1F2;
    }

    .share-btn.whatsapp {
        background: #25D366;
    }

    .share-btn.telegram {
        background: #0088cc;
    }

/* ===== RELATED SECTION ===== */
.related-section {
    background: var(--jc-bg-white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--jc-shadow-sm);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.related-card {
    background: var(--jc-bg-light);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--jc-primary);
}

    .related-card h5 {
        font-size: 0.9rem;
        font-weight: 600;
        margin: 0 0 6px 0;
    }

        .related-card h5 a {
            color: var(--jc-text-dark);
            text-decoration: none;
        }

            .related-card h5 a:hover {
                color: var(--jc-primary);
            }

.related-org {
    font-size: 0.8rem;
    color: var(--jc-text-medium);
    margin: 0 0 10px 0;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .related-meta span {
        font-size: 0.75rem;
        color: var(--jc-text-light);
    }

.btn-view {
    background: var(--jc-secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    text-decoration: none;
}

    .btn-view:hover {
        background: var(--jc-primary);
        color: white;
    }

/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section,
.subscribe-card {
    background: linear-gradient(135deg, var(--jc-secondary) 0%, var(--jc-secondary-light) 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.subscribe-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subscribe-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .subscribe-icon i {
        font-size: 1.4rem;
        color: var(--jc-primary);
    }

.subscribe-text {
    flex: 1;
}

    .subscribe-text h3,
    .subscribe-text h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        margin: 0 0 4px 0;
    }

    .subscribe-text p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.8);
        margin: 0;
    }

.subscribe-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

    .subscribe-form input {
        padding: 10px 14px;
        border: none;
        border-radius: 6px;
        width: 200px;
        font-size: 0.9rem;
    }

        .subscribe-form input:focus {
            outline: none;
        }

    .subscribe-form button {
        background: var(--jc-primary);
        color: white;
        border: none;
        padding: 10px 18px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s;
    }

        .subscribe-form button:hover {
            background: var(--jc-primary-dark);
        }

/* ===== PAGINATION ===== */
.pagination-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--jc-bg-light);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    flex-wrap: wrap;
}

.page-item {
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: var(--jc-bg-light);
    color: var(--jc-text-dark);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

    .page-link:hover {
        background: var(--jc-primary);
        color: white;
    }

.page-item.active .page-link {
    background: var(--jc-primary);
    color: white;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-link.prev,
.page-link.next {
    background: var(--jc-secondary);
    color: white;
}

    .page-link.prev:hover,
    .page-link.next:hover {
        background: var(--jc-secondary-light);
    }

.page-info {
    text-align: center;
    font-size: 0.8rem;
    color: var(--jc-text-light);
}

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 40px 20px;
}

.no-results-icon {
    width: 70px;
    height: 70px;
    background: var(--jc-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .no-results-icon i {
        font-size: 1.8rem;
        color: var(--jc-text-light);
    }

.no-results h4 {
    font-size: 1.2rem;
    color: var(--jc-text-dark);
    margin-bottom: 8px;
}

.no-results p {
    color: var(--jc-text-medium);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.no-results .btn-clear {
    background: var(--jc-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

    .no-results .btn-clear:hover {
        background: var(--jc-primary-dark);
        color: white;
    }

/* ===== CONTACT PAGE ===== */
.contact-card {
    background: var(--jc-bg-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--jc-shadow-sm);
}

    .contact-card .card-header-styled {
        background: var(--jc-secondary);
        color: white;
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
        margin: -25px -25px 20px -25px;
    }

        .contact-card .card-header-styled h3 {
            margin: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--jc-bg-light);
    border-radius: 8px;
    margin-bottom: 12px;
}

    .contact-info-item:last-child {
        margin-bottom: 0;
    }

    .contact-info-item i {
        width: 40px;
        height: 40px;
        background: var(--jc-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-info-item h6 {
        margin: 0 0 5px 0;
        font-weight: 600;
        color: var(--jc-text-dark);
    }

    .contact-info-item p,
    .contact-info-item a {
        margin: 0;
        font-size: 0.9rem;
        color: var(--jc-text-medium);
        text-decoration: none;
    }

        .contact-info-item a:hover {
            color: var(--jc-primary);
        }

/* ===== FORM STYLING ===== */
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jc-text-dark);
    margin-bottom: 6px;
}

.form-control {
    padding: 10px 14px;
    border: 2px solid var(--jc-bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

    .form-control:focus {
        outline: none;
        border-color: var(--jc-primary);
        box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    }

.btn-submit {
    background: linear-gradient(135deg, var(--jc-primary), var(--jc-primary-dark));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    }

/* ===== VIEW TOGGLE ===== */
.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    background: var(--jc-bg-light);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--jc-text-medium);
    transition: all 0.2s;
}

    .view-btn:hover,
    .view-btn.active {
        background: var(--jc-primary);
        color: white;
    }

/* ===== FOOTER ===== */
.main-footer {
    background: var(--jc-secondary);
    color: white;
    padding: 50px 0 25px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--jc-primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a:hover {
            color: var(--jc-primary);
            padding-left: 5px;
        }

        .footer-links a i {
            width: 16px;
        }

.footer-newsletter input {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-newsletter button {
    width: 100%;
    background: var(--jc-primary);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

    .footer-newsletter button:hover {
        background: var(--jc-primary-dark);
    }

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 25px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

    .footer-bottom a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        margin-left: 20px;
        transition: color 0.2s;
    }

        .footer-bottom a:hover {
            color: white;
        }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--jc-primary), var(--jc-primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: var(--jc-shadow-md);
    transition: all 0.3s;
}

    #scrollTop:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(255,107,53,0.4);
    }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    background: var(--jc-bg-white);
    border-top: 1px solid var(--jc-bg-light);
    padding: 15px 0;
    max-height: 80vh;
    overflow-y: auto;
}

    .mobile-menu.show {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-search {
    display: flex;
    margin: 10px 10px 15px;
    gap: 0;
}

    .mobile-search input {
        flex: 1;
        padding: 12px 16px;
        border: 2px solid var(--jc-bg-light);
        border-radius: 8px 0 0 8px;
        font-size: 0.95rem;
        outline: none;
        transition: border-color 0.2s;
    }

        .mobile-search input:focus {
            border-color: var(--jc-primary);
        }

    .mobile-search button {
        background: var(--jc-primary);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        transition: background 0.2s;
        font-size: 1rem;
    }

        .mobile-search button:hover {
            background: var(--jc-primary-dark);
        }

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--jc-text-dark);
    text-decoration: none;
    border-radius: 8px;
    margin: 4px 10px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background: var(--jc-bg-light);
        color: var(--jc-primary);
        transform: translateX(3px);
    }

    .mobile-nav-link i {
        width: 24px;
        color: var(--jc-primary);
        font-size: 1.1rem;
    }

.mobile-section-header {
    border-top: 2px solid var(--jc-bg-light);
    margin: 15px 10px 10px;
    padding-top: 15px;
}

.mobile-section-title {
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--jc-text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-divider {
    margin: 12px 0;
    opacity: 0.15;
}

.admin-link {
    color: #dc3545;
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and Large Screens */
@media (max-width: 1200px) {
    .two-col-layout {
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
    }

    .main-nav {
        gap: 8px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .left-sidebar {
        display: none;
    }

    .main-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .header-inner {
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-item.search-input,
    .filter-item.category-select,
    .filter-item.year-select,
    .filter-item.location-input,
    .filter-item.filter-btn {
        width: 100%;
    }

    .filter-item button {
        width: 100%;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-section,
    .subscribe-card {
        padding: 20px;
    }

    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }

        .subscribe-form input {
            width: 100%;
        }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

        .footer-bottom a {
            margin: 0 10px;
        }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        flex-direction: column;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }

    .org-info-box {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .main-header {
        padding: 12px 0;
    }

    .logo {
        gap: 8px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-tagline {
        display: none;
    }

    .mobile-toggle {
        font-size: 1.3rem;
        padding: 6px;
    }
}

/* Prevent dropdown wrapping on desktop */
@media (min-width: 1025px) {
    .main-nav {
        flex-wrap: nowrap;
        overflow-x: visible;
    }
}
