:root,
[data-bs-theme="light"] {
    --qk-turquoise-900: #1f285d;
    --qk-turquoise-700: #2f3f91;
    --qk-turquoise-500: #4b43b7;
    --qk-turquoise-80: #6f68c8;
    --qk-turquoise-20: #e7e6f7;
    --qk-turquoise-300: #b8b5e7;
    --qk-turquoise-100: #f0effb;
    --qk-turquoise-50: #fbfbff;
    --qk-gold-900: #1f285d;
    --qk-gold-700: #2f3f91;
    --qk-gold-500: #4b43b7;
    --qk-gold-300: #b8b5e7;
    --qk-gold-100: #f0effb;
    --qk-gold-50: #fbfbff;
    --qk-blue-900: #1f285d;
    --qk-blue-700: #2f3f91;
    --qk-blue-500: #4b43b7;
    --qk-blue-white-40: #938ed4;
    --qk-blue-100: #eef1ff;
    --qk-bg: #fbfbff;
    --qk-heading-font: "Poppins", system-ui, sans-serif;
    --qk-surface: #ffffff;
    --qk-card-bg: #ffffff;
    --qk-text: #18202f;
    --qk-muted: #6b7280;
    --qk-border: #e5e7eb;
    --qk-shadow-xs: 0 8px 22px rgba(24, 32, 47, .08);
    --qk-shadow-sm: 0 14px 34px rgba(24, 32, 47, .11);
    --qk-shadow: 0 20px 52px rgba(24, 32, 47, .13);
    --qk-shadow-hover: 0 28px 68px rgba(24, 32, 47, .18);
}

body {
    background: var(--qk-bg);
    color: var(--qk-text);
    font-family: var(--qk-font, "Poppins", system-ui, sans-serif);
}

h1,
h2,
h3,
h4,
h5,
h6,
.qk-section-head h2,
.qk-page-hero h1,
.qk-detail-hero h1,
.qk-slider-content h1,
.qk-card-title,
.navbar-brand,
.qk-public-header .nav-link {
    font-family: var(--qk-heading-font);
}

.qk-public-header {
    position: sticky;
    top: 0;
    z-index: 1040;
}

