*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --red-primary: #C0000C;
            --red-dark: #8B0000;
            --red-light: #E8001A;
            --red-accent: #FF1C2E;
            --red-glow: rgba(192, 0, 12, 0.15);
            --charcoal: #1A1A1A;
            --warm-black: #111111;
            --off-white: #FAF8F7;
            --cream: #F5F1EE;
            --warm-grey: #6B6B6B;
            --border: #E0D8D5;
            --wood-warm: #C8956A;
            --fire: #C8102E;
            --fire-deep: #8B0000;
            --fire-bright: #FF2442;
            --ember: #FF6B35;
            --ash: #1A1A1A;
            --smoke: #F7F5F3;
            --white: #FFFFFF;
            --gold: #C9A84C;
            --text-muted: #6B6B6B;
            --font-display: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background: var(--cream);
            color: var(--ash);
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 4px;
        }
        ::-webkit-scrollbar-track {
            background: var(--smoke);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--red-primary);
            border-radius: 2px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header Styles */
        .topbar {
            background: var(--charcoal);
            color: #ccc;
            font-size: 12px;
            padding: 7px 10px;
            letter-spacing: 0.5px;
        }
        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            gap: 16px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .topbar-left,
        .topbar-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px 0;
            flex-shrink: 0;
        }
        .topbar-right {
            flex-shrink: 0;
            margin-left: auto;
        }
        .topbar a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .topbar a:hover {
            color: var(--red-accent);
        }
        .topbar .pipe {
            margin: 0 8px;
            opacity: 0.3;
            flex-shrink: 0;
        }

        .navbar-main {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.3s;
        }
        .navbar-main.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }
        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 72px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-flame {
            width: 42px;
            height: 42px;
            background: var(--red-primary);
            clip-path: polygon(50% 0%, 80% 30%, 100% 60%, 80% 100%, 20% 100%, 0% 60%, 20% 30%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }
        .logo-flame::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            background: #fff;
            clip-path: polygon(50% 0%, 80% 40%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 20% 40%);
            opacity: 0.25;
        }
        .logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            color: var(--red-primary);
            letter-spacing: 2px;
            line-height: 1;
        }
        .logo-sub {
            font-size: 9px;
            color: var(--warm-grey);
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
            margin-top: -2px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            height: 72px;
        }
        .nav-links>li {
            height: 100%;
            position: relative;
        }
        .nav-links>li>a {
            display: flex;
            align-items: center;
            gap: 5px;
            height: 100%;
            padding: 0 20px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 0.3px;
            transition: color 0.2s;
            border-bottom: 3px solid transparent;
        }
        .nav-links>li>a:hover,
        .nav-links>li>a.active {
            color: var(--red-primary);
            border-bottom-color: var(--red-primary);
        }
        .nav-links>li>a .fa-chevron-down {
            font-size: 9px;
            transition: transform 0.2s;
        }
        .nav-links>li:hover>a .fa-chevron-down {
            transform: rotate(180deg);
        }
        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border-top: 3px solid var(--red-primary);
            min-width: 220px;
            padding: 16px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s;
            z-index: 999;
        }
        .nav-links>li:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 24px;
            font-size: 13px;
            color: var(--charcoal);
            text-decoration: none;
            transition: background 0.15s, color 0.15s;
        }
        .nav-dropdown a:hover {
            background: var(--red-glow);
            color: var(--red-primary);
        }
        .nav-dropdown a .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--red-primary);
            flex-shrink: 0;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            font-size: 14px;
        }
        .nav-icon-btn:hover {
            border-color: var(--red-primary);
            color: var(--red-primary);
            background: var(--red-glow);
        }
        .btn-inquire {
            background: var(--red-primary);
            color: #fff;
            border: none;
            padding: 9px 22px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 2px;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-inquire:hover {
            background: var(--red-dark);
            color: #fff;
            transform: translateY(-1px);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .nav-hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--ash);
            transition: var(--transition);
        }
        #mobileNav {
            display: none;
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding: 2rem 1.5rem;
            flex-direction: column;
            gap: 1.2rem;
            overflow-y: auto;
            border-top: 1px solid var(--border);
        }
        #mobileNav.open {
            display: flex;
        }
        #mobileNav a {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--ash);
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        #mobileNav a:hover {
            color: var(--red-primary);
        }

        /* Blog Detail Hero */
        .blog-detail-hero {
            height: 45vh;
            min-height: 350px;
            background: linear-gradient(105deg, rgba(10, 0, 0, 0.8) 0%, rgba(10, 0, 0, 0.5) 50%, transparent 100%),
                        url('../../images/book.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding-bottom: 3rem;
            position: relative;
        }
        .blog-detail-hero-content { max-width: 700px; }
        .blog-detail-hero .hero-badge {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--red-accent);
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 16, 46, 0.2);
            border: 1px solid rgba(200, 16, 46, 0.4);
            padding: 6px 16px;
            border-radius: 100px;
        }
        .blog-detail-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
            line-height: 1.15;
        }
        .blog-detail-hero .hero-meta {
            display: flex;
            gap: 20px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            flex-wrap: wrap;
        }
        .blog-detail-hero .hero-meta i {
            margin-right: 4px;
            color: var(--red-accent);
        }

        /* Main Content */
        .blog-detail-wrapper {
            background: var(--cream);
            padding: 40px 0 60px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .blog-main-content {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .blog-main-content .featured-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }
        .blog-main-content .content-body {
            padding: 2.5rem;
        }
        .blog-main-content .content-body .blog-tag {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--red-primary);
            background: rgba(192, 0, 12, 0.08);
            padding: 4px 14px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 0.8rem;
        }
        .blog-main-content .content-body h1 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--ash);
            margin-bottom: 0.8rem;
        }
        .blog-main-content .content-body .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }
        .blog-main-content .content-body .meta-info i {
            margin-right: 4px;
            color: var(--red-primary);
        }
        .blog-main-content .content-body .article-content {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.9;
        }
        .blog-main-content .content-body .article-content p {
            margin-bottom: 1.2rem;
        }
        .blog-main-content .content-body .article-content h2 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--ash);
            margin: 1.8rem 0 0.8rem;
        }
        .blog-main-content .content-body .article-content h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--ash);
            margin: 1.5rem 0 0.6rem;
        }
        .blog-main-content .content-body .article-content ul,
        .blog-main-content .content-body .article-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        .blog-main-content .content-body .article-content ul li,
        .blog-main-content .content-body .article-content ol li {
            margin-bottom: 0.4rem;
        }

        /* Share Section */
        .share-section {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
        }
        .share-section .share-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--ash);
        }
        .share-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            font-size: 0.9rem;
        }
        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .share-btn.fb { background: #1877F2; }
        .share-btn.tw { background: #000000; }
        .share-btn.li { background: #0A66C2; }
        .share-btn.wa { background: #25D366; }

        /* Sidebar */
        .blog-sidebar {
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            background: var(--white);
            border-radius: 12px;
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
        }
        .sidebar-widget .widget-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--ash);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--red-primary);
        }
        .recent-post-item {
            display: flex;
            gap: 14px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            transition: all var(--transition);
        }
        .recent-post-item:last-child {
            border-bottom: none;
        }
        .recent-post-item:hover {
            transform: translateX(5px);
        }
        .recent-post-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }
        .recent-post-item .rp-info h5 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--ash);
            margin-bottom: 2px;
            line-height: 1.3;
        }
        .recent-post-item .rp-info .rp-date {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* CTA Widget */
        .cta-widget .cta-btn-block {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            margin-bottom: 12px;
            border: 2px solid transparent;
        }
        .cta-widget .cta-btn-block i {
            font-size: 1.4rem;
            width: 32px;
            text-align: center;
        }
        .cta-widget .btn-whatsapp {
            background: #25D366;
            color: #fff;
            border-color: #25D366;
        }
        .cta-widget .btn-whatsapp:hover {
            background: #1da851;
            border-color: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
            color: #fff;
        }
        .cta-widget .btn-call {
            background: var(--red-primary);
            color: #fff;
            border-color: var(--red-primary);
        }
        .cta-widget .btn-call:hover {
            background: var(--red-dark);
            border-color: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(192, 0, 12, 0.3);
            color: #fff;
        }
        .cta-widget .btn-cta-primary {
            background: var(--red-primary);
            color: #fff;
            border-color: var(--red-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 20px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            width: 100%;
            border: 2px solid var(--red-primary);
        }
        .cta-widget .btn-cta-primary:hover {
            background: var(--red-dark);
            border-color: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(192, 0, 12, 0.3);
            color: #fff;
        }

        /* Related Posts */
        .related-posts {
            background: var(--cream);
            padding: 60px 0;
        }
        .section-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--red-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-eyebrow::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--red-primary);
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 700;
            color: var(--ash);
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .section-title .fire {
            color: var(--red-primary);
        }
        .related-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            height: 100%;
            border: 1px solid var(--border);
        }
        .related-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
            border-color: var(--red-primary);
        }
        .related-card .rel-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .related-card .rel-body {
            padding: 1.5rem;
        }
        .related-card .rel-body .rel-tag {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red-primary);
            background: rgba(192, 0, 12, 0.08);
            padding: 3px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 0.6rem;
        }
        .related-card .rel-body h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--ash);
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }
        .related-card .rel-body .rel-date {
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        .related-card .rel-body a {
            color: var(--red-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .related-card .rel-body a:hover {
            gap: 12px;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--ember) 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            right: -10%;
            bottom: -50%;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        }
        .cta-banner h2 {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
            position: relative;
        }
        .cta-banner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 36px;
            position: relative;
        }
        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }
        .btn-white {
            background: #fff;
            color: var(--red-primary);
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
        }
        .btn-white:hover {
            background: var(--ash);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
        }
        .btn-outline-white:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            color: #fff;
        }

        /* Footer */
        footer {
            background: var(--ash);
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-top {
            padding: 70px 0 50px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 70px 30px 50px;
        }
        .footer-brand .logo {
            margin-bottom: 18px;
        }
        .footer-brand p {
            font-size: 13.5px;
            line-height: 1.7;
            margin-bottom: 22px;
        }
        .social-links {
            display: flex;
            gap: 10px;
        }
        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
        }
        .social-btn:hover {
            background: var(--red-primary);
            border-color: var(--red-primary);
            color: #fff;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.05em;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--fire-bright);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 22px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12.5px;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: var(--fire-bright);
        }

        /* Floating WhatsApp */
        .float-wa {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #25D366;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: #fff;
            animation: floatBounce 3s ease-in-out infinite;
        }
        .float-wa:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
            color: #fff;
        }
        @keyframes floatBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        /* Back to Top */
        #backTop {
            position: fixed;
            bottom: 90px;
            right: 28px;
            z-index: 999;
            width: 44px;
            height: 44px;
            background: rgba(200, 16, 46, 0.85);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            border: none;
        }
        #backTop.visible {
            opacity: 1;
            pointer-events: all;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .footer-top { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 991px) {
            .navbar-inner { padding: 0 20px; }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .footer-top { grid-template-columns: 1fr; gap: 32px; }
            .blog-detail-hero { height: 40vh; min-height: 300px; }
            .blog-main-content .featured-image { height: 350px; }
            .blog-sidebar { position: static; margin-top: 2rem; }
            .blog-main-content .content-body { padding: 1.8rem; }
        }
        @media (max-width: 767px) {
            .container { padding: 0 16px; }
            .blog-detail-hero { height: 35vh; min-height: 280px; }
            .blog-main-content .featured-image { height: 220px; }
            .blog-main-content .content-body h1 { font-size: 1.5rem; }
            .cta-banner { padding: 50px 0; }
            .cta-btns { flex-direction: column; align-items: center; }
            .cta-btns a { width: 100%; justify-content: center; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-bottom a { margin: 0 8px; }
            .recent-post-item img { width: 55px; height: 55px; }
            .share-section { justify-content: center; }
        }
        @media (max-width: 576px) {
            .navbar-inner { padding: 0 12px; height: 60px; }
            .logo-text { font-size: 20px; }
            .logo-flame { width: 34px; height: 34px; }
            .btn-inquire { padding: 6px 14px; font-size: 11px; }
            .blog-main-content .content-body { padding: 1.2rem; }
            .blog-main-content .content-body .article-content { font-size: 0.88rem; }
        }
