/*
 * KaziKings — Leading Sales Software for the Safari Industry
 * Centralised stylesheet for all public-facing (marketplace) views.
 * Import order: tokens → layout → components → pages → utilities
 */

/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
    --kk-dark: #2D3526;
    --kk-green: #687B64;
    --kk-light: #8A9E88;
    --kk-orange: #DE5A26;
    --kk-amber: #C84D20;
    --kk-gold: #D4A017;
    --kk-sand: #F5F0E8;
    --kk-bg: #FAFAF8;
    --border: 1px solid #e5e7eb;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow: 0 4px 18px rgba(0, 0, 0, .09);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
}

/* ══════════════════════════════════════════════
   GLOBAL LAYOUT
══════════════════════════════════════════════ */
.container {
    max-width: 1600px !important;
}

body {
    font-family: 'Work Sans', sans-serif;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
.kk-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: var(--kk-dark);
}

h1, h2, h3, h4, h5, h6,
.font-heading,
.kk-section-title,
.kk-stat-num,
.kk-tour-card__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.kk-section-title {
    font-weight: 700;
    color: var(--kk-dark);
    font-size: 2rem;
    line-height: 1.2;
}

.kk-section-sub {
    color: #6b7280;
    font-size: .97rem;
    max-width: 560px;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-kk {
    background: var(--kk-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background .2s, transform .15s;
}

.btn-kk:hover {
    background: var(--kk-amber);
    color: #fff;
    transform: translateY(-1px);
}

.btn-kk-gold {
    background: var(--kk-amber);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-kk-gold:hover {
    background: #B45309;
    color: #fff;
}

.btn-kk-outline {
    border: 2px solid var(--kk-green);
    color: var(--kk-green);
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    transition: all .2s;
}

.btn-kk-outline:hover {
    background: var(--kk-green);
    color: #fff;
}

/* ══════════════════════════════════════════════
   FILTER CONTROLS (shared across pages)
══════════════════════════════════════════════ */
.filter-bar {
    background: #fff;
    border-bottom: var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    border: var(--border);
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
    cursor: pointer;
}

.filter-pill:hover {
    border-color: var(--kk-orange);
    color: var(--kk-orange);
    text-decoration: none;
}

.filter-pill.active {
    background: var(--kk-orange);
    color: #fff;
    border-color: var(--kk-orange);
    text-decoration: none;
}

.filter-select {
    border: var(--border);
    border-radius: 8px;
    height: 38px;
    padding: 0 28px 0 12px;
    font-size: .84rem;
    font-weight: 500;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    cursor: pointer;
    color: #374151;
}

.filter-select:focus {
    outline: none;
    border-color: var(--kk-orange);
    box-shadow: 0 0 0 3px rgba(222, 90, 38, .1);
}

.search-wrap {
    position: relative;
}

.search-wrap>i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: .8rem;
    pointer-events: none;
}

.search-input {
    border: var(--border);
    border-radius: 8px;
    padding: 7px 12px 7px 34px;
    font-size: .85rem;
    height: 38px;
    background: #fff;
}

.search-input:focus {
    outline: none;
    border-color: var(--kk-orange);
    box-shadow: 0 0 0 3px rgba(222, 90, 38, .1);
}

/* ══════════════════════════════════════════════
   TOUR CARD
══════════════════════════════════════════════ */
.kk-tour-card {
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    transition: transform .22s, box-shadow .22s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kk-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.kk-tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s;
}

.kk-tour-card:hover .kk-tour-card__img {
    transform: scale(1.05);
}

.kk-tour-card__img-wrap {
    overflow: hidden;
    position: relative;
}

.kk-tour-card__body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kk-tour-card__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kk-dark);
}

/* ══════════════════════════════════════════════
   DESTINATION CARD
══════════════════════════════════════════════ */
.kk-dest-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    position: relative;
    height: 260px;
    width: 100%;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}

.kk-dest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.kk-dest-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.kk-dest-card:hover .kk-dest-card__img {
    transform: scale(1.07);
}

.kk-dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .08) 55%, transparent 100%);
}

.kk-dest-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 18px 16px;
    color: #fff;
}

