/* Blog Specific Styles */
        .blog-hero {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-teal) 100%);
            padding: 50px 0 50px;
            position: relative;
            overflow: hidden;
        }
        
        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0 10L10 0L20 10L30 0L40 10L50 0L60 10L70 0L80 10L90 0L100 10V20H0V10Z" fill="rgba(197,149,91,0.1)"/></svg>') repeat-x;
            opacity: 0.3;
        }
        
        .blog-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .blog-badge {
            background: rgba(197, 149, 91, 0.9);
            color: var(--primary-navy);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-block;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }
        
        .blog-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .blog-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .blog-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--rich-gold);
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Blog Card Area */
        .blog-card-area {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 0;
        }

        /* Modern Blog Card */
        .modern-blog-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            transition: all 0.4s ease;
            border: 1px solid rgba(197, 149, 91, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .modern-blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-dramatic);
        }

        .blog-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
            flex-shrink: 0;
        }

        .blog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .modern-blog-card:hover .blog-img {
            transform: scale(1.05);
        }

        .blog-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(28, 50, 92, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

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

        .overlay-content {
            color: white;
            text-align: center;
            font-weight: 600;
        }

        .overlay-content i {
            display: block;
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .blog-content-wrapper {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .blog-card-title a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .blog-date {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 12px;
            background: var(--light-sand);
            border-radius: 8px;
            color: var(--primary-navy);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .blog-date i {
            color: var(--rich-gold);
            font-size: 1.1rem;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .blog-description {
            margin-bottom: 20px;
            flex: 1;
        }

        .blog-description p {
            color: var(--warm-gray);
            line-height: 1.5;
            margin: 0;
            font-size: 0.95rem;
        }

        .blog-footer {
            padding-top: 15px;
            border-top: 1px solid rgba(197, 149, 91, 0.2);
            margin-top: auto;
        }

        .btn-blog {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-gold);
            width: 100%;
            justify-content: center;
        }

        .btn-blog:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(197, 149, 91, 0.4);
            color: var(--primary-navy);
        }

        /* Sidebar Styles */
        .luxury-sidebar {
            background: white;
            border-radius: 20px;
            padding: 0;
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(197, 149, 91, 0.15);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .sidebar-widget {
            padding: 25px;
            border-bottom: 1px solid rgba(197, 149, 91, 0.1);
        }

        .sidebar-widget:last-child {
            border-bottom: none;
        }

        .sidebar-title {
            font-family: 'Playfair Display', serif;
            color: var(--primary-navy);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

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

        /* Search Form */
        .search-form {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 15px;
            border: 2px solid rgba(197, 149, 91, 0.2);
            border-radius: 25px;
            font-size: 0.95rem;
            background: var(--light-sand);
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--rich-gold);
            background: white;
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gradient-gold);
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-navy);
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            transform: translateY(-50%) scale(1.1);
        }

        /* Category Tags */
        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-tag {
            display: inline-block;
            padding: 8px 15px;
            background: rgba(197, 149, 91, 0.1);
            color: var(--primary-navy);
            text-decoration: none;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(197, 149, 91, 0.2);
        }

        .category-tag:hover {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            transform: translateY(-2px);
        }

        /* Popular Articles */
        .popular-article {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(197, 149, 91, 0.1);
            transition: all 0.3s ease;
        }

        .popular-article:last-child {
            border-bottom: none;
        }

        .popular-article:hover {
            background: rgba(197, 149, 91, 0.05);
            margin: 0 -15px;
            padding: 15px;
            border-radius: 10px;
        }

        .popular-img {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .popular-content h4 {
            font-size: 0.95rem;
            color: var(--primary-navy);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .popular-content h4 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .popular-content h4 a:hover {
            color: var(--rich-gold);
        }

        .popular-date {
            font-size: 0.8rem;
            color: var(--warm-gray);
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            gap: 20px;
        }

        .pagination-btn {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-gold);
        }

        .pagination-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(197, 149, 91, 0.4);
            color: var(--primary-navy);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-navy);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(197, 149, 91, 0.3);
            color: var(--primary-navy);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-hero {
                padding: 80px 0 60px;
            }
            
            .blog-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .pagination-wrapper {
                flex-direction: column;
            }
        }