/* ========================================== BLOG DETAILS SECTION ========================================== */
.blog-details-section {
    padding: 80px 0;
    background: #fff;
}

.blog-details-content {
    background: #fff;
}

.blog-details-image {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 22px;
}

.blog-details-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.blog-details-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.blog-details-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-details-meta i {
    color: #024C81;
}

.blog-details-title {
    font-size: 40px !important;
    line-height: 1.2;
    font-weight: 700;
    color: #cc640b !important;
    margin-bottom: 25px;
}

.blog-details-content p {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.blog-details-content p strong a{
    color: #cc640b;
}

.blog-details-content h3,
.blog-details-content h2 {
    color: #1A1A1A;
    font-size: 32px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 18px;
}
.blog-details-content h4{
    color: #1A1A1A;
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-details-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.blog-details-content ul li {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}
.blog-details-content ul li::before{
    position: absolute;
    content: '';
    height: 5px;
    width: 5px;
    background-color: #cc640b;
    top: 11px;
    left: -15px;
}

/* ========================================== SIDEBAR ========================================== */
.blog-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-box {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-title {
    margin-bottom: 18px;
}

.sidebar-title h3 {
    font-size: 24px;
    color: #cc640b;
    font-weight: 700;
    margin: 0;
}

/* ========================================== PRODUCT LIST ========================================== */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 9px 15px;
    background: #fff;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-list-item span {
    font-size: 15px;
    font-weight: 500;
}

.product-list-item i {
    font-size: 13px;
    color: #cc640b;
    transition: transform 0.3s ease;
}

.product-list-item:hover {
    background: #cc640b;
    color: #fff;
    transform: translateX(4px);
}

.product-list-item:hover i {
    color: #fff;
    transform: translateX(4px);
}

/* ========================================== CONTACT CARD ========================================== */
.sidebar-contact-card {
    background: #cc640b;
    border-radius: 10px;
    padding: 35px 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sidebar-contact-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -60px;
    top: -60px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #cc640b;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-small-title {
    display: block;
    font-size: 14px;
    margin-bottom: 7px;
    opacity: 0.85;
}

.sidebar-contact-card h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.sidebar-contact-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 22px;
}

.contact-phone:hover {
    color: #fff;
}

.contact-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    background: #fff;
    color: #024C81;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f5f5f5;
    color: #024C81;
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}

/* ========================================== RESPONSIVE ========================================== */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 20px;
    }

    .blog-details-title {
        font-size: 34px;
    }

    .blog-details-image img {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .blog-details-section {
        padding: 50px 0;
    }

    .blog-details-title {
        font-size: 28px !important;
    }

    .blog-details-content h3,
    .blog-details-content h2 {
        font-size: 24px;
    }

    .blog-details-image img {
        height: 250px;
    }

    .blog-details-meta {
        gap: 15px;
        flex-wrap: wrap;
    }

    .sidebar-contact-card {
        padding: 28px 22px;
    }
    .blog-details-content h4 {
        font-size: 20px;
    }
}