/* ============================================
   PAGE HEADER WITH HERO IMAGE
   ============================================ */

.page-header {
    background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,58,95,0.9)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920') center/cover no-repeat;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: 80px 0;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.no-posts i {
    color: var(--border-color);
    margin-bottom: 20px;
}

.no-posts p {
    font-size: 1.125rem;
}

/* ============================================
   BLOG SINGLE POST
   ============================================ */

.blog-post-single {
    padding: 100px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 40px;
    transition: var(--transition-base);
}

.back-link:hover {
    color: var(--accent-red);
    transform: translateX(-5px);
}

.post-header {
    margin-bottom: 50px;
    text-align: center;
}

.post-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 1rem;
}

.post-meta i {
    color: var(--accent-red);
    margin-right: 6px;
}

.post-featured-image {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 30px;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 1.75rem;
    }
}
