/*----------------- ROOT VARIABLES----------------- */
:root {
    --bg-blue: #0490D2;
    --bg-white: #ffffff;

    --text-white: #ffffff;
    --text-dark: #0b2b4f;

    --border-input: #0490D2;
    --border-light: rgba(255,255,255,0.15);

    --shadow-sm: 0 4px 12px rgba(0,20,40,0.04);

    --social-bg: rgba(255,255,255,0.1);
    --social-hover-bg: #ffffff;
}

/*----------------- BASE STYLES----------------- */
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.top-header,
.navbar,
.footer-clean {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/*----------------- TOP HEADER----------------- */
.top-header {
    background: var(--bg-white);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
}

/* Brand Gradient */
.brand-gradient {
    font-weight: 700;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    background: var(--bg-blue);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
}

.brand-gradient i {
    margin-right: 6px;
    font-size: 1.7rem;
}

/*----------------- SEARCH----------------- */
.search-wrapper {
    position: relative;
    max-width: 460px;
    margin-left: auto;
}

.search-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 0.95rem;
}

.search-wrapper input {
    padding-left: 45px;
    height: 46px;
    border-radius: 50px;
    border: 1px solid var(--border-input);
    background: #f8fbfd;
    font-size: 0.95rem;
    transition: 0.2s ease;
    outline: none;
}

.search-wrapper input:focus {
    background: #ffffff;
    border-color: var(--bg-blue);
    box-shadow: 0 0 0 4px rgba(4,144,210,0.12);
}

/*----------------- NAVBAR----------------- */
.navbar {
    background: var(--bg-blue) !important;
    box-shadow: 0 8px 20px -6px rgba(0,40,100,0.15);
    padding: 0.6rem 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-size: 0.95rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    transition: 0.18s ease;
    margin: 0 2px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.12);
}

.navbar-dark .navbar-nav .nav-link.active {
    background: #ffffff;
    color: var(--bg-blue) !important;
    font-weight: 600;
}

.navbar-brand {
    font-weight: 600;
    color: var(--text-white) !important;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.navbar-brand i {
    margin-right: 6px;
    font-size: 1.3rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--social-bg);
    color: var(--text-white);
    transition: 0.2s ease;
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    font-size: 0.95rem;
}

.social-icons a:hover {
    background: var(--social-hover-bg);
    color: var(--bg-blue);
    transform: translateY(-3px);
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.4);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*----------------- HOME PAGE CUSTOM UTILITIES----------------- */
/* Custom utility classes using CSS variables */
.bg-blue {
    background-color: var(--bg-blue) !important;
}

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

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

.shadow-custom {
    box-shadow: var(--shadow-sm) !important;
}

/* Card hover effect */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none !important;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm) !important;
}

/* Service icon styling */
.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.service-icon i, .service-icon svg {
    font-size: 30px;
}

/*----------------- CUSTOM BUTTON STYLES (DEFAULT BOOTSTRAP BUTTONS WITH CUSTOM COLORS) -----------------*/
/* Primary Button - Blue */
.btn-primary {
    background-color: var(--bg-blue) !important;
    border-color: var(--bg-blue) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background-color: #0378b3 !important;
    border-color: #0378b3 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm) !important;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(4,144,210,0.5) !important;
}

/* Outline Button */
.btn-outline-primary {
    color: var(--text-dark) !important;
    border-color: var(--bg-blue) !important;
    border-width: 2px !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover {
    background-color: var(--bg-blue) !important;
    border-color: var(--bg-blue) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm) !important;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(4,144,210,0.5) !important;
}

/* Light Button (for CTA) */
.btn-light {
    background-color: white !important;
    border-color: white !important;
    color: var(--bg-blue) !important;
    transition: all 0.3s ease !important;
}

.btn-light:hover {
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm) !important;
}

/* Outline Light Button (for CTA) */
.btn-outline-light {
    border-width: 2px !important;
    transition: all 0.3s ease !important;
}

.btn-outline-light:hover {
    background-color: white !important;
    color: var(--bg-blue) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm) !important;
}

/* Badge styling */
.badge.bg-blue {
    background-color: var(--bg-blue) !important;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--bg-blue);
    border-bottom: 1px solid var(--bg-white);
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Hero section */
.hero-section {
    background-color: #f8fbfd;
}

/* Section headings */
.section-subtitle {
    color: var(--bg-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}



/*----------------- BLOG DETAIL PAGE STYLES -----------------*/

/* Blog Content Styling */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0;
}

