/* Styling for Tourism Profile Page - SLBC Odisha (Blue Color Theme) */
.slbc-tourism-page {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    padding: 30px 0 60px;
    background-color: #f4f7f9; /* modern soft grey-blue background */
}

@media (min-width: 1200px) {
    .slbc-tourism-page .container {
        width: 1500px;
    }
}

/* Sidebar & Grid Layout */
@media (min-width: 992px) {
    .slbc-tourism-page .row {
        display: flex;
        flex-wrap: wrap;
    }
    .slbc-tourism-page .row::before,
    .slbc-tourism-page .row::after {
        display: none;
    }
}

.slbc-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
    z-index: 5;
}

.admin-bar .slbc-sidebar {
    top: 140px;
}

.slbc-sidebar-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d9e2ec; /* blue-grey border */
    box-shadow: 0 4px 15px rgba(10, 89, 148, 0.03);
    padding: 22px;
    margin-bottom: 25px;
}

.slbc-sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0a5994; /* SLBC Blue */
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slbc-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slbc-nav-item {
    margin-bottom: 8px;
}

.slbc-nav-link {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    border-radius: 0 6px 6px 0;
}

.slbc-nav-link:hover,
.slbc-nav-link.active {
    color: #0a5994;
    background-color: #ebf3f9;
    border-left-color: #0a5994;
    padding-left: 15px;
}

/* Quick Links Card */
.slbc-quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slbc-quick-links-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #d9e2ec;
    padding-bottom: 8px;
}

.slbc-quick-links-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.slbc-quick-link {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    color: #4a5568;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.slbc-quick-link i {
    color: #0a5994;
    margin-right: 8px;
    font-size: 13px;
}

.slbc-quick-link:hover {
    color: #0a5994;
}

/* Blue Banner Headers to match PDF */
.slbc-blue-banner {
    background: #0a5994 !important; /* deep royal blue */
    color: #fff !important;
    padding: 16px 24px !important;
    font-weight: 700 !important;
    border-radius: 12px 12px 0 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: -30px -30px 25px -30px; /* fills out the card header fully */
    border-bottom: 2px solid #073f6a !important;
}

.slbc-blue-banner h2 {
    color: #fff !important;
    margin: 0 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.slbc-blue-banner span {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 11.5px !important;
    text-transform: none !important;
    display: block;
    margin-top: 5px;
    font-weight: 400;
    letter-spacing: 0;
}

/* Stat Grid */
.slbc-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.slbc-stat-card {
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(10, 89, 148, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slbc-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(10, 89, 148, 0.05);
}

.slbc-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.slbc-stat-label {
    font-size: 12px;
    color: #718096;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.slbc-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #ebf3f9;
    color: #0a5994;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.slbc-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0a5994;
    margin-top: 5px;
}

.slbc-stat-meta {
    font-size: 12px;
    color: #718096;
    margin-top: 8px;
    border-top: 1px solid #edf2f7;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
}

.slbc-trend-badge {
    font-weight: 700;
    color: #0a5994;
}

/* Content Card Styling */
.slbc-tourism-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d9e2ec;
    box-shadow: 0 4px 15px rgba(10, 89, 148, 0.02);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 100px;
}

.slbc-tourism-card:hover {
    box-shadow: 0 8px 25px rgba(10, 89, 148, 0.05);
}

.slbc-card-body p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.slbc-highlight-box {
    background-color: #ebf3f9;
    border-left: 4px solid #0a5994;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.slbc-highlight-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
}

/* Info Box Grids */
.slbc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.slbc-info-box {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    transition: background-color 0.2s ease;
}

.slbc-info-box:hover {
    background-color: #ebf3f9;
}

.slbc-info-title {
    font-size: 12px;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.slbc-info-value {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
}

/* Bullet list */
.slbc-feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.slbc-feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.slbc-feature-list li::before {
    content: "\f105"; /* caret-right in FontAwesome */
    font-family: FontAwesome;
    position: absolute;
    left: 8px;
    top: 0;
    color: #0a5994;
    font-size: 14px;
    font-weight: 800;
}

/* --- Inbound Domestic Tourists Layout & Chart (Page 2) --- */
.slbc-domestic-chart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 20px 0;
    align-items: center;
}

@media (min-width: 768px) {
    .slbc-domestic-chart-layout {
        grid-template-columns: 1fr 1.2fr;
    }
}

.slbc-india-map-container {
    background: #f7fafc;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slbc-horizontal-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.slbc-h-chart-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slbc-h-chart-label {
    width: 110px;
    font-size: 12px;
    font-weight: 700;
    color: #4a5568;
    text-align: right;
    white-space: nowrap;
}

.slbc-h-chart-track {
    flex-grow: 1;
    height: 18px;
    background-color: #edf2f7;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.slbc-h-chart-fill {
    height: 100%;
    background-color: #0a5994; /* SLBC Blue instead of orange */
    border-radius: 4px;
    transition: width 1s ease-out;
}

.slbc-h-chart-fill.top-src {
    background: linear-gradient(90deg, #0a5994, #2b6cb0);
}

.slbc-h-chart-val {
    width: 55px;
    font-size: 12.5px;
    font-weight: 700;
    color: #2d3748;
}

/* --- World Map Origin Indicators (Page 3) --- */
.slbc-map-wrapper {
    position: relative;
    background: #ebf3f9;
    border-radius: 12px;
    border: 1px solid #d9e2ec;
    padding: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.slbc-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Offerings by Category layout (Page 4) --- */
.slbc-category-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.slbc-category-card {
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 89, 148, 0.01);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.slbc-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(10, 89, 148, 0.03);
}

.slbc-category-card-header {
    background-color: #ebf3f9;
    padding: 14px 20px;
    border-bottom: 1px solid #d9e2ec;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slbc-category-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0a5994; /* SLBC Blue */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.slbc-category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.slbc-category-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .slbc-category-body {
        grid-template-columns: 1fr 1fr;
    }
}

.slbc-category-subblock {
    padding: 20px;
}

.slbc-category-subblock.luxury {
    background-color: #fafbfc;
    border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .slbc-category-subblock.luxury {
        border-right: 1px solid #d9e2ec;
        border-bottom: none;
    }
}

.slbc-category-subblock.budgeted {
    background-color: #ffffff;
}

.slbc-category-subblock-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slbc-category-subblock.luxury .slbc-category-subblock-title {
    color: #0a5994; /* Blue */
}

.slbc-category-subblock.budgeted .slbc-category-subblock-title {
    color: #718096;
}

.slbc-category-subblock ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slbc-category-subblock ul li {
    position: relative;
    padding-left: 15px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 8px;
}

.slbc-category-subblock ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cbd5e0;
    font-size: 16px;
    top: -2px;
}

