.single-post-container {
    max-width: 900px; /* Increased from 900px */
    margin: 0 auto;
    padding: 120px 0 0 ;
}

.back-to-posts {
    margin: 60px 0;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateX(-3px);
}

.back-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

.single-post {
    background-color: var(--white);
    border-radius: 12px;
    overflow: visible !important; /* Changed from hidden to visible so CTA can show */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    position: relative;
}

/* Ensure CTA section is always visible - now outside article */
.post-cta-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 100px !important;
    background-color: var(--white) !important;
    margin: 20px 0 !important;
}

/* Force button visibility */
.post-cta-section .book-now-cta-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
}

/* Post Header */
.post-header {
    position: relative;
}

.post-featured-image {
    width: 100%;
    height: auto;
    background-color: var(--light-gray);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
}

.post-header-content {
    padding: 40px 50px;
}

.post-meta-top {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--dark-gray);
}

.post-meta-top span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta-top i {
    color: var(--primary-blue);
    font-size: 13px;
}

.post-title-single {
    font-size: 36px;
    font-weight: 600;
    color: var(--light-blue);
    line-height: 1.3;
    margin: 0 0 25px 0;
}

.post-categories-single {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.post-tags-single-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.taxonomy-label {
    font-weight: 600;
    color: var(--light-blue);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.taxonomy-label i {
    color: var(--primary-blue);
    font-size: 12px;
}

.category-badge-single {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    background-color: rgba(26, 58, 95, 0.08);
    border-radius: 6px;
    margin-right: 6px;
    transition: all 0.3s ease;
}

.category-badge-single:hover {
    background-color: rgba(26, 58, 95, 0.15);
    color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(26, 58, 95, 0.1);
}

.category-badge-single:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(26, 58, 95, 0.1);
}

/* Post Content */
.post-content-single {
    padding: 0 50px 40px 50px;
    line-height: 1.8;
    font-size: 17px;
    color: var(--text-dark);
    position: relative;
    margin-bottom: 0; /* Ensure no margin that could hide CTA */
}

/* Post Tags Single (between content and footer) */
.post-tags-single {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    background-color: rgba(26, 58, 95, 0.03);
    border-top: 1px solid rgba(26, 58, 95, 0.1);
    border-bottom: 1px solid rgba(26, 58, 95, 0.1);
    flex-wrap: wrap;
}

.post-tags-single .tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.post-tags-single .tags-label i {
    color: var(--primary-blue);
    font-size: 13px;
}

.post-tags-single .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.post-tags-single .tag-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid rgba(26, 58, 95, 0.15);
    transition: all 0.3s ease;
}

.post-tags-single .tag-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 58, 95, 0.2);
}

.post-content-single p {
    margin-bottom: 20px;
}

.post-content-single h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--light-blue);
    margin: 35px 0 20px;
    line-height: 1.4;
}

.post-content-single h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-blue);
    margin: 30px 0 18px;
    line-height: 1.4;
}

.post-content-single h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 25px 0 15px;
}

.post-content-single ul,
.post-content-single ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content-single li {
    margin-bottom: 10px;
}

.post-content-single blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.post-content-single img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
}

.post-content-single a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-content-single a:hover {
    color: var(--light-blue);
}

/* Post Tags Inline */
.post-tags-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.tags-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tags-label i {
    color: var(--primary-blue);
    font-size: 12px;
}

.tags-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link-inline {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(26, 58, 95, 0.1);
    color: var(--light-blue);
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}


.tag-link-inline:hover {
    background-color: var(--light-blue) !important;
    color: var(--white) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(26, 58, 95, 0.2);
}

/* Post Footer */
.post-footer-single {
    padding: 30px 50px;
    border-top: 1px solid var(--light-gray);
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.service-cta {
    flex: 1;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(26, 58, 95, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cta-btn i {
    font-size: 16px;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 58, 95, 0.35);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-navigation-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(26, 58, 95, 0.2);
}

.nav-arrow:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 95, 0.3);
}

.nav-arrow.disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
}

.share-label {
    font-weight: 600;
    color: var(--light-blue);
    font-size: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 16px;
}

.share-twitter {
    background-color: #1DA1F2;
}

.share-facebook {
    background-color: #4267B2;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-email {
    background-color: var(--primary-blue);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Comments */
.post-comments {
    padding: 0 50px 40px;
    margin-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.comments-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-blue);
    margin-top: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-list {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.comment-list .children {
    list-style: none;
    margin: 20px 0 0 40px;
    padding: 0;
}

.comment-body {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--dark-gray);
}

.comment-avatar {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.comment-author-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
}

.comment-metadata {
    display: flex;
    align-items: center;
}

.comment-metadata a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 12px;
}

