/* 
 * Kazemi Amlak Main Stylesheet
 */

/* =========================================
   1. Typography & Fonts
========================================= */


















/* =========================================
   2. Global Defaults & Resets (from header)
========================================= */
:root {
    --ka-font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    --ka-primary: #0A4C60;
    --ka-secondary: #f26a21;
    --ka-bg: #fff;
    --ka-text: #333;
    --ka-text-light: #777;
    --ka-border: #eaeaea;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ka-font-family);
    margin: 0;
    padding: 0;
    background: var(--ka-bg);
    color: var(--ka-text);
}

input,
select,
textarea,
button {
    font-family: var(--ka-font-family);
}

select:not([multiple]):not([size]) {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%231a1816' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: left 12px center !important;
    background-size: 14px 14px !important;
    padding-left: 40px !important;
}

select:not([multiple]):not([size])::-ms-expand {
    display: none;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

.ka-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. Header & Navigation
========================================= */
.ka-site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--ka-border);
}

.admin-bar .ka-site-header,
.admin-bar header[style*="sticky"] {
    top: 32px !important;
}

@media screen and (max-width: 782px) {

    .admin-bar .ka-site-header,
    .admin-bar header[style*="sticky"] {
        top: 46px !important;
    }
}

.ka-header-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ka-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.ka-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.ka-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.ka-logo-text {
    color: #1a1816;
    display: none;
    font-size: 15px;
    font-weight: 800;
}

.ka-logo svg {
    width: 40px;
    height: auto;
}

.ka-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
}

.ka-main-nav a {
    color: #333;
    font-weight: bold;
    transition: 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ka-main-nav li.menu-item-has-children>a {
    gap: 6px;
}

.ka-main-nav li.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    margin-right: 2px;
    opacity: 0.7;
    flex: none;
}

.ka-main-nav a:hover {
    color: var(--ka-secondary);
}

/* Dropdown Sub-menu Styling */
.ka-main-nav li {
    position: relative;
    padding: 10px 0;
}

.ka-main-nav ul.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.ka-main-nav li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

.ka-main-nav ul.sub-menu li {
    padding: 0;
    margin: 0;
    width: 100%;
}

.ka-main-nav ul.sub-menu a {
    padding: 12px 16px;
    border-radius: 10px;
    color: #333;
    font-size: 13.5px;
    font-weight: 700;
    text-align: right;
    transition: 0.2s;
    justify-content: flex-start;
    width: 100%;
}

.ka-main-nav ul.sub-menu a:hover {
    background-color: rgba(242, 106, 33, 0.08);
    color: var(--ka-secondary);
}

.ka-header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ka-btn-login {
    color: #333;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.ka-btn-login:hover {
    color: var(--ka-secondary);
}

.ka-btn-submit {
    background: var(--ka-primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.ka-btn-submit:hover {
    background: #073a4a;
}

.ka-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.ka-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.ka-mobile-drawer.active {
    right: 0;
}

.ka-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.ka-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ka-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ka-mobile-drawer-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #f4f6f7;
    color: #1a1816;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.ka-mobile-nav {
    padding: 16px;
    flex: 1;
}

.ka-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ka-mobile-nav li {
    margin-bottom: 8px;
}

.ka-mobile-nav .menu-item-has-children {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
    align-items: start;
}

.ka-mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
    transition: 0.3s;
    min-width: 0;
}

.ka-mobile-nav li:not(.menu-item-has-children)>a::after {
    content: "‹";
    margin-right: auto;
    opacity: 0.6;
    font-size: 20px;
    line-height: 1;
}

.ka-mobile-nav a:hover {
    background: #fff0e6;
    color: var(--ka-secondary);
}

.ka-mobile-submenu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #eef5f7;
    color: var(--ka-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.ka-mobile-submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: 0.2s;
}

.ka-mobile-nav .menu-item-has-children.is-open>.ka-mobile-submenu-toggle {
    background: var(--ka-primary);
    color: #fff;
}

.ka-mobile-nav .menu-item-has-children.is-open>.ka-mobile-submenu-toggle span {
    transform: rotate(225deg);
    margin-top: 4px;
}

.ka-mobile-nav .sub-menu {
    grid-column: 1 / -1;
    display: none;
    margin: 0;
    padding: 8px 12px 0 0;
    border-right: 2px solid #e6eff2;
}

.ka-mobile-nav .menu-item-has-children.is-open>.sub-menu {
    display: block;
}

.ka-mobile-nav .sub-menu li {
    margin-bottom: 6px;
}

.ka-mobile-nav .sub-menu a {
    background: #fff;
    border: 1px solid #edf2f4;
    color: #4b4742;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 12px;
}

.ka-mobile-nav .sub-menu .sub-menu {
    padding-right: 10px;
    border-right-color: #f2d8c6;
}

.ka-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.ka-mobile-drawer-account {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ka-primary);
    color: var(--ka-primary);
    padding: 12px;
    border-radius: 100px;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width:992px) {
    .ka-main-nav {
        display: none;
    }

    .ka-header-actions .ka-btn-login {
        display: none;
    }

    .ka-mobile-menu-btn {
        display: block;
    }

    .ka-header-inner {
        padding: 8px 15px;
    }
}

@media (max-width:576px) {
    .ka-logo span {
        display: none;
    }

    .ka-btn-submit {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* =========================================
   3. Property Cards
========================================= */
.ka-property-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1816;
    transition: 0.3s;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 10px;
}

.ka-property-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
}

.ka-property-card-inner {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ka-property-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #f5f7f9;
    border-bottom: 1px dashed #e1e8ed;
}

.ka-property-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.ka-property-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0abb5;
    font-size: 12px;
}

.ka-property-vip-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ka-secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(242, 106, 33, 0.3);
}

.ka-property-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.ka-property-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
    color: #1a1816;
}

.ka-property-location {
    font-size: 12.5px;
    color: var(--ka-text-light);
    font-weight: 500;
}

.ka-property-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.ka-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.ka-feature-item svg {
    color: var(--ka-primary);
}

.ka-property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

.ka-property-price {
    font-size: 15px;
    font-weight: 800;
    color: #444;
}

.ka-property-status-badge {
    background: #f0f6fc;
    color: #0b546b;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
}

/* =========================================
   4. Building Archive
========================================= */
.ka-building-archive {
    background: #f4f6f7;
    color: #1a1816;
    min-height: 70vh;
    padding: 1px 0 72px;
}

.ka-building-archive-container {
    max-width: 1320px;
    padding-inline: 24px;
}

.ka-building-archive-header {
    text-align: center;
    margin: 42px 0 30px;
}

.ka-building-archive-title {
    margin: 0 0 10px;
    color: #1e3942;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.55;
}

.ka-building-archive-subtitle {
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    max-width: 620px;
}

.ka-building-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.ka-building-card {
    min-width: 0;
}

.ka-building-card-location {
    display: block;
    margin-bottom: 8px;
}

.ka-building-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-bottom: 15px;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.ka-building-card-badge {
    background: rgba(30, 57, 66, 0.1);
    color: #1e3942;
}

.ka-building-archive-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.ka-building-archive-empty p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.9;
}

.ka-building-archive-pagination {
    margin: 40px 0 60px;
    text-align: center;
}

.ka-building-archive-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ka-building-archive-pagination .page-numbers {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #dbe6e9;
    background: #fff;
    color: #1e3942;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.ka-building-archive-pagination .page-numbers.current {
    background: #0B546B;
    border-color: #0B546B;
    color: #fff;
}

@media (max-width: 920px) {
    .ka-building-archive {
        padding-bottom: 56px;
    }

    .ka-building-archive-container {
        padding-inline: 18px;
    }

    .ka-building-archive-header {
        margin: 32px 0 24px;
    }

    .ka-building-archive-title {
        font-size: 24px;
    }

    .ka-building-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 44px;
    }
}