.kk-dest-card__name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.kk-dest-card__type {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    color: var(--kk-dark);
}

.kk-dest-card__count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(27, 67, 50, .88);
    color: #fff;
}

.kk-dest-card--compact {
    height: 180px;
}

.kk-dest-card__country {
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
}

/* ══════════════════════════════════════════════
   COMPANY CARD
══════════════════════════════════════════════ */
.kk-company-card {
    border: var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.kk-company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--kk-green);
    text-decoration: none;
    color: inherit;
}

.kk-company-card__cover {
    height: 110px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.kk-company-card__cover-placeholder {
    height: 110px;
    background: linear-gradient(135deg, var(--kk-dark), var(--kk-green));
}

.kk-company-card__logo-wrap {
    position: absolute;
    bottom: -20px;
    left: 16px;
}

.kk-company-card__logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    display: block;
}

.kk-company-card__logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--kk-dark), var(--kk-green));
}

.kk-company-card__body {
    padding: 2.2rem 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kk-company-card__name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--kk-dark);
    line-height: 1.3;
}

.kk-company-card__type {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: #ecfdf5;
    color: #065f46;
}

.kk-company-card__footer {
    padding: 12px 16px;
    border-top: var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
}

/* ══════════════════════════════════════════════
   STAR RATINGS
══════════════════════════════════════════════ */
.kk-stars {
    color: #f59e0b;
    font-size: .75rem;
}

.kk-stars .empty {
    color: #d1d5db;
}

/* ══════════════════════════════════════════════
   WISHLIST BUTTON
══════════════════════════════════════════════ */
.kk-wishlist-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.kk-wishlist-btn:hover {
    transform: scale(1.15);
}

/* ══════════════════════════════════════════════
   BADGE VARIANTS
══════════════════════════════════════════════ */
.badge-featured {
    background: crimson;
    color: #fff;
}

.badge-sponsored {
    background: #D4A373;
    color: #fff;
}

.badge-verified {
    background: rgba(255, 255, 255, .9);
    color: var(--kk-green);
}

/* ══════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════ */
.section-sand {
    background: var(--kk-sand);
}

.section-white {
    background: #fff;
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.kk-stats-bar {
    background: #fff;
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
}

.kk-stat-item {
    padding: 18px 24px;
    border-right: var(--border);
    text-align: center;
    flex: 1;
}

.kk-stat-item:last-child {
    border-right: none;
}

.kk-stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--kk-orange);
    line-height: 1;
}

.kk-stat-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    font-weight: 600;
    margin-top: 5px;
}

/* ══════════════════════════════════════════════
   COUNTRY CARD
══════════════════════════════════════════════ */
.kk-country-card {
    border: var(--border);
    border-radius: var(--radius);
    padding: 24px 16px 18px;
    text-align: center;
    background: #fff;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    text-decoration: none;
    color: var(--kk-dark);
    display: block;
}

.kk-country-card:hover {
    border-color: var(--kk-orange);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    text-decoration: none;
    color: var(--kk-dark);
}

.kk-country-flag {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 10px;
}

/* ══════════════════════════════════════════════
   WHY-CHOOSE CARD
══════════════════════════════════════════════ */
.kk-why-card {
    border: var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    background: #fff;
    height: 100%;
    transition: box-shadow .2s;
}

.kk-why-card:hover {
    box-shadow: var(--shadow);
}

.kk-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(222, 90, 38, .1);
    color: var(--kk-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════════
   REVIEW CARD
══════════════════════════════════════════════ */
.kk-review-card {
    border: var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 24px;
    height: 100%;
    position: relative;
}

.kk-review-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    color: var(--kk-gold);
    line-height: .8;
    position: absolute;
    top: 14px;
    left: 18px;
    opacity: .28;
}

/* ══════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════ */
.kk-faq-item {
    border: var(--border);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    margin-bottom: 8px;
}

.kk-faq-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 24px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--kk-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: background .15s;
}

.kk-faq-toggle:hover {
    background: #f9fafb;
}

.kk-faq-toggle[aria-expanded="true"] {
    color: var(--kk-orange);
}