.comment-metadata a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.comment-content {
    margin-top: 10px;
    padding-left: 60px;
}

.comment-body .reply {
    margin-top: 10px;
    padding-left: 60px;
}

.comment-body .reply a {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.comment-body .reply a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.view-all-comments-btn,
.hide-comments-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    display: block;
}

.view-all-comments-btn:hover,
.hide-comments-btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

.comment-list-hidden {
    margin-top: 20px;
}

.comment-navigation {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.comment-navigation a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background-color: var(--light-blue);
}

.comment-form-styled {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.comment-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 100%;
}

.comment-form-field.half {
    flex: 1 1 calc(50% - 12px);
}

.comment-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    border: 1px solid #dfe4ea;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.15);
}

.comment-form-styled .comment-form-cookies-consent {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dark-gray);
}

.comment-form-styled .comment-form-cookies-consent input {
    width: auto;
}

.comment-submit-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-submit-btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

.no-comments {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}



/* Book Now CTA Section */
.post-cta-section {
    align-items: center;
    text-align: center ;
   
   
}

.book-now-cta-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    color: var(--white) ;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)) !important;
    text-decoration: none ;
    box-shadow: 0 10px 25px rgba(26, 58, 95, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.book-now-cta-btn i {
    font-size: 18px;
}

.book-now-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 58, 95, 0.35);
    color: var(--white);
    text-decoration: none;
}

/* Related Posts */
.related-posts {
    margin-bottom: 40px; /* Added bottom margin */
    padding-left: 50px;
    padding-right: 50px;
}

.related-posts-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--light-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts-title i {
    color: var(--primary-blue);
    font-size: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    display: block;
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.related-post-thumbnail {
    display: block;
    width: 100%;
    height: 140px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.related-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image {
    transform: scale(1.05);
}

.related-post-content {
    padding: 15px;
}

.related-post-title {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--light-blue);
    transition: color 0.3s ease;
}

.related-post-card:hover .related-post-title {
    color: var(--primary-blue);
}

.related-post-meta {
    font-size: 12px;
    color: var(--dark-gray);
}

.related-post-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-date i {
    color: var(--primary-blue);
    font-size: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-post-container {
        padding: 100px 15px 60px;
    }
    
    .post-header-content,
    .post-content-single,
    .post-footer-single,
    .post-cta-section,
    .related-posts,
    .post-tags-single {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .post-featured-image {
        height: 250px;
    }
    
    .post-title-single {
        font-size: 28px;
    }
    
    .post-content-single {
        font-size: 16px;
    }
    
    .faq-title {
        font-size: 30px;
    }
    
    .faq-subtitle {
        font-size: 15px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-answer-text {
        font-size: 15px;
    }
    
    .comments-title {
        font-size: 22px;
    }
    
    .related-posts-title {
        font-size: 20px;
    }
    
    .post-footer-single {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .post-comments {
        padding: 0 25px 30px;
    }

    .comment-form-field.half {
        flex: 1 1 100%;
    }
    
    .post-navigation-inline {
        align-self: flex-end;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-tags-inline {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .post-header-content,
    .post-content-single,
    .post-footer-single,
    .post-tags-single {
        padding: 25px 20px;
    }
    
    .post-tags-single {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .post-title-single {
        font-size: 24px;
    }
    
    .post-meta-top {
        gap: 15px;
        font-size: 13px;
    }
    
    .post-content-single {
        font-size: 15px;
    }
    
    .post-content-single h2 {
        font-size: 22px;
    }
    
    .post-content-single h3 {
        font-size: 19px;
    }
    
    .post-content-single h4 {
        font-size: 17px;
    }
    
    .faq-title {
        font-size: 26px;
    }
    
    .faq-subtitle {
        font-size: 14px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-answer-text {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .comments-title {
        font-size: 20px;
    }
    
    .related-posts-title {
        font-size: 18px;
    }
    
    .related-post-title {
        font-size: 14px;
    }
    
    .book-now-cta-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .service-cta-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }

    .post-comments {
        padding: 0 20px 25px;
    }
}




/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    width: 100%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.faq-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 58, 95, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(26, 58, 95, 0.02);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.5;
    flex: 1;
    padding-right: 20px;
}

.faq-question-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
    padding-top: 15px;
}


