.pba-faq-section {
    background: #f7f7fb;
    padding: 22px 0 40px
}

.pba-faq-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.pba-faq-head {
    display: block;
    margin-bottom: 28px
}

.pba-faq-title {
    margin: 0 0 10px;
    font-size: 40px;
    line-height: .95;
    font-weight: 800;
    letter-spacing: -1.6px;
    color: #f6b500;
}

.pba-faq-desc {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.65;
    color: #5f6673;
    font-weight: 500
}

.pba-faq-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 26px
}

.pba-faq-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.pba-faq-card-dark {
    background: linear-gradient(135deg, #ffcd38 0, #f6b500 100%);
    border-radius: 8px;
    color: #fff;
    padding: 28px 24px;
    box-shadow: 0 10px 28px rgba(204, 136, 0, 0.3);
}

.pba-faq-badge {
    width: 24px;
    height: 24px;
    color: #ff7f22;
    margin-bottom: 16px
}

.pba-faq-side-title {
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff
}

.pba-faq-side-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.pba-faq-side-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .88);
    font-weight: 500
}

.pba-faq-side-list li:last-child {
    margin-bottom: 0
}

.pba-faq-side-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff7f22
}

.pba-faq-card-light {
    background: #fff;
    border-radius: 8px;
    padding: 22px 20px 18px;
    box-shadow: 0 8px 24px rgba(16, 39, 70, .06)
}

.pba-faq-help-title {
    margin: 0 0 10px;
    color: #f6b500;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800
}

.pba-faq-help-desc {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: #667085;
    font-weight: 500
}

.pba-faq-help-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    margin-bottom: 10px;
    background: #f6f6f8;
    border-radius: 6px;
    text-decoration: none !important;
    color: #f6b500 !important;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
    box-sizing: border-box
}

.pba-faq-help-btn:last-child {
    margin-bottom: 0
}

.pba-faq-help-btn:hover {
    background: #eef2f7;
    transform: translateY(-1px)
}

.pba-faq-help-btn svg {
    width: 16px;
    height: 16px;
    color: #b05a11;
    flex: 0 0 16px
}

.pba-faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.pba-faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(16, 39, 70, .05);
    overflow: hidden;
    transition: all .3s ease
}

.pba-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    user-select: none;
    outline: none
}

.pba-faq-item summary::-webkit-details-marker {
    display: none
}

.pba-faq-fn {
    flex: 0 0 28px;
    color: #f59a57;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px
}

.pba-faq-q {
    flex: 1 1 auto;
    color: #f6b500;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
    margin: 0
}

.pba-faq-arrow {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    position: relative
}

.pba-faq-arrow:after,
.pba-faq-arrow:before {
    content: "";
    position: absolute;
    top: 8px;
    width: 8px;
    height: 2px;
    background: #768196;
    border-radius: 2px;
    transition: .25s ease
}

.pba-faq-arrow:before {
    left: 2px;
    transform: rotate(45deg)
}

.pba-faq-arrow:after {
    right: 2px;
    transform: rotate(-45deg)
}

.pba-faq-item[open] .pba-faq-arrow:before {
    transform: rotate(-45deg)
}

.pba-faq-item[open] .pba-faq-arrow:after {
    transform: rotate(45deg)
}

.pba-faq-answer {
    display: none;
    padding: 0 24px 22px 68px;
    color: #606979;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
    border-top: 1px solid #f0f2f6;
    animation: faqFadeIn .4s ease-in-out
}

.pba-faq-item[open] .pba-faq-answer {
    display: block
}

.pba-faq-answer p {
    margin: 16px 0 0
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.pba-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(214, 137, 0, .88), rgba(214, 137, 0, .88)), url(https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=1600&auto=format&fit=crop) center center/cover no-repeat;
    border-radius: 0
}

.pba-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 20px 52px
}

.pba-hero-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 64px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
    max-width: 900px
}

.pba-hero-desc {
    margin: 0 0 34px;
    max-width: 820px;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500
}

.pba-hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
    margin-bottom: 34px
}

.pba-feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 16px 18px;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-sizing: border-box
}

.pba-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.pba-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    transition: all .25s ease;
    box-sizing: border-box
}

.pba-btn-hotline {
    background: #ffffff;
    color: #f6b500 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.pba-btn-hotline:hover {
    background: #f0f0f0;
    color: #f6b500 !important;
    transform: translateY(-2px);
}