.qk-public-header .navbar {
    min-height: 82px;
    padding-block: 12px;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 10px 30px rgba(24, 32, 47, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.qk-public-header .nav-link {
    color: var(--qk-blue-900);
    font-family: var(--qk-heading-font);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.1;
    border-radius: 8px;
    padding: 16px 16px;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.qk-public-header .nav-link:hover,
.qk-public-header .nav-link:focus,
.qk-public-header .nav-item.show > .nav-link {
    background: var(--qk-blue-500);
    color: #fff;
    box-shadow: 0 12px 28px rgba(75, 67, 183, .22);
    transform: translateY(-1px);
}

.qk-public-header .dropdown-menu {
    z-index: 1060;
    display: block;
    min-width: 360px;
    margin-top: 12px;
    padding: 18px;
    border: 1px solid rgba(75, 67, 183, .46);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(251, 247, 241, .98), rgba(255, 255, 255, .98));
    box-shadow: 0 24px 64px rgba(24, 32, 47, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.985);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.qk-public-header .dropdown-item {
    border-radius: 8px;
    color: var(--qk-blue-900);
    font-family: var(--qk-heading-font);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    padding: 14px 16px;
    white-space: normal;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.qk-public-header .dropdown-item:hover,
.qk-public-header .dropdown-item:focus {
    background: var(--qk-blue-500);
    color: #fff;
    transform: translateX(4px);
}

@media (min-width: 992px) {
    .qk-public-header .dropdown:hover > .dropdown-menu,
    .qk-public-header .dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
}

.qk-logo,
.navbar-brand {
    color: var(--qk-turquoise-700);
}

.qk-logo img,
.qk-logo svg {
    display: block;
    width: 178px;
    height: auto;
}

.qk-public-header .navbar-toggler {
    min-height: 46px;
    border-color: rgba(75, 67, 183, .20);
    border-radius: 8px;
}

.qk-footer-logo img,
.qk-footer-logo svg {
    display: block;
    width: 150px;
    height: auto;
}

.qk-bg-turquoise,
.qk-bg-blue {
    color: #fff;
}

.qk-bg-turquoise { background: var(--qk-turquoise-500); }
.qk-bg-gold { background: var(--qk-gold-500); color: #fff; }
.qk-bg-gold-tint { background: var(--qk-gold-50); color: var(--qk-blue-900); }
.qk-bg-turquoise-tint { background: var(--qk-turquoise-50); color: var(--qk-turquoise-900); }

[data-bs-theme="light"] .qk-bg-gold-tint,
[data-bs-theme="light"] .qk-bg-turquoise-tint {
    background: var(--qk-bg);
}

.qk-section {
    padding: 62px 0;
    background: var(--qk-bg);
}

.qk-container {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
}

.qk-section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--qk-border);
}

.qk-section-head span,
.qk-kicker {
    display: inline-block;
    color: var(--qk-gold-700);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .05em;
    text-transform: none;
}

.qk-section-head h2 {
    color: rgba(47, 63, 145, .60);
    font-weight: 900;
}

.qk-page-hero h1,
.qk-detail-hero h1 {
    color: var(--qk-blue-700);
    font-weight: 900;
}

.qk-section-head h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.1;
}

.qk-section-head span {
    color: rgba(75, 67, 183, .78);
}

.qk-page-hero {
    padding: 70px 0;
}

.qk-bg-turquoise .qk-kicker,
.qk-bg-blue .qk-kicker {
    color: rgba(255, 255, 255, .74);
}

.qk-bg-turquoise .qk-page-hero h1,
.qk-bg-blue .qk-page-hero h1,
.qk-page-hero.qk-bg-turquoise h1,
.qk-page-hero.qk-bg-blue h1 {
    color: var(--qk-blue-white-40);
}

.qk-bg-turquoise .qk-page-hero p,
.qk-bg-blue .qk-page-hero p,
.qk-page-hero.qk-bg-turquoise p,
.qk-page-hero.qk-bg-blue p {
    color: rgba(255, 255, 255, .86);
}

.qk-page-hero h1,
.qk-detail-hero h1 {
    margin: 8px 0 10px;
    font-size: clamp(32px, 4.6vw, 54px);
}

.qk-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
}

.qk-contact-hero {
    border-bottom: 1px solid rgba(75, 67, 183, .14);
    background: var(--qk-bg);
}

.qk-contact-hero .qk-kicker {
    color: var(--qk-blue-700);
}

.qk-contact-hero h1 {
    color: var(--qk-blue-700);
}

.qk-contact-hero p {
    color: var(--qk-text);
}

.qk-full-slider {
    background: var(--qk-bg);
}

.qk-home-slider-control {
    width: 64px;
    opacity: .9;
}

.qk-home-slider-control .carousel-control-prev-icon,
.qk-home-slider-control .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background-color: rgba(75, 67, 183, .86);
    background-size: 56%;
    box-shadow: var(--qk-shadow-sm);
}

.qk-slider-indicators {
    bottom: 12px;
    margin-bottom: 0;
}

.qk-slider-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .70);
    opacity: 1;
}

.qk-slider-indicators .active {
    width: 26px;
    background-color: var(--qk-blue-white-40);
}

.qk-home-category-strip {
    padding: 18px 0 0;
    background: var(--qk-bg);
}

.qk-home-hero-slider {
    padding-bottom: 34px;
}

.qk-after-slider-menu {
    position: relative;
    z-index: 3;
    margin-top: 0;
}

.qk-blog-hero {
    padding: 54px 0 70px;
    background:
        linear-gradient(180deg, rgba(223, 247, 245, .74), rgba(238, 241, 255, .46));
}

.qk-blog-slider {
    max-width: 1180px;
    margin-inline: auto;
}

.qk-blog-slide-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 46px;
    align-items: center;
    min-height: 420px;
    border-radius: 28px;
    padding: 48px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(24, 32, 47, .11);
}

.qk-blog-slide-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--qk-gold-700);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qk-blog-slide-text h1 {
    max-width: 620px;
    margin: 0;
    color: var(--qk-text);
    font-family: var(--qk-heading-font);
    font-size: clamp(35px, 4.2vw, 62px);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
}

.qk-blog-slide-text p {
    max-width: 620px;
    margin: 24px 0 28px;
    color: #617088;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    text-transform: uppercase;
}

