/*
Theme Name: THINKLEAP Indonesia
Theme URI: https://thinkleap.id
Author: THINKLEAP Team
Author URI: https://thinkleap.id
Description: Company profile theme for THINKLEAP Indonesia - From Thought to Impact. Lembaga riset dan pelatihan yang kredibel, inovatif, dan berpengaruh dalam penguatan kapasitas lembaga serta pembangunan berbasis pengetahuan.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thinkleap
Tags: company-profile, business, blog, responsive, modern, professional, research, training

This theme is licensed under the GPL.
*/

:root {
    --royal-blue: #2563EB;
    --vibrant-orange: #FB923C;
    --soft-blue: #E0F2FE;
    --off-white: #F8FAFC;
    --light-gray: #E5E7EB;
    --dark-gray: #1E293B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--royal-blue);
}

.navbar-nav .nav-link.active {
    color: var(--royal-blue);
    font-weight: 600;
}

.btn-primary-custom {
    background: var(--royal-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background: var(--vibrant-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    color: white;
    text-decoration: none;
}

.btn-outline-custom {
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
    cursor: pointer;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-blue) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.hero-section .highlight {
    color: var(--royal-blue);
    position: relative;
    display: inline-block;
}

.hero-section .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--soft-blue);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--vibrant-orange);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--royal-blue);
    border-left: 4px solid var(--vibrant-orange);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    background: var(--soft-blue);
    border-radius: 0 20px 20px 0;
    max-width: 800px;
    text-align: left;
}

/* Vision Mission */
.vision-mission {
    padding: 80px 0;
    background: var(--soft-blue);
}

.vision-box, .mission-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.vision-box h3, .mission-box h3 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.mission-list li:before {
    content: '→';
    color: var(--vibrant-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--soft-blue);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.team-position {
    color: var(--royal-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.team-division {
    color: var(--vibrant-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--off-white);
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    border-bottom-color: var(--vibrant-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--royal-blue);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.service-card p {
    color: #64748B;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-list li:before {
    content: '✓';
    color: var(--vibrant-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: white;
}

.partner-item {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--dark-gray);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.partner-item:hover {
    background: var(--soft-blue);
    transform: scale(1.05);
    color: var(--royal-blue);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--off-white);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.8rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #64748B;
    flex-wrap: wrap;
}

.blog-date i,
.blog-category i {
    margin-right: 5px;
}

.blog-category {
    color: var(--royal-blue);
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-title a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--royal-blue);
}

.blog-excerpt {
    color: #64748B;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--vibrant-orange);
    gap: 0.8rem;
    text-decoration: none;
}

/* SDGs Section */
.sdgs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1E40AF 100%);
    color: white;
}

.sdgs-section h2 {
    color: white;
}

.sdgs-section p {
    color: rgba(255,255,255,0.9);
}

.sdgs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sdg-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.sdg-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.sdg-item h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

/* Single Post */
.single-post-section {
    padding: 60px 0;
    background: var(--off-white);
}

.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    color: #64748B;
    font-size: 0.95rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.post-meta i {
    margin-right: 5px;
    color: var(--royal-blue);
}

.post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.post-content h2,
.post-content h3 {
    margin: 2rem 0 1rem;
    color: var(--dark-gray);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content blockquote {
    background: var(--soft-blue);
    border-left: 4px solid var(--vibrant-orange);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.share-buttons {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.share-buttons h5 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.social-share {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-share .btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-share .btn-primary {
    background: #1877f2;
}

.social-share .btn-info {
    background: #1da1f2;
}

.social-share .btn-success {
    background: #25d366;
}

.social-share .btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Related Posts */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.related-posts h3 {
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.related-post {
    margin-bottom: 1.5rem;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.related-post h4 {
    font-size: 1rem;
    line-height: 1.4;
}

.related-post a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post a:hover {
    color: var(--royal-blue);
}

/* Sidebar */
.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--vibrant-orange);
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
}

.search-form button {
    padding: 0.75rem 1rem;
    background: var(--royal-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--vibrant-orange);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.recent-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts-list a {
    color: var(--dark-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover {
    color: var(--royal-blue);
}

.recent-posts-list .post-date {
    font-size: 0.85rem;
    color: #64748B;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--soft-blue);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--royal-blue);
    color: white;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers.current {
    background: var(--royal-blue);
    color: white;
    border-color: var(--royal-blue);
}

.page-numbers:hover {
    background: var(--soft-blue);
    color: var(--dark-gray);
}

/* Footer */
.site-footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--vibrant-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--vibrant-orange);
}

.footer-contact p {
    color: #CBD5E1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    width: 20px;
    color: var(--vibrant-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--vibrant-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #94A3B8;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .btn-primary-custom {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .team-card {
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .service-card {
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .sdgs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom, 
    .btn-outline-custom {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-share {
        flex-direction: column;
    }
    
    .sdgs-grid {
        grid-template-columns: 1fr;
    }
}