/* =========================================
   ANTI COPY PASTE (MOBILE & DESKTOP)
   ========================================= */
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Izinkan input dan textarea agar form tetap bisa diisi */
input, textarea, select {
    -webkit-user-select: auto !important;
    -khtml-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}

/* =========================================
   1. CORE VARIABLES & SETUP
   ========================================= */
:root {
    --brand-red: #D32F2F;
    --brand-dark-red: #B71C1C;
    --brand-yellow: #FFC107;
    --brand-yellow-hover: #FFB300;
    --brand-orange: #F57C00;
    --text-dark: #1F2937;
    --text-gray: #4B5563;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(211, 47, 47, 0.15);
    --radius-md: 12px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background-color: var(--bg-white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { color: var(--brand-dark-red); line-height: 1.3; }
a { text-decoration: none; transition: 0.3s ease; }
ul { list-style: none; }

.section-padding { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; margin-bottom: 15px; font-family: 'Playfair Display', serif;}
.section-header p { font-size: 1.1rem; color: var(--text-gray); }
.center-cta { text-align: center; margin-top: 40px; }

/* =========================================
   GLOBAL CTA WHATSAPP SECTION BUTTON
   ========================================= */
.btn-section-wa {
    background-color: #25D366; color: #fff; padding: 15px 35px; border-radius: 50px; 
    font-size: 1.05rem; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; 
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); transition: all 0.3s ease;
}
.btn-section-wa:hover { background-color: #128C7E; transform: translateY(-3px); box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4); color: #fff;}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.floating-wa {
    position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: #fff;
    padding: 15px 25px; border-radius: 50px; font-size: 1.1rem; font-weight: 700;
    display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
}
.floating-wa:hover { background-color: #128C7E; transform: translateY(-5px) scale(1.05); color: #fff;}

/* =========================================
   2. NAVBAR (GLASSMORPHISM)
   ========================================= */
header {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-sm); border-bottom: 3px solid var(--brand-yellow);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 24px; font-weight: 900; color: var(--brand-dark-red); line-height: 1; text-transform: uppercase;}
.logo-text span { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); letter-spacing: 2px;}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand-red); }
.btn-nav { background: var(--brand-red); color: #fff !important; padding: 12px 25px; border-radius: 50px; font-weight: 700; box-shadow: 0 4px 10px rgba(183, 28, 28, 0.3);}
.btn-nav:hover { background: var(--brand-dark-red); transform: translateY(-2px); }

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.95), rgba(211, 47, 47, 0.85)), url('https://images.unsplash.com/photo-1604503468506-a8da13d82791?auto=format&fit=crop&q=80') center/cover;
    color: #fff; padding: 140px 5% 120px; text-align: center; position: relative;
}
.hero-badge { background: var(--brand-yellow); color: var(--brand-dark-red); padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; display: inline-block; box-shadow: 0 4px 10px rgba(0,0,0,0.2);}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; color: #fff; margin-bottom: 25px; text-transform: uppercase; letter-spacing: -1px;}
.hero h1 span { color: var(--brand-yellow); }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 40px; color: #f3f4f6; font-weight: 300;}
.btn-hero { background: var(--brand-yellow); color: var(--brand-dark-red); padding: 18px 45px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4); display: inline-block; transition: 0.3s;}
.btn-hero:hover { background: var(--brand-yellow-hover); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(255, 193, 7, 0.6); }

/* =========================================
   4. TENTANG KAMI
   ========================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 40px;}
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--brand-yellow); width: 100%; display: flex; }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 350px; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif;}
.about-text p { color: var(--text-gray); margin-bottom: 20px; font-size: 1.05rem; text-align: justify;}
.about-tags { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 30px; }
.tag { background: var(--bg-light); color: var(--brand-red); padding: 8px 20px; border-radius: 50px; font-weight: 700; border: 1px solid #fca5a5; font-size: 0.9rem;}

/* =========================================
   5. GALERI PRODUK & OUTLET
   ========================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; cursor: pointer; background: #000; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.4s ease, opacity 0.4s ease; opacity: 0.9;}
.gallery-item:hover img { transform: scale(1.1); opacity: 0.7; }
.gallery-caption { position: absolute; bottom: -50px; left: 0; width: 100%; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; font-weight: 600; text-align: center; transition: 0.3s; opacity: 0;}
.gallery-item:hover .gallery-caption { bottom: 0; opacity: 1; }

/* =========================================
   6. NILAI PLUS (KEUNGGULAN)
   ========================================= */