.blog-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--bg-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #495057;
}

.blog-content blockquote p:last-child {
    margin-bottom: 0;
}

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

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

.blog-content pre {
    background: #2c3e50;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-content code {
    background: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #d63384;
}

.blog-content pre code {
    background: transparent;
    color: #fff;
    padding: 0;
}

.blog-content a {
    color: var(--bg-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-content table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

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

.blog-content th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Hero Section */
.blog-detail-hero {
    background: linear-gradient(135deg, var(--bg-blue) 0%, #1a4b8c 100%);
    padding: 3rem 0;
}

.blog-detail-hero h2 {
    color: var(--text-white);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.blog-detail-hero .meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-detail-hero .meta-info span {
    display: inline-flex;
    align-items: center;
}

.blog-detail-hero .meta-info i {
    margin-right: 0.5rem;
}

/* Featured Image */
.blog-detail-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-detail-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Tags Section */
.blog-detail-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.blog-detail-tags h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-detail-tags .badge {
    background-color: #f8f9fa;
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-tags .badge:hover {
    background-color: var(--bg-blue);
    color: var(--text-white);
    transform: translateY(-3px);
}

.blog-detail-tags .badge i {
    color: var(--bg-blue);
    margin-right: 0.25rem;
}

.blog-detail-tags .badge:hover i {
    color: var(--text-white);
}

/* Share Section */
.blog-detail-share {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 16px;
}

.blog-detail-share h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.blog-detail-share p {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 0;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.share-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-button.facebook {
    background-color: #1877f2;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0a66c2;
}

.share-button.whatsapp {
    background-color: #25d366;
}

/* Author Box */
.blog-detail-author {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid #dee2e6;
    border-radius: 16px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background-color: rgba(4, 144, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 2rem;
    color: var(--bg-blue);
}

.author-info h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info .author-title {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-info .author-bio {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Related Articles */
.blog-detail-related {
    margin-top: 3rem;
}

.blog-detail-related h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blog-detail-related h5 i {
    color: var(--bg-blue);
    margin-right: 0.5rem;
}

.related-article-card {
    height: 100%;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 12px;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 20, 40, 0.08) !important;
}

.related-article-card img {
    height: 150px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.related-article-card .card-body {
    padding: 1rem;
}

.related-article-card .date {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.85rem;
}

.related-article-card .date i {
    color: var(--bg-blue);
    margin-right: 0.25rem;
}

.related-article-card h6 {
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.related-article-card .btn {
    background-color: var(--bg-blue);
    color: var(--text-white);
    padding: 0.375rem 1rem;
    font-size: 0.9rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.related-article-card .btn:hover {
    background-color: #0378b3;
    transform: translateX(5px);
}

.related-article-card .btn i {
    margin-left: 0.5rem;
}

/* Table of Contents */
.table-of-contents {
    position: sticky;
    top: 100px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    background: white;
    margin-bottom: 2rem;
}

.table-of-contents .card-body {
    padding: 1.5rem;
}

.table-of-contents h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.table-of-contents h5 i {
    color: var(--bg-blue);
    margin-right: 0.5rem;
}

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

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.toc-list a:hover {
    color: var(--bg-blue);
    padding-left: 5px;
}

.toc-list .ms-3 {
    margin-left: 1rem;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease!important;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Sticky Sidebar */
@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 100px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-detail-hero h2 {
        font-size: 1.75rem;
    }
    
    .blog-detail-hero .meta-info {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .share-buttons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .author-info {
        margin-top: 1rem;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
    
    .blog-detail-author .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .related-article-card img {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .blog-detail-hero {
        padding: 2rem 0;
    }
    
    .blog-detail-hero h2 {
        font-size: 1.5rem;
    }
    
    .blog-detail-hero .meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-detail-share {
        padding: 1.5rem;
    }
    
    .blog-detail-author {
        padding: 1.5rem;
    }
}

/*----------------- BLOG CATEGORY PAGE STYLES -----------------*/

/* Category Hero Section */
.category-hero {
    background: var(--bg-blue);
    padding: 3rem 0;
}

.category-hero h2 {
    color: var(--text-white);
    font-weight: 700;
}

.category-hero .text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Cards - Category Page Specific */
.category-blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: var(--shadow-sm);
    height: 100%;
    overflow: hidden;
}

.category-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 20, 40, 0.08) !important;
}

.category-blog-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.category-blog-card .card-body {
    padding: 1.5rem;
}

/* Blog Card Meta */
.category-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-blog-meta span {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.category-blog-meta i {
    color: var(--bg-blue);
    margin-right: 0.25rem;
}

/* Blog Card Title */
.category-blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.category-blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-blog-title a:hover {
    color: var(--bg-blue);
}

/* Blog Card Excerpt */
.category-blog-excerpt {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Blog Card Tags */
.category-blog-tags {
    margin-bottom: 1rem;
}

.category-blog-tags .badge {
    background-color: #f8f9fa;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.category-blog-tags .badge:hover {
    background-color: var(--bg-blue);
    color: var(--text-white);
}

/* Blog Card Read More */
.category-blog-readmore {
    color: var(--bg-blue)!important;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-blog-readmore:hover {
    transform: translateX(5px);
    color: var(--bg-blue);
}

.category-blog-readmore i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.category-blog-readmore:hover i {
    transform: translateX(3px);
}

/* Blog Card Views */
.category-blog-views {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.category-blog-views i {
    color: var(--bg-blue);
    margin-right: 0.25rem;
}

/* Active Filters Section */
.category-active-filters {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-active-filters .filter-label {
    font-weight: 500;
    color: var(--text-dark);
}

.category-active-filters .badge {
    background-color: var(--bg-white);
    color: var(--bg-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-active-filters .badge i {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.category-active-filters .badge i:hover {
    opacity: 0.7;
}

/* No Results Section */
.category-no-results {
    text-align: center;
    padding: 5rem 0;
}

.category-no-results i {
    font-size: 4rem;
    color: var(--text-dark);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.category-no-results h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-no-results p {
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.category-no-results .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search Tips */
.category-search-tips {
    margin-top: 3rem;
}

.category-search-tips h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-search-tips .badge {
    background-color: #f8f9fa;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    margin: 0.25rem;
}

/* Pagination - Category Page */
.category-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.category-pagination .pagination {
    gap: 0.25rem;
}

.category-pagination .page-link {
    color: var(--bg-blue);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.category-pagination .page-link:hover {
    background-color: rgba(4,144,210,0.1);
    color: var(--bg-blue);
    transform: translateY(-2px);
}

.category-pagination .page-item.active .page-link {
    background-color: var(--bg-blue);
    border-color: var(--bg-blue);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.category-pagination .page-item.disabled .page-link {
    color: var(--text-dark);
    opacity: 0.3;
    background-color: transparent;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .category-hero h2 {
        font-size: 2rem;
    }
    
    .category-blog-card .card-img-top {
        height: 180px;
    }
    
    .category-blog-card .card-body {
        padding: 1rem;
    }
    
    .category-blog-title {
        font-size: 1.1rem;
    }
    
    .category-active-filters {
        border-radius: 20px;
        padding: 0.75rem;
    }
    
    .category-no-results .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .category-no-results .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .category-hero {
        padding: 2rem 0;
    }
    
    .category-hero h2 {
        font-size: 1.75rem;
    }
    
    .category-blog-card .card-img-top {
        height: 160px;
    }
    
    .category-blog-tags .badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
}

/*----------------- FOOTER----------------- */
.footer-clean {
    background: var(--bg-blue);
    color: var(--text-white);
    padding: 70px 0 30px;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-white);
    text-decoration: none;
}

.footer-brand i {
    font-size: 1.7rem;
    color: var(--text-white);
}

.footer-clean p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 400px;
}

.footer-clean h6 {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--text-white);
}

.footer-clean ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-clean li {
    margin-bottom: 10px;
}

.footer-clean ul a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s ease;
    display: inline-block;
}

.footer-clean ul a:hover {
    color: var(--text-white);
    transform: translateX(3px);
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--social-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    border: 1px solid var(--border-light);
    transition: 0.2s ease;
    font-size: 1rem;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--social-hover-bg);
    color: var(--bg-blue);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.footer-bottom a {
    margin-left: 6px;
    font-weight: 500;
    color: var(--text-white);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/*----------------- RESPONSIVE----------------- */
@media (max-width: 991px) {
    .top-brand {
        display: none !important;
    }

    .top-search-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .search-wrapper {
        max-width: 100%;
        margin-left: 0;
    }

    .navbar-nav {
        padding-top: 0.8rem;
    }

    .social-icons {
        padding-bottom: 0.8rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .footer-clean {
        text-align: center;
    }

    .footer-clean p {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .links {
        margin-top: 10px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
}

.sticky-top {
    top: 0;
    z-index: 1020;
}