@media (max-width: 640px) {
    .ka-building-archive {
        padding-bottom: 44px;
    }

    .ka-building-archive-container {
        padding-inline: 14px;
    }

    .ka-building-archive-header {
        margin: 24px 0 18px;
    }

    .ka-building-archive-title {
        font-size: 21px;
    }

    .ka-building-archive-subtitle {
        font-size: 13px;
    }

    .ka-building-archive-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 34px;
    }

    .ka-building-card .ka-property-card-inner {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        align-items: stretch;
    }

    .ka-building-card .ka-property-img-wrapper,
    .ka-building-card .ka-property-img-wrapper img {
        height: 100%;
        min-height: 138px;
        aspect-ratio: auto;
    }

    .ka-building-card .ka-property-content {
        padding: 12px;
    }

    .ka-building-card .ka-property-title {
        min-height: 0;
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .ka-building-card-meta {
        gap: 4px 8px;
        margin-bottom: 10px;
        font-size: 11.5px;
    }

    .ka-building-card-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding-inline: 10px;
    }

    .ka-building-archive-empty {
        padding: 34px 16px;
    }

    .ka-building-archive-pagination {
        margin: 30px 0 38px;
    }
}

@media (max-width: 380px) {
    .ka-building-card .ka-property-card-inner {
        grid-template-columns: 104px minmax(0, 1fr);
    }
}

/* =========================================
   5. Page Templates
========================================= */
.ka-map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.ka-form-wrapper {
    width: min(750px, calc(100% - 32px));
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ka-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.ka-form-header h1 {
    margin: 0 0 10px;
    color: #f26a21;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.55;
}

.ka-form-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.ka-field-group {
    margin-bottom: 25px;
    min-width: 0;
}

.ka-field-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.ka-field-group input[type="text"],
.ka-field-group input[type="number"],
.ka-field-group select {
    width: 100%;
    min-height: 46px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fdfdfd;
    color: #1a1816;
    font-size: 14px;
    transition: 0.3s;
}

.ka-field-group input:focus,
.ka-field-group select:focus {
    border-color: #f26a21;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.1);
}

.ka-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ka-checkbox-block {
    margin-bottom: 25px;
    padding: 15px;
    background: #fffdf5;
    border: 1px solid #ffe9a6;
    border-radius: 8px;
}

.ka-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
}

.ka-checkbox-item:last-child {
    margin-bottom: 0;
}

.ka-checkbox-item input {
    margin-top: 7px;
}

.ka-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 30px;
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.ka-btn-primary {
    width: 100%;
    background: #f26a21;
    color: #fff;
}

.ka-btn-primary:hover {
    background: #d95a1a;
}

@media (max-width: 640px) {
    .ka-form-wrapper {
        width: calc(100% - 24px);
        margin-block: 24px;
        padding: 24px 18px;
        border-radius: 14px;
    }

    .ka-form-header {
        margin-bottom: 28px;
    }

    .ka-form-header h1 {
        font-size: 22px;
    }

    .ka-form-header p {
        font-size: 13px;
    }

    .ka-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Insurance Request Template */
.ka-ins-wrap {
    min-height: 100vh;
    background: #f4f6f7;
    color: #1a1816;
}

.ka-ins-wrap * {
    box-sizing: border-box;
}

.ka-ins-wrap a {
    color: #0B546B;
    text-decoration: none;
    transition: 0.2s;
}

.ka-ins-wrap a:hover {
    color: #f26a21;
}

.ka-ins-wrap input,
.ka-ins-wrap select,
.ka-ins-wrap textarea,
.ka-ins-wrap button {
    font-family: 'Vazirmatn', system-ui, sans-serif;
}

.ka-ins-wrap input::placeholder,
.ka-ins-wrap textarea::placeholder {
    color: #a3b3b8;
}

.ka-ins-wrap input:focus,
.ka-ins-wrap select:focus,
.ka-ins-wrap textarea:focus {
    border-color: #0B546B !important;
    box-shadow: none;
}

.ka-ins-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B546B 0%, #0d5f79 58%, #08475a 100%);
}

.ka-ins-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ka-ins-hero-orb--one {
    left: -90px;
    top: -90px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
}

.ka-ins-hero-orb--two {
    left: 130px;
    bottom: -140px;
    width: 240px;
    height: 240px;
    background: rgba(242, 106, 33, 0.13);
}

.ka-ins-hero-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 24px 40px;
    text-align: center;
}

.ka-ins-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 5px 14px;
    border: 1px solid rgba(242, 106, 33, 0.35);
    border-radius: 999px;
    background: rgba(242, 106, 33, 0.2);
    color: #f9a76b;
    font-size: 11.5px;
    font-weight: 700;
}

.ka-ins-hero-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.55;
}

.ka-ins-hero-text {
    max-width: 560px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.9;
}

.ka-ins-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    max-width: 800px;
    margin: 0 auto 26px;
    text-align: right;
}

.ka-ins-hero-card {
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.ka-ins-hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

.ka-ins-hero-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(242, 106, 33, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ka-ins-hero-num {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 800;
}

.ka-ins-hero-card-title {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
}

.ka-ins-hero-card-text {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.85;
}

.ka-ins-hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
}

.ka-ins-hero-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
}

.ka-ins-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 26px 24px 60px;
}

.ka-ins-alert {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 14px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.9;
}

.ka-ins-alert--success {
    background: #eaf6ef;
    border: 1px solid #c2e3d0;
    color: #1d7f4c;
}

.ka-ins-alert--error {
    background: #fde8e8;
    color: #c53030;
}

.ka-ins-main-form {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.ka-ins-form-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ka-ins-section,
.ka-ins-side-card,
.ka-ins-call-card {
    background: #fff;
    border: 1px solid #eef1f2;
    border-radius: 18px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.ka-ins-section {
    padding: 22px 24px;
}

.ka-ins-section-head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
}

.ka-ins-step-num {
    flex: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #0B546B;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.ka-ins-section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ka-ins-section-title {
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.7;
}

.ka-ins-section-desc,
.ka-ins-modal-note {
    color: #9a938d;
    font-size: 11.5px;
    line-height: 1.8;
}

.ka-ins-fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.ka-ins-field {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #5b5652;
    font-size: 12px;
    font-weight: 700;
}

.ka-ins-field--spaced {
    margin-bottom: 14px;
}

.ka-ins-control {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1.5px solid #dbe6e9;
    border-radius: 12px;
    background: #fbfdfd;
    color: #1a1816;
    font-size: 13px;
    outline: none;
}

.ka-ins-control--error {
    border-color: #e74c3c !important;
    border-width: 2px;
}

.ka-ins-textarea {
    min-height: 110px;
    padding-block: 11px;
    resize: vertical;
}

.ka-ins-money-words {
    min-height: 16px;
    color: #f26a21;
    font-size: 11.5px;
    font-weight: 600;
}

.ka-ins-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ka-ins-check {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border: 1.5px solid #dbe6e9;
    border-radius: 999px;
    background: #fff;
    color: #1a1816;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.ka-ins-check:has(input:checked) {
    background: #eef5f7;
    color: #0B546B;
    border-color: #0B546B;
}

.ka-ins-check input {
    accent-color: #0B546B;
}

.ka-ins-aside {
    width: 320px;
    flex: none;
    position: sticky;
    top: 82px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ka-ins-side-card {
    padding: 20px;
}

.ka-ins-side-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.ka-ins-heading-line {
    width: 16px;
    height: 1px;
    display: block;
    background: #0B546B;
}

.ka-ins-side-kicker {
    color: #0B546B;
    font-size: 10.5px;
    font-weight: 800;
}

.ka-ins-summary {
    display: flex;
    flex-direction: column;
}

.ka-ins-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f2f0ee;
    font-size: 12.5px;
}

.ka-ins-summary-label {
    flex: none;
    color: #7c7772;
}

.ka-ins-summary-value {
    color: #14110f;
    font-weight: 700;
    text-align: left;
}

.ka-ins-summary-value--empty {
    color: #c4bfb8;
}

.ka-ins-submit-trigger,
.ka-ins-modal-primary {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    background: #f26a21;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}

.ka-ins-submit-trigger {
    margin-top: 16px;
    box-shadow: 0 4px 14px rgba(242, 106, 33, 0.35);
}

.ka-ins-submit-trigger:hover,
.ka-ins-modal-primary:hover {
    background: #d95a15;
}

.ka-ins-side-note {
    display: block;
    margin-top: 10px;
    color: #9a938d;
    font-size: 11px;
    line-height: 1.8;
    text-align: center;
}

.ka-ins-process-card {
    padding: 18px 20px;
    background: #eef5f7;
    border: 1px solid #d4e3e7;
    border-radius: 18px;
}

.ka-ins-process-title {
    margin-bottom: 10px;
    color: #0B546B;
    font-size: 13px;
    font-weight: 800;
}

.ka-ins-process-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ka-ins-process-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.ka-ins-process-num {
    flex: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #0B546B;
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
}

.ka-ins-process-text {
    color: #3f5a63;
    font-size: 12px;
    line-height: 1.85;
}

.ka-ins-call-card {
    padding: 18px 20px;
    text-align: center;
}

.ka-ins-call-title {
    margin-bottom: 4px;
    color: #1a1816;
    font-size: 12.5px;
    font-weight: 700;
}

.ka-ins-call-text {
    margin-bottom: 12px;
    color: #7c7772;
    font-size: 11.5px;
    line-height: 1.8;
}

.ka-ins-call-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 12px;
    background: #0B546B;
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 800;
    transition: 0.2s;
}

.ka-ins-call-link:hover {
    background: #08404f;
}

.ka-ins-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ka-ins-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 24, 30, 0.65);
    backdrop-filter: blur(4px);
}

