/* ===========================
   ADDITIONAL PAGES STYLES
   News Detail, Leader Detail, Activities, Education, Contact
   =========================== */

/* ===========================
   NEWS DETAIL PAGE
   =========================== */
.news-detail-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.news-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-detail-main {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.detail-header {
    margin-bottom: 30px;
}

.detail-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.detail-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.detail-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.meta-item i {
    color: var(--primary-color);
}

.detail-featured-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.detail-content .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.detail-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.detail-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.detail-content p {
    margin-bottom: 20px;
}

.detail-content ul,
.detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.detail-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.detail-content blockquote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
}

.detail-content blockquote p {
    margin-bottom: 10px;
}

.detail-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.info-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-light);
    font-size: 14px;
}

.highlight-box {
    background: #fff8e1;
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    border-radius: 5px;
}

.highlight-box i {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.highlight-box h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonials {
    margin: 30px 0;
}

.testimonial-item {
    display: flex;
    gap: 20px;
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-content span {
    color: var(--text-light);
    font-size: 14px;
}

.share-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0 20px;
}

.share-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.telegram { background: #0088cc; }
.share-btn.linkedin { background: #0077b5; }

.tags-section {
    margin: 30px 0;
}

.tags-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.article-tags a {
    background: var(--light-bg);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.article-tags a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.author-box {
    display: flex;
    gap: 25px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid var(--border-color);
}

.author-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.author-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.author-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--secondary-color);
}

.comments-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.comments-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.comment-item:last-of-type {
    border-bottom: none;
}

.comment-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    font-size: 16px;
    color: var(--text-dark);
}

.comment-date {
    color: var(--text-light);
    font-size: 14px;
}

.comment-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0;
    transition: var(--transition);
}

.reply-btn:hover {
    color: var(--accent-color);
}

.comment-form {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.comment-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
}

.news-detail-sidebar .sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.news-detail-sidebar .sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-dark);
}

.related-news .related-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.related-item:hover {
    transform: translateX(5px);
}