.qk-blog-slide-link {
    display: inline-flex;
    width: auto;
    min-width: 118px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--qk-blue-500);
    color: #fff;
    box-shadow: 0 12px 26px rgba(75, 67, 183, .20);
    font-family: var(--qk-heading-font);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.qk-blog-slide-link:hover,
.qk-blog-slide-link:focus-visible {
    background: var(--qk-blue-700);
    color: #fff;
}

.qk-blog-slide-media {
    overflow: hidden;
    border-radius: 22px;
    background: var(--qk-turquoise-50);
}

.qk-blog-slide-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.4;
    object-fit: cover;
}

.qk-blog-indicators {
    position: static;
    margin: 18px 0 0;
    gap: 8px;
}

.qk-blog-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(75, 67, 183, .22);
    opacity: 1;
}

.qk-blog-indicators .active {
    background-color: var(--qk-blue-500);
}

.qk-home-category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid rgba(75, 67, 183, .20);
    border-radius: 8px;
    background: var(--qk-turquoise-20);
    box-shadow: 0 12px 30px rgba(75, 67, 183, .08);
}

.qk-home-category-bar a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border-radius: 7px;
    padding: 0 16px;
    color: var(--qk-turquoise-80);
    font-family: var(--qk-heading-font);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.qk-home-category-bar a:hover,
.qk-home-category-bar a:focus {
    background: var(--qk-blue-500);
    color: #fff;
    box-shadow: 0 10px 22px rgba(75, 67, 183, .18);
    transform: translateY(-1px);
}

.qk-slider-panel {
    padding: 42px 0;
}

.qk-slider-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
    min-height: 390px;
    padding: 36px;
    border-radius: 8px;
    background: var(--qk-surface);
    color: var(--qk-text);
    box-shadow: var(--qk-shadow);
}

.qk-slider-content h1 {
    color: var(--qk-blue-700);
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 900;
    line-height: 1;
}

.qk-slider-image,
.qk-card-img-wrap {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.qk-slider-image {
    border-radius: 8px;
}

.qk-slider-image img,
.qk-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.qk-slider-image img {
    aspect-ratio: 16 / 10;
}

.qk-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(75, 67, 183, .22);
    border-radius: 8px 8px 30px 8px;
    background: var(--qk-card-bg);
    box-shadow: var(--qk-shadow-xs);
    isolation: isolate;
}

.qk-card-slider-shell {
    position: relative;
}

.qk-card-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, calc((100% - 48px) / 3));
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    padding: 6px 4px 28px;
    scrollbar-width: none;
}

.qk-card-slider::-webkit-scrollbar {
    display: none;
}

.qk-card-slide {
    scroll-snap-align: start;
    min-width: 0;
}

.qk-card-slide .qk-card {
    height: 100%;
}

.qk-card-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(75, 67, 183, .36);
    border-radius: 999px;
    background: #fff;
    color: var(--qk-turquoise-700);
    box-shadow: var(--qk-shadow-sm);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
}

.qk-card-slider-btn:hover {
    background: var(--qk-turquoise-500);
    color: #fff;
}

.qk-card-slider-prev {
    left: -18px;
}

.qk-card-slider-next {
    right: -18px;
}

.qk-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -2px;
    height: 22px;
    border-radius: 999px;
    background: rgba(24, 32, 47, .10);
    filter: blur(16px);
    opacity: .72;
    z-index: -1;
}

.qk-card::before,
.qk-gallery-card::before,
.qk-detail-gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .62), transparent 24%),
        linear-gradient(135deg, rgba(75, 67, 183, .00), rgba(75, 67, 183, .24) 48%, rgba(255, 255, 255, .00) 72%);
    opacity: 0;
    transform: translateX(-10%) scale(1.02);
    transition: opacity .28s ease, transform .32s ease;
}

.qk-card-img-wrap {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--qk-gold-100);
    border-bottom: 1px solid rgba(75, 67, 183, .18);
}

.qk-card-body {
    position: relative;
    z-index: 3;
    min-height: 215px;
    padding: 20px;
}

.qk-card-badge {
    margin-bottom: 12px;
    border-radius: 4px;
    background: var(--qk-gold-500);
    color: #fff;
    padding: 7px 10px;
    letter-spacing: .02em;
}

.qk-card-title {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.2;
}

.qk-card-title a {
    color: var(--qk-blue-700);
    text-decoration: none;
}

