:root {
    --brand-orange: #fe7b00;
    --brand-orange-dark: #e56f00;
    --brand-orange-light: #ff940a;
    --brand-dark: #020618;
    --brand-slate: #314158;
    --brand-gray: #62748e;
    --brand-border: #cad5e2;
    --brand-bg: #f1f5f9;
}

* {
    font-family: "Rubik", sans-serif;
}

.btn-outline-orange {
    border: 1.5px solid var(--brand-orange);
    color: var(--brand-orange) !important;
    font-weight: 500;
    border-radius: 5px;
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-outline-orange:hover {
    background: var(--brand-orange);
    color: #fff !important;
}

.tinggi-gambar {
    height: 450px;
}

.garis-bawah {
    border-bottom: 4px solid var(--brand-orange);
}

.garis-kiri {
    border-left: 4px solid var(--brand-orange);
}


.teks-collapse {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.teks-collapse.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.btn-baca-selengkapnya {
    color: #ff940a;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

.btn-baca-selengkapnya:hover {
    color: #e07d00;
    text-decoration: none;
}

.btn-baca-selengkapnya i {
    transition: transform 0.3s ease;
}

.btn-baca-selengkapnya.expanded i {
    transform: rotate(180deg);
}

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
}

.navbar.scrolled {
    box-shadow: 0 2px 6px rgba(2, 6, 24, 0.08);
}

.navbar-brand img {
    width: 130px;
    height: auto;
}

.nav-link {
    color: var(--brand-dark) !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active-link {
    color: var(--brand-orange) !important;
}

.badge-new {
    background: #fb2c36;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 999px;
    line-height: 1;
}

.btn-contact {
    background: var(--brand-orange);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-contact:hover {
    background: var(--brand-orange-dark);
}

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--brand-border);
    box-shadow: 0 8px 32px rgba(2, 6, 24, 0.12);
    padding: 20px;
    width: calc(100vw - 112px);
    max-width: 1216px;
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 10% !important;
}

.dropdown-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 12px;
    margin-bottom: 4px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8125rem;
    color: var(--brand-dark);
    font-weight: 500;
}

.dropdown-item small {
    color: var(--brand-gray);
    font-weight: 400;
    display: block;
    font-size: 0.75rem;
}

.dropdown-item:hover {
    background: #fff7ee;
    color: var(--brand-orange);
}

.active-menu {
    background: #fff7ee;
    color: var(--brand-orange) !important;
}

.dropdown-item:hover small {
    color: var(--brand-orange-dark);
}

.dropdown-sub-item {
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8125rem;
    color: var(--brand-slate);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
}

.dropdown-sub-item:hover {
    background: #fff7ee;
    color: var(--brand-orange);
}

.dropdown-sub-item::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-border);
    flex-shrink: 0;
}

.dropdown-sub-item:hover::before {
    background: var(--brand-orange);
}

.dropdown-divider-col {
    width: 1px;
    background: var(--brand-border);
    margin: 0 8px;
}

/* ===== HERO ===== */
.hero-section {
    width: 100%;
    height: 500px;
    position: relative;
    background: var(--brand-orange);
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(254, 123, 0, 0.9),
            rgba(254, 123, 0, 0.7));
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
    color: #fff;
}

.hero-desc {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 540px;
}

