/* Single Blog Post CSS - LuxeTravel Theme */
:root {
    --primary-dark: #0a1438;
    --secondary-dark: #2a2f3e;
    --accent-gold: #fa7e5d;
    --accent-gold-light: #e69257;
    --accent-gold-dark: #b8941f;
    --text-light: #ffffff;
    --text-dark: #045ba4;
    --text-gray: #6c757d;
    --text-muted: #8e9aaf;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-overlay: rgba(26, 29, 41, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --border-dark: rgba(26, 29, 41, 0.1);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 12px 40px rgba(212, 123, 55, 0.4);;
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 29, 41, 0.9) 0%, rgba(42, 47, 62, 0.7) 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* Breadcrumb Section */
.breadcrumb-section {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 25px;
    margin: 0;
    display: inline-block;
}

.breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    margin: 0 8px;
}

/* Blog Single Content Section */
.blog-single-content {
    background: var(--bg-light);
}

/* Post Header */
.blog-single-post {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-dark);
    margin-bottom: 40px;
}

.post-header {
    padding: 40px 50px 30px;
    border-bottom: 1px solid var(--border-dark);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.post-category {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gradient-gold);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date,
.reading-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.post-date i,
.reading-time i {
    color: var(--accent-gold);
    font-size: 16px;
}

.post-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/*.post-author-info {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*    padding: 20px 0;*/
/*}*/

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.author-title {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.post-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Featured Image */
.post-featured-image {
    position: relative;
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-light);
    padding: 40px 30px 20px;
    border-radius: 0 0 25px 25px;
}

.image-caption p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* Post Content */
.post-content {
    padding: 0 50px 50px;
}

.content-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-dark);
}

.content-intro .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.post-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 50px 0 25px 0;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 25px;
}

.post-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.post-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 35px 0 20px 0;
    font-family: 'Playfair Display', serif;
}

.post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 0.1rem;
}

.post-content p + p {
    margin-top: 0.2rem; /* Space between consecutive paragraphs */
}

/* Remove extra space from empty paragraphs Quill might create */
.post-content p:empty {
    margin: 0;
    display: none;
}

/* List items should be dark by default */
.post-content ul,
.post-content ol {
    color: #2c3e50;
}

.post-content ul li,
.post-content ol li {
    color: #2f3030;
    line-height: 1.8;
}

/* Force bullet markers to inherit text color */
.post-content ul li::marker,
.post-content ol li::marker {
    color: inherit;
}

/* Override only if user sets specific color in Quill */
.post-content [style*="color: rgb"] {
    /* Color will be from inline style */
}

.post-content [style*="color: rgb"] li {
    color: inherit;
}

.styled-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.styled-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: var(--gradient-gold);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.numbered-list {
    margin: 25px 0;
    padding-left: 25px;
}

.numbered-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 10px;
}

.numbered-list li::marker {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Content Highlight Box */
.content-highlight {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.content-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.8" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.highlight-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.highlight-icon i {
    font-size: 3rem;
    color: var(--accent-gold);
}

.content-highlight blockquote {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
}

.content-highlight cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Info and Warning Boxes */
.info-box,
.warning-box {
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid;
}

.info-box {
    background: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
}

.warning-box {
    background: rgba(241, 196, 15, 0.1);
    border-left-color: #f1c40f;
}

.info-box h4,
.warning-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.info-box h4 i {
    color: #3498db;
}

.warning-box h4 i {
    color: #f1c40f;
}

.info-box p,
.warning-box p {
    margin: 0;
    color: var(--text-dark);
}

/* Content Gallery */
.content-gallery {
    margin: 40px 0;
}

.content-gallery h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.content-gallery img {
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.content-gallery img:hover {
    transform: scale(1.05);
}

.gallery-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Cost List */
.cost-list {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid var(--border-dark);
}

.cost-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cost-list li:last-child {
    border-bottom: none;
}

.cost-list li::before {
    content: '$';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.tip-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tip-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.tip-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.tip-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: var(--gradient-gold);
    color: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--text-light);
}

.btn-premium-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--text-light);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-premium-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--accent-gold);
}

/* Post Footer */
.post-footer {
    padding: 40px 50px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-tags h6,
.post-sharing h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-item:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    border-color: var(--accent-gold);
}

.sharing-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.pinterest {
    background: #bd081c;
}

.share-btn.email {
    background: var(--accent-gold);
}

/* Author Bio */
.author-bio {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
    border: 1px solid var(--border-dark);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.author-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 15px;
}

.author-right {
    flex: 1;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-gold);
    flex-shrink: 0;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.author-title {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.author-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .author-left {
        align-items: center;
    }
    
    .author-right {
        text-align: left;
    }
}