.qk-card-text {
    color: var(--qk-text);
    font-size: 14px;
    line-height: 1.62;
}

.qk-hover-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}

.qk-hover-card:hover {
    transform: translateY(-7px) scale(1.015);
    border-color: rgba(75, 67, 183, .62);
    background-color: #fffdf9;
    box-shadow: 0 30px 76px rgba(75, 67, 183, .18);
}

.qk-hover-card:hover::after {
    opacity: .9;
}

.qk-hover-card:hover::before {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.qk-hover-img {
    transition: transform .42s ease, filter .35s ease;
}

.qk-hover-card:hover .qk-hover-img {
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.085);
}

.qk-btn-primary,
.qk-card-btn,
.qk-theme-btn {
    border: 0;
    border-radius: 5px;
    background: var(--qk-turquoise-500);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(75, 67, 183, .18);
}

.qk-btn-primary:hover,
.qk-card-btn:hover,
.qk-theme-btn:hover {
    background: var(--qk-turquoise-700);
    color: #fff;
}

.qk-tabbar {
    display: inline-flex;
    gap: 8px;
    margin-top: 22px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
}

.qk-tabbar a {
    padding: 9px 16px;
    border-radius: 6px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.qk-tabbar a.is-active {
    background: #fff;
    color: var(--qk-turquoise-900);
}

.qk-file-preview {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 180px;
    place-items: center;
    background: linear-gradient(135deg, var(--qk-gold-50), var(--qk-turquoise-50));
}

.qk-file-icon {
    display: grid;
    width: 86px;
    height: 106px;
    place-items: center;
    border-radius: 8px;
    background: var(--qk-surface);
    color: var(--qk-blue-700);
    font-weight: 900;
    box-shadow: var(--qk-shadow);
}

.qk-file-ext {
    color: var(--qk-gold-700);
    font-weight: 900;
}

.qk-file-pdf .qk-file-icon { color: #d62828; }
.qk-file-doc .qk-file-icon,
.qk-file-docx .qk-file-icon { color: #2f6fdd; }
.qk-file-xls .qk-file-icon,
.qk-file-xlsx .qk-file-icon { color: #1f9d55; }
.qk-file-zip .qk-file-icon,
.qk-file-rar .qk-file-icon,
.qk-file-7z .qk-file-icon { color: var(--qk-gold-700); }
.qk-file-mp4 .qk-file-icon,
.qk-file-mov .qk-file-icon,
.qk-file-avi .qk-file-icon { color: var(--qk-blue-700); }

.qk-gallery-modal .modal-content,
.qk-surface,
.qk-content-box,
.qk-comments {
    border: 1px solid var(--qk-gold-300);
    border-radius: 8px;
    background: var(--qk-gold-50);
    box-shadow: var(--qk-shadow-sm);
}

.qk-gallery-modal .modal-header {
    border-bottom: 1px solid var(--qk-gold-300);
    background: var(--qk-gold-100);
}

.qk-gallery-modal .modal-body {
    position: relative;
}

.qk-gallery-modal .modal-title {
    color: var(--qk-gold-900);
    font-weight: 900;
}

.qk-gallery-modal-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

.qk-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(75, 67, 183, .46);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--qk-turquoise-700);
    box-shadow: 0 14px 34px rgba(24, 32, 47, .16);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-50%);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.qk-gallery-nav:hover,
.qk-gallery-nav:focus-visible {
    background: var(--qk-turquoise-500);
    color: #fff;
    transform: translateY(-50%) scale(1.04);
}

.qk-gallery-nav-prev {
    left: 18px;
}

.qk-gallery-nav-next {
    right: 18px;
}

.qk-gallery-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .88);
    font-family: var(--qk-heading-font);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qk-gallery-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid rgba(75, 67, 183, .24);
    border-radius: 8px 8px 32px 8px;
    background: #fff;
    box-shadow: var(--qk-shadow-xs);
    cursor: zoom-in;
}

.qk-gallery-card:focus-visible,
.qk-detail-gallery-item:focus-visible {
    outline: 3px solid rgba(75, 67, 183, .34);
    outline-offset: 4px;
}

