/**
 * Blog Styles - Modern Minimalist Design
 * Premium Enhanced Version
 *
 * @package Betpro_Theme
 */

/* ==========================================================================
   BLOG HERO SECTION - Enhanced
   ========================================================================== */
.blog-hero {
    position: relative;
    padding: 180px 0 80px;
    background: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 208, 132, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 195, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--text-dark-primary);
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.blog-hero p {
    color: var(--text-dark-tertiary);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.blog-hero .section-tag {
    margin-bottom: 25px;
    animation: fadeIn 1s ease 0.2s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 208, 132, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 208, 132, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    animation: gridMove 30s linear infinite;
}

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

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
    padding: 25px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    color: var(--text-muted);
    font-size: 1.2rem;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* ==========================================================================
   BLOG LAYOUT
   ========================================================================== */
.blog-content-section {
    padding: 80px 0 100px;
    background: var(--bg-primary);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.blog-posts-wrapper {
    min-width: 0;
}

/* Archive Info - Enhanced */
.archive-info {
    margin-bottom: 50px;
    padding: 25px 35px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: var(--radius-xl);
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.archive-info::before {
    content: '📚';
    font-size: 1.5rem;
}

.post-count {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 700;
}

.post-count::after {
    content: ' found';
    font-weight: 400;
    color: var(--text-secondary);
}

/* ==========================================================================
   BLOG GRID - MINIMALIST CARDS - Enhanced
   ========================================================================== */
.blog-grid,
.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInScale 0.6s ease backwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.05), rgba(0, 195, 255, 0.03));
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 208, 132, 0.1);
    border-color: rgba(0, 208, 132, 0.3);
}

.blog-card:hover::before {
    opacity: 1;
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16/10;
    background: var(--bg-tertiary);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

/* Blog Card Content */
.blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Blog Card Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.12), rgba(0, 195, 255, 0.08));
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 208, 132, 0.25);
    transition: var(--transition-base);
    text-decoration: none;
}

.blog-category:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-date svg {
    opacity: 0.7;
}

/* Blog Card Title */
.blog-card-title {
    margin: 0;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: var(--primary);
}

/* Blog Card Excerpt */
.blog-card-excerpt {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Card Footer */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-read-time svg {
    opacity: 0.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.blog-read-more svg {
    transition: var(--transition-base);
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   SINGLE POST - ARTICLE HERO - Enhanced
   ========================================================================== */
.article-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-dark);
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 208, 132, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 195, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
    animation: heroGradient 12s ease infinite;
}

.article-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(10, 14, 26, 0.6) 0%, 
        rgba(10, 14, 26, 0.85) 50%,
        rgba(10, 14, 26, 0.98) 100%
    );
    z-index: 2;
}

.article-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.article-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 208, 132, 0.2);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 208, 132, 0.4);
    margin-bottom: 25px;
    text-decoration: none;
    transition: var(--transition-base);
}

.article-category:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.article-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 30px 0;
    color: var(--text-dark-primary);
    letter-spacing: -0.02em;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(0, 208, 132, 0.3);
}

.article-author span,
.article-date,
.article-read-time {
    color: var(--text-dark-tertiary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-date svg,
.article-read-time svg {
    opacity: 0.7;
}

/* ==========================================================================
   ARTICLE CONTENT
   ========================================================================== */
.article-content-wrapper {
    padding: 80px 0 100px;
    background: var(--bg-primary);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.article-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

/* Entry Content Styling - Enhanced */
.entry-content {
    padding: 60px 70px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.entry-content > * {
    margin-bottom: 1.6em;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.2em 0 0.9em 0;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 5px;
    height: 1.2em;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.entry-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2em 0 0.9em 0;
    line-height: 1.4;
    position: relative;
    padding-left: 15px;
}

.entry-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 4px;
    height: 1em;
    background: var(--primary);
    border-radius: 2px;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 208, 132, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition-base);
}

.entry-content a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}

.entry-content ul,
.entry-content ol {
    padding-left: 2em;
}

.entry-content li {
    margin-bottom: 0.8em;
}

.entry-content blockquote {
    margin: 2.5em 0;
    padding: 30px 35px;
    border-left: 5px solid var(--primary);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2em 0;
}

.entry-content code {
    padding: 3px 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-xs);
    font-family: var(--font-mono);
    font-size: 0.9em;
    color: var(--primary);
}

