/* Blog Page Specific Styles */

/* Blog Page Styles - Complete blog styling for both main blog page and blog posts */

/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb li {
    color: #6c757d;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #adb5bd;
}

.breadcrumb a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #333333;
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #495057;
    font-weight: 500;
}

/* Blog post specific breadcrumb styling */
.blog-post .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0;
}

.blog-post .breadcrumb li {
    color: #ffffffba !important;
    opacity: 0.7 !important;
}

.blog-post .breadcrumb a {
    color: #ffffffba !important;
    opacity: 1 !important;
}

.blog-post .breadcrumb a:hover {
    color: #ffffff !important;
}

/* Smooth scrolling for blog posts */
.blog-post {
    scroll-behavior: smooth;
}

/* Typography improvements */
.blog-post .blog-content {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced focus states for accessibility */
.blog-post .blog-content a:focus {
    outline-offset: 2px;
    border-radius: 2px;
}

/* Modern content components */
.key-insights {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 0 3rem;
    position: relative;
    overflow: hidden;
}

.key-insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.key-insights h2 {
    color: #22c55e !important;
    font-size: 1.5rem !important;
    margin: 0 0 1rem 0 !important;
    padding-left: 0 !important;
}

.key-insights h2::before {
    display: none !important;
}

.key-insights p {
    color: #f1f5f9 !important;
    margin: 0 !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   BLOG POST PAGES (DARK THEME)
   ======================================== */
.blog-post {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000da !important;
    color: #ffffffba !important;
}

/* Dark theme for blog post pages */
.blog-post body {
    background-color: #000000da !important;
    color: #ffffffba !important;
}

/* Blog post content styling */
.blog-post .blog-content {
    color: #e2e8f0 !important;
    margin: 80px auto;
    max-width: 1400px;
    min-width: 1280px;
    padding: 0 2rem;
    position: relative;
}

.blog-post .blog-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.blog-post .blog-content article {
    line-height: 1.8;
    font-size: 1.125rem;
    /* background: rgba(15, 15, 35, 0.6); */
    backdrop-filter: blur(20px);
    /* border-radius: 24px; */
    /* padding: 4rem; */
    /* border: 1px solid rgba(99, 102, 241, 0.1); */
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post .blog-content article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.blog-post .blog-content h2 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 4rem 0 2rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}


.blog-post .blog-content h2:first-of-type {
    margin-top: 0;
}

.blog-post .blog-content h3 {
    color: #ffffff !important;
    font-size: 1.875rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}


.blog-post .blog-content h4 {
    color: #f1f5f9 !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
    line-height: 1.4;
    position: relative;
}

.blog-post .blog-content p {
    color: #cbd5e1 !important;
    opacity: 0.95 !important;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

.blog-post .blog-content li {
    color: #cbd5e1 !important;
    opacity: 0.95 !important;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.blog-post .blog-content ul,
.blog-post .blog-content ol {
    margin: 2rem 0;
    /* padding-left: 24px; */
    list-style: none;
}

.blog-post .blog-content ul li {
    position: relative;
    /* padding-left: 2rem; */
}

.blog-post .blog-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.blog-post .blog-content ol {
    counter-reset: custom-counter;
}

.blog-post .blog-content ol li {
    counter-increment: custom-counter;
    padding-left: 2.5rem;
}

.blog-post .blog-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.blog-post .blog-content a {
    color: #a5b4fc !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.blog-post .blog-content a:hover {
    color: #ffffff !important;
    border-bottom-color: #6366f1;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.blog-post .blog-content strong {
    color: #f8fafc !important;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.blog-post .blog-content em {
    color: #8b5cf6 !important;
    font-style: normal;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.blog-post .blog-content blockquote {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-left: 4px solid #6366f1;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #f1f5f9 !important;
    position: relative;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.blog-post .blog-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #6366f1;
    opacity: 0.3;
    font-family: serif;
}

.blog-post .blog-content code {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc !important;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', 'SF Mono', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-weight: 500;
}

.blog-post .blog-content pre {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    overflow-x: auto;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.blog-post .blog-content pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.blog-post .blog-content pre code {
    background: none;
    padding: 0;
    color: #cbd5e1 !important;
    border: none;
}

/* ========================================
   BLOG POST HERO SECTION
   ======================================== */

.blog-hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 12s ease-in-out infinite;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(99, 102, 241, 0.03) 49%, rgba(99, 102, 241, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(139, 92, 246, 0.02) 49%, rgba(139, 92, 246, 0.02) 51%, transparent 52%);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.blog-hero .container {
    max-width: 1400px;
    min-width: 1280px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.blog-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transition: left 0.6s ease;
}

.blog-category:hover::before {
    left: 100%;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 30%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    position: relative;
}

.blog-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /* font-size: 1rem; */
    color: #94a3b8;
    font-weight: 500;
    /* background: rgba(255, 255, 255, 0.05); */
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-radius: 50px; */
    /* padding: 12px 24px; */
    display: inline-flex;
}

.post-date,
.read-time {
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

.post-date::before {
    content: '📅';
    font-size: 0.875rem;
}

.read-time::before {
    content: '⏱️';
    font-size: 0.875rem;
}

.post-separator {
    opacity: 0.4;
    font-weight: 300;
    color: #64748b;
}

/* ========================================
   BLOG POST COMPONENTS
   ======================================== */

/* Call to Action Section */
.post-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
}

.post-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.post-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.75rem 1rem 0.75rem;
    padding: 18px 32px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.post-cta .btn-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #0909B9 100%);
    color: var(--text-light, #ffffff);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.post-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.post-cta .btn-outline {
    background-color: transparent;
    color: var(--text-light, #ffffff);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-cta .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Social Sharing */
.social-share {
    text-align: center;
    margin: 4rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.social-share h4 {
    margin-bottom: 2rem;
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-share-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    font-size: 16px;
}

.social-share-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-share-button:hover::before {
    left: 100%;
}

.social-share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-share-button.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-share-button.linkedin:hover {
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-share-button.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #1991db 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-share-button.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-share-button.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-share-button.facebook:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* Author Bio */
.author-bio {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #ffffffba;
}

.author-bio .author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-bio .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio .author-details h4 {
    margin: 0 0 0.25rem 0;
    color: #ffffffba;
    font-size: 1.1rem;
}

.author-bio .author-details .author-title {
    color: #ffffffba;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.7;
}

.author-bio .author-description {
    color: #ffffffba;
    line-height: 1.6;
    margin: 0;
    opacity: 0.7;
}

/* Related Posts */

.related-posts h3 {
    color: #ffffffba;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.related-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.related-post-card:hover::before {
    left: 100%;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.related-post-card .category-tag {
    margin-bottom: 0.75rem;
}

/* Category tag styles */
.category-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.category-tag.restaurant {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.category-tag.hotel {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.category-tag.tax {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.related-post-card h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

.related-post-card h4 a {
    color: #ffffffba;
    text-decoration: none;
}

.related-post-card h4 a:hover {
    color: #ffffff;
}

.related-post-card p {
    color: #ffffffba;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.7;
}

/* Table styling for blog posts */
.blog-post table {
    width: 100% !important;
    background: rgba(15, 15, 35, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    border-radius: 16px !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden !important;
    margin: 3rem 0 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
}

.blog-post table th {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%) !important;
    color: #f8fafc !important;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3) !important;
    padding: 16px 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.875rem !important;
    letter-spacing: 1px !important;
    position: relative !important;
}

.blog-post table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.blog-post table td {
    color: #cbd5e1 !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1) !important;
    padding: 16px 20px !important;
    opacity: 0.95 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.blog-post table tr:hover td {
    background-color: rgba(99, 102, 241, 0.05) !important;
    transform: scale(1.01) !important;
}

.blog-post table tr:last-child td {
    border-bottom: none !important;
}

.blog-post table td:first-child {
    font-weight: 600 !important;
    color: #a5b4fc !important;
}

/* Footer override for blog posts */

.blog-post .footer-section h4 {
    color: #ffffff !important;
}

.blog-post .footer-section p {
    color: #cccccc !important;
}

.blog-post .footer-section a {
    color: #cccccc !important;
}

.blog-post .footer-section a:hover {
    color: #ffffff !important;
}

/* ========================================
   MAIN BLOG PAGE (DARK THEME)
   ======================================== */

/* Blog Page Hero Section (for main blog listing page) */
.blog-page .blog-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a4b5c 30%, #2d6a7a 60%, #4a9fb8 100%);
    position: relative;
    overflow: hidden;
}

.blog-page .blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.blog-page .blog-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.blog-page .blog-hero h1 {
    font-size: 4rem;
    font-weight: 600;
    color: #ffffffba;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.blog-page .blog-hero p {
    font-size: 1.3rem;
    color: #ffffffba;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Blog Page Content Section (for main blog listing page) */
.blog-page .blog-content {
    padding: 120px 0;
    background-color: #000000da;
    position: relative;
}

.blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.blog-page .blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blog-page .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.blog-page .blog-card:hover::before {
    left: 100%;
}

.blog-page .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.blog-page .blog-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffffba;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-page .blog-card p {
    color: #ffffffba;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-page .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ffffffba;
}

.blog-page .blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-page .blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-page .blog-read-more {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(9, 9, 185, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00D4FF;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-page .blog-read-more:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(9, 9, 185, 0.2) 100%);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
    text-decoration: none;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Desktop and Large Screen Responsiveness */
@media (max-width: 1400px) {
    .blog-hero .container {
        min-width: auto !important;
        max-width: 90% !important;
    }

    .blog-post .blog-content {
        min-width: auto !important;
        max-width: 90% !important;
    }
}

@media (max-width: 1200px) {
    .blog-hero .container {
        max-width: 95% !important;
    }

    .blog-post .blog-content {
        max-width: 95% !important;
    }

    .blog-post .blog-content article {
        max-width: 100% !important;
        padding: 3rem !important;
    }
}

/* Mobile responsiveness for BLOG POSTS */
@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 80px;
        min-height: 50vh;
    }

    .blog-hero .container {
        min-width: auto !important;
        max-width: 95% !important;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .blog-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .blog-category {
        font-size: 0.8rem;
        padding: 8px 20px;
        margin-bottom: 1.5rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.875rem;
        padding: 10px 20px;
    }

    .blog-post .blog-content {
        margin: 60px auto !important;
        padding: 0 1rem !important;
        min-width: auto !important;
        max-width: 95% !important;
    }

    .blog-post .blog-content article {
        padding: 2rem 1.5rem !important;
        border-radius: 16px !important;
        max-width: 100% !important;
    }

    .blog-post .blog-content h2 {
        font-size: 2rem !important;
        margin: 3rem 0 1.5rem 0 !important;
    }

    .blog-post .blog-content h3 {
        font-size: 1.625rem !important;
        margin: 2.5rem 0 1.25rem 0 !important;
    }

    .blog-post .blog-content h4 {
        font-size: 1.375rem !important;
    }

    .blog-post .blog-content p,
    .blog-post .blog-content li {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    .post-cta {
        margin: 3rem 0 !important;
        padding: 2rem 1.5rem !important;
    }

    .social-share {
        margin: 3rem 0 !important;
        padding: 2rem 1.5rem !important;
    }

    .related-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .related-post-card {
        padding: 1.5rem !important;
    }

    .post-cta .btn {
        /* display: block; */
        margin: 0.5rem 0;
        width: 100%;
        padding: 16px 28px;
        font-size: 0.95rem;
        min-width: 140px;
    }

    .social-share {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .social-share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-share-button {
        justify-content: center;
        padding: 12px 20px;
    }

    .author-bio {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .author-bio .author-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .author-bio .author-avatar {
        width: 80px;
        height: 80px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .related-post-card {
        padding: 1.25rem;
    }
}

/* Mobile responsiveness for BLOG PAGE (main listing) */
@media (max-width: 992px) {
    .blog-page .blog-hero h1 {
        font-size: 3rem;
    }

    .blog-page .blog-hero p {
        font-size: 1.1rem;
    }

    .blog-page .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-page .blog-hero {
        padding: 100px 0 80px;
    }

    .blog-page .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-page .blog-hero p {
        font-size: 1rem;
    }

    .blog-page .blog-content {
        padding: 80px 0;
    }

    .blog-page .blog-card {
        padding: 1.5rem;
    }

    .blog-page .blog-card h3 {
        font-size: 1.3rem;
    }

    .blog-page .blog-card p {
        font-size: 0.9rem;
    }

    .blog-page .blog-meta {
        font-size: 0.8rem;
    }

    .blog-page .blog-read-more {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .blog-card-header {
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-page .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-page .blog-hero p {
        font-size: 0.9rem;
    }

    .blog-page .blog-content {
        padding: 60px 0;
    }

    .blog-page .blog-card {
        padding: 1rem;
    }

    .blog-page .blog-card h3 {
        font-size: 1.1rem;
    }

    .blog-page .blog-card p {
        font-size: 0.8rem;
    }

    .blog-page .blog-meta {
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .blog-page .blog-read-more {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* ========================================
   CONTENT BOXES AND SPECIAL SECTIONS
   ======================================== */

.example-box {
    /* background: #f8f9fa; */
    border: 1px solid #e9ecef;
    border-left: 4px solid #1976d2;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.example-box h4 {
    color: #1976d2;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.warning-box {
    /* background: #fff3cd; */
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.warning-box h4 {
    color: #d68910;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.compliance-checklist {
    /* background: #e8f5e8; */
    border: 1px solid #c3e6c3;
    border-left: 4px solid #27ae60;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.compliance-checklist h4 {
    color: #27ae60;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.compliance-checklist ul li {
    padding: 3px 0;
}

.technical-setup {
    /* background: #f7f3ff; */
    border: 1px solid #e8d8ff;
    border-left: 4px solid #8b5cf6;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.technical-setup h4 {
    color: #7c3aed;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.technical-setup pre {
    /* background: #2d1b69; */
    color: #e2e8f0;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
}

.technical-setup code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: inherit;
}

.troubleshoot-box {
    /* background: #fff5f5; */
    border: 1px solid #fed7d7;
    border-left: 4px solid #e53e3e;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.troubleshoot-box h4 {
    color: #c53030;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.checklist-box {
    /* background: #f0f9ff; */
    border: 1px solid #bae6fd;
    border-left: 4px solid #0ea5e9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.checklist-box h4 {
    color: #0284c7;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.checklist-box ul li {
    padding: 5px 0;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.checklist-box ul li:before {
    content: "□";
    position: absolute;
    left: 0;
    color: #0284c7;
    font-weight: bold;
    font-size: 16px;
    top: 0;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline;
}

/* Override default list styling for content boxes */
.example-box ul li,
.warning-box ul li,
.compliance-checklist ul li,
.technical-setup ul li,
.troubleshoot-box ul li,
.checklist-box ul li {
    padding-left: 1.5rem;
}

.example-box ul li::before,
.warning-box ul li::before,
.compliance-checklist ul li::before,
.technical-setup ul li::before,
.troubleshoot-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline;
    font-weight: bold;
    font-size: 16px;
}

.example-box ul li::before {
    color: #1976d2;
}

.warning-box ul li::before {
    color: #d68910;
}

.compliance-checklist ul li::before {
    color: #27ae60;
}

.technical-setup ul li::before {
    color: #7c3aed;
}

.troubleshoot-box ul li::before {
    color: #c53030;
}

/* Special styling for checklist items */
.checklist-box ul li {
    padding-left: 25px;
}

/* Ensure compliance checklist uses checkmarks instead of bullets */
.compliance-checklist ul li::before {
    content: "✓" !important;
    color: #27ae60 !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
}