.plus-section { background: var(--bg-light); }
/* Menjadikan desktop 3 kolom (sehingga 6 item menjadi 2 baris: 3 atas, 3 bawah) */
.plus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Menyesuaikan untuk layar Tablet (menjadi 2 kolom) */
@media (max-width: 992px) {
    .plus-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Menyesuaikan untuk layar HP (menjadi 1 kolom memanjang ke bawah) */
@media (max-width: 768px) {
    .plus-grid { grid-template-columns: 1fr; }
}
.plus-card { background: #fff; padding: 40px 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: 0.3s; border-bottom: 4px solid transparent; }
.plus-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--brand-red); }
.plus-icon { width: 60px; height: 60px; background: #fee2e2; color: var(--brand-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.plus-card h3 { font-size: 1.25rem; margin-bottom: 15px; color: var(--text-dark); }
.plus-card p { font-size: 0.95rem; color: var(--text-gray); }

/* =========================================
   7. PROMO & PRICING
   ========================================= */
.pricing-wrap { 
    max-width: 1000px; margin: 0 auto; display: flex; flex-direction: row; 
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); 
    border: 2px solid var(--brand-red);
}
.pricing-left { 
    background: var(--brand-dark-red); color: #fff; padding: 60px 50px; 
    flex: 1; display: flex; flex-direction: column; justify-content: center;
    border-radius: calc(var(--radius-lg) - 2px) 0 0 calc(var(--radius-lg) - 2px);
}
.pricing-left h3 { color: var(--brand-yellow); font-size: 2rem; margin-bottom: 20px; font-family: 'Playfair Display', serif;}
.pricing-left p { color: #f3f4f6; margin-bottom: 30px; }
.normal-price { font-size: 1.5rem; text-decoration: line-through; color: #fca5a5; margin-bottom: 5px; font-weight: 600;}
.termin-info { font-size: 0.9rem; background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 50px; display: inline-block; margin-bottom: 20px;}

.pricing-right { 
    padding: 60px 40px; background: #fff; flex: 1; text-align: center; 
    display: flex; flex-direction: column; justify-content: center; position: relative;
    border-radius: 0 calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0;
}
.promo-badge { 
    display: inline-block; background: var(--brand-yellow); color: var(--brand-dark-red); 
    padding: 8px 30px; border-radius: 50px; font-weight: 900; font-size: 1.1rem; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin-bottom: 25px;
}
.promo-title { font-weight: 800; color: var(--brand-red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;}
.promo-price { font-size: 3.5rem; font-weight: 900; color: var(--text-dark); line-height: 1; margin-bottom: 10px; font-family: 'Poppins', sans-serif;}
.promo-save { color: #16a34a; font-weight: 700; font-size: 1.1rem; margin-bottom: 20px; background: #dcfce7; display: inline-block; padding: 5px 20px; border-radius: 50px;}
.promo-note { font-size: 0.85rem; color: var(--text-gray); font-style: italic; margin-bottom: 30px;}
.btn-promo { background: var(--brand-red); color: #fff; padding: 18px; border-radius: 50px; font-weight: 800; text-transform: uppercase; display: block; width: 100%; transition: 0.3s;}
.btn-promo:hover { background: var(--brand-dark-red); box-shadow: 0 10px 20px rgba(183, 28, 28, 0.3); color: #fff;}

/* =========================================
   8. TERMIN & LANGKAH KEMITRAAN
   ========================================= */
.termin-section { background: var(--brand-dark-red); color: #fff; padding: 80px 5%; }
.termin-section .section-header h2 { color: var(--brand-yellow); }
.termin-section .section-header p { color: #fca5a5; }
.termin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.termin-card { background: rgba(255,255,255,0.05); border: 2px solid var(--brand-yellow); border-radius: var(--radius-md); padding: 30px 20px; text-align: center; }
.t-badge { background: var(--brand-yellow); color: var(--brand-dark-red); font-size: 1.5rem; font-weight: 900; padding: 10px; border-radius: 8px; margin-bottom: 20px; display: inline-block;}
.termin-card h4 { color: #fff; font-size: 1.1rem; }

.steps-container { max-width: 1000px; margin: 60px auto 0; background: #fff; padding: 40px; border-radius: var(--radius-lg); color: var(--text-dark); box-shadow: var(--shadow-md);}
.steps-container h3 { text-align: center; margin-bottom: 30px; font-size: 1.8rem; color: var(--brand-red);}
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 30px;}
.step-item { display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 0.95rem; background: var(--bg-light); padding: 15px; border-radius: 8px; border-left: 4px solid var(--brand-red);}
.step-num { color: var(--brand-red); font-weight: 900; font-size: 1.2rem; min-width: 25px;}

/* =========================================
   9. SUPPORT & BENEFIT (KEMITRAAN KIT)
   ========================================= */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.benefit-card { display: flex; align-items: flex-start; gap: 20px; background: #fff; padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid #f3f4f6;}
.b-icon { color: var(--brand-orange); font-size: 2rem; }
.b-text h4 { margin-bottom: 8px; color: var(--text-dark); font-size: 1.1rem;}
.b-text p { font-size: 0.9rem; color: var(--text-gray); }

/* =========================================
   10. PARTNER & MEDIA
   ========================================= */
.partner-section { background: var(--bg-light); text-align: center; padding: 60px 5%; }
.partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; opacity: 0.6; filter: grayscale(100%); margin-top: 30px; transition: 0.3s;}
.partner-logos:hover { opacity: 1; filter: grayscale(0); }
.partner-logos img { height: 40px; object-fit: contain; transition: transform 0.3s; }
.partner-logos img:hover { transform: scale(1.1); }

/* =========================================
   11. CONTACT FORM CTA & FOOTER
   ========================================= */
.contact { background: var(--text-dark); color: #fff; padding: 80px 5%; text-align: center; }
.contact h2 { color: var(--brand-yellow); font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px;}
.contact p { color: #d1d5db; margin-bottom: 40px; font-size: 1.1rem;}

.contact-form-wrapper {
    background: #fff; padding: 40px; border-radius: var(--radius-lg);
    max-width: 650px; margin: 0 auto 50px; text-align: left;
    box-shadow: var(--shadow-lg); color: var(--text-dark);
}
.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 25px; text-align: center; color: var(--brand-dark-red);}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px; border: 1px solid #d1d5db;
    border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 1rem;
    transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}
.wa-btn-submit { background: #25D366; color: #fff; border: none; padding: 15px; width: 100%; border-radius: 50px; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); transition: 0.3s; }
.wa-btn-submit:hover { background: #16a34a; transform: translateY(-3px); }

.bank-info { max-width: 800px; margin: 0 auto; background: rgba(255,255,255,0.05); border: 2px dashed rgba(255,255,255,0.2); padding: 40px; border-radius: var(--radius-lg); text-align: left; }
.bank-info h3 { color: var(--brand-yellow); margin-bottom: 20px; font-size: 1.4rem;}
.bank-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.bank-card { background: #fff; color: var(--text-dark); padding: 20px; border-radius: 8px; border-left: 5px solid var(--brand-red);}
.bank-card h4 { color: #1e3a8a; font-size: 1.2rem; margin-bottom: 5px;}
.bank-card .rek { font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; margin-bottom: 5px;}
.bank-card .an { font-size: 0.85rem; font-weight: 600; color: var(--text-gray);}

footer { background: #111827; color: #9ca3af; text-align: center; padding: 30px 5%; font-size: 0.9rem;}

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img { margin: 0 auto 40px; max-width: 600px; }
    .termin-grid { grid-template-columns: 1fr 1fr; }
    .bank-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .pricing-wrap { flex-direction: column; }
    .pricing-left { border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0; padding: 40px 20px; text-align: center; }
    .pricing-right { border-radius: 0 0 calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px); padding: 40px 20px; }
    .promo-price { font-size: 2.8rem; }
    .about-img img { min-height: 250px; }
    .termin-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px 20px; }
    
    /* Sembunyikan text pada floating WA di HP agar tidak menutupi layar */
    .floating-wa .wa-text { display: none; }
    .floating-wa { padding: 15px; border-radius: 50%; bottom: 20px; right: 20px; }
    .floating-wa i { margin: 0; font-size: 1.5rem; }
}

/* =========================================
   12. NEW BLOG / ARTICLE PAGE STYLES (PREMIUM UI/UX)
   ========================================= */
.blog-page {
    background-color: #FAFAFA;
}

/* Header Section */
.blog-header-section {
    background: #FFFFFF;
    padding: 50px 0;
    border-bottom: 1px solid #EAEAEA;
}
.blog-container-header {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.custom-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 500;
}
.custom-breadcrumb a {
    color: var(--text-gray);
}
.custom-breadcrumb a:hover {
    color: var(--brand-red);
}
.custom-breadcrumb i {
    font-size: 0.7rem;
    margin: 0 10px;
    color: #B2B2B2;
}
.custom-breadcrumb .active-crumb {
    color: var(--brand-red);
    font-weight: 600;
}
.post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 950px;
}
.post-meta-wrapper {
    display: flex;
    gap: 25px;
    color: #777777;
    font-size: 0.9rem;
    flex-wrap: wrap;
    border-top: 1px solid #F0F0F0;
    padding-top: 15px;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.meta-item i {
    color: var(--brand-red);
}

/* Layout Grid */
.main-blog-wrap {
    padding: 60px 0 100px;
}
.blog-grid-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: flex-start;
}

/* Content Area */
.content-article-area {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #EEEEEE;
}
.image-featured-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: var(--shadow-sm);
}
.img-fluid-post {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Typography Inside Content */
.body-text-post p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #333333;
    margin-bottom: 25px;
    text-align: justify;
}
.premium-dropcap::first-letter {
    float: left;
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--brand-red);
    font-family: 'Playfair Display', serif;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 4px;
}
.section-sub-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--brand-dark-red);
    margin: 45px 0 20px;
    padding-left: 15px;
    border-left: 4px solid var(--brand-yellow);
}

/* Blockquote Style */
.editorial-blockquote {
    position: relative;
    background: #FDFDFD;
    border-left: 4px solid var(--brand-red);
    padding: 30px 40px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    border-radius: 0 12px 12px 0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.01);
    border-top: 1px solid #F5F5F5;
    border-right: 1px solid #F5F5F5;
    border-bottom: 1px solid #F5F5F5;
}
.quote-icon-bg {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    color: rgba(213, 47, 47, 0.04);
    z-index: 0;
}

/* Conversion Card Inside Article */
.conversion-article-card {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF9F9 100%);
    border: 1px dashed rgba(211, 47, 47, 0.3);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 55px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.02);
}
.card-cta-icon {
    font-size: 2.5rem;
    color: var(--brand-red);
    margin-bottom: 15px;
}
.conversion-article-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-dark-red);
    margin-bottom: 12px;
}
.conversion-article-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

/* Sidebar Widgets */
.sidebar-article-area {
    position: sticky;
    top: 110px;
}
.sidebar-widget-box {
    background: #FFFFFF;
    padding: 30px 25px;
    border-radius: 14px;
    border: 1px solid #EFEFEF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    margin-bottom: 30px;
}
.sidebar-widget-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F0F0F0;
    position: relative;
}
.sidebar-widget-box h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--brand-red);
}