.entry-content pre {
    padding: 25px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin: 2em 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: var(--text-dark-primary);
}

/* Article Tags */
.article-tags {
    padding: 30px 60px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tag-link {
    padding: 6px 16px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.tag-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Article Share */
.article-share {
    padding: 30px 60px;
    border-top: 1px solid var(--border-light);
}

.share-label {
    display: block;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
}

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

.share-btn.twitter {
    background: linear-gradient(135deg, #000000, #333333);
}

.share-btn.twitter:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.share-btn.whatsapp:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

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

/* Author Box */
.author-box {
    padding: 40px 60px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--border-light);
}

.author-info {
    flex: 1;
}

.author-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.author-bio {
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 60px;
    border-top: 1px solid var(--border-light);
}

.post-nav-link {
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-nav-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.post-nav-link.prev {
    text-align: left;
}

.post-nav-link.next {
    text-align: right;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.post-nav-link.next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

/* ==========================================================================
   COMMENTS SECTION
   ========================================================================== */
.comments-section {
    padding: 50px 60px;
    border-top: 1px solid var(--border-light);
}

.comments-area {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 35px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comments-title::before {
    content: '💬';
    font-size: 1.5rem;
}

.comments-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(0, 208, 132, 0.4);
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.comment-item {
    list-style: none;
    margin-bottom: 30px;
}

.comment-body {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: var(--transition-smooth);
}

.comment-item:hover .comment-body {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

/* Comment children/replies */
.children {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 40px;
}

.children .comment-item {
    margin-bottom: 20px;
}

.children .comment-body {
    background: var(--bg-secondary);
}

/* Comment Meta */
.comment-meta {
    margin-bottom: 18px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar {
    border-radius: 50%;
    border: 2px solid var(--border-light);
}

.comment-author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comment-author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.comment-author-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.comment-author-name a:hover {
    color: var(--primary);
}

.comment-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment-date svg {
    opacity: 0.7;
}

/* Comment Content */
.comment-content {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
}

.comment-content p {
    margin-bottom: 1em;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-awaiting-moderation {
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.05));
    border-left: 4px solid var(--warning);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 15px;
}

/* Comment Actions */
.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.reply-link,
.edit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.reply-link:hover,
.edit-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.reply-link::before {
    content: '↩';
    font-size: 1rem;
}

.edit-link::before {
    content: '✏';
    font-size: 0.9rem;
}

/* Comment Navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
}

.comment-navigation a {
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.comment-navigation a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 40px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Comment Form */
.comment-reply-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-reply-title::before {
    content: '✍';
    font-size: 1.4rem;
}

.comment-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-light);
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--error);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-main);
    font-size: 0.98rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: var(--transition-base);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    margin: 0;
}

.form-submit .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Logged In Message */
.logged-in-as {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.08), rgba(0, 195, 255, 0.05));
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-bottom: 20px;
}

.logged-in-as a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RELATED POSTS SECTION
   ========================================================================== */
.related-posts-section {
    padding: 80px 0 100px;
    background: var(--bg-secondary);
}

.related-posts-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-posts-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.related-posts-section .section-header p {
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

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

.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Widget Base Styles */
.widget {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: var(--transition-smooth);
}

.widget:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 25px 0;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border-light);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title svg {
    color: var(--primary);
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(0, 208, 132, 0.4);
}

/* ==========================================================================
   SEARCH WIDGET
   ========================================================================== */
.widget-search .search-form {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: var(--transition-base);
    font-family: var(--font-main);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.05);
}

.search-submit svg {
    stroke-width: 2.5;
}

/* ==========================================================================
   CTA WIDGET
   ========================================================================== */
.widget-cta {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.08), rgba(0, 195, 255, 0.05));
    border-color: rgba(0, 208, 132, 0.3);
    text-align: center;
}

.cta-widget-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.widget-cta h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.widget-cta p {
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.6;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* ==========================================================================
   RECENT POSTS WIDGET
   ========================================================================== */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.recent-post-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
    transform: translateX(5px);
}

.recent-post-thumb {
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.recent-post-thumb.no-thumb {
    color: var(--text-muted);
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.15);
}