.ka-ins-modal-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 26px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.ka-ins-modal-step--center {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.ka-ins-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.ka-ins-modal-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.7;
}

.ka-ins-modal-text {
    margin: 0 0 15px;
    color: #7c7772;
    font-size: 12.5px;
    line-height: 1.9;
}

.ka-ins-modal-text--success {
    margin-bottom: 0;
    color: #5b5652;
}

.ka-ins-modal-field {
    margin-bottom: 12px;
}

.ka-ins-modal-control {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 13.5px;
}

.ka-ins-modal-control--rtl {
    text-align: right;
}

.ka-ins-modal-close {
    width: 34px;
    height: 34px;
    flex: none;
    border: 0;
    border-radius: 50%;
    background: #f5f4f3;
    color: #5b5652;
    font-size: 15px;
    cursor: pointer;
}

.ka-ins-modal-close--floating {
    position: absolute;
    top: 15px;
    left: 15px;
}

.ka-ins-modal-error {
    padding: 10px;
    border-radius: 8px;
    background: #fde8e8;
    color: #c53030;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.ka-ins-modal-link,
.ka-ins-otp-back {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ka-ins-modal-link {
    width: 100%;
    padding: 8px;
    color: #0B546B;
    font-size: 12.5px;
    font-weight: 700;
}

.ka-ins-modal-note {
    display: block;
    margin-top: 6px;
    text-align: center;
}

.ka-ins-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ka-ins-modal-icon--otp {
    width: 54px;
    height: 54px;
    background: #fdeee4;
}

.ka-ins-modal-icon--success {
    width: 58px;
    height: 58px;
    background: #eaf6ef;
}

.ka-ins-modal-phone {
    color: #0B546B;
    font-weight: 700;
}

.ka-ins-otp-input {
    width: 200px;
    min-height: 56px;
    padding: 0 13px;
    border: 1.5px solid #dbe6e9;
    border-radius: 14px;
    background: #fbfdfd;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 10px;
    outline: none;
    text-align: center;
}

.ka-ins-otp-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 5px;
}

.ka-ins-otp-back {
    color: #5b5652;
    font-size: 11.5px;
    text-decoration: underline;
}

.ka-ins-otp-timer-wrap {
    color: #9a938d;
    font-size: 11.5px;
}

.ka-ins-resend {
    color: #f26a21;
    font-weight: 700;
    cursor: pointer;
}

.ka-ins-modal-info {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: #eef5f7;
    color: #0B546B;
    font-size: 12px;
    line-height: 1.9;
}

.ka-ins-modal-secondary {
    width: 100%;
    min-height: 48px;
    margin-top: 4px;
    border: 0;
    border-radius: 13px;
    background: #0B546B;
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 800px) {
    .ka-ins-body {
        padding: 22px 18px 50px;
    }

    .ka-ins-main-form {
        flex-direction: column;
    }

    .ka-ins-form-column,
    .ka-ins-aside {
        width: 100%;
        min-width: 0;
    }

    .ka-ins-aside {
        position: static;
    }
}

@media (max-width: 560px) {
    .ka-ins-hero-inner {
        padding: 32px 16px 30px;
    }

    .ka-ins-hero-title {
        font-size: 24px;
    }

    .ka-ins-hero-text {
        font-size: 13px;
    }

    .ka-ins-hero-grid {
        grid-template-columns: 1fr;
    }

    .ka-ins-section,
    .ka-ins-side-card,
    .ka-ins-process-card,
    .ka-ins-call-card {
        border-radius: 14px;
    }

    .ka-ins-section {
        padding: 18px 16px;
    }

    .ka-ins-section-head {
        align-items: flex-start;
    }

    .ka-ins-fields-grid {
        grid-template-columns: 1fr;
    }

    .ka-ins-check {
        width: 100%;
        justify-content: flex-start;
    }

    .ka-ins-modal {
        padding: 12px;
    }

    .ka-ins-modal-card {
        padding: 22px 18px;
        border-radius: 18px;
    }
}

/* =========================================
   6. About Page
========================================= */
.ka-about-page {
    background: #fff;
    color: #14110f;
    min-height: 100vh;
    padding-bottom: 60px;
}

.ka-about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ka-about-hero {
    margin-bottom: 70px;
    text-align: center;
}

.ka-about-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.ka-about-section--last {
    margin-bottom: 0;
}

.ka-about-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    text-align: justify;
}

.ka-about-content,
.ka-about-media,
.ka-about-cols>div {
    min-width: 0;
}

.ka-about-title {
    color: #0B546B;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.6;
    margin: 0 0 30px;
}

.ka-about-title--section {
    font-size: 22px;
    margin-bottom: 25px;
}

.ka-about-text {
    color: #3c3833;
    font-size: 14.5px;
    line-height: 2.2;
    margin: 0 0 15px;
    text-align: justify;
}

.ka-about-text--strong {
    font-weight: 700;
}

.ka-about-text--last {
    margin-bottom: 0;
}

.ka-about-list {
    color: #3c3833;
    font-size: 14.5px;
    line-height: 2.2;
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.ka-about-list li {
    margin-bottom: 16px;
}

.ka-about-list li:last-child {
    margin-bottom: 0;
}

.ka-about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #eef1f2;
    border-radius: 12px;
    display: block;
}

@media (max-width: 920px) {
    .ka-about-container {
        padding: 46px 20px;
    }

    .ka-about-hero {
        margin-bottom: 52px;
    }

    .ka-about-section,
    .ka-about-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ka-about-section {
        margin-bottom: 56px;
    }

    .ka-about-section--last .ka-about-media {
        order: -1;
    }

    .ka-about-img {
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .ka-about-page {
        padding-bottom: 30px;
    }

    .ka-about-container {
        padding: 34px 16px;
    }

    .ka-about-hero {
        margin-bottom: 40px;
        text-align: right;
    }

    .ka-about-title {
        font-size: 21px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .ka-about-title--section {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .ka-about-cols,
    .ka-about-section {
        gap: 22px;
    }

    .ka-about-section {
        margin-bottom: 44px;
    }

    .ka-about-text,
    .ka-about-list {
        font-size: 13.5px;
        line-height: 2.15;
        text-align: right;
    }

    .ka-about-list {
        margin-bottom: 18px;
    }

    .ka-about-list li {
        margin-bottom: 12px;
    }

    .ka-about-img {
        border-radius: 10px;
        aspect-ratio: 4 / 3;
    }
}

/* =========================================
   5. Footer
========================================= */
.ka-site-footer {
    background: #1a1816;
    color: #fff;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    direction: rtl;
    padding-top: 0;
}

.ka-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 24px;
}

.ka-footer-top-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.ka-footer-top-cta-text {
    text-align: right;
    min-width: 0;
}

.ka-footer-top-cta-title {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.7;
    margin: 0 0 4px;
}

.ka-footer-top-cta-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.9;
    margin: 0;
}

.ka-footer-btn-expert {
    background: var(--ka-secondary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
}

.ka-footer-btn-expert:hover {
    background: #e05b16;
}

.ka-footer-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
    gap: 36px;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 28px;
}

.ka-footer-about-info {
    min-width: 0;
    text-align: right;
}

.ka-footer-logo-image {
    display: block;
    height: 81px;
    width: auto;
    max-width: 220px;
    margin-bottom: 14px;
}

.ka-footer-about-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 2.2;
    margin: 0;
    max-width: 560px;
}