.related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.related-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.related-date {
    color: var(--text-light);
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.related-item h4 {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 15px;
}

.category-list span {
    color: var(--text-light);
    font-size: 14px;
}

/* ===========================
   LEADER DETAIL PAGE
   =========================== */
.leader-profile-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.profile-hero {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    box-shadow: var(--shadow);
}

.profile-image-large {
    position: relative;
}

.profile-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.profile-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.profile-badge i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

.profile-badge span {
    font-size: 14px;
    font-weight: 600;
}

.profile-intro h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.profile-position {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.profile-quick-info {
    margin: 20px 0;
}

.quick-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    align-items: center;
}

.quick-info-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.quick-info-item span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.quick-info-item strong {
    font-size: 16px;
    color: var(--text-dark);
}

.profile-contact {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.profile-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.profile-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.profile-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.profile-main,
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.content-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline-education .education-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-education .education-item:last-child {
    border-bottom: none;
}

.edu-year {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    height: fit-content;
}

.edu-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.edu-content p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 15px;
}

.career-timeline .career-item {
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
    position: relative;
}

.career-timeline .career-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.career-item.highlight {
    border-left-color: var(--secondary-color);
}

.career-item.highlight::before {
    background: var(--secondary-color);
}

.career-period {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.career-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.career-details p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.career-details ul {
    list-style: none;
    padding-left: 0;
}

.career-details li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
}

.career-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.research-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.research-stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.research-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.research-stat-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.research-stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.research-stat-item p {
    color: var(--text-light);
    font-size: 14px;
}

.research-areas {
    list-style: none;
    padding: 0;
}

.research-areas li {
    padding: 12px 15px;
    background: var(--light-bg);
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.research-areas i {
    color: var(--primary-color);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.award-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.award-item i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.award-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.award-item p {
    color: var(--text-light);
    font-size: 14px;
}

.publications .publication-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.publications .publication-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.pub-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pub-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.pub-details p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.pub-meta {
    font-size: 12px;
    color: var(--primary-color);
}

.international-activities {
    list-style: none;
    padding: 0;
}

.international-activities li {
    padding: 15px;
    background: var(--light-bg);
    margin-bottom: 12px;
    border-radius: 5px;
    display: flex;
    align-items: start;
    gap: 12px;
}

.international-activities i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.profile-sidebar .sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.profile-sidebar .sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.reception-schedule {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.schedule-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.schedule-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.schedule-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.schedule-item span {
    color: var(--text-light);
}

.schedule-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 16px;
}

.contact-list a {
    color: var(--text-dark);
}

.contact-list a:hover {
    color: var(--primary-color);
}

.documents-list {
    list-style: none;
    padding: 0;
}

.documents-list li {
    margin-bottom: 12px;
}

.documents-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 5px;
    color: var(--text-dark);
    transition: var(--transition);
}

.documents-list a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.documents-list i {
    color: #e74c3c;
    font-size: 20px;
}

.documents-list a:hover i {
    color: var(--white);
}

.other-leaders .leader-mini {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.other-leaders .leader-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.leader-mini img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.leader-mini h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.leader-mini span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===========================
   ACTIVITIES PAGE
   =========================== */
.activities-intro {
    padding: 60px 0;
    text-align: center;
}

.research-section,
.international-section,
.projects-section,
.conferences-section {
    padding: 80px 0;
}

.research-section {
    background: var(--white);
}

.international-section {
    background: var(--light-bg);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.research-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.research-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.research-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.research-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.research-card p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

.research-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.research-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.research-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 10px;
}

.research-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
}

.stat-box i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-box h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.9;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.partner-flag {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
}

.partner-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.partner-count {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.partner-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.partner-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.partner-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cooperation-programs {
    margin-top: 60px;
}

.cooperation-programs h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.program-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-item p {
    color: var(--text-light);
    font-size: 14px;
}

.projects-list {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-card.featured {
    border: 2px solid var(--secondary-color);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-card.featured .project-badge {
    background: var(--secondary-color);
}

.project-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    padding-right: 120px;
}

.project-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.project-meta i {
    color: var(--primary-color);
}

.project-progress {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.project-progress span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.events-timeline {
    max-width: 900px;
    margin: 40px auto 0;
}

.event-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-item.upcoming {
    border: 2px solid var(--primary-color);
}

.event-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
    flex-shrink: 0;
}

.event-date .day {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 16px;
    margin: 5px 0;
}

.event-date .year {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.event-content {
    flex: 1;
}

.event-type {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.event-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.event-details i {
    color: var(--primary-color);
}

/* ===========================
   EDUCATION PAGE
   =========================== */
.education-intro {
    padding: 60px 0;
    background: var(--light-bg);
}

.education-intro h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.education-intro .lead {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.education-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.level-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.level-card i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.level-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.level-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.bachelor-section,
.master-section {
    padding: 80px 0;
}

.bachelor-section {
    background: var(--white);
}

.master-section {
    background: var(--light-bg);
}

.program-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.category-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.category-box ul {
    list-style: none;
    padding: 0;
}

.category-box li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.category-box li:last-child {
    border-bottom: none;
}

.category-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.master-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.master-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.master-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.master-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.master-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.admission-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.admission-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    font-size: 16px;
}

.admission-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.admission-cta h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page {
    padding: 60px 0;
    background: var(--light-bg);
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.main-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.main-contact-form .form-group {
    margin-bottom: 20px;
}

.main-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
    border-color: var(--primary-color);
}

.main-contact-form select {
    cursor: pointer;
}

.main-contact-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.departments-contact {
    margin: 60px 0;
}

.departments-contact h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dept-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.dept-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.dept-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dept-card i {
    color: var(--primary-color);
}

.map-section {
    margin: 60px 0;
}

.map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.social-section {
    margin: 60px 0;
}

.social-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.social-links-large {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    width: 150px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.social-link i {
    font-size: 48px;
}

.social-link span {
    font-weight: 600;
    font-size: 16px;
}

.social-link.facebook {
    color: #1877f2;
}

.social-link.instagram {
    color: #e4405f;
}

.social-link.telegram {
    color: #0088cc;
}

.social-link.youtube {
    color: #ff0000;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */
@media (max-width: 1024px) {
    .news-detail-layout,
    .profile-hero,
    .profile-content,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .info-boxes,
    .awards-grid,
    .research-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .detail-title {
        font-size: 24px;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-boxes,
    .awards-grid,
    .research-stats,
    .contact-info-cards,
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box,
    .comment-item,
    .testimonial-item,
    .event-item {
        flex-direction: column;
    }
    
    .profile-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
    
    .comment-form .form-row,
    .main-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .event-date {
        min-width: 80px;
        padding: 15px;
    }
    
    .social-links-large {
        justify-content: center;
    }
    
    .social-link {
        width: 120px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .detail-content {
        font-size: 15px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .profile-contact {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
}