.recent-post-item:hover .recent-post-thumb.no-thumb svg {
    color: var(--primary);
    transform: scale(1.1);
    transition: var(--transition-base);
}

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.recent-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-base);
}

.recent-post-title:hover {
    color: var(--primary);
}

.recent-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.recent-post-date svg {
    opacity: 0.7;
}

/* ==========================================================================
   CATEGORIES WIDGET
   ========================================================================== */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.category-item a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.2);
}

.category-item a:hover::before {
    opacity: 1;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15), rgba(0, 195, 255, 0.1));
    border-radius: var(--radius-md);
    color: var(--primary);
    transition: var(--transition-base);
}

.category-item a:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-name {
    flex: 1;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.category-item a:hover .category-name {
    color: white;
}

.category-count {
    background: var(--bg-primary);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 35px;
    text-align: center;
    transition: var(--transition-base);
}

.category-item a:hover .category-count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: scale(1.05);
}

/* ==========================================================================
   TAGS WIDGET
   ========================================================================== */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 8px 16px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.tag-item:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

/* ==========================================================================
   WORDPRESS DEFAULT WIDGETS
   ========================================================================== */
/* Search Widget (WordPress Default) */
.widget_search .search-form {
    position: relative;
}

.widget_search .search-field {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    background: var(--bg-secondary);
    transition: var(--transition-base);
}

.widget_search .search-field:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.1);
}

.widget_search .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.widget_search .search-submit:hover {
    background: var(--primary-dark);
}

/* Recent Posts Widget (WordPress Default) */
.widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_recent_entries li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.widget_recent_entries li:last-child {
    border-bottom: none;
}

.widget_recent_entries a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.widget_recent_entries a:hover {
    color: var(--primary);
}

/* Categories Widget (WordPress Default) */
.widget_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_categories li {
    margin-bottom: 8px;
}

.widget_categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.widget_categories a:hover {
    background: var(--primary);
    color: white;
}

/* Tag Cloud Widget */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tagcloud a {
    padding: 8px 16px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: 0.85rem !important;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.tagcloud a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Archives Widget */
.widget_archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_archive li {
    margin-bottom: 8px;
}

.widget_archive a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.widget_archive a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

/* Meta Widget */
.widget_meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_meta li {
    margin-bottom: 8px;
}

.widget_meta a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.widget_meta a:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   PAGINATION - Enhanced
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 70px;
    padding: 30px 0;
}

.pagination a,
.pagination span {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pagination a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.3);
}

.pagination a:hover::before {
    opacity: 0.2;
}

.pagination .current {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
    transform: scale(1.1);
}

.pagination .dots {
    border: none;
    background: none;
    color: var(--text-muted);
}

.pagination .prev,
.pagination .next {
    padding: 0 20px;
    font-weight: 600;
    gap: 8px;
}

.pagination .prev svg,
.pagination .next svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.pagination .prev:hover svg {
    transform: translateX(-3px);
}

.pagination .next:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   NO POSTS FOUND - Enhanced
   ========================================================================== */