.qk-gallery-card-img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.qk-gallery-card-body {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 178px;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.qk-gallery-card h3 {
    margin: 0;
    color: #b38b2e;
    font-family: var(--qk-heading-font);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.12;
}

.qk-gallery-card h3 a {
    color: inherit;
    text-decoration: none;
}

.qk-gallery-card p {
    margin: 0;
    color: var(--qk-text);
    font-size: 14px;
    line-height: 1.55;
}

.qk-gallery-file-card {
    cursor: default;
}

.qk-gallery-file-icon {
    display: grid;
    min-height: 170px;
    place-items: center;
    background: var(--qk-blue-100);
    color: var(--qk-blue-700);
    font-family: var(--qk-heading-font);
    font-size: 36px;
    font-weight: 900;
}

.qk-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.qk-detail-gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(75, 67, 183, .28);
    border-radius: 8px 8px 32px 8px;
    padding: 0;
    background: #fff;
    color: var(--qk-blue-700);
    text-align: left;
    box-shadow: var(--qk-shadow-xs);
    cursor: zoom-in;
}

.qk-image-like-button {
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #dc3545;
    box-shadow: none;
    font-family: var(--qk-heading-font);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    text-shadow: 0 4px 12px rgba(24, 32, 47, .20);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: color .2s ease, transform .2s ease, text-shadow .2s ease;
}

.qk-image-like-button span[aria-hidden="true"] {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.qk-image-like-button span:not([aria-hidden="true"]) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.qk-gallery-card-body .qk-image-like-button {
    position: absolute;
    top: auto;
    right: 12px;
    bottom: 12px;
}

.qk-image-like-button:hover,
.qk-image-like-button:focus-visible {
    background: transparent;
    color: #bb2d3b;
    transform: translateY(-1px) scale(1.12);
    box-shadow: none;
    text-shadow: 0 8px 18px rgba(220, 53, 69, .25);
}

.qk-image-like-button.is-liked {
    background: transparent;
    color: #198754;
    box-shadow: none;
    text-shadow: 0 8px 18px rgba(25, 135, 84, .22);
}

.qk-image-like-button.is-liked:hover,
.qk-image-like-button.is-liked:focus-visible {
    background: transparent;
    color: #157347;
    box-shadow: none;
}

.qk-muted-text {
    color: var(--qk-muted);
    font-weight: 700;
}

.qk-detail-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.qk-detail-gallery-item span {
    position: relative;
    z-index: 3;
    display: block;
    padding: 14px 16px 18px;
    color: #b38b2e;
    font-family: var(--qk-heading-font);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.qk-detail-gallery-modal .modal-title {
    color: var(--qk-blue-700);
    font-family: var(--qk-heading-font);
    font-weight: 900;
}

.qk-detail-file-list {
    display: grid;
    gap: 12px;
}

.qk-detail-file-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(75, 67, 183, .34);
    border-radius: 8px 8px 18px 8px;
    padding: 14px;
    background: #fff;
    box-shadow: var(--qk-shadow-xs);
}

.qk-detail-file-icon {
    display: grid;
    width: 58px;
    height: 72px;
    place-items: center;
    border-radius: 8px;
    background: var(--qk-gold-50);
    color: var(--qk-blue-700);
    font-family: var(--qk-heading-font);
    font-size: 15px;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px var(--qk-gold-300);
}

.qk-detail-file-pdf {
    color: #d62828;
}

.qk-detail-file-info strong {
    display: block;
    color: var(--qk-blue-700);
    font-family: var(--qk-heading-font);
    font-size: 18px;
    font-weight: 900;
}

.qk-detail-file-info small {
    color: var(--qk-muted);
    font-weight: 700;
}

.qk-detail-file-download {
    border: 0;
    border-radius: 5px;
    background: var(--qk-turquoise-500);
    color: #fff;
    font-weight: 900;
}

.qk-detail-file-download:hover {
    background: var(--qk-turquoise-700);
    color: #fff;
}

.qk-content-box,
.qk-comments,
.qk-surface {
    padding: 28px;
}

.qk-content-box {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.qk-content-box-visual {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .93)),
        var(--qk-detail-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 24px 68px rgba(24, 32, 47, .10);
}

.qk-detail-hero {
    padding: 64px 0 72px;
    background: var(--qk-bg);
}

.qk-bg-soft,
.qk-bg-gold-tint {
    background: var(--qk-bg);
}

.qk-detail-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr);
    gap: 46px;
    align-items: center;
    padding: 48px;
    border: 1px solid rgba(75, 67, 183, .24);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 78px rgba(24, 32, 47, .12);
}

