/* Enhanced Blog CSS with New Luxury Color Palette & Animations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal-black: #121212;
    --off-white: #F5F5F5;
    --bullione-gold: #D4AF37;
    --emerald-green: #004D00;
    --terracotta: #A65E46;
    --primary-color: #D4AF37;
    --primary-dark: #B8941F;
    --secondary-color: #121212;
    --accent-gold: #D4AF37;
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --bg-light: #1a1a1a;
    --bg-lighter: #2a2a2a;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E6C158 100%);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-glow: rgba(212, 175, 55, 0.3);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--charcoal-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.3;
}

/* Enhanced Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    position: relative;
}

.loader-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

.loader-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with Enhanced Animations */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow-glow), 0 8px 32px rgba(0, 0, 0, 0.2);
    border-bottom-color: var(--primary-color);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Enhanced Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.brand-logo:hover::before {
    left: 100%;
}

.brand-logo:hover {
    color: var(--primary-color);
    transform: scale(1.05) translateY(-2px);
}

.brand-logo_icon {
    margin-right: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--primary-color);
}

.brand-logo:hover .brand-logo_icon {
    transform: rotate(360deg) scale(1.1);
    color: var(--accent-gold);
}

/* Enhanced Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(212, 175, 55, 0.05);
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
        color: var(--text-primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-color);
        transform: translateX(10px);
    }
    
    .header-content .btn {
        display: none;
    }
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Buttons */
.btn {
    background: var(--gradient-primary);
    color: #121212;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #121212;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* WhatsApp Yellow Button Override */
.whatsapp-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%) !important;
    color: #121212 !important;
    border: none !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #B8941F 0%, #9C7A17 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3) !important;
}

/* Enhanced Blog Hero Section */
.blog-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--charcoal-black);
    padding: 8rem 0 4rem;
}

.blog-hero .hero-bg-particles {
    background-image: 
        radial-gradient(3px 3px at 30px 50px, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(2px 2px at 60px 90px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 200px 120px, rgba(212, 175, 55, 0.2), transparent);
    background-size: 150px 150px;
    animation: particleFloat 25s linear infinite, particleGlow 8s ease-in-out infinite alternate;
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.blog-hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: wordReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    50% {
        opacity: 0.5;
        transform: translateY(25px) rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Enhanced Stats Animation */
.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.blog-hero-stats .stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: statsReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    position: relative;
}

@keyframes statsReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-hero-search {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.search-form {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(42, 42, 42, 1);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

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

.search-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.search-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: floatUpDown 15s linear infinite;
    opacity: 0;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 40px;
    height: 40px;
}

.float-item:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: -5s;
    border-color: rgba(212, 175, 55, 0.15);
}

.float-item:nth-child(3) {
    top: 40%;
    left: 15%;
    animation-delay: -10s;
    width: 30px;
    height: 30px;
}

.float-item:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: -7s;
    border-color: rgba(212, 175, 55, 0.25);
    width: 50px;
    height: 50px;
}

@keyframes floatUpDown {
    0% { 
        transform: translateY(100vh) rotate(0deg) scale(0); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
        transform: translateY(90vh) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-10vh) rotate(324deg) scale(1); 
    }
    100% { 
        transform: translateY(-20vh) rotate(360deg) scale(0); 
        opacity: 0; 
    }
}

/* Section Animations */
.section-animate {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

/* Blog Content Section - FIXED FOR MOBILE */
.blog-content {
    padding: 4rem 0;
    background: var(--bg-light);
    position: relative;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Featured Post */
.featured-post {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.featured-post:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--border-glow);
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95) rotateX(30deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

.featured-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.post-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, rgba(212, 175, 55, 0.4) 100%);
    border-radius: 0;
}

.post-image-placeholder.small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: #121212;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-category {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date, .post-read-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-date::before {
    content: '•';
    margin-right: 0.5rem;
}

.post-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-read-more {
    background: var(--gradient-primary);
    color: #121212;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-post {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: cardReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.blog-post:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--border-glow);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: 1.5rem;
}

.post-content .post-meta {
    margin-bottom: 0.8rem;
}

.post-content .post-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-content .post-excerpt {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.post-content .post-read-more {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-content .post-read-more:hover {
    transform: translateX(5px);
    box-shadow: none;
    gap: 0.8rem;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.pagination-prev, .pagination-next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-prev:hover, .pagination-next:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
}

.pagination-number.active {
    background: var(--gradient-primary);
    color: #121212;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pagination-ellipsis {
    color: var(--text-secondary);
    padding: 0 0.5rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.widget-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.widget-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Categories Widget */
.categories-list {
    list-style: none;
}

.category-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--text-primary);
}

.category-link:hover .category-name {
    transform: translateX(5px);
}

.category-name {
    transition: transform 0.3s ease;
}

.category-count {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* Newsletter Widget */
.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: #121212;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.newsletter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
}

.newsletter-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.newsletter-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.newsletter-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
    font-weight: 600;
}