.pba-btn-zalo {
    background: #111111;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.pba-btn-zalo:hover {
    background: #333333;
    color: #ffffff !important;
    transform: translateY(-2px);
}

@media (max-width:991px) {
    .pba-faq-grid {
        grid-template-columns: 1fr
    }

    .pba-faq-title {
        font-size: 42px
    }

    .pba-hero-inner {
        padding: 40px 16px 42px
    }

    .pba-hero-title {
        font-size: 42px;
        line-height: 1.2;
        max-width: 100%
    }

    .pba-hero-desc {
        font-size: 17px;
        line-height: 1.65;
        max-width: 100%
    }

    .pba-hero-features {
        grid-template-columns: 1fr;
        max-width: 100%
    }

    .pba-feature-box {
        font-size: 17px;
        min-height: 58px;
        padding: 14px 16px
    }

    .pba-hero-actions {
        flex-direction: column
    }

    .pba-hero-btn {
        width: 100%;
        font-size: 17px;
        min-height: 54px
    }
}

@media (max-width:767px) {
    .pba-faq-wrap {
        padding: 0 16px
    }

    .pba-faq-title {
        font-size: 34px;
        letter-spacing: -.6px
    }

    .pba-faq-desc {
        font-size: 16px
    }

    .pba-faq-item summary {
        padding: 18px 16px;
        gap: 12px
    }

    .pba-faq-fn {
        flex-basis: 24px;
        font-size: 12px
    }

    .pba-faq-q {
        font-size: 16px
    }

    .pba-faq-answer {
        padding: 0 16px 18px 52px;
        font-size: 15px
    }

    .pba-faq-side-title {
        font-size: 24px
    }

    .pba-faq-help-title {
        font-size: 20px
    }
}

@media (max-width:575px) {
    .pba-hero-title {
        font-size: 34px;
        letter-spacing: -.5px
    }

    .pba-hero-desc {
        font-size: 16px
    }

    .pba-feature-box {
        font-size: 16px
    }
}

.pricing-bg {
    background-image: url('https://phelieuductin.com/wp-content/uploads/2026/05/bang-gia-phe-lieu.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    padding: 4rem 0;
}

.pricing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.pricing-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 16px;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 1.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.875rem;
}

.price-table th {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1rem;
    color: #fde047;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.price-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.price-table td.highlight {
    color: #fde047;
    font-weight: 600;
}

.price-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1.25rem;
    font-size: 0.875rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.table-responsive {
    width: 100% !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px;
    padding: 8px 4px !important;
    overflow: hidden !important;
}

.price-table {
    width: 100% !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    text-align: left;
}

.price-table th {
    padding: 10px 4px !important;
    font-size: 0.75rem !important;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    border-bottom: 2px solid #fde047 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    vertical-align: bottom;
    text-align: left;
}

.price-table td {
    padding: 12px 4px !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    color: #e5e7eb !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    vertical-align: middle;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.price-table tbody tr:last-child td {
    border-bottom: none !important;
}

.price-table td.category-name {
    font-weight: 700 !important;
    color: #ffffff !important;
}

.price-table td.highlight {
    font-weight: 700 !important;
    color: #fde047 !important;
    text-align: left;
}

.price-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .table-responsive {
        padding: 20px !important;
    }

    .price-table th,
    .price-table td {
        padding: 16px 12px !important;
        font-size: 1rem !important;
    }

    .price-table td.highlight br {
        display: none !important;
    }

    .price-table td.highlight {
        white-space: nowrap !important;
    }
}

.text-center {
    text-align: center;
}

div#masthead {
    background-color: #fff;
}

div#masthead ul.header-nav.header-nav-main.nav.nav-right.nav-spacing-large.nav-uppercase li.menu-item a.nav-top-link {

    font-weight: 700;
}

.lienhe-menu a.nav-top-link {
    border: 2px solid #1f8538;
    border-radius: 20px;
    padding: 7px 14px;
    color: #1f8538 !important;
}

.logo-left .logo {
    margin-right: 0;
}

