/* ==================================================================
   FuvarPlus Landing Page - Custom Styles
   ================================================================== */

/* Root Variables - Modern Green & Light Blue Theme */
:root {
    --primary-color: #1c482b;
    --primary-light: #276b3e;
    --accent-color: #9cc8f5;
    --accent-dark: #7ab3e8;
    --text-dark: #243238;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
}

/* Override Bootstrap Primary Color */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Global Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================================================================
   Launch Banner
   ================================================================== */
.launch-banner {
    background: linear-gradient(135deg, #27ae60 0%, #4cd787 50%, #27ae60 100%);
    color: #ffffff;
    padding: 0.6rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 2px 16px rgba(39, 174, 96, 0.5); }
}

.launch-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.launch-banner-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.launch-banner-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.launch-banner-btn {
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    color: #1a7a3e !important;
    transition: all 0.2s ease;
}

.launch-banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .launch-banner-text {
        font-size: 0.82rem;
    }
    .launch-banner-badge {
        font-size: 0.75rem;
    }
}

/* Offset navbar and hero for the banner — defaults overridden by JS */
#mainNav {
    top: 40px;
}

.hero-section {
    padding-top: 160px !important;
}

.subpage-section {
    padding-top: 160px !important;
}

@media (max-width: 768px) {
    #mainNav {
        top: 80px;
    }
    .hero-section {
        padding-top: 200px !important;
    }
    .subpage-section {
        padding-top: 200px !important;
    }
}

@media (max-width: 576px) {
    #mainNav {
        top: 100px;
    }
    .hero-section {
        padding-top: 220px !important;
    }
    .subpage-section {
        padding-top: 220px !important;
    }
}

/* ==================================================================
   Navigation
   ================================================================== */
#mainNav {
    transition: all 0.3s ease-in-out;
    padding: 0.25rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#mainNav .navbar-logo {
    height: 80px;
}

@media (max-width: 768px) {
    #mainNav {
        padding: 0.15rem 0;
    }
    #mainNav .navbar-logo {
        height: 44px;
    }
}

#mainNav .navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

#mainNav .navbar-brand:hover {
    transform: scale(1.05);
}

#mainNav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    color: rgba(255, 255, 255, 0.85) !important;
}

#mainNav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* ==================================================================
   Hero Section
   ================================================================== */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e7ed 100%);
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Decorative dashed circle */
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px dashed rgba(28, 72, 43, 0.12);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    pointer-events: none;
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

/* Route decoration - curved dashed path */
.hero-route-decoration {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-route-decoration svg {
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

/* Route markers (A and B points) */
.hero-marker {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    z-index: 0;
    pointer-events: none;
}

.hero-marker-a {
    background: rgba(28, 72, 43, 0.12);
    bottom: 160px;
    left: 8%;
}

.hero-marker-b {
    background: rgba(28, 72, 43, 0.12);
    bottom: 120px;
    right: 12%;
}

.hero-image-wrapper {
    position: relative;
    aspect-ratio: 14 / 9;
}

.hero-image-placeholder {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 60px;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-image-placeholder:hover {
    transform: translateY(-10px);
}

/* ==================================================================
   Social Proof Strip
   ================================================================== */
.hero-social-proof {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(28, 72, 43, 0.1);
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-proof-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-icon.green {
    background: rgba(28, 72, 43, 0.1);
    color: var(--primary-color);
}

.social-proof-icon.blue {
    background: rgba(23, 162, 184, 0.1);
    color: var(--info);
}

.social-proof-icon.orange {
    background: rgba(255, 193, 7, 0.15);
    color: #e6a800;
}

.social-proof-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}

.social-proof-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.3;
}

@media (max-width: 767px) {
    .hero-social-proof {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .social-proof-number {
        font-size: 1.25rem;
    }
}

/* ==================================================================
   Hero Carousel
   ================================================================== */
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1.25rem;
    background-size: 60%;
}

#heroCarousel .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
}

/* ==================================================================
   Feature Cards
   ================================================================== */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* ==================================================================
   Pricing Cards
   ================================================================== */
.pricing-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.pricing-card-recommended {
    transform: scale(1.05);
    z-index: 10;
    overflow: visible;
}

.pricing-card-recommended:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Add space for recommended badge */
#arak .row.g-4.mb-5 {
    padding-top: 2rem;
}