.ka-footer-holding-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 22px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.ka-footer-holding-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ka-footer-holding-mark {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.ka-footer-holding-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
}

.ka-footer-holding-name {
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
}

.ka-footer-holding-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 2;
    margin: 0;
}

.ka-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 0;
    text-align: right;
}

.ka-footer-col h4 {
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    margin: 0 0 12px;
}

.ka-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ka-footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
    line-height: 1.8;
    transition: 0.3s;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.ka-footer-col a:hover {
    color: #fff;
}

.ka-footer-contact-item {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px !important;
    text-align: right;
}

.ka-footer-contact-address {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    line-height: 1.9;
    margin-top: 10px;
}

.ka-footer-contact-hours {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11.5px;
    line-height: 1.9;
    margin-top: 10px;
}

.ka-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
}

.ka-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ka-footer-social-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 12.5px;
}

.ka-footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ka-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.ka-footer-social-link:hover {
    background: var(--ka-secondary);
}

.ka-footer-enamad {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    min-width: 0;
}

.ka-footer-enamad:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
}

.ka-footer-enamad-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    text-align: right;
    min-width: 0;
}

.ka-footer-enamad-title {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.ka-footer-enamad-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10.5px;
}

.ka-footer-copyright-area {
    background: #151311;
    border-top: 1px solid #222;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11.5px;
    padding: 16px 24px;
}

.ka-footer-copyright-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ka-footer-copyright-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.ka-footer-copyright-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: 0.3s;
}

.ka-footer-copyright-links a:hover {
    color: #aaa;
}

.ka-footer-developer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
}

.ka-footer-developer a:hover {
    color: var(--ka-secondary);
}

@media (max-width: 920px) {
    .ka-footer-inner {
        padding: 34px 20px 22px;
    }

    .ka-footer-about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ka-footer-about-text {
        max-width: none;
    }

    .ka-footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 22px;
    }

    .ka-footer-bottom {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .ka-site-footer {
        padding-bottom: 70px;
    }

    .ka-footer-inner {
        padding: 28px 16px 18px;
    }

    .ka-footer-top-cta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .ka-footer-top-cta-title {
        font-size: 15.5px;
    }

    .ka-footer-top-cta-desc {
        font-size: 12.5px;
    }

    .ka-footer-btn-expert {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        padding-inline: 16px;
    }

    .ka-footer-logo-image {
        height: 64px;
        max-width: 180px;
        margin-bottom: 12px;
    }

    .ka-footer-about-text {
        font-size: 12.5px;
        line-height: 2.1;
    }

    .ka-footer-holding-box {
        padding: 16px;
        border-radius: 14px;
    }

    .ka-footer-holding-title {
        gap: 8px;
    }

    .ka-footer-links-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px 0;
    }

    .ka-footer-col h4 {
        margin-bottom: 10px;
    }

    .ka-footer-col ul {
        gap: 8px;
    }

    .ka-footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 0;
    }

    .ka-footer-socials {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ka-footer-social-icons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 38px);
        justify-content: start;
    }

    .ka-footer-enamad {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 12px;
    }

    .ka-footer-copyright-area {
        padding: 14px 16px;
    }

    .ka-footer-copyright-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .ka-footer-copyright-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 390px) {
    .ka-footer-social-icons {
        grid-template-columns: repeat(5, 34px);
        gap: 8px;
    }

    .ka-footer-social-link {
        width: 34px;
        height: 34px;
    }

    .ka-footer-enamad-desc {
        font-size: 10px;
    }
}

.ka-filter-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.ka-filter-drawer-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Bottom Navigation */
.ka-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.06);
    z-index: 990;
    border-top: 1px solid #eaeaea;
    padding-bottom: env(safe-area-inset-bottom);
}

.ka-mobile-bottom-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.ka-mobile-bottom-nav li {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ka-mobile-bottom-nav a,
.ka-mobile-bottom-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 11px;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    width: 100%;
    transition: 0.2s;
}

.ka-mobile-bottom-nav a:hover,
.ka-mobile-bottom-nav button:hover {
    color: var(--ka-secondary);
}

.ka-mobile-bottom-nav svg {
    margin-bottom: 5px;
    stroke: currentColor;
}

.ka-mobile-bottom-nav .active {
    color: var(--ka-primary);
}

/* Mobile Filter Drawer Overrides */
@media (max-width: 992px) {
    .ka-mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    /* Prevent content from hiding behind nav */

    .sidebar-filter {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        width: 100% !important;
        height: 85vh !important;
        background: #fff !important;
        z-index: 1001 !important;
        border-radius: 24px 24px 0 0 !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
        overflow-y: auto !important;
        padding: 30px 20px !important;
        transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.4s !important;
        transform: translateY(100%);
        visibility: hidden;
    }

    .sidebar-filter.active-mobile-drawer {
        transform: translateY(0);
        visibility: visible;
    }
}

/* --- Extracted from front-page.php --- */
/* Global & Typography */
html,
body {
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

a {
    text-decoration: none;
}

/* Hero Section */
.ka-hero {
    background: #115263;
    padding: 70px 20px 60px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.ka-hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
}

.hero-tabs {
    display: inline-flex;
    justify-content: center;
    background: #0a3e4d;
    padding: 5px;
    border-radius: 40px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.hero-tabs button {
    padding: 10px 40px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
    color: #fff;
}

.hero-tabs button.active {
    background: #f26a21;
    color: #fff;
}

.hero-search-wrapper {
    background: #fff;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 6px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-search-wrapper input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.hero-search-wrapper .location-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    padding: 0 20px;
    white-space: nowrap;
    font-family: inherit;
}

.hero-search-wrapper .hero-divider {
    width: 1px;
    height: 35px;
    background: #ddd;
}

.hero-search-wrapper .search-btn {
    background: #f26a21;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-family: inherit;
    margin-right: 5px;
}

/* Modal styles */
.ka-location-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.ka-location-modal.active {
    display: flex;
}

.ka-loc-modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ka-loc-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
}

.ka-loc-close:hover {
    background: #e0e0e0;
}

.ka-loc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

.ka-loc-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.ka-loc-form-group {
    margin-bottom: 20px;
    text-align: right;
}

.ka-loc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.ka-loc-form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background: #fcfcfc;
    cursor: pointer;
}

.ka-loc-submit {
    width: 100%;
    background: #f26a21;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    font-family: inherit;
}

.ka-loc-submit:hover {
    background: #e05d1a;
}

.hero-links-wrap {
    background: #0a3e4d;
    max-width: max-content;
    margin: 0 auto;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-links-wrap a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    white-space: nowrap;
}

.hero-links-wrap a:hover {
    color: #fff;
}

.hero-links-wrap .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* Main Layout */
.ka-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.layout-flex {
    display: flex;
    gap: 30px;
    flex-direction: row;
    align-items: flex-start;
}

/* Sidebar */
.sidebar-filter {
    width: 300px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgb(215, 215, 214);
    padding: 18px;
    position: sticky;
    top: 76px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
}

.sidebar-filter h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.sidebar-filter label {
    font-size: 13px;
    color: #555;
    font-weight: bold;
    margin-bottom: 8px;
}

#ka-advanced-filters select.ka-auto-10026c {
    width: 100%;
}

.ka-select,
.ka-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    background: #fff;
    font-size: 13px;
}

.ka-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 10px;
}