.lienhe-menu a.nav-top-link:hover {
    color: #fff !important;
    border: 2px solid #fff;
    background-image: linear-gradient(90deg, #5fc53f, #218738);
}

div#masthead .header-bottom {
    background: linear-gradient(135deg, #f6b500 0%, #d68900 100%);
}

.nav-dropdown {
    min-width: 300px;
}

ul.sub-menu.nav-dropdown.nav-dropdown-default {
    border: none;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    padding: 0px;
    border-top: 3px solid #f6b500;
}

ul.sub-menu.nav-dropdown.nav-dropdown-default li:hover {
    background-color: #f6b500;
}

ul.sub-menu.nav-sidebar-ul.children li:before {
    content: "-";
    padding-top: 6px;
    padding-left: 4px;
    position: absolute;
}

ul.sub-menu.nav-sidebar-ul.children {
    padding-left: 16px;
}

ul.sub-menu.nav-dropdown.nav-dropdown-default li:hover a {
    color: #ffffff;
    border-bottom: none;
}

.nav-dropdown-has-arrow li.has-dropdown:after {
    border-bottom-color: #fff0;
}

.nav-dropdown-has-arrow li.current-dropdown.has-dropdown:before,
.nav-dropdown-has-arrow li.current-dropdown.has-dropdown:after {
    opacity: 0;
}

ul.sub-menu.nav-dropdown.nav-dropdown-default li a {
    color: #111111;
    font-weight: 600;
    font-size: 15px;
}

/* css section-footer */
.section-footer .mota p,
.section-footer h3,
.section-footer li,
.section-footer a {
    color: #111111;
}

.section-footer .mota p,
.section-footer li,
.section-footer a {
    font-size: 14px;
}

a#top-link {
    background-image: linear-gradient(90deg, #f6b500, #f6b500);
    border: none;
    color: #fff;
    height: 46px;
}

svg.flickity-button-icon {
    background-image: linear-gradient(90deg, #f6b500, #f6b500);
    border: none;
}

svg.flickity-button-icon:hover {
    border: none;
}

button.flickity-button.flickity-prev-next-button.next:hover svg {
    border: none;
}

.slider-nav-circle .flickity-prev-next-button svg,
.slider-nav-circle .flickity-prev-next-button .arrow {
    border-color: #fff !important;

}

.slider-nav-circle .flickity-prev-next-button svg,
.slider-nav-circle .flickity-prev-next-button .arrow {
    border-color: #fff !important;
    color: #fff !important;
}

.pba-footer {
    background: linear-gradient(135deg, #f6b500 0%, #d68900 100%);
    border-radius: 0px;
    overflow: hidden;
    color: #111111;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.pba-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 22px 28px;
}

.pba-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 42px;
}

.pba-footer-title {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #111111;
}

.pba-footer-brand {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    color: #111111;
}

.pba-footer-desc {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(17, 17, 17, .9);
    font-weight: 500;
    max-width: 320px;
}

.pba-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pba-footer-list li {
    margin: 0 0 12px;
}

.pba-footer-list li:last-child {
    margin-bottom: 0;
}

.pba-footer-list a {
    color: rgba(17, 17, 17, .9);
    text-decoration: none !important;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    transition: .25s ease;
}

.pba-footer-list a:hover {
    color: #000000;
}

.pba-footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pba-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 14px;
    color: #111111;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.pba-footer-contact-list li:last-child {
    margin-bottom: 0;
}

.pba-footer-contact-list svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #111111;
    margin-top: 4px;
}

.pba-footer-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
}

.pba-footer-hotline-box {
    background: rgba(0, 0, 0, .06);
    border-left: 4px solid #111111;
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.pba-footer-hotline-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: rgba(17, 17, 17, .8);
}

.pba-footer-hotline-number {
    display: block;
    color: #111111;
    text-decoration: none !important;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.pba-footer-mini-list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.pba-footer-mini-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
}

.pba-footer-mini-list li:last-child {
    margin-bottom: 0;
}

.pba-footer-mini-list a,
.pba-footer-mini-list span {
    color: #111111;
    text-decoration: none !important;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.pba-footer-mini-list svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #111111;
}

.pba-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pba-footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.1);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: .25s ease;
}

.pba-footer-social a:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-1px);
}

.pba-footer-social svg {
    width: 15px;
    height: 15px;
}

