/* ==========================================================================
   Eurasia Healthcare Services - Blogs & SEO Articles Stylesheet
   ========================================================================== */

/* Hero Banner */
.blog-hero {
    background: linear-gradient(135deg, rgba(11, 103, 148, 0.92), rgba(8, 77, 112, 0.95)), url('../images/services_bg4.jpg') center/cover no-repeat;
    padding: 90px 0 60px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.blog-hero h1 {
    font-family: "Luxia Display", "Gotham Bold", 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.blog-hero p {
    font-family: 'Manrope', 'Poppins', sans-serif;
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto 20px;
    color: #e2f1f8;
    line-height: 1.6;
}

.blog-hero .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.blog-hero .breadcrumb-item,
.blog-hero .breadcrumb-item a {
    color: #c4e4f5;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
}

.blog-hero .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.blog-hero .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.blog-hero .breadcrumb-item + .breadcrumb-item::before {
    color: #8bc3df;
}

/* Category Filter Bar */
.blog-filter-section {
    padding: 35px 0 10px;
    background: #f8fafc;
}

.blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-filter-btn {
    padding: 8px 18px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #d2e4ee;
    color: #0b6794;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: #0b6794;
    color: #ffffff;
    border-color: #0b6794;
    box-shadow: 0 4px 12px rgba(11, 103, 148, 0.25);
}

.blog-filter-btn .badge-count {
    background: rgba(11, 103, 148, 0.12);
    color: #0b6794;
    border-radius: 12px;
    padding: 2px 7px;
    font-size: 0.75rem;
}

.blog-filter-btn.active .badge-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 40px 0 80px;
    background: #f8fafc;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(16, 42, 67, 0.07);
    border: 1px solid #e7eff5;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(11, 103, 148, 0.14);
    border-color: #b9dbe9;
}

.blog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #eef5f9;
}

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

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

.blog-badge-location {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0b6794;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-badge-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #084d70;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: #718096;
    margin-bottom: 12px;
}

.blog-card-meta i {
    color: #0b6794;
    margin-right: 4px;
}

.blog-keyword-pill {
    display: inline-block;
    background: #eaf4f9;
    color: #0b6794;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-card-title {
    font-family: 'Poppins', 'Gotham Bold', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.45;
    color: #1a202c;
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: #0b6794;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-excerpt {
    font-family: 'Manrope', sans-serif;
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-read-btn {
    color: #0b6794;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.blog-read-btn:hover {
    color: #084d70;
    transform: translateX(4px);
}

.blog-read-btn i {
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.blog-read-btn:hover i {
    transform: translateX(3px);
}

/* Call to Action Bar below Blogs */
.blog-cta-banner {
    background: linear-gradient(135deg, #0b6794, #084d70);
    border-radius: 16px;
    padding: 45px 40px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 103, 148, 0.25);
    margin-top: 50px;
}

.blog-cta-banner h3 {
    font-family: "Luxia Display", "Poppins", sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-cta-banner p {
    color: #e2f1f8;
    font-size: 1.05rem;
    margin-bottom: 0;
    max-width: 650px;
}

.blog-cta-btn {
    background: #ffffff;
    color: #0b6794;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
    border: 2px solid #ffffff;
}

.blog-cta-btn:hover {
    background: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Individual Blog Detail Page Styles
   ========================================================================== */

.blog-detail-section {
    padding: 50px 0 80px;
    background: #ffffff;
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.blog-detail-badge-loc {
    background: #0b6794;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.blog-detail-badge-cat {
    background: #eaf4f9;
    color: #0b6794;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
}

.blog-detail-keyword {
    background: #f1f8f3;
    color: #1b7a42;
    border: 1px solid #bfe3cd;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-detail-title {
    font-family: "Luxia Display", "Poppins", sans-serif;
    font-size: 2.35rem;
    line-height: 1.35;
    color: #1a202c;
    margin-bottom: 18px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #718096;
    font-size: 0.9rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 25px;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta i {
    color: #0b6794;
}

/* Featured Image */
.blog-detail-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 440px;
    background: #eef5f9;
}

.blog-detail-featured-img img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

/* Intro Callout */
.blog-detail-intro {
    background: #f4f8fa;
    border-left: 4px solid #0b6794;
    padding: 22px 26px;
    border-radius: 0 10px 10px 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #2d3748;
    margin-bottom: 35px;
    font-style: normal;
}

/* Content Typography */
.blog-detail-content h2 {
    font-family: 'Poppins', 'Gotham Bold', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #084d70;
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef5f9;
    position: relative;
}

.blog-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #0b6794;
}

.blog-detail-content p {
    font-family: 'Manrope', 'Poppins', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

/* Bullet Points */
.blog-detail-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.blog-detail-bullets li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #2d3748;
}

.blog-detail-bullets li::before {
    content: "\F270";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: #0b6794;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Eurasia Care Highlight Box */
.blog-eurasia-approach {
    background: linear-gradient(135deg, #eaf4f9, #f2f8fc);
    border: 1px solid #c9e2ef;
    border-radius: 12px;
    padding: 26px 30px;
    margin: 35px 0;
    position: relative;
}

.blog-eurasia-approach h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b6794;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-eurasia-approach h4 i {
    font-size: 1.4rem;
}

.blog-eurasia-approach p {
    margin-bottom: 0;
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
}

/* Disclaimer Alert Box */
.blog-disclaimer-box {
    background: #fffbeb;
    border: 1px solid #fef08a;
    border-left: 4px solid #eab308;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-disclaimer-box i {
    font-size: 1.3rem;
    color: #ca8a04;
    margin-top: 2px;
}

/* Blog Conclusion Box */
.blog-conclusion-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 28px;
    margin-top: 35px;
    border: 1px solid #e2e8f0;
}

.blog-conclusion-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0b6794;
    margin-bottom: 14px;
}

.blog-conclusion-box p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 18px;
}

.blog-conclusion-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-btn-primary {
    background: #0b6794;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-btn-primary:hover {
    background: #084d70;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(11, 103, 148, 0.3);
}

.blog-btn-outline {
    border: 2px solid #0b6794;
    color: #0b6794;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-btn-outline:hover {
    background: #0b6794;
    color: #ffffff;
}

/* Post Navigation (Prev/Next) */
.blog-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-nav-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    max-width: 48%;
}

.blog-nav-link .nav-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-nav-link .nav-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0b6794;
    margin-top: 4px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.blog-nav-link:hover .nav-title {
    color: #084d70;
    text-decoration: underline;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 90px;
}

.blog-sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.blog-sidebar-widget h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #084d70;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef5f9;
}

.blog-sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0b6794;
}

