/* استایل اصلی سایت - Beheshti Roy - نسخه نهایی با تم فیروزه‌ای */

/* فونت آنلاین وزیرمتن */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
    --bg-color: #0a0a0a;
    --surface-color: #111111;
    --text-color: #ffffff;
    --text-muted: #a3a3a3;
    --accent-color: #2AB3B1;          /* فیروزه‌ای اصلی (از لوگو) */
    --accent-hover: #1F8E8C;          /* فیروزه‌ای تیره برای hover */
    --accent-soft: rgba(42, 179, 177, 0.15);
    --accent-glow: rgba(42, 179, 177, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- نوار قیمت (Ticker) --- */
.market-ticker {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    direction: rtl;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 35s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-left: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.ticker-label {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 8px;
}

.ticker-value {
    font-weight: 700;
}

.ticker-up {
    color: #4CAF50;
    margin-right: 5px;
}

.ticker-down {
    color: #f44336;
    margin-right: 5px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- هدر --- */
.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 4px 0;
    background: rgba(10, 10, 10, 0.99);
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- لوگو --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-logo-img {
    height: 60px;
    width: auto;
    border-radius: 6px;
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover .custom-logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- منو --- */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.main-nav ul li a:hover {
    color: var(--text-color);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* --- دکمه ها --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transform: translateY(0);
    box-shadow: none;
}

.btn-outline {
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--bg-color);
    transform: translateY(0);
    box-shadow: none;
}

/* --- هیرو --- */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .subtitle {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- انیمیشن اسکرول --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- بخش خدمات --- */
.services-section {
    padding: 100px 0;
    background: var(--surface-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.5s;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* --- بخش تحلیل و آمار --- */
.analysis-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--surface-color) 0%, var(--bg-color) 100%);
    overflow: hidden;
}

.analysis-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.analysis-text h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}

.analysis-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.analysis-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- فوتر --- */
.site-footer {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
}

/* گرید ۴ ستونی فوتر */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-grid h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-grid p, .footer-grid a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 2;
}

.footer-grid a:hover {
    color: var(--accent-color);
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.social-icon.linkedin {
    color: #0A66C2;
}

.social-icon.linkedin:hover {
    background: #0A66C2;
    color: #fff;
}

.social-icon.telegram {
    color: #26A5E4;
}

.social-icon.telegram:hover {
    background: #26A5E4;
    color: #fff;
}

/* لوگوی فوتر (سمت چپ) - بدون پس‌زمینه */
.footer-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    mix-blend-mode: screen;              /* حذف پس‌زمینه مشکی */
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.footer-logo-col a:hover .footer-logo-img {
    transform: scale(1.08);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 14px;
}

/* ==========================================
   بخش آخرین مقالات در صفحه اصلی
   ========================================== */

.latest-posts-section {
    padding: 100px 0;
    background: var(--surface-color);
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.latest-post-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.latest-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.latest-post-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.latest-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-post-card:hover .latest-post-thumb img {
    transform: scale(1.1);
}

.latest-post-content {
    padding: 25px;
}

.latest-post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.latest-post-date {
    color: var(--text-muted);
}

.latest-post-category a {
    color: var(--accent-color);
    text-decoration: none;
}

.latest-post-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.latest-post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.latest-post-title a:hover {
    color: var(--accent-color);
}

.latest-post-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.latest-posts-more {
    text-align: center;
    margin-top: 50px;
}

.latest-posts-more .btn {
    padding: 15px 30px;
    font-size: 15px;
    display: inline-block;
}

.latest-posts-more .btn span {
    color: var(--accent-color);
    margin-left: 8px;
}

.latest-posts-more .btn:hover span {
    color: #fff;
}

/* ==========================================
   بخش وبلاگ حرفه‌ای (Blog Layout)
   ========================================== */

.blog-page-section {
    padding: 80px 0;
    background: var(--bg-color);
    min-height: 80vh;
}

.blog-page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.blog-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-soft);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.blog-page-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.blog-search-form {
    max-width: 500px;
    margin: 0 auto;
}

.blog-search-form form {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
}

.blog-search-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 15px;
    padding: 10px 0;
    font-family: inherit;
}

.blog-search-form input::placeholder {
    color: var(--text-muted);
}

.blog-search-form button {
    background: var(--accent-color);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-search-form button:hover {
    background: var(--accent-hover);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(42, 179, 177, 0.9);
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.blog-date {
    color: var(--text-muted);
}

.blog-read-time {
    color: var(--text-muted);
}

.blog-post-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more span {
    color: var(--accent-color);
}

.read-more:hover {
    color: var(--accent-color);
}

/* نوار کناری */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.sidebar-posts {
    list-style: none;
}

.sidebar-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-posts li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.sidebar-posts li a:hover {
    color: var(--accent-color);
}

.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 10px;
}

.sidebar-categories li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.sidebar-categories li a:hover {
    color: var(--accent-color);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.sidebar-tags a:hover {
    background: var(--accent-color);
    color: #fff;
}

/* صفحه تکی مقاله */
.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.single-post-main {
    max-width: 850px;
}

.post-header {
    margin-bottom: 30px;
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.post-category a {
    color: var(--accent-color);
    text-decoration: none;
}

.post-date {
    color: var(--text-muted);
}

.post-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 700;
}

.author-role {
    color: var(--text-muted);
    font-size: 13px;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.post-content {
    font-size: 17px;
    line-height: 2;
    color: var(--text-color);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h2, .post-content h3 {
    margin: 30px 0 15px;
    font-weight: 800;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags {
    font-size: 14px;
    color: var(--text-muted);
}

.post-tags a {
    color: var(--accent-color);
    text-decoration: none;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* کامنت‌ها */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 850px;
}

.comments-section .comments-title,
.comments-section .comment-reply-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 30px;
    display: block;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    margin-bottom: 25px;
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.comment-list .comment .comment-body {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.comment-list .comment .comment-body p {
    margin-bottom: 10px;
}

.comment-list .comment .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-list .comment .comment-author img {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    border: 2px solid var(--accent-color);
}

.comment-list .comment .comment-author .fn {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
}

.comment-list .comment .comment-metadata {
    font-size: 12px;
    margin-bottom: 15px;
}

.comment-list .comment .comment-metadata a {
    color: var(--text-muted);
    text-decoration: none;
}

.comment-list .comment .comment-metadata a:hover {
    color: var(--accent-color);
}

.comment-list .comment .reply {
    margin-top: 15px;
}

.comment-list .comment .reply a {
    display: inline-block;
    padding: 8px 15px;
    background: var(--accent-soft);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.comment-list .comment .reply a:hover {
    background: var(--accent-color);
    color: #fff;
}

.comment-list .children {
    list-style: none;
    padding-left: 30px;
    margin-top: 15px;
}

.comment-form {
    margin-top: 40px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-soft);
}

.comment-form .submit {
    display: inline-block;
    padding: 14px 25px;
    background: var(--accent-color);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-form .submit:hover {
    background: var(--accent-hover);
}

/* ==========================================
   صفحه تماس با ما
   ========================================== */

.contact-section {
    padding: 100px 0;
    background: var(--bg-color);
    min-height: 80vh;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
}

.success-message {
    background: #2ecc71;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.normal-form, .anonymous-form-container {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.normal-form h3, .anonymous-form-container h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-color);
}

.form-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.normal-form input, 
.normal-form textarea,
.anonymous-form-container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.normal-form input::placeholder, 
.normal-form textarea::placeholder,
.anonymous-form-container textarea::placeholder {
    color: var(--text-muted);
}

.normal-form input:focus, 
.normal-form textarea:focus,
.anonymous-form-container textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-soft);
}

.normal-form textarea, 
.anonymous-form-container textarea {
    min-height: 150px;
    resize: vertical;
}

.normal-form .btn, 
.anonymous-form-container .btn {
    width: 100%;
    text-align: center;
}

/* ==========================================
   صفحه درباره من
   ========================================== */

.about-page-section {
    padding: 100px 0;
    background: var(--bg-color);
    min-height: 80vh;
}

.about-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-soft);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-color);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-profile-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

.profile-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.profile-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.profile-info strong {
    color: var(--text-color);
}

.profile-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.profile-links .btn {
    width: 100%;
    text-align: center;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-stat {
    text-align: center;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
}

.about-stat h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.about-stat span {
    font-size: 12px;
    color: var(--text-muted);
}

.about-timeline-section {
    margin-bottom: 80px;
}

.timeline-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -46px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
}

.timeline-date {
    display: inline-block;
    padding: 5px 10px;
    background: var(--accent-soft);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================================
   بخش خدمات در صفحه درباره من
   ========================================== */

.about-services-section {
    margin-bottom: 80px;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-service-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.5s;
}

.about-service-card:hover .about-service-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.about-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.about-service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================================
   بخش تخصص‌ها و مهارت‌ها در صفحه درباره من
   ========================================== */

.about-skills-section {
    margin-bottom: 80px;
}

.about-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-category {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

.skill-category h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags span {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-soft);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.skill-tags span:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================
   صفحه تحلیل روز (Analysis Page)
   ========================================== */

.analysis-page-section {
    padding: 100px 0;
    background: var(--bg-color);
    min-height: 80vh;
}

.analysis-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.analysis-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-soft);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.analysis-page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.analysis-page-desc {
    font-size: 18px;
    color: var(--text-muted);
}

.analysis-dashboard {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 80px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-header h2 {
    font-size: 24px;
    font-weight: 800;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50px;
    color: #4CAF50;
    font-size: 13px;
    font-weight: 700;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.dashboard-card .card-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.dashboard-card .card-price {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.dashboard-card .card-change {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-card .card-change.up {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.dashboard-card .card-change.down {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.dashboard-analysis {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.dashboard-analysis h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.dashboard-analysis p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.analysis-list-section {
    margin-bottom: 80px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.list-header h2 {
    font-size: 32px;
    font-weight: 900;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.analysis-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.analysis-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.analysis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.analysis-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.analysis-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.analysis-card:hover .analysis-thumb img {
    transform: scale(1.1);
}

.analysis-info {
    padding: 25px;
}

.analysis-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
}

.analysis-date {
    color: var(--text-muted);
}

.analysis-category {
    padding: 3px 10px;
    background: var(--accent-soft);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 700;
}

.analysis-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.analysis-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==========================================
   بخش ارتباط مستقیم و محرمانه
   ========================================== */

.anonymous-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
}

.anonymous-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.anonymous-card:hover {
    border-color: rgba(42, 179, 177, 0.3);
}

.anonymous-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.5s;
}

.anonymous-card:hover .anonymous-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(-10deg) scale(1.1);
}

.anonymous-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.anonymous-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.8;
}

.anonymous-form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.anonymous-form textarea {
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.8;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
}

.anonymous-form textarea::placeholder {
    color: var(--text-muted);
}

.anonymous-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-soft);
}

.anonymous-form .btn {
    align-self: center;
    width: auto;
    padding: 15px 40px;
    box-shadow: 0 0 30px var(--accent-glow);
}

.anonymous-form .btn:hover {
    box-shadow: 0 0 50px rgba(42, 179, 177, 0.7);
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.trust-icon {
    font-size: 16px;
}

.anonymous-security-note {
    max-width: 550px;
    margin: 30px auto 0;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: right;
}

.anonymous-security-note h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.anonymous-security-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.anonymous-security-note li {
    position: relative;
    padding-right: 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.anonymous-security-note li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* ==========================================
   استایل‌های جدید: منوی موبایل، نوار پیشرفت،
   دکمه بازگشت به بالا، Skeleton، Breadcrumb
   ========================================== */

.skeleton-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 50px;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb-separator {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 11px;
}

.breadcrumb-current {
    color: var(--text-color);
    font-weight: 600;
}

.reading-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1001;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color), #7FD9D7);
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-glow);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--surface-color);
    border-left: 1px solid var(--border-color);
    padding: 80px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
    direction: rtl;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu li a {
    display: block;
    padding: 14px 18px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    border-right: 3px solid transparent;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a,
.mobile-nav-menu li.current_page_item a {
    background: var(--accent-soft);
    color: var(--accent-color);
    border-right-color: var(--accent-color);
}

.mobile-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

body.menu-open {
    overflow: hidden;
}

/* ==========================================
   ریسپانسیو نهایی
   ========================================== */

@media (max-width: 992px) {
    .latest-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-layout, .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        position: static;
        order: 2;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analysis-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .latest-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-posts-more {
        margin-top: 30px;
    }
    
    .latest-posts-more .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-section {
        height: 75vh;
        padding-top: 80px;
        align-items: flex-start;
        text-align: center;
    }

    .hero-slider-img {
        object-position: center right;
        object-fit: cover;
    }

    .hero-section::before {
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.95) 100%);
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        margin-top: 30px;
    }

    .hero-section h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    
    .hero-section .subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-logo-col {
        justify-content: center;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
    }
    
    .anonymous-section h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .logo-text {
        display: none;
    }
    
    .custom-logo-img {
        height: 48px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .blog-page-title {
        font-size: 36px;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-page-section .container,
    .single-post-section .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .comment-list .comment {
        padding: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .normal-form, .anonymous-form-container {
        padding: 30px;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .about-stat {
        width: calc(50% - 10px);
        padding: 15px;
    }
    
    .about-timeline {
        padding-left: 30px;
    }
    
    .about-timeline::before {
        left: 0;
    }
    
    .timeline-dot {
        left: -36px;
    }
    
    .analysis-page-title {
        font-size: 36px;
    }
    
    .analysis-dashboard {
        padding: 25px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-list {
        grid-template-columns: 1fr;
    }
    
    .list-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
    }
    
    .anonymous-section {
        padding: 80px 0;
    }
    
    .anonymous-card {
        padding: 40px 25px;
    }
    
    .anonymous-form .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-list .comment {
        padding: 15px;
    }
    
    .comment-list .children {
        padding-left: 15px;
    }
    
    .main-nav,
    .header-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-inner {
        justify-content: space-between;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        left: 20px;
    }

    .breadcrumb {
        font-size: 12px;
        padding: 15px 0;
        margin-bottom: 20px;
    }

    .reading-progress-container {
        height: 2px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-skills-grid {
        grid-template-columns: 1fr;
    }
}