.qk-detail-hero-copy {
    min-width: 0;
}

.qk-detail-hero-card h1 {
    max-width: 820px;
    margin: 14px 0 16px;
    color: var(--qk-blue-700);
    font-size: clamp(40px, 6vw, 82px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.qk-detail-hero-media {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(24, 32, 47, .10);
}

.qk-detail-location-bar {
    min-height: 116px;
    display: flex;
    align-items: center;
    background: var(--qk-turquoise-20);
    border-top: 1px solid rgba(75, 67, 183, .16);
    border-bottom: 1px solid rgba(75, 67, 183, .18);
}

.qk-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    min-height: 112px;
    padding: 28px 0;
    color: var(--qk-turquoise-80);
    font-family: var(--qk-heading-font);
    font-size: 14px;
    font-weight: 800;
}

.qk-detail-breadcrumb a,
.qk-detail-breadcrumb strong,
.qk-detail-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.qk-detail-breadcrumb strong {
    color: var(--qk-blue-700);
    font-weight: 900;
}

.qk-detail-current {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 14px;
    border-left: 4px solid var(--qk-turquoise-500);
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(24, 32, 47, .08);
}

.qk-detail-current-label {
    color: var(--qk-turquoise-80);
    font-size: 12px;
    font-weight: 900;
}

.qk-detail-current-title {
    color: var(--qk-blue-700);
    font-family: var(--qk-heading-font);
    font-size: 18px;
    font-weight: 900;
}

.qk-detail-main,
.qk-detail-clean-page {
    overflow-x: hidden;
}

.qk-detail-breadcrumb-band {
    background: var(--qk-tertiary, var(--qk-blue-500));
    color: #fff;
}

.qk-detail-breadcrumb-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 18px 0;
    color: #fff;
    font-weight: 800;
}

.qk-detail-breadcrumb-modern a,
.qk-detail-breadcrumb-modern strong,
.qk-detail-breadcrumb-modern span {
    color: inherit;
    text-decoration: none;
}

.qk-detail-hero-clean {
    background: color-mix(in srgb, var(--qk-primary, var(--qk-turquoise-500)) 10%, #fff);
}

.qk-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 42px;
    align-items: center;
}

.qk-detail-hero-text,
.qk-detail-media {
    min-width: 0;
}

.qk-detail-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--qk-secondary, var(--qk-gold-700));
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.qk-detail-title {
    max-width: 680px;
    margin: 0;
    color: var(--qk-secondary, var(--qk-gold-700));
    font-size: clamp(38px, 7vw, 86px);
    font-weight: 900;
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.qk-detail-stats,
.qk-detail-share {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.qk-like-form {
    margin: 0;
}

.qk-detail-stat,
.qk-share-btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 4px;
    padding: 10px 16px;
    background: var(--qk-card-bg);
    color: var(--qk-blue-900);
    font: inherit;
    font-weight: 900;
    text-decoration: none;
}

.qk-detail-media-open {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.qk-detail-media-open img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
}

.qk-detail-media-action {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 0;
    padding: 8px 14px;
    background: #fff;
    color: var(--qk-blue-900);
    font: inherit;
    font-weight: 900;
}

.qk-detail-placeholder {
    display: grid;
    min-height: 420px;
    place-items: center;
    background: var(--qk-card-bg);
    color: var(--qk-muted);
    font-weight: 900;
}

.qk-detail-content {
    padding: 56px 0;
    background: #fff;
}

.qk-detail-content-card {
    max-width: 760px;
    margin-inline: auto;
    border: 1px solid var(--qk-border);
    padding: 36px;
    background: #fff;
    color: var(--qk-blue-900);
}

.qk-detail-summary-text,
.qk-detail-body-text {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.75;
}

.qk-detail-content-divider {
    height: 1px;
    margin: 28px 0;
    background: var(--qk-border);
}

.qk-detail-content-empty {
    color: var(--qk-muted);
    font-weight: 800;
}

.qk-detail-extras-wrap {
    padding: 20px 0 56px;
    background: #fff;
}

.qk-detail-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 24px;
    background: #fff;
    box-shadow: none;
}

.qk-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.qk-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--qk-surface);
    color: var(--qk-blue-700);
    font-weight: 800;
}

