/*===========================================*/
/* ZYNKRO HOST BLOG - MASTER STYLESHEET     */
/* এখানে কালার চেঞ্জ করলে সব পেজে আপডেট হবে  */
/*===========================================*/

:root {
    /* ===== MAIN COLORS (এখানে চেঞ্জ করুন) ===== */
    --primary-red: #FF003F;
    --primary-red-hover: #e60039;
    --primary-blue: #1a4a8a;
    --primary-dark: #0d2a5a;
    
    /* ===== TEXT COLORS ===== */
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    
    /* ===== BACKGROUND COLORS ===== */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-hero: linear-gradient(135deg, #0a0a1a 0%, #1a2a5a 50%, #0d2a5a 100%);
    
    /* ===== BORDER & SHADOW ===== */
    --gray-border: #e9ecef;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    
    /* ===== BORDER RADIUS ===== */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* ===== TRANSITION ===== */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================== */
/* TOP HEADER                                  */
/* =========================================== */
.top-header {
    background: var(--primary-red);
    padding: 10px 0;
    font-size: 13px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info,
.top-header-right {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a,
.top-header-right a {
    color: var(--text-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 13px;
}

.contact-info a:hover,
.top-header-right a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* =========================================== */
/* MAIN HEADER                                 */
/* =========================================== */
.main-header {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    max-height: 45px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Poppins', 'Inter', sans-serif;
}

.logo-text span {
    color: var(--primary-red);
}

/* Desktop Navigation */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.desktop-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 8px 0;
}

.desktop-menu li a:hover {
    color: var(--primary-red);
}

.desktop-menu li a.active {
    color: var(--primary-red);
    font-weight: 700;
}

/* Offer Link */
.offer-link {
    background: var(--primary-red) !important;
    color: var(--text-white) !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-full) !important;
    font-size: 13px !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 63, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 63, 0);
    }
}

/* =========================================== */
/* MOBILE MENU                                 */
/* =========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 2000;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-border);
}

.mobile-logo .logo-text {
    font-size: 20px;
}

.mobile-menu-close {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--gray-border);
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-menu li a i {
    width: 24px;
    color: var(--primary-red);
}

.mobile-nav-menu li a:hover {
    background: rgba(255, 0, 63, 0.05);
    color: var(--primary-red);
}

.mobile-offer-link {
    background: var(--primary-red) !important;
    color: var(--text-white) !important;
}

.mobile-offer-link i {
    color: var(--text-white) !important;
}

.mobile-menu-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-border);
}

.mobile-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
}

.mobile-contact a:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.menu-overlay.show {
    display: block;
}

/* =========================================== */
/* BREADCRUMB                                  */
/* =========================================== */
.breadcrumb-area {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #adb5bd;
}

.breadcrumb strong {
    color: var(--text-dark);
}

/* =========================================== */
/* HERO SECTION                                */
/* =========================================== */
.blog-hero {
    background: var(--bg-hero);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 63, 0.08) 0%, transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 63, 0.15);
    color: #ff6b8a;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 63, 0.2);
}

.hero-badge i {
    margin-right: 6px;
    color: #ff6b8a;
}

.blog-hero h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 18px;
}

.blog-hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-red), #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    color: #b0bec5;
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================================== */
/* MAIN LAYOUT                                 */
/* =========================================== */
.main-container {
    padding: 50px 0;
}

.row-layout {
    display: flex;
    gap: 35px;
}

.content-area {
    flex: 1;
    min-width: 0;
}

/* =========================================== */
/* POST LIST CARD (হোমপেজের জন্য)              */
/* =========================================== */
.post-list-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    display: flex;
    gap: 25px;
}

.post-list-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-red);
}

.post-thumbnail {
    width: 280px;
    height: 190px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e0e7ff, #f0f4ff);
}

.post-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-list-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-category {
    display: inline-block;
    background: rgba(255, 0, 63, 0.1);
    color: var(--primary-red);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: none;
    width: fit-content;
    transition: var(--transition);
}

.post-category:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

.post-list-card h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post-list-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.post-list-card h2 a:hover {
    color: var(--primary-red);
}

.post-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: var(--primary-red);
    font-size: 13px;
}

/* =========================================== */
/* PAGINATION                                  */
/* =========================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    padding: 0 12px;
}

.pagination a {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--gray-border);
}

.pagination a:hover {
    background: var(--primary-red);
    color: var(--text-white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.pagination .current {
    background: var(--primary-red);
    color: var(--text-white);
    border: 2px solid var(--primary-red);
}

/* =========================================== */
/* SIDEBAR                                     */
/* =========================================== */
.sidebar {
    width: 340px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
}

