/* ========== INNER PAGE STYLES ========== */

/* About Page */
.about-img-large { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-large img { width: 100%; height: 460px; object-fit: cover; }
.about-text h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.about-text p { color: var(--text-light); line-height: 2; margin-bottom: 14px; }
.about-info-list { list-style: none; padding: 0; margin-top: 20px; }
.about-info-list li { padding: 8px 0; border-bottom: 1px dashed #e0e0e0; display: flex; }
.about-info-list li strong { width: 110px; flex-shrink: 0; color: var(--dark); }
.about-info-list li span { color: var(--text-light); }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--primary); opacity: 0.3; }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid #c8e6c9; }
.timeline-item h6 { font-weight: 700; margin-bottom: 4px; }
.timeline-item p { color: var(--text-light); font-size: 0.875rem; margin: 0; }

/* Honors Page */
.cert-detail-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: var(--shadow); transition: all 0.4s; height: 100%; border-top: 4px solid var(--primary); text-align: center; }
.cert-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cert-detail-icon { font-size: 3.5rem; color: var(--primary); margin-bottom: 18px; }
.cert-detail-card h4 { font-weight: 700; margin-bottom: 12px; font-size: 1.125rem; }
.cert-detail-card p { color: var(--text-light); font-size: 0.875rem; line-height: 1.8; }
.cert-detail-card .cert-number { display: inline-block; background: var(--gray-bg); padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; color: var(--primary); margin-top: 12px; font-family: monospace; letter-spacing: 1px; }

/* Products Page */
.product-detail-section { padding: 60px 0; }
.product-detail-section:nth-child(even) { background: var(--gray-bg); }
.product-feature-list { list-style: none; padding: 0; }
.product-feature-list li { padding: 10px 0 10px 30px; position: relative; color: var(--text-light); }
.product-feature-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--primary); }

/* News Page */
.news-list-item { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s; margin-bottom: 24px; }
.news-list-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-list-item .row { align-items: stretch; }
.news-list-img { height: 220px; overflow: hidden; }
.news-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-list-item:hover .news-list-img img { transform: scale(1.08); }
.news-list-body { padding: 24px; display: flex; flex-direction: column; height: 100%; }
.news-list-body .news-meta { color: var(--text-light); font-size: 0.75rem; margin-bottom: 10px; }
.news-list-body .news-meta i { color: var(--primary); margin-right: 4px; }
.news-list-body .news-meta span { margin-right: 18px; }
.news-list-body h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 10px; line-height: 1.5; }
.news-list-body p { color: var(--text-light); font-size: 0.875rem; flex: 1; margin-bottom: 14px; }
.news-sidebar-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.news-sidebar-card h5 { font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-bg); }
.news-sidebar-card .hot-news-item { padding: 10px 0; border-bottom: 1px dashed #eee; display: flex; align-items: center; gap: 10px; }
.news-sidebar-card .hot-news-item:last-child { border-bottom: none; }
.hot-news-num { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.hot-news-num.top1 { background: #e74c3c; }
.hot-news-num.top2 { background: #e67e22; }
.hot-news-num.top3 { background: #f39c12; }
.hot-news-num.top { background: #95a5a6; }
.hot-news-item a { color: var(--text); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.hot-news-item a:hover { color: var(--primary); }

/* Contact Page */
.contact-info-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: var(--shadow); height: 100%; text-align: center; transition: all 0.4s; }
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-info-card .ci-icon { width: 64px; height: 64px; margin: 0 auto 18px; background: rgba(13,107,62,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); }
.contact-info-card h5 { font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { color: var(--text-light); font-size: 0.875rem; margin: 0; }
.form-section { background: var(--gray-bg); border-radius: 16px; padding: 36px; box-shadow: var(--shadow); }
.form-section .form-control { border: 1px solid #e0e0e0; border-radius: 10px; padding: 12px 16px; font-size: 0.875rem; transition: all 0.3s; margin-bottom: 16px; }
.form-section .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(13,107,62,0.08); }
.form-section textarea.form-control { resize: none; min-height: 130px; }
.map-embed { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); height: 360px; margin-top: 24px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