.qk-like-form {
    margin: 0;
}

.qk-like-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    box-shadow: 0 12px 26px rgba(220, 53, 69, .18);
    font-family: var(--qk-heading-font);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.qk-like-button:hover,
.qk-like-button:focus-visible {
    background: #bb2d3b;
    color: #fff;
    box-shadow: 0 16px 34px rgba(220, 53, 69, .24);
    transform: translateY(-1px);
}

.qk-like-button.is-liked {
    background: #198754;
    box-shadow: 0 12px 26px rgba(25, 135, 84, .18);
}

.qk-like-button.is-liked:hover,
.qk-like-button.is-liked:focus-visible {
    background: #157347;
    box-shadow: 0 16px 34px rgba(25, 135, 84, .24);
}

.qk-detail-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
}

.qk-detail-share > span {
    color: var(--qk-blue-700);
    font-family: var(--qk-heading-font);
    font-size: 13px;
    font-weight: 900;
}

.qk-detail-share a,
.qk-detail-share button {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(75, 67, 183, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--qk-blue-700);
    box-shadow: 0 10px 24px rgba(24, 32, 47, .08);
    font-family: var(--qk-heading-font);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.qk-detail-share a:hover,
.qk-detail-share a:focus-visible,
.qk-detail-share button:hover,
.qk-detail-share button:focus-visible {
    background: var(--qk-blue-500);
    color: #fff;
    transform: translateY(-1px);
}

.qk-comment {
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 8px;
    background: var(--qk-surface);
}

.qk-form .form-control {
    min-height: 48px;
    border-color: var(--qk-border);
    border-radius: 8px;
    background: var(--qk-surface);
    color: var(--qk-text);
}

.qk-form-alert {
    margin: 14px 0;
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 800;
}

.qk-form-alert-success {
    border: 1px solid rgba(25, 135, 84, .18);
    background: rgba(25, 135, 84, .08);
    color: #157347;
}

.qk-form-alert-danger {
    border: 1px solid rgba(220, 53, 69, .18);
    background: rgba(220, 53, 69, .08);
    color: #bb2d3b;
}

.qk-validation-message {
    display: block;
    margin-top: 6px;
    color: #bb2d3b;
    font-size: 12px;
    font-weight: 800;
}

.qk-legal-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--qk-text);
    font-size: 13px;
    font-weight: 800;
}

.qk-legal-check input {
    margin-top: 3px;
    accent-color: var(--qk-blue-500);
}

.qk-message-modal .modal-content {
    border: 1px solid rgba(75, 67, 183, .18);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(24, 32, 47, .16);
}

.qk-message-modal .modal-body {
    display: grid;
    gap: 8px;
    padding: 28px;
    text-align: center;
}

.qk-message-modal strong {
    color: var(--qk-blue-700);
    font-family: var(--qk-heading-font);
    font-size: 22px;
    font-weight: 900;
}

.qk-message-modal span {
    color: var(--qk-muted);
    font-weight: 700;
}

.qk-map {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 8px;
}

.qk-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.qk-page-link {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--qk-border);
    border-radius: 8px;
    background: var(--qk-surface);
    color: var(--qk-blue-700);
    font-weight: 800;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.qk-page-link:hover,
.qk-page-link:focus-visible {
    background: var(--qk-blue-100);
    color: var(--qk-blue-700);
    transform: translateY(-1px);
}

.qk-page-link-nav {
    padding-inline: 16px;
    font-family: var(--qk-heading-font);
    font-size: 14px;
    font-weight: 900;
}

.qk-page-link.is-active {
    background: var(--qk-turquoise-500);
    color: #fff;
}