.recent-post-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.tag:hover {
    background: var(--primary-color);
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.newsletter-header {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.newsletter-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.newsletter-input-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 60px;
    padding: 8px 8px 8px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.newsletter-input-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.newsletter-input-group:focus-within::before {
    left: 100%;
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    background: rgba(42, 42, 42, 1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
    transition: opacity 0.3s ease;
}

.newsletter-input:focus::placeholder {
    opacity: 0.5;
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: #121212;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.newsletter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.newsletter-btn:active {
    transform: scale(0.95);
}

.newsletter-privacy {
    margin-top: 1rem;
    text-align: center;
}

.newsletter-privacy p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-feature:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.feature-icon-small {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.newsletter-feature:hover .feature-icon-small {
    background: var(--primary-color);
    color: #121212;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #121212;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #121212;
}

/* Live Chat Widget - WhatsApp Theme */
.live-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseWhatsApp 2s infinite;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(212, 175, 55, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
}

.chat-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #121212;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: #121212;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(18, 18, 18, 0.2);
}

.chat-messages {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--gradient-primary);
}

.message-content {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 18px;
    max-width: 80%;
}

.user-message .message-content {
    background: var(--gradient-primary);
    color: #121212;
}

.message-content p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
}

.quick-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-option {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-option:hover {
    background: var(--primary-color);
    color: #121212;
}

.chat-input-area {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: rgba(42, 42, 42, 0.8);
    color: var(--text-primary);
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.chat-send {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    border: none;
    color: #121212;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 0 0 20px 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-lighter);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Responsive Design - FIXED FOR MOBILE */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        position: static;
        order: 2;
    }
    
    .blog-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .blog-content {
        padding: 2rem 0 !important;
        background: #121212 !important;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .blog-post {
        background: rgba(42, 42, 42, 0.95) !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
        margin-bottom: 1rem !important;
    }
    
    .featured-post-content {
        padding: 2rem 1.5rem;
    }
    
    .post-title {
        font-size: 1.6rem;
    }
    
    .blog-pagination {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .pagination-numbers {
        order: 2;
    }
    
    .pagination-prev {
        order: 1;
    }
    
    .pagination-next {
        order: 3;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .chat-popup {
        width: 300px;
        right: -50px;
    }
    
    .quick-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        min-height: 50vh;
        padding: 5rem 0 2rem;
    }
    
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .blog-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .blog-content {
        padding: 2rem 0 !important;
    }
    
    .featured-post-image {
        height: 200px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .post-date::before {
        display: none;
    }
    
    .post-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .tags-cloud {
        justify-content: center;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .search-input {
        width: 100%;
        text-align: center;
    }
    
    .search-btn {
        width: 100%;
        border-radius: 25px;
        height: auto;
        padding: 0.8rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .chat-popup {
        width: 280px;
        right: -30px;
    }
}

/* Print Styles */
@media print {
    .blog-hero,
    .blog-content {
        background: white !important;
        color: black !important;
    }
    
    .blog-hero-title,
    .widget-title,
    .post-title,
    .recent-post-title {
        color: #D4AF37 !important;
        -webkit-text-fill-color: #D4AF37 !important;
    }
    
    .text-primary {
        color: black !important;
    }
    
    .text-secondary {
        color: #666 !important;
    }
    
    .featured-post,
    .blog-post,
    .sidebar-widget {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .live-chat-widget {
        display: none;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .blog-hero .hero-bg-particles {
        animation: none;
    }
    
    .floating-elements {
        display: none;
    }
    
    .chat-toggle {
        animation: none;
    }
}
/* Mobile Visibility Fixes */
@media (max-width: 768px) {
    .blog-content {
        padding: 3rem 0 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .blog-layout {
        gap: 2rem !important;
        display: flex !important;
        flex-direction: column;
    }
    
    .blog-main, .blog-sidebar {
        opacity: 1 !important;
        transform: translateY(0) !important;
        width: 100% !important;
    }
    
    .blog-posts-grid {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem !important;
        opacity: 1 !important;
    }
    
    .blog-post {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        animation: none !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .featured-post {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        animation: none !important;
        margin-bottom: 2rem !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .sidebar-widget {
        opacity: 1 !important;
        transform: translateX(0) !important;
        animation: none !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .post-image-placeholder {
        min-height: 200px !important;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, rgba(212, 175, 55, 0.4) 100%) !important;
    }
    
    .post-content {
        padding: 1.5rem !important;
        background: rgba(42, 42, 42, 0.9) !important;
    }
    
    .post-title, .post-excerpt, .post-meta {
        color: var(--text-primary) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure all text is visible */
    .blog-post * {
        opacity: 1 !important;
        visibility: visible !important;
        color: inherit !important;
    }
    
    .featured-post-content {
        padding: 2rem 1.5rem !important;
        background: rgba(42, 42, 42, 0.9) !important;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        min-height: 60vh !important;
        padding: 6rem 0 2rem !important;
    }
    
    .blog-content {
        padding: 2rem 0 !important;
    }
    
    .blog-post {
        margin-bottom: 1.5rem !important;
    }
    
    .featured-post {
        margin-bottom: 2.5rem !important;
    }
    
    .post-image {
        height: 180px !important;
    }
    
    .featured-post-image {
        height: 220px !important;
    }
}