/* ===================================
   BLOG PAGE - ULTRA PREMIUM STYLES
   =================================== */

/* Blog Hero */
.blog-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366?w=1920') center/cover;
    filter: brightness(0.3);
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(11, 11, 11, 0.9) 0%,
        rgba(229, 9, 20, 0.3) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px;
}

/* Featured Post Section */
.featured-post-section {
    padding: 80px 0;
    background: var(--black);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.featured-post:hover {
    border-color: var(--primary-red);
    box-shadow: 0 25px 60px rgba(229, 9, 20, 0.3);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 12px 24px;
    background: var(--gradient-red);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
    animation: pulse 2s infinite;
}

.featured-badge i {
    font-size: 12px;
}

.featured-post-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--light-grey);
}

.post-meta i {
    color: var(--primary-red);
    font-size: 14px;
}

.post-category {
    padding: 6px 16px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    font-weight: 600;
}

.featured-post-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
    transition: var(--transition);
}

.featured-post:hover .featured-post-title {
    color: var(--primary-red);
}

.featured-post-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 30px;
}

.featured-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.author-title {
    font-size: 13px;
    color: var(--light-grey);
}

/* Blog Filter Section */
.blog-filter-section {
    padding: 40px 0;
    background: var(--dark-grey);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 90px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.blog-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-filter-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter-tab i {
    font-size: 16px;
}

.blog-filter-tab:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.blog-filter-tab.active {
    background: var(--gradient-red);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 80px 0;
    background: var(--black);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

/* Blog Posts */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.3);
}

.blog-post.hidden {
    display: none;
}

.blog-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    background: var(--gradient-red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);
}

.blog-post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-post-title a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.blog-post-title a:hover {
    color: var(--primary-red);
}

.blog-post-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--light-grey);
    margin-bottom: 20px;
    flex: 1;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.post-author-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-author-small img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
}

.post-author-small span {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

.read-more i {
    font-size: 12px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.sidebar-widget:hover {
    border-color: var(--primary-red);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
}

/* Blog Search Form */
.blog-search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.search-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.popular-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 8px;
    transition: var(--transition);
}

.popular-post-item:hover h4 {
    color: var(--primary-red);
}

.popular-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--light-grey);
}

.popular-post-date i {
    font-size: 10px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.category-list li a:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.category-list li a i {
    color: var(--primary-red);
    font-size: 16px;
}

.category-list li a span:first-of-type {
    flex: 1;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.category-count {
    padding: 4px 12px;
    background: rgba(229, 9, 20, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.tag-item:hover {
    background: var(--gradient-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

/* CTA Widget */
.cta-widget {
    background: var(--gradient-red);
    border-color: transparent;
}

.cta-widget-content {
    text-align: center;
}

.cta-widget-content i {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.cta-widget-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-widget-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-widget-content .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.cta-widget-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--gradient-red);
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-dots {
    color: var(--light-grey);
    font-weight: 700;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--dark-grey);
}

.newsletter-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.newsletter-icon i {
    font-size: 36px;
    color: var(--white);
}

.newsletter-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 15px;
    color: var(--light-grey);
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    min-width: 300px;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        min-height: 400px;
    }

    .featured-post-content {
        padding: 40px;
    }

    .blog-filter-section {
        top: 70px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        margin-top: 70px;
        min-height: 400px;
    }

    .blog-hero-content {
        padding: 80px 20px;
    }

    .featured-post-section,
    .blog-grid-section,
    .newsletter-section {
        padding: 60px 0;
    }

    .featured-post-content {
        padding: 30px;
    }

    .featured-post-title {
        font-size: 28px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .blog-pagination {
        margin-top: 40px;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .featured-post-image {
        min-height: 300px;
    }

    .featured-post-content {
        padding: 25px;
    }

    .featured-post-title {
        font-size: 24px;
    }

    .featured-post-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .blog-filter-tab span {
        display: none;
    }

    .sidebar-widget {
        padding: 25px;
    }

    .newsletter-content {
        padding: 30px 20px;
    }

    .newsletter-text h2 {
        font-size: 22px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post {
    animation: fadeInUp 0.6s ease forwards;
}

.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }
.blog-post:nth-child(6) { animation-delay: 0.6s; }


/* ========== ULTRA PREMIUM BLOG STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== BLOG HERO SECTION ========== */

.blog-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

    .floating-orb.orb-1 {
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
        top: -150px;
        left: -150px;
        animation-delay: 0s;
    }

    .floating-orb.orb-2 {
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
        top: 40%;
        right: -200px;
        animation-delay: 7s;
    }

    .floating-orb.orb-3 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, #6366f1 0%, transparent 70%);
        bottom: -150px;
        left: 50%;
        animation-delay: 14s;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, -60px) scale(1.1);
    }

    66% {
        transform: translate(-60px, 60px) scale(0.9);
    }
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
}

.blog-hero-title {
    font-size: clamp(52px, 7vw, 82px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -2.5px;
}

.highlight-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-description {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 55px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

    .hero-stat .stat-number {
        font-size: 56px;
        font-weight: 900;
        background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 12px;
    }

.stat-plus {
    color: #ff6b35;
}

.hero-stat .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== BLOG FILTER SECTION ========== */

.blog-filter-section {
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.blog-filter-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Search Bar */
.blog-search-bar {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input-container {
    position: relative;
    flex: 1;
    min-width: 300px;
}

    .search-input-container > i {
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.5);
        font-size: 18px;
        z-index: 2;
    }

    .search-input-container input {
        width: 100%;
        padding: 18px 24px 18px 56px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: #fff;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

        .search-input-container input:focus {
            outline: none;
            border-color: rgba(255, 107, 53, 0.5);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.06));
        }

        .search-input-container input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

.advanced-search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

    .advanced-search-btn:hover {
        background: linear-gradient(135deg, #ff6b35, #ff6b35);
        border-color: transparent;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }

/* Category Tabs */
.blog-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

    .category-tab:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.1));
        border-color: rgba(255, 107, 53, 0.4);
        color: #fff;
        transform: translateY(-2px);
    }

    .category-tab.active {
        background: linear-gradient(135deg, #ff6b35, #ff6b35);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.category-tab.active .category-count {
    background: rgba(255, 255, 255, 0.25);
}

/* Blog Options */
.blog-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .sort-btn:hover {
        border-color: rgba(255, 107, 53, 0.4);
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.06));
        color: #fff;
    }

.sort-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
}

    .sort-menu.active {
        display: block;
    }

    .sort-menu button {
        width: 100%;
        padding: 12px 16px;
        background: transparent;
        border: none;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .sort-menu button:hover {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.1));
            color: #fff;
        }

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-option {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .view-option:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.1));
        border-color: rgba(255, 107, 53, 0.4);
        color: #fff;
    }

    .view-option.active {
        background: linear-gradient(135deg, #ff6b35, #ff6b35);
        border-color: transparent;
        color: #fff;
    }

/* ========== FEATURED POSTS SECTION ========== */

.featured-posts-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: clamp(36px, 5vw, 52px);
        font-weight: 900;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .section-header p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.6);
    }

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.featured-post.main-featured {
    grid-column: 1 / -1;
}