.sidebar-widget h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(255, 0, 63, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 i {
    color: var(--primary-red);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-widget ul li a i {
    color: var(--primary-red);
    font-size: 10px;
    transition: var(--transition);
}

.sidebar-widget ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.sidebar-widget ul li a:hover i {
    transform: translateX(3px);
}

/* CTA Widget */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.sidebar-cta h4 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 10px;
    border: none;
    padding-bottom: 0;
    justify-content: center;
}

.sidebar-cta p {
    color: #b0c4de;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
}

.price-highlight {
    color: #ff6b8a;
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin: 8px 0;
}

.sidebar-cta-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    margin-top: 10px;
}

.sidebar-cta-btn:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 63, 0.4);
}

/* =========================================== */
/* SINGLE POST STYLES                          */
/* =========================================== */
.single-post-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.single-post-card .post-category {
    margin-bottom: 15px;
}

.single-post-card h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 15px;
}

.post-meta-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-border);
}

.post-meta-row span {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta-row i {
    color: var(--primary-red);
}

.post-featured-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.post-content {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
}

.post-content h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 0, 63, 0.15);
}

.post-content h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 12px;
}

.post-content p {
    margin-bottom: 16px;
}

.post-content ul,
.post-content ol {
    margin: 12px 0 12px 25px;
}

.post-content li {
    margin-bottom: 8px;
}

/* Intro Box */
.post-intro-box {
    background: linear-gradient(135deg, rgba(26, 74, 138, 0.05), rgba(255, 0, 63, 0.05));
    padding: 20px 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-red);
    margin-bottom: 25px;
    font-size: 15px;
    color: var(--text-light);
}

.post-intro-box i {
    color: var(--primary-red);
    margin-right: 8px;
    font-size: 18px;
}

.post-intro-box strong {
    color: var(--primary-blue);
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.feature-tag {
    background: rgba(26, 74, 138, 0.05);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(26, 74, 138, 0.1);
}

.feature-tag i {
    color: #28a745;
    font-size: 11px;
}

.price-info {
    background: linear-gradient(135deg, rgba(255, 0, 63, 0.05), rgba(255, 0, 63, 0.02));
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    font-size: 16px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 45px 40px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 350px;
    height: 350px;
    background: rgba(255, 0, 63, 0.08);
    border-radius: 50%;
}

.cta-box h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    color: #b0c4de;
    margin-bottom: 25px;
    font-size: 16px;
    position: relative;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: var(--radius-full);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
}

.cta-btn:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 0, 63, 0.4);
}

.cta-btn i {
    animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-border);
}

.share-buttons span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
    margin-right: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.share-btn.fb {
    background: #1877f2;
}

.share-btn.tw {
    background: #1da1f2;
}

.share-btn.wa {
    background: #25d366;
}

.share-btn.li {
    background: #0a66c2;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================== */
/* WHATSAPP FLOAT                              */
/* =========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* =========================================== */
/* BACK TO TOP                                 */
/* =========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 0, 63, 0.3);
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary-red-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 0, 63, 0.5);
}

/* =========================================== */
/* FOOTER                                      */
/* =========================================== */
.blog-footer {
    background: var(--primary-dark);
    color: #b0c4de;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.blog-footer a {
    color: #ff6b8a;
    text-decoration: none;
    transition: var(--transition);
}

.blog-footer a:hover {
    text-decoration: underline;
}

/* =========================================== */
/* RESPONSIVE                                  */
/* =========================================== */
@media (max-width: 992px) {
    .top-header {
        display: none;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .row-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .post-list-card {
        flex-direction: column;
    }

    .post-thumbnail {
        width: 100%;
        height: 200px;
    }

    .single-post-card h1 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 0;
    }

    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-hero p {
        font-size: 14px;
    }

    .main-container {
        padding: 30px 0;
    }

    .single-post-card {
        padding: 25px 15px;
    }

    .single-post-card h1 {
        font-size: 22px;
    }

    .post-content h2 {
        font-size: 20px;
    }

    .post-content h3 {
        font-size: 17px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 22px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-drawer {
        width: 100%;
    }

    .blog-hero h1 {
        font-size: 24px;
    }

    .post-meta {
        gap: 10px;
    }

    .post-meta-row {
        gap: 10px;
    }

    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}