/* Sidebar Helpline Card */
.blog-helpline-card {
    background: linear-gradient(135deg, #0b6794, #084d70);
    color: #ffffff;
    border-radius: 12px;
    padding: 26px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(11, 103, 148, 0.2);
}

.blog-helpline-card i.main-icon {
    font-size: 2.2rem;
    color: #e2f1f8;
    margin-bottom: 12px;
    display: inline-block;
}

.blog-helpline-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.blog-helpline-card p {
    color: #d1e9f6;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.blog-helpline-card .phone-link {
    display: block;
    background: #ffffff;
    color: #0b6794;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.blog-helpline-card .phone-link:hover {
    background: #e2f1f8;
    transform: translateY(-2px);
}

.blog-helpline-card .email-link {
    color: #ffffff;
    font-size: 0.88rem;
    text-decoration: underline;
    opacity: 0.9;
}

.blog-helpline-card .email-link:hover {
    opacity: 1;
}

/* Sidebar Navigation Links */
.blog-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-links li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.blog-sidebar-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-sidebar-links a {
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.45;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.2s ease;
}

.blog-sidebar-links a i {
    color: #0b6794;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.blog-sidebar-links a:hover,
.blog-sidebar-links a.active {
    color: #0b6794;
    font-weight: 600;
}

/* Sidebar Quick Callback Form */
.blog-sidebar-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
}

.blog-sidebar-form .form-control {
    font-size: 0.88rem;
    padding: 9px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    margin-bottom: 12px;
}

.blog-sidebar-form .form-control:focus {
    border-color: #0b6794;
    box-shadow: 0 0 0 3px rgba(11, 103, 148, 0.15);
}

.blog-sidebar-form .btn-submit {
    width: 100%;
    background: #0b6794;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.blog-sidebar-form .btn-submit:hover {
    background: #084d70;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    .blog-detail-title {
        font-size: 1.9rem;
    }
    .blog-sidebar {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    .blog-hero h1 {
        font-size: 1.75rem;
    }
    .blog-hero p {
        font-size: 0.98rem;
    }
    .blog-card-img-wrap {
        height: 200px;
    }
    .blog-detail-title {
        font-size: 1.55rem;
    }
    .blog-cta-banner {
        padding: 30px 20px;
        text-align: center;
    }
    .blog-cta-banner .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .blog-post-navigation {
        flex-direction: column;
        gap: 15px;
    }
    .blog-nav-link {
        max-width: 100%;
    }
}