.kk-faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--kk-orange);
}

.faq-icon {
    transition: transform .25s;
    flex-shrink: 0;
    font-size: .8rem;
    color: #9ca3af;
}

.kk-faq-body {
    padding: 0 24px 20px;
    color: #4b5563;
    font-size: .9rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CATEGORY CHIP
══════════════════════════════════════════════ */
.kk-cat-chip {
    border: var(--border);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    background: #fff;
    transition: all .2s;
    text-decoration: none;
    color: var(--kk-dark);
    display: block;
}

.kk-cat-chip:hover {
    border-color: var(--kk-orange);
    background: rgba(222, 90, 38, .06);
    color: var(--kk-orange);
    text-decoration: none;
    transform: translateY(-2px);
}

.kk-cat-chip i {
    font-size: 1.5rem;
    color: var(--kk-orange);
    display: block;
    margin-bottom: 8px;
}

/* ══════════════════════════════════════════════
   SOCIAL LINK BUTTONS
══════════════════════════════════════════════ */
.kk-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: var(--border);
    background: #fff;
    color: #374151;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
}

.kk-social-link:hover {
    border-color: var(--kk-orange);
    color: var(--kk-orange);
    text-decoration: none;
    background: rgba(222, 90, 38, .06);
}

.kk-social-link.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
    background: #eff6ff;
}

.kk-social-link.instagram:hover {
    border-color: #e1306c;
    color: #e1306c;
    background: #fff0f3;
}

.kk-social-link.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
    background: #eff6ff;
}

.kk-social-link.linkedin:hover {
    border-color: #0a66c2;
    color: #0a66c2;
    background: #eff6ff;
}

.kk-social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
    background: #fff0f0;
}

.kk-social-link.tiktok:hover {
    border-color: #000;
    color: #000;
    background: #f9f9f9;
}

.kk-social-link.tripadvisor:hover {
    border-color: #34e0a1;
    color: #00af87;
    background: #f0fdf9;
}

.kk-social-link.safaribookings:hover {
    border-color: #e05e14;
    color: #e05e14;
    background: #fff4ee;
}

/* ══════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════ */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-kk-green {
    color: var(--kk-green);
}

.text-kk-dark {
    color: var(--kk-dark);
}

.text-kk-gold {
    color: var(--kk-gold);
}

.bg-kk-sand {
    background: var(--kk-sand);
}

.bg-kk-dark {
    background: var(--kk-dark);
}

.border-kk {
    border: var(--border);
}

.rounded-kk {
    border-radius: var(--radius);
}

/* ══════════════════════════════════════════════
   OPERATOR PROFILE PAGE
══════════════════════════════════════════════ */
.op-profile-cover {
    height: 280px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.op-profile-logo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    border: 4px solid #fff;
    object-fit: cover;
    box-shadow: var(--shadow);
    position: absolute;
    bottom: -32px;
    left: 24px;
}

.op-profile-logo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    border: 4px solid #fff;
    box-shadow: var(--shadow);
    position: absolute;
    bottom: -32px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--kk-dark), var(--kk-green));
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.kk-navbar {
    background: var(--kk-dark) !important;
}

.kk-nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-weight: 500;
    font-size: .88rem;
    transition: color .15s;
}

.kk-nav-link:hover,
.kk-nav-link.active {
    color: var(--kk-orange) !important;
}

.kk-navbar-brand-img {
    height: 56px;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.kk-footer {
    background: var(--kk-dark);
}

.kk-footer a:hover {
    color: #fff !important;
    text-decoration: none;
}

.kk-footer-text {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    line-height: 1.7;
}

.kk-footer-meta {
    color: rgba(255, 255, 255, .5);
    font-size: .82rem;
}

.kk-footer hr,
.kk-footer-hr {
    border-color: rgba(255, 255, 255, .1);
    margin: 0;
}

.kk-footer-logo {
    width: 200px;
}

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.kk-page-hero {
    background: linear-gradient(135deg, #1E1A14 0%, #2D3526 55%, #3D4535 100%);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.kk-page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(222, 90, 38, .22), transparent 70%);
    pointer-events: none;
}

.kk-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .08;
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   HERO STAT BOX
══════════════════════════════════════════════ */
.kk-hero-stat {
    text-align: center;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    min-width: 90px;
}

.kk-hero-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--kk-orange);
}