.btn-hero-primary {
    background: #fff;
    color: var(--brand-dark) !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero-secondary {
    border: 1.5px solid #fff;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-image-wrap {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image-wrap img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

/* ===== COMMON ===== */
.section-badge {
    display: inline-block;
    padding: 4px 14px;
    border: 1.5px solid var(--brand-orange);
    border-radius: 999px;
    color: var(--brand-orange);
    font-size: 0.875rem;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 45px;
}

.btn-brand {
    background: var(--brand-orange);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-brand:hover {
    background: var(--brand-orange-dark);
}

.btn-outline-brand {
    border: 1.5px solid var(--brand-border);
    color: var(--brand-dark) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-outline-brand:hover {
    background: #f8fafc;
}

/* ===== ARTICLES ===== */
.articles-section {
    padding: 60px 0;
}

.articles-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.articles-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.articles-img {
    overflow: hidden;
    border-radius: 8px;
}

.articles-img img {
    transition: transform 0.3s ease;
    height: 200px;
    object-fit: cover;
}

.articles-card:hover .articles-img img {
    transform: scale(1.05);
}

.articles-card .h5 {
    color: #1a1a1a !important;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.articles-card .h5:hover {
    color: var(--brand-orange-dark) !important;
}

.articles-card span {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    display: block;
}

.articles-card h6 {
    color: #1a1a1a;
}

.articles-card p {
    color: #999;
    font-size: 0.875rem;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 96px 0;
    background: #fff;
}

.about-image {
    width: 100%;
    height: 428px;
    object-fit: cover;
    border-radius: 16px;
}

.about-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 45px;
}

/* ===== CAROUSEL ===== */
.services-section {
    padding: 96px 0;
    background: #f8fafc;
}

.offers-section {
    padding: 96px 0;
    background: #fff;
}

.testimonials-section {
    padding: 96px 0;
    background: #f8fafc;
}

.carousel-wrapper {
    position: relative;
}

.carousel-track-outer {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(2, 6, 24, 0.08);
    transition: background 0.2s;
}

.carousel-arrow:hover {
    background: #f8fafc;
}

.carousel-arrow.prev {
    left: -50px;
}

.carousel-arrow.next {
    right: -50px;
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.carousel-dot {
    width: 16px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-border);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: var(--brand-orange);
}

/* Service Card */
.service-card {
    flex-shrink: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(2, 6, 24, 0.05);
}

.service-card-img {
    height: 168px;
    background: var(--brand-bg);
    border-radius: 10px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brand-dark);
    margin: 0;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--brand-slate);
    margin: 0;
    line-height: 1.6;
}

.price-current {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brand-dark);
}

.price-original {
    background: #ffe2e2;
    color: #fb2c36;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-decoration: line-through;
}

.btn-card-action {
    width: 100%;
    padding: 12px 20px;
    border: 1.5px solid var(--brand-border);
    border-radius: 8px;
    color: var(--brand-orange);
    background: transparent;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition:
        background 0.2s,
        color 0.2s;
}

.btn-card-action:hover {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
}

/* Offer Card */
.offer-card {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--brand-bg);
}

.offer-card .offer-img {
    position: absolute;
    width: 328px;
    height: 410px;
    object-fit: cover;
}

.offer-card .offer-overlay {
    position: absolute;
    left: 0;
    top: 200px;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(2, 6, 24, 0.8));
}

.offer-card .offer-btn-wrap {
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
}

.offer-card-promo {
    height: 400px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--brand-bg);
}

.offer-card-promo .offer-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.offer-card-promo .offer-overlay {
    position: absolute;
    left: 0;
    top: 200px;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(2, 6, 24, 0.8));
}

.offer-card-promo .offer-btn-wrap {
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
}

.btn-offer {
    width: 100%;
    padding: 9px 20px;
    background: var(--brand-orange);
    border-radius: 8px;
    border: none;
    color: #fff !important;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-offer:hover {
    background: #e56d00;
}

/* Testimonial Card */
.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    padding: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(2, 6, 24, 0.1);
}

.testimonial-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-dark);
    text-align: center;
    margin: 0;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--brand-gray);
    text-align: center;
    margin: 0;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--brand-slate);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* ===== CLIENTS ===== */
.clients-section {
    padding: 96px 0 10px 0;
    background: #fff;
}

