.fk-blog-wrapper {
    background: #ffffff;
    min-height: 100%;
    padding-top: 80px;
}

.fk-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Main Layout */
.fk-blog-layout {
    display: flex;
    gap: 40px;
    padding-bottom: 60px;
}

.fk-blog-left {
    flex: 1;
    min-width: 0;
}

.fk-blog-right {
    width: 340px;
    flex-shrink: 0;
}

.fk-sidebars-inner {
    position: sticky;
    top: 60px;
    z-index: 10;
}

/* Blog Card */
.fk-blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.fk-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.fk-blog-card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fk-blog-card-image img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.fk-blog-card:hover .fk-blog-card-image img {
    transform: scale(1.05);
}

.fk-blog-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #228dd0;
    color: #ffffff;
    padding: 8px 16px;
    letter-spacing: 1px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgb(34 141 208 / 25%);
}

.fk-blog-card-content {
    padding: 28px;
}

.fk-blog-card-content h3 {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.fk-blog-card:hover .fk-blog-card-content h3 {
    color: #228dd0;
}

.fk-blog-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.fk-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    letter-spacing: 1px;
    background: #1a1a2e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fk-read-more-btn:hover {
    background: #228dd0;
    transform: translateX(4px);
}

.fk-read-more-btn .fk-arrow {
    transition: transform 0.3s;
    font-size: 16px;
}

.fk-read-more-btn:hover .fk-arrow {
    transform: translateX(4px);
}

/* sidebars Widgets */
.fk-sidebars-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.fk-sidebars-title h4 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 3px solid #228dd0;
    display: inline-block;
}

/* Video Grid */
.fk-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fk-video-item {
    display: flex;
    flex-direction: column;
}

.fk-video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.fk-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.fk-video-item:hover .fk-video-thumbnail img {
    transform: scale(1.05);
}

.fk-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.95);
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 5;
}

.fk-video-thumbnail:hover .fk-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.fk-play-btn:hover {
    background: rgba(230, 57, 70, 1);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.fk-video-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Question / CTA Widget */
.fk-question-widget {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fk-question-widget::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: rgb(34 141 208 / 25%);
    border-radius: 50%;
}

.fk-question-widget::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgb(34 141 208 / 25%);
    border-radius: 50%;
}

.fk-question-widget .fk-widget-inner {
    position: relative;
    z-index: 1;
}

.fk-cta-icon {
    width: 64px;
    height: 64px;
    background: rgb(34 141 208 / 25%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fk-cta-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #228dd0;
    stroke-width: 2;
}

.fk-question-widget h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.fk-question-widget .fk-cta-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-align: center;
}

.fk-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #228dd0;
    color: #ffffff;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(34 141 208 / 25%);
}

.fk-phone-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(34 141 208 / 25%);
}

.fk-phone-icon {
    width: 18px;
    height: 18px;
}

/* Pagination Styles */
#fk-pagination {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding: 30px 0;
    flex-wrap: wrap;
}

#fk-pagination.active {
    display: flex;
}

.fk-page-btn,
.fk-pagination-nav {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #1a1a2e;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.fk-page-btn:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.fk-page-btn.active {
    background: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
}

.fk-pagination-nav {
    width: 44px;
    padding: 10px;
}

.fk-pagination-nav svg {
    width: 18px;
    height: 18px;
}

.fk-pagination-nav:hover {
    background: #f0f0f0;
    border-color: #e63946;
    color: #e63946;
}

.fk-pagination-nav:disabled,
.fk-pagination-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fk-blog-card {
    transition: opacity 0.3s ease;
}

/* Video Modal */
.fk-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fk-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.fk-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fk-modal-close:hover {
    color: #e63946;
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 900px) {
    .fk-blog-layout {
        flex-direction: column;
    }

    .fk-blog-right {
        width: 100%;
    }

    .fk-sidebars-inner {
        position: static;
    }

    .fk-page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .fk-blog-card-image {
        height: 200px;
    }

    .fk-blog-card-content {
        padding: 20px;
    }

    .fk-blog-card-content h3 {
        font-size: 18px;
    }

    .fk-sidebars-widget {
        padding: 22px;
    }

    .fk-video-grid {
        grid-template-columns: 1fr;
    }

    .fk-modal-close {
        top: 10px;
    }

    .fk-video-modal-content {
        width: 95%;
    }
}