/* ==================================================================
   Interactive Vehicle Calculator
   ================================================================== */
.calculator-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
}

.calculator-slider {
    height: 0.5rem;
}

.calculator-slider::-webkit-slider-thumb {
    background: var(--primary-color, #1c482b);
}

.calculator-slider::-moz-range-thumb {
    background: var(--primary-color, #1c482b);
}

.calculator-plan-card {
    transition: all 0.25s ease;
    background: #ffffff;
}

.calculator-plan-card--recommended {
    border-color: #198754 !important;
    border-width: 2px !important;
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.15);
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.calculator-recommended-badge {
    font-size: 0.75rem;
}

/* Comparison Table */
.comparison-table {
    font-size: 0.95rem;
    min-width: 540px;
}

.comparison-table thead th {
    padding: 1.25rem 1rem;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tbody tr:hover {
    background-color: rgba(156, 200, 245, 0.05);
}

.comparison-table .badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.82rem;
        min-width: 480px;
    }
    .comparison-table thead th {
        padding: 0.75rem 0.5rem;
    }
    .comparison-table tbody td {
        padding: 0.65rem 0.4rem;
    }
    .comparison-table td:first-child,
    .comparison-table th:first-child {
        min-width: 110px;
        max-width: 140px;
        padding-left: 0.5rem !important;
    }
    .comparison-table .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

.comparison-toggle-icon {
    transition: transform 0.3s ease;
}

.comparison-toggle-icon.rotated {
    transform: rotate(180deg);
}

/* Recommended Column Styling */
.recommended-column-header,
.recommended-column {
    background-color: #e8f4f8 !important;
}

.pricing-amount {
    padding: 1.5rem 0;
    border-bottom: 2px solid #f8f9fa;
}

.pricing-card .list-unstyled li {
    padding: 0.5rem 0;
}

/* Billing Period Toggle */
.billing-period-label {
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.billing-period-label.active {
    color: var(--primary-color);
    font-weight: 600;
}

.form-switch-lg .form-check-input {
    width: 3.5rem;
    height: 1.75rem;
    cursor: pointer;
    background-color: var(--text-muted);
    border: none;
}

.form-switch-lg .form-check-input:checked {
    background-color: var(--primary-color);
}

.form-switch-lg .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(45, 57, 75, 0.25);
    border: none;
}

/* Addon Icons */
.addon-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff !important;
    border: 2px solid var(--primary-color) !important;
}

/* ==================================================================
   Target Audience Cards
   ================================================================== */
.target-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.target-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary-color);
}

.target-icon {
    transition: transform 0.3s ease;
}

.target-card:hover .target-icon {
    transform: scale(1.1);
}

/* ==================================================================
   How It Works - Steps
   ================================================================== */
.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(28, 72, 43, 0.2);
}

.step-icon {
    margin-top: 1rem;
}

/* ==================================================================
   Benefits Section
   ================================================================== */
.benefit-item {
    transition: transform 0.2s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefits-stats {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    padding: 1rem;
}

.benefits-stats .stat-item .text-info {
    color: #0d6e7e !important;
}

.benefits-stats .stat-item .text-warning {
    color: #997404 !important;
}

/* ==================================================================
   Contact Cards
   ================================================================== */
.contact-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* ==================================================================
   Animations
   ================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

/* Scroll-triggered animations (via JavaScript) */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================================================
   Utility Classes
   ================================================================== */
.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* ==================================================================
   Responsive Design
   ================================================================== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 60px;
    }

    .pricing-card-recommended {
        transform: scale(1);
    }

    .pricing-card-recommended:hover {
        transform: scale(1.02) translateY(-5px);
    }
}

