@import url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css");
/* 
 * 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: #f8f9fa;
    --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);
}

* {
    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: 15px 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 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 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-nav {
    padding: 20px;
    flex: 1;
}

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

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

.ka-mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

.ka-mobile-nav a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.7;
    transition: 0.3s;
}

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

.ka-mobile-nav a:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f26a21' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
    opacity: 1;
}

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

@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: 10px 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. Footer
========================================= */
.ka-site-footer {
    background: #1a1816;
    color: #fff;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    direction: rtl;
    padding-top: 60px;
}

.ka-footer-top-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

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

.ka-footer-top-cta-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.ka-footer-top-cta-desc {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.ka-footer-btn-expert {
    background: var(--ka-secondary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
}

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

.ka-footer-divider {
    height: 1px;
    background: #2a2826;
    margin-bottom: 40px;
}

.ka-footer-about-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.ka-footer-about-info {
    flex: 1;
    max-width: 600px;
    text-align: right;
}

.ka-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.ka-footer-about-text {
    color: #aaa;
    font-size: 14px;
    line-height: 2.2;
    margin: 0;
}

.ka-footer-holding-box {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    background: #22201e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    text-align: right;
}

.ka-footer-holding-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 15px;
}

.ka-footer-holding-title h3 {
    margin: 0;
    font-size: 16px;
}

.ka-footer-holding-title h3 span {
    font-weight: 900;
    font-size: 20px;
}

.ka-footer-holding-label {
    font-size: 13px;
    color: #aaa;
}

.ka-footer-holding-desc {
    color: #999;
    font-size: 13px;
    line-height: 2;
    margin: 0;
}

.ka-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: right;
}

.ka-footer-col h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.ka-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 2.5;
}

.ka-footer-col a {
    color: #aaa;
    transition: 0.3s;
    text-decoration: none;
}

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

.ka-footer-contact-item {
    color: #aaa;
}

.ka-footer-contact-address {
    color: #aaa;
    line-height: 1.8;
    margin-top: 10px;
}

.ka-footer-contact-hours {
    color: #888;
    font-size: 12px;
    margin-top: 10px;
}

.ka-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

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

.ka-footer-social-label {
    font-weight: bold;
    font-size: 14px;
}

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

.ka-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2826;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
}

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

.ka-footer-enamad {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #333;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

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

.ka-footer-enamad-info {
    text-align: right;
}

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

.ka-footer-enamad-desc {
    font-size: 11px;
    color: #aaa;
}

.ka-footer-copyright-area {
    background: #151311;
    padding: 20px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #222;
}

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

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

.ka-footer-copyright-links a {
    color: #777;
    text-decoration: none;
    transition: 0.3s;
}

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

.ka-footer-developer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

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

/* 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: 1200px;
    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: 1200px;
    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;
    }
}