/* Premium Offer Box Widget */
.premium-offer-widget {
    background: linear-gradient(180deg, var(--brand-dark-red) 0%, #951212 100%);
    color: #FFFFFF;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.premium-offer-widget h4 {
    color: var(--brand-yellow);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.premium-offer-widget h4::after { display: none; }
.premium-offer-widget p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #F3F3F3;
    margin-bottom: 25px;
}
.widget-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--brand-yellow);
    color: var(--brand-dark-red);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.display-price-tag {
    margin-bottom: 25px;
}
.old-price-line {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #EAA8A8;
    font-weight: 500;
}
.new-price-bold {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.price-subtext {
    font-size: 0.75rem;
    color: var(--brand-yellow);
    font-style: italic;
}
.btn-sidebar-action {
    display: block;
    background: var(--brand-yellow);
    color: var(--brand-dark-red);
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}
.btn-sidebar-action:hover {
    background: #FFFFFF;
    color: var(--brand-dark-red);
    transform: translateY(-2px);
}

/* Related Posts List Widget */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.related-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
}
.thumb-post-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.thumb-post-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.text-post-wrapper h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item-date {
    font-size: 0.75rem;
    color: #999999;
    display: block;
}
.related-post-item:hover .thumb-post-wrapper img {
    transform: scale(1.08);
}
.related-post-item:hover .text-post-wrapper h5 {
    color: var(--brand-red);
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .blog-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sidebar-article-area {
        position: static;
    }
}
@media (max-width: 768px) {
    .content-article-area {
        padding: 25px 20px;
    }
    .blog-header-section {
        padding: 35px 0;
    }
    .body-text-post p {
        font-size: 1rem;
        line-height: 1.75;
    }
    .editorial-blockquote {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    .conversion-article-card {
        padding: 25px 20px;
    }
}