.client-logo {
    width: 208px;
    height: 80px;
    border: 1.5px solid var(--brand-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 1px 4px rgba(2, 6, 24, 0.06);
    transition: box-shadow 0.2s;
}

.client-logo:hover {
    box-shadow: 0 4px 16px rgba(2, 6, 24, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 96px 0;
    background: #fff;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--brand-gray);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-dark);
    margin-bottom: 0;
}

.map-wrap {
    position: relative;
    padding-bottom: 56.25%;
    /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--brand-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.social-icon img {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 6px;
    top: 6px;
}

.contact-form-wrap {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
}

.form-label-custom {
    font-size: 0.875rem;
    color: var(--brand-dark);
    display: block;
    margin-bottom: 4px;
}

.form-control-custom {
    width: 100%;
    border: 1.5px solid var(--brand-border);
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 0.875rem;
    color: var(--brand-dark);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    font-family: "Rubik", sans-serif;
}

.form-control-custom::placeholder {
    color: #90a1b9;
}

.form-control-custom:focus {
    border-color: var(--brand-orange);
    box-shadow: none;
}

.btn-submit {
    width: 100%;
    padding: 13px 20px;
    background: #0f172b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Rubik", sans-serif;
}

.btn-submit:hover {
    background: #1e293b;
}


.bg-rekomendasi {
    background: #fff7ee;
    padding: 2%;
    border: 1px solid var(--brand-orange);
    border-radius: 15px;
}

.judul-pemisah {
    background: #fff7ee;
    color: var(--brand-orange);
    padding-top: 2%;
    padding-bottom: 2%;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--brand-orange);
}

.footer-inner {
    padding: 56px;
}

.footer-logo {
    width: 134px;
    height: auto;
    object-fit: contain;
}

.footer-desc {
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-link {
    color: #fff !important;
    font-size: 0.875rem;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    margin-bottom: 8px;
}

.footer-link:hover {
    color: #ffe0b2 !important;
}

.footer-social {
    width: 36px;
    height: 36px;
    background: var(--brand-orange-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-social:hover {
    background: #ffb143;
}

.footer-social img {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 6px;
    top: 6px;
}

.footer-copyright {
    background: #cc5a02;
    padding: 24px 36px;
    color: #fff;
}


.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    padding: 5px;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Breadcrumb */
.breadcrumb-section {
    position: relative;
    min-height: 220px;
    height: auto;
    padding: 40px 20px;
    background: url("/assets/img/background-city.png") center center / cover no-repeat;
    background-color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(254, 123, 0, 0.92),
            rgba(254, 123, 0, 0.75));
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-nav li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav li.active {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-nav li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav li a:hover {
    color: #fff;
}

.breadcrumb-nav li i {
    font-size: 0.7rem;
}

.padding {
    padding-left: 12%;
    padding-right: 12%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .padding {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tinggi-gambar {
        height: 300px;
    }

    .hero-section {
        height: auto;
    }

    .hero-content {
        position: relative;
        height: 100vh;
        max-height: 700px;
    }

    .hero-row {
        flex-direction: column;
        padding: 48px 0 0;
        text-align: center;
    }

    .hero-title {
        font-size: 26px;
        line-height: 38px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-img-col {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }

    .hero-image-wrap {
        height: 260px;
        width: 100%;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-image-wrap img {
        max-height: 100%;
        max-width: 75%;
        object-fit: contain;
        object-position: center bottom;
    }

    .carousel-arrow {
        display: none;
    }

    .footer-inner {
        padding: 32px 24px;
    }

    .dropdown-menu {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        left: auto !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 8px 0;
    }

    .dropdown-divider-col {
        display: none;
    }

    .d-flex.flex-fill {
        flex-direction: column;
    }

    .dropdown-menu>li>div.d-flex {
        flex-direction: column;
        gap: 0;
    }

    .dropdown-sub-item {
        padding-left: 24px;
    }
}

@media (max-width: 767.98px) {
    .about-image {
        height: 240px;
    }

    .client-logo {
        width: 140px;
        height: 60px;
    }
}

/* Service Category Card */
.service-category-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--brand-border);
    box-shadow: 0 1px 4px rgba(2, 6, 24, 0.05);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.service-category-card:hover {
    box-shadow: 0 1px 10px rgba(254, 123, 0, 0.445);
    border: 1px solid var(--brand-orange);
    transform: translateY(-3px);
}

.service-category-img {
    height: 180px;
    overflow: hidden;
    background: var(--brand-bg);
}

.service-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-category-card:hover .service-category-img img {
    transform: scale(1.04);
}

.is-invalid-custom {
    border-color: #fb2c36 !important;
}

.error-msg {
    display: block;
    font-size: 0.8125rem;
    color: #fb2c36;
    margin-top: 4px;
}

.swal2-toast .swal2-title {
    font-size: 1rem !important;
    font-weight: 500 !important;
}