.pba-footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, .15);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.pba-footer-copy,
.pba-footer-cert {
    color: rgba(17, 17, 17, .8);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pba-footer-cert span {
    margin-right: 14px;
    display: inline-block;
}

.pba-footer-cert span:last-child {
    margin-right: 0;
}

@media (max-width: 991px) {
    .pba-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .pba-footer {
        border-radius: 14px;
    }

    .pba-footer-inner {
        padding: 26px 16px 22px;
    }

    .pba-footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .pba-footer-area-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pba-footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 479px) {
    .pba-footer-area-grid {
        grid-template-columns: 1fr;
    }
}

.absolute-footer {
    display: none !important;
}

.header-bottom.wide-nav {
    background: linear-gradient(135deg, #f6b500 0%, #d68900 100%) !important;
    border-bottom: none !important;
}

.header-bottom .flex-col.flex-center {
    flex-basis: 100%;
    max-width: 100%;
    justify-content: flex-end !important;
}

.header-bottom .nav.header-nav {
    justify-content: flex-end !important;
    width: 100%;
}

.header-bottom-nav>.menu-item>.nav-top-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    padding: 16px 18px !important;
    display: flex;
    align-items: center;
}

.header-bottom-nav>.menu-item.has-dropdown>.nav-top-link>i.icon-angle-down {
    margin-left: 6px;
    font-size: 12px;
    font-weight: bold;
}

.header-bottom-nav>.menu-item:hover>.nav-top-link,
.header-bottom-nav>.menu-item.active>.nav-top-link,
.header-bottom-nav>.menu-item.current-menu-item>.nav-top-link {
    color: #ffffff !important;
}

.header-bottom-nav>.menu-item:hover>.nav-top-link>i.icon-angle-down,
.header-bottom-nav>.menu-item.active>.nav-top-link>i.icon-angle-down,
.header-bottom-nav>.menu-item.current-menu-item>.nav-top-link>i.icon-angle-down {
    color: #ffffff !important;
}

/* Single Post Styles extracted from blog-single.html */
.entry-content h2 {
    font-size: 24px !important;
    color: #f6b500 !important;
}

.entry-content h3 {
    font-size: 20px !important;
}

.entry-content h4 {
    font-size: 18px !important;
}

.entry-content a {
    color: #0000ff;
}

.entry-content a:hover {
    color: #f6b500;
}

.entry-content table {
    border: 1px solid #ddd;
}

.entry-content table tr td {
    border: 1px solid #ddd;
    padding: 10px;
}

.entry-content table tr:first-child td {
    background: #f6b500;
    color: #fff;
}

.entry-content p {
    font-size: 16px !important;
}

.entry-content ul li {
    font-size: 16px !important;
}

.feature {
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.feature .image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-size: cover;
    background-position: center;
}

ul.row.related-post li {
    list-style: none;
}

.related-title {
    line-height: 1.3 !important;
    margin-top: 10px !important;
    margin-bottom: 10px;
}

.related-title a {
    color: #f6b500 !important;
    font-weight: bold;
}

.mota-relate {
    padding: 10px;
}

.related-except {
    font-size: 14px;
}

.item-post {
    border: 1px solid #ddd;
    padding: 0px !important;
    width: 33.33% !important;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.related-post {
    gap: 15px;
    display: flex;
}

.item-post .feature {
    overflow: hidden;
}

.item-post .image {
    border-radius: 10px 10px 0px 0px;
    transition: transform 0.5s ease;
}

.item-post:hover .image {
    transform: scale(1.05);
}

.custom-breadcrumb p {
    color: #f6b500;
    font-size: 15px;
    margin-bottom: 10px;
}

.custom-breadcrumb a {
    color: #f6b500;
    transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
    color: #f6b500;
}

.entry-title {
    font-size: 28px !important;
    color: #f6b500 !important;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.3;
}

.entry-meta.custom-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
}

.entry-meta.custom-meta span {
    display: inline-flex;
    align-items: center;
}

.entry-meta.custom-meta span.meta-author a {
    color: #f6b500;
    font-weight: 500;
}

.entry-divider-custom {
    border-bottom: 2px solid #f6b500;
    width: 100%;
}

@media(max-width: 600px) {
    .item-post {
        width: 100% !important;
    }

    .related-post {
        flex-wrap: wrap;
    }
}

.btn-xemthem {
    display: inline-block;
    padding: 10px 20px;
    background: #f6b500;
    border-radius: 5px;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-xemthem:hover {
    background: #b37700;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(204, 136, 0, 0.3);
}

.entry-header-text {
    position: relative;
    margin-bottom: 0 !important;
}

/* Custom Archive Grid */
.custom-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.custom-archive-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 5px;
    overflow: hidden;
}

.custom-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.custom-archive-card .card-link {
    display: block;
    width: 100%;
    overflow: hidden;
}

.custom-archive-card .card-image {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background-size: cover;
    background-position: center;
    background-color: #f1f1f1;
    transition: transform 0.5s ease;
}

.custom-archive-card:hover .card-image {
    transform: scale(1.05);
}

.custom-archive-card .card-content {
    border: 1px solid #e5e5e5;
    border-top: none;
    padding: 20px 15px;
    text-align: center;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.custom-archive-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.custom-archive-card .card-title a {
    color: #f6b500;
    /* Slight lighter blue matching screenshot */
}

.custom-archive-card .card-title a:hover {
    color: #f6b500;
}

.custom-archive-card .card-excerpt {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0;
}

.custom-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 10px;
}

.custom-pagination ul li a,
.custom-pagination ul li span.current {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #ddd;
    color: #f6b500;
    font-weight: 600;
    text-decoration: none;
}

.custom-pagination ul li span.current,
.custom-pagination ul li a:hover {
    background: #f6b500;
    color: #fff;
    border-color: #f6b500;
}

@media(max-width: 849px) {
    .custom-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width: 549px) {
    .custom-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage / Builder Blog Post Box Styles */
.box-blog-post {
    height: 100%;
}

.box-blog-post .box-image {
    background-color: #f1f1f1;
}

.box-blog-post .box-text {
    border: 1px solid #e5e5e5;
    border-top: none;
    padding: 20px 15px !important;
    background: #fff;
}

.box-blog-post .post-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
    line-height: 1.4;
}

.box-blog-post .post-title a {
    color: #f6b500;
}

.box-blog-post .post-title a:hover {
    color: #f6b500;
}

.box-blog-post .from_the_blog_excerpt {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0;
}

.box-blog-post .is-divider {
    display: none;
}

/* 404 Page Styles */
.custom-404-wrapper {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.custom-404-content {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.title-404 {
    font-size: 100px;
    font-weight: 900;
    color: #f6b500;
    line-height: 1;
    margin-bottom: 10px;
}

.title-404 span {
    color: #f6b500;
}

.subtitle-404 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.desc-404 {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.search-404 {
    margin-bottom: 30px;
}

.btn-404 {
    background: #f6b500;
}

.btn-404:hover {
    background: #b37700;
    box-shadow: 0 4px 10px rgba(204, 136, 0, 0.3);
}

/* Off-canvas Mobile Menu Dark Theme Override */
.off-canvas-left.dark .mfp-content,
.off-canvas-right.dark .mfp-content {
    background-color: #f6b500 !important;
}

/* =============================================
   FLOATING CONTACT BUTTONS
   ============================================= */
.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999999;
}

.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: visible;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .3);
}

/* Ping / ripple background */
.float-btn .ping-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ping-ripple 2s ease-out infinite;
    opacity: 0;
}

.float-btn.zalo {
    background: #fff;
}

.float-btn.zalo .ping-bg {
    background: #0068ff;
}

.float-btn.phone {
    background: #f6b500;
    color: #111111;
}

.float-btn.phone .ping-bg {
    background: #f6b500;
}

/* Wiggle animation for phone icon */
.float-btn.phone svg {
    animation: wiggle 1.4s ease-in-out infinite;
    color: #111111;
}

/* Tooltip */
.float-btn .tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 17, 17, .88);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.float-btn .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(17, 17, 17, .88);
}

.float-btn:hover .tooltip {
    opacity: 1;
}

/* Keyframes */
@keyframes ping-ripple {
    0%   { transform: scale(1);   opacity: .55; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    15%       { transform: rotate(-18deg) scale(1.1); }
    30%       { transform: rotate(14deg) scale(1.1); }
    45%       { transform: rotate(-10deg); }
    60%       { transform: rotate(8deg); }
    75%       { transform: rotate(-4deg); }
}

/* Mobile: slightly smaller */
@media (max-width: 549px) {
    .floating-buttons {
        bottom: 70px;
        right: 14px;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

    .float-btn .tooltip {
        display: none;
    }
}