/**
 * Common Page Styles (About, Contact, Search, etc.)
 */

/* Page Header Banner */
.sk-page-banner {
    background: var(--sk-gradient);
    padding: 60px 0;
    text-align: center;
}

.sk-page-banner__title {
    color: #fff;
    font-size: 36px;
    margin: 0 0 10px 0;
}

.sk-page-banner__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0;
}

/* About Page Styles */
.sk-about-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.sk-about-content {
    color: #4a5568;
    line-height: 1.8;
}

.sk-about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

/* Feature Items */
.sk-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sk-feature-item__icon {
    width: 50px;
    height: 50px;
    background: var(--sk-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sk-feature-item__icon i {
    color: #fff;
    font-size: 20px;
}

.sk-feature-item__title {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.sk-feature-item__text {
    margin: 0;
    color: #718096;
    font-size: 14px;
}

/* Vision/Mission Cards */
.sk-section--gray {
    background: #f8fafc;
}

.sk-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.sk-info-card__icon {
    width: 70px;
    height: 70px;
    background: var(--sk-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.sk-info-card__icon i {
    color: #fff;
    font-size: 28px;
}

.sk-info-card__title {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: #1a202c;
}

.sk-info-card__text {
    color: #718096;
    line-height: 1.8;
    margin: 0;
}

/* Statistics Section */
.sk-stats-section {
    background: var(--sk-gradient);
    padding: 60px 0;
}

.sk-stat-item {
    color: #fff;
    text-align: center;
}

.sk-stat-item__number {
    font-size: 48px;
    font-weight: 700;
}

.sk-stat-item__label {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section */
.sk-cta-section {
    text-align: center;
}

.sk-cta-section__title {
    font-size: 28px;
    margin-bottom: 15px;
}

.sk-cta-section__text {
    color: #718096;
    font-size: 18px;
    margin-bottom: 25px;
}

.sk-cta-section__btn {
    background: var(--sk-gradient);
    border-radius: 8px;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.sk-cta-section__btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Contact Page Styles */
.sk-contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.sk-contact-card__title {
    font-size: 20px;
    margin: 0 0 25px 0;
}

/* Contact Info Items */
.sk-contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.sk-contact-info-item__icon {
    width: 45px;
    height: 45px;
    background: var(--sk-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sk-contact-info-item__icon i {
    color: #fff;
    font-size: 18px;
}

.sk-contact-info-item__label {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #718096;
}

.sk-contact-info-item__value {
    margin: 0;
    color: #1a202c;
}

.sk-contact-info-item__link {
    color: #1a202c;
    text-decoration: none;
}

.sk-contact-info-item__link:hover {
    color: var(--sk-primary);
}

/* Social Links Section */
.sk-social-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.sk-social-section__title {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #718096;
}

.sk-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sk-social-link {
    width: 40px;
    height: 40px;
    background: #edf2f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s;
}

.sk-social-link:hover {
    background: var(--sk-gradient);
    color: #fff;
}

/* Contact Form */
.sk-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a5568;
}

.sk-form-input,
.sk-form-select {
    border-radius: 8px;
    height: 48px;
    width: 100%;
    padding: 0 15px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

.sk-form-textarea {
    border-radius: 8px;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    resize: vertical;
}

.sk-form-input:focus,
.sk-form-select:focus,
.sk-form-textarea:focus {
    outline: none;
    border-color: var(--sk-primary);
}

.sk-form-btn {
    background: var(--sk-gradient);
    border-radius: 8px;
    padding: 12px 30px;
    color: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.sk-form-btn:hover {
    opacity: 0.9;
}

/* Form Messages */
.sk-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
}

.sk-form-message--success {
    background: #c6f6d5;
    color: #22543d;
}

.sk-form-message--error {
    background: #fed7d7;
    color: #c53030;
}

/* ===========================================
   Search Page Styles
   =========================================== */

/* Search Form */
.sk-search-form {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.sk-search-form__wrapper {
    display: flex;
    gap: 10px;
}

.sk-search-form__input-wrapper {
    flex: 1;
    position: relative;
}

.sk-search-form__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}

.sk-search-form__input {
    padding-left: 45px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    width: 100%;
    font-size: 15px;
}

.sk-search-form__input:focus {
    outline: none;
    border-color: var(--sk-primary);
}

.sk-search-form__btn {
    background: var(--sk-gradient);
    border-radius: 8px;
    height: 50px;
    padding: 0 25px;
    color: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

/* Search Results Section */
.sk-search-results {
    margin-bottom: 50px;
}

.sk-search-results__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.sk-search-results__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sk-search-results__title i {
    color: var(--sk-primary);
}

.sk-search-results__count {
    font-size: 14px;
    color: #718096;
    font-weight: 400;
    margin-left: 10px;
}

.sk-search-results__view-all {
    color: var(--sk-primary);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sk-search-results__view-all:hover {
    text-decoration: underline;
}

/* Search Article Card */
.sk-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.sk-article-card__image {
    height: 100%;
    min-height: 150px;
    overflow: hidden;
}

.sk-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-article-card__content {
    padding: 25px;
}

.sk-article-card__meta {
    font-size: 12px;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sk-article-card__meta-separator {
    margin: 0 8px;
}

.sk-article-card__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.sk-article-card__title a {
    color: #1a202c;
    text-decoration: none;
}

.sk-article-card__title a:hover {
    color: var(--sk-primary);
}

.sk-article-card__excerpt {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.sk-article-card__link {
    color: var(--sk-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sk-article-card__link:hover {
    text-decoration: underline;
}

/* Search Pagination */
.sk-search-pagination {
    margin-top: 40px;
    text-align: center;
}

/* Empty Search State */
.sk-search-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
}

.sk-search-empty--large {
    padding: 80px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.sk-search-empty__icon {
    font-size: 64px;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.sk-search-empty__icon--large {
    font-size: 80px;
    margin-bottom: 30px;
}

.sk-search-empty__title {
    color: #4a5568;
    margin-bottom: 10px;
}

.sk-search-empty__title--large {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 15px;
}

.sk-search-empty__text {
    color: #718096;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.sk-search-empty__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Secondary Button */
.sk-btn--secondary {
    background: #e2e8f0;
    color: #4a5568;
    border-radius: 8px;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sk-btn--secondary:hover {
    background: #cbd5e0;
    color: #2d3748;
}