/* Content Area */
.content-area {
    flex-grow: 1;
    min-width: 0;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-tabs a {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    color: #555;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    transition: 0.3s;
    background: #fff;
}

.category-tabs a.active {
    background: #0A4C60;
    color: #fff;
    border-color: #0A4C60;
}

.category-tabs a:hover:not(.active) {
    border-color: #0A4C60;
    color: #0A4C60;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

/* Grids */
.ka-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Property Card (Mockup style) */
.ka-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.ka-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ka-card-img {
    height: 180px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    position: relative;
}

.ka-card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f26a21;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.ka-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ka-card-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.ka-card-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.ka-card-price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: auto;
}

.ka-card-action {
    align-self: flex-start;
    margin-top: 15px;
    background: #e1f5fe;
    color: #0A4C60;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Section Titles */
.section-wrap {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 20px;
}

.section-wrap-title h2 {
    font-size: 20px;
    font-weight: 900;
    color: #333;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-wrap-title p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.section-actions a {
    font-size: 13px;
    font-weight: bold;
}

.btn-dark {
    background: #0A4C60;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-right: 15px;
}

.link-primary {
    color: #0A4C60;
    text-decoration: underline;
}

/* Partnership Cards */
.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.partner-card-header {
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.partner-blue {
    color: #0A4C60;
}

.partner-orange {
    color: #f26a21;
}

.partner-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.partner-bar {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.partner-bar-orange {
    background: #f26a21;
}

.partner-bar-blue {
    background: #0A4C60;
}

/* Request Banner */
.req-banner {
    background: #fff3e0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.req-banner h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.req-banner p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.req-banner-btn {
    background: #f26a21;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

/* VIP Banner */
.vip-banner-full {
    background: #1a1511;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.vip-banner-full h2 {
    font-size: 26px;
    margin: 15px 0;
}

.vip-banner-full p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 20px;
}

.vip-feats span {
    font-size: 12px;
    margin-left: 15px;
    opacity: 0.9;
}

/* Services Grid */
.srv-section-header {
    text-align: right;
    margin-bottom: 30px;
}

.srv-section-header h2 {
    font-size: 22px;
    font-weight: 900;
    color: #1a1816;
    margin: 0 0 10px 0;
}

.srv-section-header p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.srv-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.srv-card:hover {
    border-color: #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.srv-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.srv-icon {
    width: 45px;
    height: 45px;
    background: #fff3e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f26a21;
    flex-shrink: 0;
}

.srv-icon svg {
    stroke: #f26a21;
    width: 22px;
    height: 22px;
}

.srv-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.srv-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.srv-card-link {
    font-size: 13px;
    color: #0A4C60;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: flex-end;
}

.srv-card-link svg {
    stroke: #f26a21;
    width: 16px;
    height: 16px;
}

/* Bottom Cards */
.bot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.bot-card {
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    text-align: right;
}

.bot-card-gamify {
    background: #fdf5f0;
}

/* Light orange */
.bot-card-gamify::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 200px;
    background: #fbe6da;
    border-radius: 0 100% 100% 0;
    opacity: 0.5;
}

.bot-card-consult {
    background: #f9f9f9;
}

/* Light gray */
.bot-tag {
    color: #f26a21;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.bot-card h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 900;
    color: #333;
    position: relative;
    z-index: 2;
}

.bot-card p {
    color: #666;
    font-size: 14px;
    margin: 0 0 30px 0;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.bot-btn-orange {
    background: #f26a21;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.bot-btn-orange:hover {
    background: #e05d1a;
}

.bot-btn-dark {
    background: #0A4C60;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.bot-btn-dark:hover {
    background: #073a4a;
}

/* Realtor Banner */
.realtor-banner {
    background: #0A4C60;
    border-radius: 16px;
    padding: 40px;
    text-align: right;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.realtor-banner h2 {
    font-size: 24px;
    margin: 0 0 15px 0;
}

.realtor-banner p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 20px 0;
}

.realtor-feats span {
    font-size: 13px;
    margin-left: 20px;
}

.realtor-btn {
    background: #f26a21;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
}

@media(max-width: 992px) {
    .layout-flex {
        flex-direction: column;
    }

    .sidebar-filter {
        width: 100%;
        position: static;
    }

    .vip-banner-full,
    .req-banner,
    .realtor-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .bot-grid {
        grid-template-columns: 1fr;
    }

    .srv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vip-feats,
    .realtor-feats {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .vip-feats span,
    .realtor-feats span {
        margin: 0;
    }
}

@media(max-width: 576px) {
    .ka-hero {
        padding: 40px 15px 40px;
    }

    .ka-hero h1 {
        font-size: 24px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-tabs {
        margin-bottom: 20px;
    }

    .hero-tabs button {
        padding: 8px 20px;
        font-size: 13px;
    }

    .hero-search-wrapper {
        flex-direction: column;
        border-radius: 16px;
        overflow: hidden;
        padding: 0;
        background: transparent;
        box-shadow: none;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-search-wrapper input {
        width: 100%;
        background: #fff;
        border-radius: 12px;
        padding: 15px;
    }

    .hero-search-wrapper .location-btn {
        width: 100%;
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        justify-content: center;
    }

    .hero-search-wrapper .hero-divider {
        display: none;
    }

    .hero-search-wrapper .search-btn {
        width: 100%;
        border-radius: 12px;
        justify-content: center;
        margin: 0;
        padding: 15px;
    }

    .hero-links-wrap {
        padding: 15px;
        border-radius: 16px;
        gap: 15px;
    }

    .srv-grid {
        grid-template-columns: 1fr;
    }

    .bot-card {
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }

    .bot-card::before {
        display: none;
    }

    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .category-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .category-tabs::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .category-tabs::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 4px;
    }

    .ka-grid {
        grid-template-columns: 1fr !important;
    }
}


/* --- Auto Extracted Inline Styles --- */
.ka-auto-f58906 {
    max-width: 1320px;
    margin: 50px auto;
    padding: 0 20px;
}

.ka-auto-941098 {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ka-auto-539b04 {
    text-align: center;
}

.ka-auto-2917bc {
    font-size: 32px;
    font-weight: 900;
    color: #1a1816;
    margin-bottom: 15px;
}

.ka-auto-6d72b4 {
    width: 60px;
    height: 4px;
    background: #f26a21;
    margin: 0 auto;
    border-radius: 4px;
}

.ka-auto-b910b8 {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.ka-auto-5e6926 {
    font-size: 16px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

.ka-auto-b9e875 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ka-auto-aa74ed {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.ka-auto-1c6ec7 {
    font-size: 32px;
    font-weight: 900;
    color: #0A4C60;
    margin-bottom: 10px;
}

.ka-auto-4d0dec {
    font-size: 14px;
    font-weight: bold;
    color: #777;
}

.ka-auto-48ded6 {
    background: #e3f2fd;
    color: #0B546B;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.ka-auto-293d71 {
    font-size: 13px;
    color: #999;
}

.ka-auto-8e6aa7 {
    color: #0B546B;
    margin-bottom: 20px;
}

.ka-auto-716ecf {
    margin-top: 20px;
}

.ka-auto-2c5207 {
    margin-top: 30px;
}

.ka-auto-2e99ff {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

.ka-auto-89a5c5 {
    background: #262626;
    color: #f0c14b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.ka-auto-3102f2 {
    color: #0B546B;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.ka-auto-1fda12 {
    color: #0B546B;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: 10px;
}

.ka-auto-08b245 {
    color: #0B546B;
    margin-bottom: 15px;
    margin-top: 10px;
}

.ka-auto-786ec7 {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    line-height: 1.6;
}

.ka-auto-b27db5 {
    max-width: 1320px;
    margin: 40px auto;
    padding: 0 20px;
}

.ka-auto-c100b8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.ka-auto-566873 {
    flex: 1;
    min-width: 300px;
}

.ka-auto-a5eacf {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ka-auto-7b32b7 {
    background: #f26a21;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.ka-auto-7195a7 {
    margin: 0 0 10px 0;
    color: #0B546B;
    font-size: 2.2rem;
}

.ka-auto-8b3031 {
    color: #777;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ka-auto-244a7f {
    text-align: left;
}

.ka-auto-214c5e {
    font-size: 28px;
    font-weight: bold;
    color: #0B546B;
}

.ka-auto-dc8b71 {
    font-size: 16px;
    color: #777;
}

.ka-auto-1f70fa {
    font-size: 18px;
    color: #555;
    margin-top: 5px;
}

.ka-auto-03ec02 {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

.ka-auto-a74ebf {
    background: #e8f5e9;
    color: #2e7d32;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
    font-weight: bold;
}

.ka-auto-66cdf0 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.ka-auto-ad5ca1 {
    min-width: 0;
}

.ka-auto-7ecf0a {
    margin-bottom: 30px;
}

.ka-auto-9af4f0 {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ka-auto-86c9d6 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    backdrop-filter: blur(5px);
}

.ka-auto-f3e2f1 {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.ka-auto-989010 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ka-auto-99b11f {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2;
}

.ka-auto-354ddf {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

.ka-auto-fbc6be {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 2;
}

.ka-auto-954bec {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.ka-auto-66f554 {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 2;
}

.ka-auto-3bdb90 {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed #ccc;
    color: #888;
}

.ka-auto-987e58 {
    margin-bottom: 40px;
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.ka-auto-f12262 {
    color: #d32f2f;
    margin-top: 0;
}

.ka-auto-dadd18 {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ka-auto-4444e8 {
    color: #0B546B;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
}

.ka-auto-d48d32 {
    line-height: 2.2;
    color: #444;
    font-size: 16px;
}

.ka-auto-e8b00c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    font-size: 15px;
    color: #555;
}

.ka-auto-ded4bd {
    background: #f4f7f9;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

.ka-auto-70bff7 {
    color: #0B546B;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: 40px;
}

.ka-auto-bfab98 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ka-auto-e19ab3 {
    color: #f26a21;
    margin-top: 0;
}

.ka-auto-4ddb7c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.ka-auto-112b16 {
    grid-column: 1/-1;
}

.ka-auto-0a6674 {
    border: 0;
    border-top: 1px dashed #eee;
    margin: 15px 0;
}

.ka-auto-7df897 {
    font-size: 14px;
    color: #555;
}

.ka-auto-803b2b {
    margin-top: 5px;
}

.ka-auto-b839a3 {
    font-size: 14px;
    color: #555;
    line-height: 2;
}

.ka-auto-eafcd2 {
    color: #d63638;
    margin-top: 0;
}

.ka-auto-78f388 {
    background: #fffbf2;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ffe9a6;
    font-size: 14px;
    color: #d63638;
    line-height: 1.6;
}

.ka-auto-251f77 {
    background: #e3f2fd;
    border-right: 4px solid #0B546B;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.ka-auto-26137e {
    margin: 0 0 10px 0;
    color: #0B546B;
}

.ka-auto-46dcee {
    margin: 0;
}

.ka-auto-c265c5 {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ka-auto-9c139f {
    color: #0B546B;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.ka-auto-08e3ed {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #555;
}

.ka-auto-c7d55e {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.ka-auto-bcfc22 {
    color: #333;
}

.ka-auto-5ca8cb {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.ka-auto-0bd97b {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
}

.ka-auto-b3fb6d {
    background: linear-gradient(135deg, #0B546B 0%, #073a4a 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(11, 84, 107, 0.2);
    position: sticky;
    top: 100px;
}

.ka-auto-703ebb {
    margin-top: 0;
    color: #fff;
    font-size: 1.4rem;
}

.ka-auto-395fde {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 20px;
}

.ka-auto-7d0b1f {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #4caf50;
    color: #4caf50;
}

.ka-auto-6ae9c2 {
    width: 100%;
    background: #f26a21;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(242, 106, 33, 0.3);
}

.ka-auto-ea517c {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.ka-auto-d09969 {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ka-auto-ead590 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.ka-auto-ee9c8e {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ka-auto-f662e6 {
    font-size: 30px;
    color: #0B546B;
}

.ka-auto-b8aef8 {
    color: #0B546B;
    margin-top: 0;
}

.ka-auto-3ac711 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 20px 0;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.ka-auto-a297ac {
    font-size: 13px;
    color: #888;
}

.ka-auto-a42b89 {
    width: 100%;
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.ka-auto-c12d44 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 20px;
}

.ka-auto-157c48 {
    background: #f26a21;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.ka-auto-42a30b {
    color: #0B546B;
    margin: 0 0 10px 0;
    font-size: 2.2rem;
}

.ka-auto-6c0198 {
    color: #666;
    font-size: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.ka-auto-0cb57f {
    font-size: 14px;
    color: #555;
    background: #f9f9f9;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.ka-auto-dc9d6c {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.ka-auto-b7c7a7 {
    margin-bottom: 50px;
}

.ka-auto-7f4d54 {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ka-auto-709a84 {
    color: #f26a21;
    margin-top: 0;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.ka-auto-3d31d4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.ka-auto-7d85c1 {
    color: #f26a21;
    margin-top: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.ka-auto-77f2ad {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.ka-auto-ed562f {
    background: #e3f2fd;
    color: #0B546B;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.ka-auto-357c5e {
    margin-top: 30px;
    line-height: 1.8;
    color: #555;
}

.ka-auto-474076 {
    color: #f26a21;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.ka-auto-37a2d8 {
    background: #0B546B;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: sticky;
    top: 20px;
    height: max-content;
}

.ka-auto-040da8 {
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #f26a21;
}

.ka-auto-a0d1b7 {
    margin: 0 0 10px 0;
}

.ka-auto-82a365 {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.ka-auto-b9840f {
    width: 100%;
    background: #f26a21;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.ka-auto-1d9033 {
    margin-bottom: 60px;
}

.ka-auto-8718c8 {
    color: #0B546B;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-right: 4px solid #f26a21;
    padding-right: 15px;
}

.ka-auto-77c814 {
    overflow-x: auto;
}

.ka-auto-585417 {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ka-auto-3a13c5 {
    background: #f9f9f9;
    text-align: right;
}

.ka-auto-847d32 {
    padding: 15px;
    color: #555;
    border-bottom: 2px solid #eaeaea;
}

.ka-auto-5f51e3 {
    color: #d63638;
    background: #ffebcc;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.ka-auto-5db377 {
    color: #2e7d32;
    background: #e8f5e9;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.ka-auto-d48e07 {
    color: #0277bd;
    background: #e1f5fe;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.ka-auto-aa7c36 {
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.ka-auto-d8cf88 {
    padding: 15px;
    font-weight: bold;
    color: #0B546B;
}

.ka-auto-a3c218 {
    padding: 15px;
}

.ka-auto-d8368c {
    padding: 10px 15px;
    background: #fffbf2;
    font-size: 12px;
    color: #d63638;
    border-bottom: 1px solid #eee;
}

.ka-auto-0f7ba9 {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    color: #777;
    border: 1px solid #eaeaea;
}

.ka-auto-9af4a8 {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ka-auto-fea249 {
    text-align: center;
    margin-bottom: 40px;
}

.ka-auto-3b7ba6 {
    margin-top: 20px;
    color: #666;
    font-size: 15px;
}

.ka-auto-fe210a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ka-auto-8207fe {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ka-auto-97c6c2 {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ka-auto-7143a4 {
    width: 50px;
    height: 50px;
    background: #e0f2fe;
    color: #0A4C60;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ka-auto-d9aa5d {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 800;
    color: #333;
}

.ka-auto-55f2f0 {
    font-size: 15px;
    color: #666;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ka-auto-f4af31 {
    width: 50px;
    height: 50px;
    background: #fff3e0;
    color: #f26a21;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ka-auto-8bdf4c {
    font-size: 15px;
    color: #666;
    font-weight: bold;
}

.ka-auto-dca4cf {
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ka-auto-1223a4 {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.ka-auto-3df5b2 {
    background: #eee;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.ka-auto-b62e74 {
    width: 100%;
    height: 100%;
}

.ka-auto-4a0f55 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    text-align: center;
    padding: 20px;
}

.ka-auto-d7858c {
    margin-bottom: 15px;
}

.ka-auto-391d6a {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.ka-auto-6e170e {
    text-align: center;
    padding: 50px;
}

.ka-auto-914fe6 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.ka-auto-e7ec54 {
    margin-bottom: 0
}

.ka-auto-0998cf {
    margin: 0 0 10px
}

.ka-auto-b997e0 {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ka-auto-989a47 {
    background: #fff3e0;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #f26a21;
    color: #d63638;
    font-weight: bold;
}

.ka-auto-1f169e {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.ka-auto-03ec03 {
    background: #f0f4f8;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d9e2ec;
    color: #334e68;
}

.ka-auto-ce0acb {
    color: #d63638;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.ka-auto-002535 {
    margin-top: 12px
}

.ka-auto-fa3e1c {
    margin-bottom: 12px
}

.ka-auto-93b8ea {
    display: none;
}

.ka-auto-345be3 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ka-auto-91b323 {
    width: 32px;
}

.ka-auto-dd7e28 {
    font-size: 16px;
}

.ka-auto-7ba7ef {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

.ka-auto-113a91 {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.ka-auto-425e44 {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.ka-auto-ff6649 {
    background: #0B546B;
    color: #fff;
}

.ka-auto-d29908 {
    color: #f26a21;
}

.ka-auto-de2da1 {
    font-weight: bold;
    margin-top: 10px;
}

.ka-auto-fc363d {
    margin-top: 30px;
    font-size: 22px;
    color: #0B546B;
}

.ka-auto-0adff4 {
    display: block;
}

.ka-auto-8588e4 {
    width: 100%;
}

.ka-auto-3120fe {
    width: 50px;
    height: auto;
}

.ka-auto-102d90 {
    text-align: center;
    margin-bottom: 50px;
}

.ka-auto-dfc44c {
    color: #0B546B;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.ka-auto-7faf16 {
    color: #666;
    font-size: 1.1rem;
}

.ka-auto-34011f {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.ka-auto-525132 {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 1;
    min-width: 150px;
}

.ka-auto-f30411 {
    background: #0B546B;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.ka-auto-bbf4f9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.ka-auto-ee047d {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.ka-auto-4ed47f {
    margin: 15px 0 0 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5;
}

.ka-auto-890def {
    padding: 20px;
    flex: 1;
}

.ka-auto-ea2c44 {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #555;
    line-height: 2;
}

.ka-auto-3905ea {
    padding: 15px 20px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
    text-align: center;
}

.ka-auto-7f2fe9 {
    width: 100%;
    border: 1px solid #0B546B;
    color: #0B546B;
    background: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.ka-auto-5ab202 {
    text-align: center;
    margin-top: 40px;
}

.ka-auto-6591d2 {
    text-align: center;
    width: 100%;
    color: #777;
}

.ka-auto-14a1aa {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.ka-auto-b0594e {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.ka-auto-457fdd {
    font-size: 15.5px;
    font-weight: 800;
    color: rgb(26, 24, 22);
}

.ka-auto-f964bc {
    border: none;
    cursor: pointer;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: rgb(124, 119, 114);
    padding: 2px;
    transition: 0.2s;
}

.ka-auto-f4b161 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ka-auto-1b0f2d {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgb(91, 86, 82);
}

.ka-auto-10026c {
    border: 1.5px solid rgb(228, 228, 226);
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 13px;
    color: rgb(26, 24, 22);
    background: rgb(251, 251, 250);
    outline: none;
}

.ka-auto-13262f {
    display: flex;
    gap: 8px;
}

.ka-auto-8f4eb3 {
    width: 50%;
    border: 1.5px solid rgb(228, 228, 226);
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 13px;
    background: rgb(251, 251, 250);
    outline: none;
}

.ka-auto-e2e874 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: rgb(26, 24, 22);
}

.ka-auto-ec9095 {
    font-size: 12.5px;
    font-weight: 700;
    color: rgb(91, 86, 82);
}

.ka-auto-14d7ed {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    color: #555;
}

.ka-auto-695f51 {
    accent-color: rgb(242, 106, 33);
    width: 16px;
    height: 16px;
}

.ka-auto-0ebc53 {
    border: none;
    cursor: pointer;
    background: transparent;
    color: rgb(11, 84, 107);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    padding: 10px 5px;
    width: 100%;
    border-radius: 8px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--ka-font-family);
}

.ka-auto-3f1eaf {
    font-size: 18px;
    font-weight: bold;
}

.ka-auto-01637f {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
    padding: 15px 10px;
    background: #f9fbfc;
    border-radius: 10px;
    border: 1px solid #e1e8ed;
}

.ka-auto-a1ff00 {
    border: 1.5px solid rgb(228, 228, 226);
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    color: rgb(26, 24, 22);
    background: #fff;
    outline: none;
    font-family: var(--ka-font-family);
    transition: 0.2s;
}

.ka-auto-1e0d7b {
    border: none;
    cursor: pointer;
    background: rgb(242, 106, 33);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 800;
    padding: 12px 0px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(242, 106, 33, 0.3);
}

.ka-auto-1e3942 {
    flex-grow: 1;
    min-width: 0;
}

.ka-auto-213225 {
    color: #0B546B;
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.ka-auto-baab05 {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0;
}

.ka-auto-9040b6 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.ka-auto-806b08 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
}

.ka-auto-a4fc0b {
    font-size: 14px;
    color: #666;
}

.ka-auto-b35ea1 {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    outline: none;
    background: #f9f9f9;
    font-size: 13px;
}

.ka-auto-cb1afc {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ka-auto-6d0a0b {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.ka-auto-c93870 {
    display: none;
    background: #fff;
    border: 2px solid #0B546B;
    color: #0B546B;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.ka-auto-b59574 {
    grid-column: 1/-1;
    text-align: center;
    padding: 50px;
    color: #888;
}

.ka-auto-0e1b54 {
    grid-column: 1/-1;
    text-align: center;
    padding: 50px;
    color: #d63638;
}

.ka-auto-3f13b3 {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: 0.2s;
}

.ka-auto-209ba7 {
    max-width: 420px;
    margin: 80px auto;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid var(--line-strong, #ddd);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px -12px rgba(11, 35, 65, 0.14);
}

.ka-auto-1d2b3f {
    background: rgba(47, 122, 79, .1);
    color: #2f7a4f;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.ka-auto-8b3fa3 {
    background: #0B2341;
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.ka-auto-e2d2f4 {
    margin-bottom: 30px;
    border: 2px dashed #ccc;
    width: 100%;
    background: transparent;
}

.ka-auto-54b87e {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.ka-auto-a34cc9 {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.ka-auto-03f207 {
    width: 28px;
    height: 28px;
    margin-left: 8px;
    vertical-align: middle;
}

.ka-auto-118147 {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.ka-auto-d578ec {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    border: 2px solid #fff;
}

.ka-auto-41c820 {
    font-size: 18px;
    margin-top: 2px;
}

.ka-auto-da5dc9 {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ka-auto-dc1fb6 {
    margin: 0 5px;
}

.ka-auto-3bf91d {
    border: none;
    cursor: pointer;
    background: transparent;
    color: rgb(11, 84, 107);
    font-size: 12.5px;
    font-weight: 700;
    text-align: right;
    padding: 5px 0;
}

.ka-auto-5bff2c {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.ka-auto-0c398f {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.ka-auto-185f41 {
    background: #0A4C60;
    color: #fff;
    border: 1px solid #0A4C60;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    outline: none;
    transition: 0.3s;
}

.ka-auto-9b7d84 {
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    outline: none;
    transition: 0.3s;
}

.ka-auto-1f7bc9 {
    font-weight: bold;
    color: #333;
}

.ka-auto-446f96 {
    width: auto;
    padding: 8px 15px;
}

.ka-auto-967df9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.ka-auto-92d173 {
    margin-top: 10px;
}

.ka-auto-576743 {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
}

.ka-auto-1a8fd7 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 4px, rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: flex;
    flex-direction: column;
}

.ka-auto-4cb8ce {
    position: relative;
}

.ka-auto-6628e1 {
    width: 100%;
    height: 200px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.ka-auto-df30f8 {
    background: #0A4C60;
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
}

.ka-auto-0c3f27 {
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ka-auto-c3f649 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #1a1816;
    font-weight: 800;
}

.ka-auto-0dea1c {
    font-size: 13px;
    color: #666;
    margin-bottom: auto;
    min-height: 40px;
    line-height: 1.6;
}

.ka-auto-897f6f {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #0b546b;
    background: #f2f6f7;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 15px;
}

.ka-auto-b604cc {
    background: #f26a21;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.ka-auto-c48405 {
    background: #f26a21;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
}

.ka-auto-a614f4 {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.ka-auto-549d79 {
    grid-column: 1/-1;
    padding: 40px;
    background: #fffaf0;
    border: 1px solid #ffe0b2;
    border-radius: 12px;
    text-align: center;
    color: #d84315;
}

.ka-auto-56bca2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.ka-auto-6a0a4a {
    font-size: 14px;
    margin-top: 5px;
}

.ka-auto-b99748 {
    display: flex;
    flex: 1;
}

.ka-auto-d409b8 {
    margin-top: 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.ka-auto-648ec5 {
    height: 180px;
}

.ka-auto-68c09d {
    height: 120px;
}

.ka-auto-e67855 {
    position: relative;
    display: flex;
}

.ka-auto-120444 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.ka-auto-2a7cbb {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.ka-auto-e8c21e {
    position: absolute;
    top: 2px;
    right: 2px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

.ka-auto-fa521b {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ka-auto-403a78 {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
    border-radius: 8px;
}

.ka-auto-bad75b {
    margin-top: 40px;
}

.ka-auto-aeffb1 {
    color: #f26a21;
    margin-bottom: 20px;
}

.ka-auto-a041ab {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ka-auto-9af023 {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    background: #fff;
}

.ka-auto-dcafb9 {
    margin-top: 0;
    margin-bottom: 15px;
}

.ka-auto-52c196 {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #555;
}

.ka-auto-ccd7dd {
    margin-bottom: 8px;
}

.ka-auto-a3f988 {
    background: #fdf2eb;
    color: #f26a21;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.ka-auto-b80428 {
    color: #666;
}

.ka-auto-4ae941 {
    background: rgba(242, 106, 33, .1);
}

.ka-auto-7e7b40 {
    color: var(--orange-deep);
}

.ka-auto-4e6910 {
    background: rgba(11, 35, 65, .06);
}

.ka-auto-b7e297 {
    color: var(--navy);
}

.ka-auto-137e02 {
    background: var(--green-bg);
}

.ka-auto-cfb6c1 {
    color: var(--green);
}

.ka-auto-066d1a {
    color: var(--orange-deep)
}

.ka-auto-6390e9 {
    background: '.$bg.';
    color: '.$color.';
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.ka-auto-a043ed {
    font-size: 13px;
    font-weight: 600;
}

.ka-auto-2fbf63 {
    width: 62%;
}

.ka-auto-edd8e0 {
    padding-bottom: 22px;
}

.ka-auto-66877d {
    background: var(--amber-bg);
}

.ka-auto-68af24 {
    color: var(--amber);
    font-size: 24px;
}

.ka-auto-6214d1 {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    font-size: 11px;
}

.ka-auto-79fa1b {
    background: #f0f4f8;
    color: #476282;
    padding: 3px 8px;
    border-radius: 4px;
}

.ka-auto-eca47e {
    font-size: 12px;
    line-height: 1.5;
}

.ka-auto-df32d1 {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 8px;
    border-radius: 4px;
}

.ka-auto-d36839 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ka-auto-47d6ad {
    display: none;
    font-size: 10px;
    color: #f26a21;
    margin-top: 4px;
}

.ka-auto-55905f {
    padding: 6px 12px;
    font-size: 11px;
    margin-right: auto;
}

.ka-auto-b459cf {
    color: #666;
    font-size: 13px;
}

.ka-auto-a3e15c {
    width: 56px;
    height: 56px;
    background: #eee;
    border-radius: 12px;
}

.ka-auto-ec6124 {
    background: #e6f4ea;
    color: #1e8e3e;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: bold;
}

.ka-auto-eb46d9 {
    max-width: 800px;
    margin: 0 auto;
}

.ka-auto-25c152 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ka-auto-773eba {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ka-auto-3b6525 {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.ka-auto-28fc19 {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.ka-auto-77021b {
    border: 0;
    border-top: 1px dashed #ddd;
    margin: 10px 0;
}

.ka-auto-ba28f4 {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    text-align: left;
    direction: ltr;
}

.ka-auto-5ecd13 {
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
}

.ka-auto-f2f3fe {
    background: var(--orange-soft);
}

.ka-auto-b15268 {
    background: var(--orange);
}

.ka-auto-b59271 {
    color: #fff;
}

.ka-auto-a648e6 {
    font-size: 14px;
    font-weight: normal;
}

.ka-auto-74af75 {
    font-size: 24px;
}

.ka-auto-f3c45d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    align-items: start;
}

.ka-auto-dc40a1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ka-auto-9cc5e9 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ka-auto-754fc0 {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.ka-auto-8a09c3 {
    color: #1e8e3e;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ka-auto-0f1d4d {
    font-size: 11px;
    color: #888;
}

.ka-auto-63ead2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ka-auto-df2dd9 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-left: 5px;
}

.ka-auto-fd86d8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.ka-auto-f66c29 {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.ka-auto-42a6bc {
    font-size: 12px;
    line-height: 1.2;
}

.ka-auto-52fe7f {
    border: 1px solid #fce8e6;
}

.ka-auto-ce30d8 {
    color: #d93025;
}

.ka-auto-d0f0c9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fffaf9;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px dashed #fce8e6;
}

.ka-auto-5aaa7c {
    color: #d93025;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.ka-auto-349c44 {
    font-weight: 600;
    font-size: 13px;
    color: #d93025;
}

.ka-auto-5733bc {
    font-weight: bold;
    color: #d93025;
    font-size: 12px;
    direction: ltr;
}

.ka-auto-77e739 {
    font-size: 11px;
    color: #666;
    margin-top: 15px;
}

.ka-auto-7d9eb8 {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.ka-auto-8fca8a {
    margin-top: 20px;
    border: none;
    margin-bottom: 5px;
}

.ka-auto-07c308 {
    margin-top: 10px;
}

.ka-auto-ba7829 {
    margin-top: 15px;
}

.ka-auto-e86cdd {
    grid-column: 1 / -1;
}

.ka-auto-fbe98b {
    max-width: 400px;
}

.ka-auto-5fd48b {
    border-left: 4px solid #d63638;
}

.ka-auto-567789 {
    border-bottom: none;
}

.ka-auto-c157e3 {
    justify-content: center;
}

.ka-auto-ca8a2a {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.ka-auto-6039a3 {
    margin-top: 0;
}

.ka-auto-df22e3 {
    background: #fff3e0;
    border-color: #f26a21;
    margin-bottom: 10px;
}

.ka-auto-4575aa {
    font-weight: bold;
    color: #d63638;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ka-auto-8b3bcd {
    background: #f0f6fc;
    border-color: #2271b1;
}

.ka-auto-511d93 {
    font-weight: bold;
    color: #2271b1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ka-auto-30dfd9 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.ka-auto-cc805f {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.ka-auto-ea696c {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.ka-auto-8a491d {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
    background: #0B2341;
    border-radius: 50%;
    padding: 5px;
}

.ka-auto-b3088f {
    color: #5B6B7D;
    font-size: 14px;
    margin-top: 5px;
}

.ka-auto-105060 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
    margin-top: 20px;
}

.ka-auto-2fa667 {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 18px;
    text-align: center;
    direction: ltr;
    font-family: 'Fraunces', 'Vazirmatn', sans-serif;
    letter-spacing: 2px;
}

.ka-auto-9906de {
    width: 100%;
    background: #F26A21;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    margin-top: 15px;
    transition: opacity 0.3s;
    opacity: 0.5;
}

.ka-auto-e7bbf0 {
    display: none;
    flex-direction: column;
    align-items: center;
}

.ka-auto-321c82 {
    display: flex;
    gap: 10px;
    direction: ltr;
    justify-content: center;
    margin-bottom: 20px;
}

.ka-auto-6dda00 {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-family: 'Fraunces', sans-serif;
    background: #fafaf8;
    padding: 0;
}

.ka-auto-a4a925 {
    font-size: 13px;
    color: #5B6B7D;
    margin-bottom: 15px;
}

.ka-auto-39c968 {
    display: none;
    background: none;
    color: #0B2341;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    text-decoration: underline;
}

.ka-auto-39267d {
    background: none;
    color: #F26A21;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    margin-top: 10px;
}

.ka-auto-24df02 {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.ka-auto-4a9edf {
    display: none;
    background: #e3f2fd;
    color: #1565c0;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    margin-top: 10px;
    direction: rtl;
}

.ka-auto-b30e2c {
    margin-bottom: 8px;
}

/* --- Archive Property Specific Styles --- */
html,
body {
    overflow-x: clip;
}

.layout-flex {
    display: flex;
    gap: 30px;
    flex-direction: row;
    align-items: flex-start;
}

.sidebar-filter {
    width: 300px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgb(215, 215, 214);
    padding: 18px;
    position: sticky;
    top: 76px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 10;
}

@media(max-width: 992px) {
    .layout-flex {
        flex-direction: column;
    }

    .sidebar-filter {
        width: 100%;
        position: static;
    }
}

@media(max-width: 576px) {
    .ka-grid {
        grid-template-columns: 1fr !important;
    }

    .page-title-container {
        flex-direction: column;
        flex-wrap: nowrap !important;
    }

    .page-title-container * {
        text-align: center;
    }

    .page-title-container>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ka-buy-inline-016 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ka-cta-flex.ka-buy-inline-121 {
        width: 100%;
    }

    .ka-buy-inline-018 {
        text-align: center;
    }
}