.kk-hero-stat-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 2px;
}

/* ══════════════════════════════════════════════
   HERO SEARCH BAR
══════════════════════════════════════════════ */
.kk-hero-search {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    max-width: 520px;
}

.kk-hero-search .form-control {
    border: none;
    border-radius: 0;
    font-size: .92rem;
    height: 50px;
    padding-left: 2.5rem;
    box-shadow: none !important;
}

.kk-hero-search-icon {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .85rem;
    color: #9ca3af;
    pointer-events: none;
}

.kk-hero-search-btn {
    background: var(--kk-orange);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: .92rem;
    font-weight: 700;
    padding: 0 1.25rem;
    white-space: nowrap;
    transition: background .2s;
}

.kk-hero-search-btn:hover {
    background: var(--kk-amber);
    color: #fff;
}

/* ══════════════════════════════════════════════
   CAT CHIP (tours index)
══════════════════════════════════════════════ */
.cat-chip {
    display: inline-flex;
    align-items: center;
    padding: .4rem .9rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    border: 1.5px solid transparent;
    background: rgba(0, 0, 0, .04);
    color: #374151;
    white-space: nowrap;
}

.cat-chip:hover,
.cat-chip.active {
    background: var(--kk-orange) !important;
    color: #fff !important;
    border-color: var(--kk-orange);
    text-decoration: none;
}

/* ══════════════════════════════════════════════
   FILTER CARD (sidebar)
══════════════════════════════════════════════ */
.kk-filter-card {
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: var(--border);
    background: #fff;
}

/* ══════════════════════════════════════════════
   LIST TOUR CARD
══════════════════════════════════════════════ */
.kk-list-card {
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: #fff;
    border: var(--border);
    transition: box-shadow .2s, transform .2s;
}

.kk-list-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.kk-list-card-img-wrap {
    min-height: 180px;
    overflow: hidden;
    position: relative;
}

.kk-list-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.kk-list-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--kk-dark), var(--kk-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════════
   OPERATOR CARDS (directory)
══════════════════════════════════════════════ */
.op-card {
    border: var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    height: 100%;
}

.op-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--kk-orange);
}

.op-cover {
    height: 110px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.op-cover-placeholder {
    height: 110px;
    background: linear-gradient(135deg, var(--kk-dark), var(--kk-green));
}

.op-logo-wrap {
    position: absolute;
    bottom: -20px;
    left: 18px;
}

.op-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.op-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--kk-dark), var(--kk-green));
}

.op-star {
    color: #f59e0b;
    font-size: .72rem;
}

.op-type-badge {
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(104, 123, 100, .12);
    color: var(--kk-dark);
}

.op-tours-badge {
    background: rgba(104, 123, 100, .12);
    color: var(--kk-dark);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}

/* ══════════════════════════════════════════════
   OPERATOR SHOW PAGE
══════════════════════════════════════════════ */
.review-card {
    border-radius: 12px;
    border: var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}

.review-card:hover {
    box-shadow: var(--shadow);
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .4rem .85rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}

.contact-btn {
    border-radius: 9px;
    font-size: .88rem;
    font-weight: 600;
    padding: .5rem 1.1rem;
}

.op-hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

.op-hero-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .15);
    font-size: 2rem;
    font-weight: 800;
    border: 3px solid rgba(255, 255, 255, .2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════ */
.kk-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--kk-sand);
}

.kk-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(222, 90, 38, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--kk-orange);
    margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════
   GAP UTILITIES (Bootstrap 4 lacks gap)
══════════════════════════════════════════════ */
.kk-gap-1 {
    gap: .25rem;
}

.kk-gap-2 {
    gap: .5rem;
}

.kk-gap-3 {
    gap: .75rem;
}

.kk-gap-4 {
    gap: 1rem;
}

.kk-gap-5 {
    gap: 1.5rem;
}