.featured-post {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .featured-post:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
    }

    .featured-post.main-featured {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
    }

.post-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
}

.featured-post.main-featured .post-image {
    padding-top: 0;
    height: 100%;
}

.post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.08);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.post-category {
    padding: 8px 18px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.post-content {
    padding: 35px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.post-date, .post-author {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.post-content h3 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.post-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-stats {
    display: flex;
    gap: 20px;
}

    .post-stats span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
    }

    .post-stats i {
        color: #ff6b35;
    }

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .read-more-btn:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    }

/* ========== BLOG POSTS GRID ========== */

.blog-posts-section {
    padding: 80px 0 120px;
    background: rgba(255, 255, 255, 0.01);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.blog-post-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .blog-post-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
    }

    .blog-post-card .post-image {
        padding-top: 65%;
    }

.bookmark-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .bookmark-btn:hover {
        background: #ff6b35;
        border-color: #ff6b35;
        transform: scale(1.1);
    }

.blog-post-card .post-content {
    padding: 28px;
}

    .blog-post-card .post-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .tag:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.15));
        border-color: rgba(255, 107, 53, 0.4);
        color: #fff;
    }

.blog-post-card .read-more-btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* ========== PAGINATION ========== */

.blog-pagination {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.load-more-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

    .load-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 45px rgba(255, 107, 53, 0.6);
    }

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .pagination-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, #ff6b35, #ff6b35);
        border-color: transparent;
        color: #fff;
        transform: translateY(-2px);
    }

    .pagination-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .page-number:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.1));
        border-color: rgba(255, 107, 53, 0.4);
        color: #fff;
    }

    .page-number.active {
        background: linear-gradient(135deg, #ff6b35, #ff6b35);
        border-color: transparent;
        color: #fff;
    }

.pagination-dots {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    padding: 0 5px;
}

/* ========== NEWSLETTER SECTION ========== */

.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.04));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(20px);
}

.newsletter-info h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .newsletter-features .feature {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

        .newsletter-features .feature i {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ff6b35, #ff6b35);
            border-radius: 50%;
            color: #fff;
            font-size: 12px;
        }

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .newsletter-form input:focus {
        outline: none;
        border-color: rgba(255, 107, 53, 0.5);
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.06));
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

.newsletter-form button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .newsletter-form button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }

.privacy-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

    .privacy-note i {
        color: #ff6b35;
    }

/* ========== SEARCH MODAL ========== */

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 40px;
}

    .search-modal.active {
        display: flex;
    }

.search-modal-content {
    max-width: 800px;
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(30px);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .search-modal-header h3 {
        font-size: 24px;
        font-weight: 800;
        color: #fff;
    }

.close-modal {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .close-modal:hover {
        background: #ff6b35;
        border-color: #ff6b35;
        transform: rotate(90deg);
    }

.search-modal-body {
    padding: 40px;
}

.search-filters {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input[type="date"] {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .filter-group select:focus,
    .filter-group input[type="date"]:focus {
        outline: none;
        border-color: rgba(255, 107, 53, 0.5);
    }

.date-range {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .date-range span {
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
    }

.search-actions {
    display: flex;
    gap: 15px;
}

.clear-filters-btn,
.apply-filters-btn {
    flex: 1;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
}

    .clear-filters-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

.apply-filters-btn {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-color: transparent;
    color: #fff;
}

    .apply-filters-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    }

/* ========== MOBILE RESPONSIVE ========== */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .blog-hero {
        min-height: 550px;
        padding: 120px 0 60px;
    }

    .blog-hero-title {
        font-size: 48px;
    }

    .blog-hero-description {
        font-size: 17px;
    }

    .blog-hero-stats {
        gap: 40px;
    }

    .blog-filter-section {
        padding: 50px 0;
    }

    .blog-search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input-container {
        min-width: 100%;
    }

    .advanced-search-btn {
        width: 100%;
        justify-content: center;
    }

    .blog-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .featured-posts-grid {
        grid-template-columns: 1fr;
    }

    .featured-post.main-featured {
        grid-template-columns: 1fr;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .pagination-controls {
        flex-wrap: wrap;
    }

    .search-modal {
        padding: 20px;
    }

    .search-modal-header,
    .search-modal-body {
        padding: 25px;
    }
}