.slbc-category-subblock.luxury ul li::before {
    color: #0a5994; /* Blue */
}

/* --- Pillars & Enablers visual blocks (Page 5) --- */
.slbc-pillars-enablers-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 25px 0;
}

.slbc-pe-block-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border-left: 4px solid #0a5994; /* Blue */
    padding-left: 10px;
}

.slbc-pe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    width: 100%;
}

@media (min-width: 992px) {
    .slbc-pe-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.slbc-pe-card {
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(10, 89, 148, 0.01);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slbc-pe-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(10, 89, 148, 0.04);
}

.slbc-pe-card.enabler-card {
    border-color: #e2e8f0;
}

.slbc-pe-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.slbc-pe-card.pillar-card .slbc-pe-icon {
    background-color: #ebf3f9;
    color: #0a5994;
}

.slbc-pe-card.enabler-card .slbc-pe-icon {
    background-color: #edf2f7;
    color: #4a5568;
}

.slbc-pe-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.slbc-pe-desc {
    font-size: 11px;
    line-height: 1.4;
    color: #718096;
    margin: 0;
}

/* Call to Action Button */
.slbc-cta-wrapper {
    margin-top: 25px;
    text-align: right;
}

.slbc-btn-more {
    display: inline-flex;
    align-items: center;
    background-color: #0a5994; /* Blue */
    color: #fff !important;
    text-decoration: none !important;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(10, 89, 148, 0.15);
}

.slbc-btn-more i {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.slbc-btn-more:hover {
    background-color: #073f6a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(10, 89, 148, 0.2);
}

.slbc-btn-more:hover i {
    transform: translateX(4px);
}

/* Responsive adjustment for Mobile (Sidebar conversion) */
@media (max-width: 991px) {
    .slbc-sidebar {
        position: static;
    }

    .slbc-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .slbc-nav-item {
        margin-bottom: 0;
    }

    .slbc-nav-link {
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 6px;
        background-color: #ebf3f9;
        font-size: 13px;
        padding: 6px 12px;
    }

    .slbc-nav-link:hover,
    .slbc-nav-link.active {
        border-left-color: transparent;
        border-bottom-color: #0a5994;
        padding-left: 12px;
    }
}