/* ══════════════════════════════════════════════
   TEXT + COLOR UTILITIES
══════════════════════════════════════════════ */
.text-kk-orange {
    color: var(--kk-orange) !important;
}

.text-white-65 {
    color: rgba(255, 255, 255, .65) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, .8) !important;
}

.text-kk {
    color: var(--kk-orange) !important;
}

.bg-kk-orange {
    background: var(--kk-orange) !important;
}

.border-kk-orange {
    border-color: var(--kk-orange) !important;
}

/* ══════════════════════════════════════════════
   SECTION PILL LABEL
══════════════════════════════════════════════ */
.kk-section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(222, 90, 38, .1);
    color: var(--kk-orange);
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

/* ══════════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════════ */
.kk-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(150deg, rgba(22, 18, 14, .97) 0%, rgba(45, 33, 20, .93) 38%, rgba(104, 123, 100, .42) 68%, rgba(18, 14, 10, .97) 100%),
        url('/images/auth/kidepo.jpg') center/cover no-repeat;
}

.kk-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #FAFAF8);
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   HOME SEARCH BAR
══════════════════════════════════════════════ */
.kk-search-bar {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .22);
    padding: 22px 28px;
}

.kk-search-bar label {
    font-size: .75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
    font-family: 'Work Sans', sans-serif;
}

.kk-search-bar .form-control {
    height: 44px;
    font-size: .9rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: none !important;
}

.kk-search-bar .form-control:focus {
    border-color: var(--kk-orange);
    box-shadow: 0 0 0 3px rgba(222, 90, 38, .12) !important;
}

.kk-search-btn {
    height: 44px;
    background: var(--kk-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    width: 100%;
    transition: background .2s;
}

.kk-search-btn:hover {
    background: var(--kk-amber);
}

/* ══════════════════════════════════════════════
   HOME OPERATOR TABS
══════════════════════════════════════════════ */
.kk-tabs .nav-link {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    color: #6b7280;
    font-weight: 600;
    font-size: .84rem;
    padding: 8px 18px;
    background: #fff;
    margin-right: 6px;
    transition: all .2s;
    white-space: nowrap;
}

.kk-tabs .nav-link.active,
.kk-tabs .nav-link:hover {
    background: var(--kk-orange) !important;
    color: #fff !important;
    border-color: var(--kk-orange) !important;
}

/* ══════════════════════════════════════════════
   HOME TOUR SLIDER
══════════════════════════════════════════════ */
.tours-swiper {
    padding-bottom: 44px !important;
}

.tours-swiper .swiper-slide {
    height: auto;
}

.tours-swiper .kk-tour-card {
    height: 100%;
}

.tours-swiper .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
    width: 8px;
    height: 8px;
}

.tours-swiper .swiper-pagination-bullet-active {
    background: var(--kk-orange);
    width: 22px;
    border-radius: 4px;
}

.swiper-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background .18s, border-color .18s, color .18s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.swiper-nav-btn:hover {
    background: var(--kk-orange);
    border-color: var(--kk-orange);
    color: #fff;
}

.swiper-nav-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* ══════════════════════════════════════════════
   HOME SECTION HELPERS
══════════════════════════════════════════════ */
.kk-sec {
    padding: 40px 0;
}

.kk-sec-sand {
    background: var(--kk-sand);
}

.kk-sec-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.kk-sec-hd .kk-section-title {
    margin-bottom: 4px;
}

.kk-sec-hd p {
    margin: 0;
    color: #6b7280;
    font-size: .9rem;
}

.kk-sec-link {
    font-size: .84rem;
    font-weight: 700;
    color: var(--kk-orange);
    text-decoration: none;
    white-space: nowrap;
}

.kk-sec-link:hover {
    color: var(--kk-amber);
    text-decoration: none;
}

/* ══════════════════════════════════════════════
   OPERATOR ROW CARD (home page)
══════════════════════════════════════════════ */
.kk-op-row {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .18s, box-shadow .18s;
}

.kk-op-row:hover {
    border-color: var(--kk-orange);
    box-shadow: 0 2px 12px rgba(222, 90, 38, .12);
    text-decoration: none;
    color: inherit;
}

