/* ================================
   Custom Sidebar Styles for WordPress
================================== */



/* Article Section Styles */
.article-section {
    margin-bottom: 50px;
}

/* Service Icon Styles */
.service-icon {
    font-size: 2rem;
    color: #2a3a57;
    margin-bottom: 15px;
}

/* Feature List Styles */
.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.feature-list li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Service Card Styles */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 25px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Service Image Styles */
.service-image {
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Content Styles */
.service-content {
    padding: 20px;
}

.service-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2a3a57;
}

.service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Process Steps Styles */
.process-steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    overflow-x: auto;
    padding-bottom: 20px;
}

.process-step {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2a3a57;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.process-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2a3a57;
}

.process-step p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

/* Sidebar Process Steps Styles */
.sidebar-process {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.sidebar-process .single-widget {
    margin-bottom: 0;
}

.sidebar-process .title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2a3a57;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: none; /* jika mau pakai garis masukkan ini 2px solid #2a3a57*/
}

.vertical-process {
    display: flex;
    flex-direction: column;
}

.vertical-step {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.vertical-step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -20px;
    width: 2px;
    background: #2a3a57;
    z-index: 1;
}

.step-icon-vertical {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a3a57;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #2a3a57;
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* FAQ Section Styles */
.faq-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background: white;
    font-weight: 600;
    color: #2a3a57;
    cursor: pointer;
    position: relative;
    margin: 0;
}

.faq-question:after {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.open {
    padding: 15px 20px;
    max-height: 500px;
}

/* Emergency CTA Button */
.emergency-cta {
    background: linear-gradient(135deg, #2a3a57 0%, #1c2942 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .process-step {
        width: 160px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .article-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .process-step {
        width: 140px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .service-image {
        height: 160px;
    }
}

/* ================================
   End Custom Sidebar Styles for WordPress
================================== */