/* Comments Section */
.comments-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid var(--border-dark);
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* Comment Form */
.comment-form-wrapper {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid var(--border-dark);
}

.comment-form-wrapper h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.comment-form .form-control {
    background: var(--bg-white);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.comment-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.comment-form .form-control::placeholder {
    color: var(--text-gray);
}

.comment-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.comment-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comment-item .comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    flex-shrink: 0;
}

.comment-item .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.comment-header .comment-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.comment-date {
    font-size: 12px;
    color: var(--text-gray);
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-action-btn:hover {
    color: var(--accent-gold);
}

/* Related Posts */
.related-posts {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid var(--border-dark);
}

.related-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.related-post-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 20px;
}

.related-post-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-gold);
    color: var(--text-light);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.related-post-content h6 {
    margin-bottom: 10px;
}

.related-post-content h6 a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-post-content h6 a:hover {
    color: var(--accent-gold);
}

.related-post-date {
    font-size: 12px;
    color: var(--text-gray);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Search Widget */
.search-widget .search-form .input-group {
    border: 1px solid var(--border-dark);
    border-radius: 25px;
    overflow: hidden;
    background: var(--bg-light);
}

.search-widget .form-control {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.search-widget .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.search-widget .btn-search {
    background: var(--gradient-gold);
    border: none;
    color: var(--text-light);
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.search-widget .btn-search:hover {
    background: var(--accent-gold-dark);
    transform: scale(1.05);
}

/* Table of Contents Widget */
.toc-widget .toc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-item {
    display: block;
    padding: 12px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 40px;
}

.toc-item::before {
    content: '▶';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 12px;
}

.toc-item:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.toc-item:hover::before {
    color: var(--text-light);
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 9px;
    border-bottom: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.recent-post-item:last-child {
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 9px;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
}

.recent-post-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 8px;
}

.recent-post-content h6 a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}



.recent-post-date {
    font-size: 12px;
    color: #9fa9b1;
}

/* Newsletter Widget */
.newsletter-widget .newsletter-content {
    text-align: center;
}

.newsletter-widget .newsletter-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-widget .newsletter-form .form-control {
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.newsletter-widget .newsletter-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.newsletter-widget .newsletter-form .form-control::placeholder {
    color: var(--text-gray);
}

/* Responsive Design for Single Blog */
@media (max-width: 992px) {
    .post-header {
        padding: 30px 40px 25px;
    }
    
    .post-content {
        padding: 0 40px 40px;
    }
    
    .post-footer {
        padding: 30px 40px;
    }
    
    .author-bio {
        padding: 30px;
    }
    
    .comments-section {
        padding: 30px;
    }
    
    .related-posts {
        padding: 30px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .post-author-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .post-actions {
        align-self: flex-end;
    }
    
    .post-header {
        padding: 25px 30px 20px;
    }
    
    .post-content {
        padding: 0 30px 30px;
    }
    
    .post-footer {
        padding: 25px 30px;
    }
    
    .post-content h2 {
        font-size: 1.8rem;
        padding-left: 20px;
    }
    
    .post-content h2::before {
        height: 30px;
    }
    
    .post-content h3 {
        font-size: 1.4rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .author-bio {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .author-bio .author-info {
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .comments-section {
        padding: 25px;
    }
    
    .comment-form-wrapper {
        padding: 25px;
    }
    
    .comment-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .related-posts {
        padding: 25px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .sharing-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 120px 0 30px;
    }
    
    .breadcrumb {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .image-caption {
        padding: 20px 15px 10px;
    }
    
    .image-caption p {
        font-size: 12px;
    }
    
    .post-header {
        padding: 20px 25px 15px;
    }
    
    .post-content {
        padding: 0 25px 25px;
    }
    
    .post-footer {
        padding: 20px 25px;
    }
    
    .content-intro .lead {
        font-size: 1.1rem;
    }
    
    .post-content h2 {
        font-size: 1.6rem;
        margin: 30px 0 20px 0;
        padding-left: 15px;
    }
    
    .post-content h2::before {
        height: 25px;
        width: 4px;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
        margin: 25px 0 15px 0;
    }
    
    .post-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .styled-list li,
    .numbered-list li {
        font-size: 1rem;
    }
    
    .content-highlight {
        padding: 25px;
        margin: 25px 0;
    }
    
    .content-highlight blockquote {
        font-size: 1.1rem;
    }
    
    .info-box,
    .warning-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .cost-list {
        padding: 20px;
        margin: 20px 0;
    }
    
    .tips-grid {
        margin: 25px 0;
    }
    
    .tip-item {
        padding: 20px;
    }
    
    .tip-item i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .tip-item h5 {
        font-size: 1.1rem;
    }
    
    .cta-box {
        padding: 25px;
        margin: 25px 0;
    }
    
    .cta-box h4 {
        font-size: 1.4rem;
    }
    
    .post-tags h6,
    .post-sharing h6 {
        font-size: 1rem;
    }
    
    .tags-list {
        justify-content: center;
    }
    
    .author-bio {
        padding: 20px;
    }
    
    .author-info .author-name {
        font-size: 1.2rem;
    }
    
    .comments-section {
        padding: 20px;
    }
    
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-form-wrapper {
        padding: 20px;
    }
    
    .comment-form-wrapper h5 {
        font-size: 1.1rem;
    }
    
    .comment-item {
        padding: 20px;
    }
    
    .related-posts {
        padding: 20px;
    }
    
    .related-title {
        font-size: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .widget-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .recent-post-item {
        gap: 10px;
    }
    
    .recent-post-image {
        width: 60px;
        height: 60px;
    }
    
    .recent-post-content h6 {
        font-size: 13px;
    }
    
    .toc-item {
        padding: 10px 12px;
        padding-left: 35px;
        font-size: 13px;
    }
    
    .toc-item::before {
        left: 12px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .sharing-buttons {
        gap: 8px;
    }
}

/* Print Styles */
@media print {
    .breadcrumb-section,
    .post-actions,
    .sharing-buttons,
    .comments-section,
    .blog-sidebar,
    .related-posts {
        display: none !important;
    }
    
    .post-content {
        padding: 0 !important;
    }
    
    .post-header {
        padding: 20px 0 !important;
        border-bottom: 2px solid #000;
    }
    
    .post-footer {
        padding: 20px 0 !important;
        border-top: 1px solid #000;
    }
    
    .author-bio {
        padding: 20px 0 !important;
        border: 1px solid #000;
    }
    
    body {
        color: #000 !important;
        background: #fff !important;
    }
    
    .post-title {
        color: #000 !important;
    }
    
    .post-content h2,
    .post-content h3 {
        color: #000 !important;
    }
    
    .blog-single-post {
        box-shadow: none !important;
        border: none !important;
    }
}

/* Focus Styles for Accessibility */
.action-btn:focus,
.comment-action-btn:focus,
.social-link:focus,
.share-btn:focus,
.tag-item:focus,
.toc-item:focus,
.recent-post-content a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Categories Widget */
.categories-widget .categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.category-name {
    flex: 1;
}

.category-count {
    background: var(--accent-gold);
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.category-link:hover .category-count {
    background: var(--text-light);
    color: var(--accent-gold);
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    padding: 6px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.tag-item:hover {
    background: var(--accent-gold);
    color: var(--text-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Social Media Widget */
.social-links-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-widget {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-link-widget i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 16px;
}

.social-link-widget.facebook i {
    background: #3b5998;
}

.social-link-widget.twitter i {
    background: #1da1f2;
}

.social-link-widget.instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-widget.linkedin i {
    background: #0077b5;
}

.social-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.social-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 2px;
}

.social-followers {
    font-size: 12px;
    color: #9fa9b1;
}

.social-link-widget:hover .social-name {
    color: var(--accent-gold);
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .blog-single-post {
        background: #ffffff;
        color: #363636;
    }
    
    .post-content h2,
    .post-content h3,
    .post-title {
        color: #000;
    }
    
    .sidebar-widget {
        background: #ffffff;
        border-color: #ffffff00;
    }
    
    .comment-item {
        background: #fff;
        border-color: var(--border-dark);
    }
    
    .category-link,
    .toc-item,
    .recent-post-item,
    .social-link-widget {
        background: #053965;
        border-color: #333;
        color: #e5e5e5;
    }
    
    .category-link:hover,
    .toc-item:hover {
        background: var(--accent-gold);
        color: var(--text-light);
    }
    
    /* Image Styling in Blog Content */
.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Center align images */
.post-content figure,
.post-content .wp-block-image {
    text-align: center;
    margin: 30px 0;
}

/* Image captions */
.post-content figcaption,
.post-content .wp-caption-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Paragraphs with images */
.post-content p img {
    margin: 20px auto;
    display: block;
}

/* Multiple images in a row */
.post-content .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.post-content .image-gallery img {
    flex: 1 1 calc(50% - 15px);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-content img {
        margin: 20px auto;
    }
    
    .post-content .image-gallery img {
        flex: 1 1 100%;
    }
}

/* Image hover effect */
.post-content img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure text doesn't wrap weird around images */
.post-content::after {
    content: "";
    display: table;
    clear: both;
}

}