.kk-op-row__logo {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: var(--kk-sand);
    font-weight: 800;
    font-size: 1rem;
    color: var(--kk-green);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kk-op-row__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════════════════════
   FEATURES PAGE
══════════════════════════════════════════════ */
.feat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(222, 90, 38, .1);
    color: var(--kk-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    transition: background .2s, color .2s;
}

.feat-card {
    border: var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--kk-orange);
}

.feat-card:hover .feat-icon-wrap {
    background: var(--kk-orange);
    color: #fff;
}

.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: rgba(104, 123, 100, .12);
    color: var(--kk-dark);
    margin-bottom: .75rem;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-hours-card {
    background: var(--kk-sand);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.contact-operator-cta {
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    border-radius: 14px;
    padding: 1.5rem;
}

.contact-form-card {
    border-radius: var(--radius-lg);
    border: var(--border);
    background: #fff;
    padding: 2rem 2.5rem;
}

.contact-form-input {
    border-radius: 10px;
    border-color: #e5e7eb;
}

.contact-form-label {
    font-size: .85rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: .35rem;
    font-family: 'Work Sans', sans-serif;
}

.contact-input-icon {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .85rem;
    color: #9ca3af;
    pointer-events: none;
}

.kk-alert-success {
    background: rgba(5, 150, 105, .08);
    color: #065f46;
    border-radius: 12px;
}

.kk-contact-submit {
    border-radius: 12px;
    font-size: 1rem;
}

/* ══════════════════════════════════════════════
   TOUR LIST PAGE UTILITIES
══════════════════════════════════════════════ */
.kk-dest-label {
    font-size: .75rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.kk-tour-meta {
    font-size: .8rem;
    gap: 14px;
}

/* ══════════════════════════════════════════════
   OPERATORS PAGE UTILITIES
══════════════════════════════════════════════ */
.op-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(212, 160, 23, .9);
    color: #fff;
    font-size: .67rem;
    padding: 4px 9px;
}

.op-card-body {
    padding: 2.2rem 18px 18px;
}

.op-card-name {
    font-size: .95rem;
    line-height: 1.3;
}

.op-card-location {
    font-size: .78rem;
}

.op-rating-num {
    font-size: .88rem;
}

.op-review-count {
    font-size: .72rem;
}

.op-no-reviews {
    font-size: .75rem;
}

.op-description {
    font-size: .8rem;
    line-height: 1.55;
}

.op-spacer {
    height: 1rem;
}

.op-cta-btn {
    font-size: .85rem;
    position: relative;
    z-index: 1;
    padding: 9px;
}

/* ══════════════════════════════════════════════
   CTA DARK SECTION (home)
══════════════════════════════════════════════ */
.kk-cta-dark {
    background: linear-gradient(135deg, #1E1A14 0%, #2D3526 50%, #3D4535 100%);
}

.kk-cta-dots {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.kk-cta-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(222, 90, 38, .25), transparent 70%);
    pointer-events: none;
}

.kk-cta-box {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    max-width: 300px;
}

.kk-cta-secondary-btn {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
}

.kk-cta-secondary-btn:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
}

/* ══════════════════════════════════════════════
   FINAL CTA SECTION (home)
══════════════════════════════════════════════ */
.kk-final-cta {
    background: linear-gradient(160deg, #FEF6F1 0%, var(--kk-sand) 55%, #F0ECE8 100%);
}

.kk-final-cta-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #687B64, #DE5A26, #687B64);
}

/* ══════════════════════════════════════════════
   REVIEWER AVATAR (review cards)
══════════════════════════════════════════════ */
.kk-reviewer-avatar {
    width: 36px;
    height: 36px;
    background: var(--kk-green);
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   STATS SECTION (home — negative margin pull)
══════════════════════════════════════════════ */
.kk-stats-section {
    margin-top: -44px;
    position: relative;
    z-index: 3;
}

/* ══════════════════════════════════════════════
   MIN-WIDTH FLEX UTILITY
══════════════════════════════════════════════ */
.min-width-0 {
    min-width: 0;
}