.no-posts-found {
    text-align: center;
    padding: 100px 50px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border-radius: var(--radius-2xl);
    border: 2px dashed var(--border-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInScale 0.6s ease;
}

.no-posts-found svg {
    color: var(--text-muted);
    margin-bottom: 25px;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.no-posts-found h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.no-posts-found p {
    color: var(--text-tertiary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 35px 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.no-posts-found .btn-primary {
    animation: pulse 2s ease-in-out infinite;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 130px 0 50px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .blog-grid,
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .entry-content {
        padding: 35px 30px;
    }
    
    .article-tags,
    .article-share,
    .author-box,
    .post-navigation {
        padding: 25px 30px;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .entry-content {
        padding: 25px 20px;
        font-size: 1rem;
    }
    
    .article-tags,
    .article-share,
    .author-box {
        padding: 20px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   READING PROGRESS BAR
   ========================================================================== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 208, 132, 0.1);
    z-index: 9999;
}

.reading-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 208, 132, 0.5);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
}

.scroll-to-top svg {
    animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ==========================================================================
   SMOOTH SCROLL BEHAVIOR
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   SELECTION STYLING
   ========================================================================== */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   LOADING ANIMATION FOR IMAGES
   ========================================================================== */
img {
    animation: fadeIn 0.5s ease;
}

img[loading="lazy"] {
    background: var(--bg-secondary);
}

/* ==========================================================================
   FOCUS STYLES FOR ACCESSIBILITY
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .blog-sidebar,
    .article-share,
    .post-navigation,
    .related-posts-section,
    .pagination,
    .no-posts-found .btn-primary {
        display: none;
    }
    
    .article-content,
    .blog-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .entry-content {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}


/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #0a0a12 0%, #0d1117 50%, #1a1f2e 100%);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.about-badge svg {
    color: #10b981;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-hero h1 .highlight {
    background: linear-gradient(135deg, #10b981, #34d399, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a0aec0;
    margin-bottom: 20px;
}

.about-hero-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.about-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.about-hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.about-hero-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Who Is Junaid Section */
.about-junaid {
    background: #ffffff;
}

.about-junaid-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-junaid-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-junaid-content .lead-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-junaid-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-quote {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 0 16px 16px 0;
    margin-top: 30px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon svg {
    color: #fff;
    width: 20px;
    height: 20px;
}

.about-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.7;
}

.about-quote cite {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* Visual Card */
.about-visual-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent);
    pointer-events: none;
}

.visual-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon svg {
    color: #fff;
}

.visual-header-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.visual-header-text span {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.visual-card-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.visual-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.stat-icon {
    font-size: 1.2rem;
}

.visual-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.visual-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Why Trust Section */
.about-why-trust {
    background: linear-gradient(180deg, #0a0a12 0%, #0d1117 100%);
}

.about-why-trust .section-header h2 {
    color: #fff;
}

.about-why-trust .section-header p {
    color: #94a3b8;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trust-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.trust-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

.trust-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.trust-feature-icon svg {
    color: #10b981;
}

.trust-feature-icon.verified {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.15));
}

.trust-feature-icon.verified svg {
    color: #3b82f6;
}

.trust-feature-icon.fast {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.15));
}

.trust-feature-icon.fast svg {
    color: #f59e0b;
}

.trust-feature-icon.support {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.15));
}

.trust-feature-icon.support svg {
    color: #ec4899;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.trust-feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.trust-feature-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Section */
.about-services {
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon svg {
    color: var(--primary-color);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    transition: all 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(3px);
}

/* Timeline Section */
.about-timeline {
    background: linear-gradient(180deg, #0a0a12 0%, #0d1117 100%);
}

.about-timeline .section-header h2 {
    color: #fff;
}

.about-timeline .section-header p {
    color: #94a3b8;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.timeline-marker span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.timeline-item.current .timeline-marker {
    width: 70px;
    height: 70px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

.timeline-content {
    width: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline-item.current .timeline-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.08));
    border-color: rgba(16, 185, 129, 0.3);
}

/* Dealers Matter Section */
.about-dealers-matter {
    background: #fff;
}

.dealers-matter-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.dealers-matter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.dealers-matter-content .lead-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.dealers-matter-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.dealers-benefits-list {
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.dealers-benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.dealers-benefits-list li:last-child {
    border-bottom: none;
}

.dealers-benefits-list li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.payment-methods-showcase {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.payment-methods-showcase h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.payment-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-icon svg {
    color: #fff;
}

.payment-icon.jazzcash {
    background: linear-gradient(135deg, #dc143c, #b91c1c);
}

.payment-icon.easypaisa {
    background: linear-gradient(135deg, #10b981, #059669);
}

.payment-icon.bank {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.payment-item span {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-item:hover .payment-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Section */
.about-contact {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.03));
}

.about-contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info-section > p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--primary-color);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.contact-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    text-align: center;
}

.contact-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.contact-card-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-btn.phone {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn.website {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon svg {
    color: #fff;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-junaid-grid,
    .dealers-matter-grid,
    .about-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-stat {
        padding: 20px 15px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .trust-features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container {
        padding-left: 40px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 20px;
        text-align: left;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-desc {
        font-size: 1rem;
    }
    
    .about-hero-cta {
        flex-direction: column;
    }
    
    .about-hero-cta .btn-primary,
    .about-hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .about-visual-card {
        padding: 25px;
    }
    
    .visual-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-feature-card,
    .service-card {
        padding: 25px;
    }
    
    .payment-icons {
        gap: 20px;
    }
    
    .payment-icon {
        width: 60px;
        height: 60px;
    }
}