@media (max-width: 767px) {
    h1.display-3 {
        font-size: 2.5rem;
    }

    h2.display-4 {
        font-size: 2rem;
    }

    h2.display-5 {
        font-size: 1.75rem;
    }

    .hero-section {
        padding-top: 80px;
    }

    #mainNav .btn {
        margin-top: 0.5rem;
    }

    /* Center feature icons on mobile */
    .feature-icon {
        text-align: center;
    }
}

/* ==================================================================
   Smooth Scrolling Sections
   ================================================================== */
section {
    scroll-margin-top: 80px;
}

/* ==================================================================
   Button Enhancements
   ================================================================== */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

/* ==================================================================
   Footer Styles
   ================================================================== */
footer a:hover {
    color: var(--white) !important;
    opacity: 0.8;
}

.social-links a {
    transition: all 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* ==================================================================
   Form Styles
   ================================================================== */
.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(156, 200, 245, 0.25);
}

.form-control-lg {
    font-size: 1.1rem;
    padding: 0.75rem 1.25rem;
}

/* ==================================================================
   Provisioning Overlay
   ================================================================== */
.provisioning-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(28, 72, 43, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: overlayFadeIn 0.4s ease-out;
}

.provisioning-overlay.d-none {
    display: none !important;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.provisioning-overlay-content {
    text-align: center;
    color: #fff;
    max-width: 440px;
    padding: 2rem;
}

.provisioning-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
}

.spinner-ring:nth-child(1) {
    border-top-color: #9cc8f5;
    animation: spinRing 1.4s linear infinite;
}

.spinner-ring:nth-child(2) {
    inset: 10px;
    border-right-color: #fff;
    animation: spinRing 1.8s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    inset: 20px;
    border-bottom-color: #9cc8f5;
    animation: spinRing 1.2s linear infinite;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

.spinner-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.provisioning-title {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.provisioning-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.provisioning-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.provisioning-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

.provisioning-step.active {
    color: #fff;
}

.provisioning-step.done {
    color: #9cc8f5;
}

.provisioning-step .step-icon {
    font-size: 1.1rem;
    width: 1.2rem;
    text-align: center;
}

.provisioning-step.active .step-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}

.provisioning-success {
    animation: successFadeIn 0.6s ease-out;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #fff;
    font-size: 1rem;
}

.provisioning-success .success-icon-wrapper {
    font-size: 2.2rem;
    color: #9cc8f5;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================================================================
   Cookie Consent Banner
   ================================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(36, 50, 56, 0.97);
    color: #ffffff;
    padding: 1.25rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-link {
    color: var(--accent-color);
    text-decoration: underline;
    margin-left: 0.25rem;
}

.cookie-consent-link:hover {
    color: #ffffff;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ==================================================================
   Blog Styles
   ================================================================== */

/* Blog Card (Listing Page) */
.blog-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
}

.blog-card-image {
    overflow: hidden;
    height: 200px;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-placeholder {
    opacity: 0.9;
}

.blog-card-title:hover {
    color: var(--primary-color) !important;
}

.blog-card-meta .badge {
    font-weight: 500;
    font-size: 0.78rem;
}

/* Blog Content (Post Detail Page) */
.blog-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-light);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.blog-content strong {
    color: var(--text-dark);
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.blog-content table th,
.blog-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.blog-content table th {
    background: var(--bg-light);
    font-weight: 600;
}

.blog-content table tr:hover {
    background: #f8f9fa;
}

/* Blog Banner Image */
.blog-banner-image img {
    display: block;
}

/* Blog CTA Box */
.blog-cta-box {
    border: 2px dashed var(--primary-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

/* Blog Post Navigation */
.blog-post-nav a:hover span {
    color: var(--primary-color) !important;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item a:hover {
    text-decoration: underline !important;
}

/* Responsive Blog */
@media (max-width: 767px) {
    .blog-card-image {
        height: 160px;
    }

    .blog-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .blog-content table {
        font-size: 0.85rem;
    }

    .blog-content table th,
    .blog-content table td {
        padding: 0.5rem;
    }

    .blog-post-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-post-nav a {
        text-align: left !important;
    }
}