.qk-page-ellipsis {
    display: inline-flex;
    min-width: 32px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--qk-muted);
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .qk-public-header .navbar {
        min-height: 74px;
        padding-block: 10px;
    }

    .qk-public-header .navbar-collapse {
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        padding: 12px 0 16px;
    }

    .qk-public-header .navbar-nav {
        align-items: stretch !important;
        gap: 4px;
    }

    .qk-public-header .nav-link {
        padding: 11px 14px;
        font-size: 16px;
    }

    .qk-public-header .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 4px 0 8px 12px;
        padding: 8px;
        border-color: rgba(75, 67, 183, .18);
        background: var(--qk-blue-100);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .qk-public-header .dropdown-menu.show {
        display: block;
    }

    .qk-public-header .dropdown-item {
        padding: 10px 12px;
        font-size: 14px;
    }

    .qk-social-nav-item {
        margin-left: 0;
    }

    .qk-social-nav-item .qk-social-share {
        display: flex;
    }

    .qk-social-nav-item .qk-social-modern {
        position: static;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .qk-detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .qk-detail-hero-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px;
    }

    .qk-detail-hero-media {
        order: -1;
    }

    .qk-detail-title {
        font-size: clamp(34px, 12vw, 62px);
    }

    .qk-card-slider {
        grid-auto-columns: minmax(260px, calc((100% - 24px) / 2));
    }

    .qk-blog-slide-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 30px;
    }

    .qk-blog-slide-media {
        order: -1;
    }

    .qk-detail-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .qk-container {
        width: min(100% - 20px, 1180px);
    }

    .qk-detail-hero {
        padding: 34px 0 44px;
    }

    .qk-detail-hero-card {
        padding: 20px;
        border-radius: 18px;
    }

    .qk-detail-hero-card h1 {
        font-size: clamp(34px, 13vw, 56px);
    }

    .qk-detail-img,
    .qk-detail-hero-media {
        border-radius: 16px;
    }

    .qk-gallery-nav {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .qk-gallery-nav-prev {
        left: 8px;
    }

    .qk-gallery-nav-next {
        right: 8px;
    }

    .qk-detail-content-card {
        padding: 22px;
    }

    .qk-detail-summary-text,
    .qk-detail-body-text {
        font-size: 17px;
    }

    .qk-detail-location-bar,
    .qk-detail-breadcrumb {
        min-height: 88px;
    }

    .qk-detail-breadcrumb {
        padding: 20px 0;
    }

    .qk-detail-gallery-grid,
    .qk-detail-file-item {
        grid-template-columns: 1fr;
    }

    .qk-detail-file-download {
        width: 100%;
    }
}

.qk-page-link.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.qk-social-share {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.qk-social-nav-item {
    margin-left: 6px;
}

.qk-social-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(75, 67, 183, .26);
    border-radius: 999px;
    background: var(--qk-turquoise-500);
    color: #fff;
    box-shadow: 0 10px 24px rgba(75, 67, 183, .18);
    font-weight: 900;
}

.qk-social-trigger-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
}

.qk-social-trigger-text {
    font-size: 13px;
    letter-spacing: .02em;
}

.qk-social-modern {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    display: flex;
    gap: 8px;
    min-width: max-content;
    padding: 10px;
    border: 1px solid rgba(75, 67, 183, .45);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--qk-shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.98);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.qk-social-share:hover .qk-social-modern,
.qk-social-share:focus-within .qk-social-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.qk-social-modern a,
.qk-whatsapp-float {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--qk-turquoise-500);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.qk-social-empty-text {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 10px;
    color: var(--qk-blue-700);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.qk-social-modern a:hover {
    background: var(--qk-gold-500);
    color: #fff;
}

.qk-site-footer .qk-social-modern {
    top: auto;
    right: 0;
    bottom: calc(100% + 10px);
}

.qk-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    width: 56px;
    height: 56px;
    background: #25d366;
    box-shadow: var(--qk-shadow);
}

.qk-empty-state {
    padding: 22px;
    border: 1px solid var(--qk-border);
    border-radius: 8px;
    background: var(--qk-surface);
    color: var(--qk-muted);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .qk-slider-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}

@media (max-width: 575.98px) {
    .qk-section {
        padding: 38px 0;
    }

    .qk-blog-hero {
        padding: 28px 0 42px;
    }

    .qk-blog-slide-card {
        border-radius: 18px;
        padding: 22px;
    }

    .qk-blog-slide-text h1 {
        font-size: clamp(30px, 11vw, 44px);
    }

    .qk-blog-slide-text p {
        font-size: 15px;
    }

    .qk-slider-panel {
        padding: 24px 0;
    }

    .qk-card-body {
        min-height: auto;
    }

    .qk-card-slider {
        grid-auto-columns: minmax(250px, 86%);
        gap: 16px;
    }

    .qk-card-slider-prev {
        left: 4px;
    }

    .qk-card-slider-next {
        right: 4px;
    }
}
