/* Breadcrumb */
.breadcrumb-container { margin-top: 20px; margin-bottom: 40px; }
.breadcrumb {
    background-color: rgba(255,255,255,0.9);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.breadcrumb-item a {
    color: var(--primary-color); text-decoration: none; transition: all 0.3s;
}
.breadcrumb-item a:hover { color: var(--accent-color); text-decoration: underline; }
.breadcrumb-item.active { color: var(--dark-gray); font-weight: 500; }

/* About Us Section */

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.about-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Widget Styles */
.widget {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.widget-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: '\F26E';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .widget {
        padding: 20px;
    }
}

/* Global Border Radius */
* { 
    box-sizing: border-box; /* Fix untuk padding dan border tidak menambah lebar */
    border-radius: 3px !important; 
}
.rounded-circle { border-radius: 50% !important; }

/* Blog Section Styles */
.blog-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-img {
    height: 250px;
    overflow: hidden;
}

.blog-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-post-img img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
}

.blog-post-date {
    margin-right: 15px;
}

.blog-post-author {
    display: flex;
    align-items: center;
}

.blog-post-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.blog-post-excerpt {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.blog-post-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.blog-post-read-more:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.blog-post-read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.blog-post-read-more:hover i {
    transform: translateX(3px);
}

/* Widget Styles */
.widget {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

.widget-search-form {
    position: relative;
    margin-bottom: 20px;
}

.widget-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.widget-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.widget-categories-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.widget-categories-link:hover {
    color: var(--primary-color);
}

.widget-categories-count {
    background: var(--light-gray);
    color: var(--dark-gray);
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 20px;
}

.widget-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.widget-recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-recent-post-img {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.widget-recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-recent-post-content h6 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.widget-recent-post-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.widget-recent-post-content a:hover {
    color: var(--primary-color);
}

.widget-recent-post-date {
    font-size: 0.8rem;
    color: #777;
}

.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-tag {
    background: var(--light-gray);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.widget-tag:hover {
    background: var(--primary-color);
    color: white;
}

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid #ddd;
    padding: 8px 15px;
    margin: 0 3px;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-link:hover {
    color: var(--accent-color);
    background-color: #f8f9fa;
    border-color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    /* Fix untuk overflow di mobile */
    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

    /* Contact Info Card */
    .contact-info-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: all 0.3s;
        height: 100%;
    }
    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    .contact-info-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* Map */
    .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    /* Contact Form */
    .contact-form {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(0, 147, 255, 0.25);
    }

    /* Rating Stars */
    .rating-stars {
        display: flex;
        gap: 5px;
        margin-bottom: 15px;
    }
    .rating-stars input {
        display: none;
    }
    .rating-stars label {
        cursor: pointer;
        font-size: 1.5rem;
        color: #ddd;
        transition: color 0.2s;
    }
    .rating-stars label:hover,
    .rating-stars label:hover ~ label,
    .rating-stars input:checked + label,
    .rating-stars input:checked ~ label {
        color: #FFD700;
    }

    /* Button */
    .btn-primary {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s;
    }
    .btn-primary:hover {
        background-color: #000;
        border-color: #000;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }