/* Blog page custom styles - Plus Jakarta Sans Font & Theme Colors */

/* Base Styles */
.blog-section, .blog-details-section {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.text-orange-accent {
    color: #f36c0d !important;
}

.text-navy {
    color: #0f2942 !important;
}

/* Eyebrow and Heading Styles */
.eyebrow-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dots-separator {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dots-separator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f36c0d;
    display: inline-block;
}

.dots-separator span:nth-child(2) {
    opacity: 0.6;
}

.dots-separator span:nth-child(3) {
    opacity: 0.3;
}

/* Card Improvements */
.blog-section .card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eef2f6 !important;
}

.blog-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(15, 41, 66, 0.08) !important;
    border-color: #ffe0b2 !important;
}

/* Date Badges */
.blog-date-badge {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #f36c0d 0%, #ff8c3a 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(243, 108, 13, 0.2) !important;
}

/* Primary Accent Icons */
.blog-icon-primary {
    color: #f36c0d !important;
}

.blog-icon-lg-primary {
    font-size: 2.5rem;
    color: #f36c0d !important;
    animation: phonePulse 2s infinite ease-in-out;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Share Button Detail page */
.blog-btn-share {
    border: 1.5px solid #f36c0d !important;
    color: #f36c0d !important;
    background: transparent !important;
    transition: all 0.2s ease-in-out !important;
}

.blog-btn-share:hover {
    background-color: #f36c0d !important;
    color: #ffffff !important;
}

/* Details Page elements */
.blog-details-title {
    color: #0f2942 !important;
    font-size: 2.2rem;
    line-height: 1.25;
}

.blog-details-img {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15, 41, 66, 0.08);
}

.blog-content-wrapper {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568 !important;
}

.blog-content-wrapper p {
    margin-bottom: 1.5rem;
}

/* Recent Posts Sidebar */
.blog-sidebar-sticky {
    top: 100px !important;
}

.blog-post-link-item {
    padding: 8px;
    border-radius: 8px;
    transition: all 0.25s ease !important;
}

.blog-post-link-item:hover {
    background-color: #fff8f4 !important;
}

.blog-recent-post-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px !important;
}

.blog-post-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0f2942 !important;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-link-item:hover .blog-post-title {
    color: #f36c0d !important;
}

/* Sidebar CTA widget */
.blog-border-warning {
    border-top: 4px solid #f36c0d !important;
    background: #0f2942 !important;
    color: #ffffff !important;
}

.blog-border-warning h5 {
    color: #ffffff !important;
}

.blog-border-warning .text-muted {
    color: #a0aec0 !important;
}

.blog-btn-quote {
    background: linear-gradient(135deg, #f36c0d 0%, #d85a04 100%) !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.blog-btn-quote:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(243, 108, 13, 0.4) !important;
}

.blog-btn-accent {
    background: linear-gradient(135deg, #f36c0d 0%, #d85a04 100%) !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.blog-btn-accent:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(243, 108, 13, 0.4) !important;
    color: #ffffff !important;
}

/* Social Buttons Modal */
.blog-bg-fb {
    background-color: #3b5998 !important;
}

.blog-bg-tw {
    background-color: #1da1f2 !important;
}

.blog-bg-wa {
    background-color: #25d366 !important;
}

.social-buttons a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
