/* ============================================================
   Kafal Cabs — Home page redesign (yellow / black / white)
   Scoped under kc- prefixed classes so it coexists safely with
   the legacy indigo/violet styling still used by other pages.
   ============================================================ */

:root {
    --kc-yellow: #F7B733;
    --kc-yellow-dark: #E0A32C;
    --kc-black: #121212;
    --kc-black-soft: #1A1A1A;
    --kc-text-muted: #6B7280;
    --kc-cream: #FDF1D6;
}

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

/* ── Navbar ─────────────────────────────────────────────────── */
.kc-navbar {
    background: var(--kc-black);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.kc-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.kc-navbar .kc-logo-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--kc-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kc-navbar .kc-logo-badge i {
    width: 20px;
    height: 20px;
    color: var(--kc-black);
}

.kc-navbar .kc-logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.kc-navbar .kc-logo-text span {
    color: var(--kc-yellow);
    font-weight: 600;
}

.kc-navbar .kc-nav-link {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    font-size: 0.94rem;
    padding: 8px 4px !important;
    margin: 0 14px;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kc-navbar .kc-nav-link:hover {
    color: #fff;
}

.kc-navbar .kc-nav-link.active {
    color: var(--kc-yellow);
}

.kc-navbar .kc-nav-link.active::after {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: -4px;
    height: 2px;
    background: var(--kc-yellow);
    border-radius: 2px;
}

.kc-navbar .kc-call-btn {
    background: var(--kc-yellow);
    color: var(--kc-black);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.kc-navbar .kc-call-btn:hover {
    background: var(--kc-yellow-dark);
    color: var(--kc-black);
    transform: translateY(-1px);
}

.kc-navbar .kc-auth-link {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    margin-right: 6px;
    white-space: nowrap;
}

.kc-navbar .kc-auth-link:hover {
    color: #fff;
}

.kc-navbar .navbar-toggler {
    border: none;
    box-shadow: none;
}

/* ── Hero ───────────────────────────────────────────────────── */
.kc-hero {
    position: relative;
    background: var(--kc-black);
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 140px;
}

.kc-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.kc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.15) 100%);
}

.kc-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 40px;
}

.kc-hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
}

.kc-hero-title .kc-accent {
    color: var(--kc-yellow);
}

.kc-hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 30px;
}

.kc-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 34px;
}

.kc-hero-features .kc-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.kc-hero-features .kc-feat-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(247, 183, 51, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kc-hero-features .kc-feat-icon i {
    width: 17px;
    height: 17px;
    color: var(--kc-yellow);
}

.kc-hero-features .kc-feat-text {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
}

.kc-btn-yellow {
    background: var(--kc-yellow);
    color: var(--kc-black);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.kc-btn-yellow:hover {
    background: var(--kc-yellow-dark);
    color: var(--kc-black);
    transform: translateY(-1px);
}

.kc-btn-dark-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.kc-btn-dark-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ── Floating search widget ────────────────────────────────── */
.kc-search-wrap {
    position: relative;
    z-index: 3;
    margin-top: -70px;
    margin-bottom: 60px;
}

.kc-search-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    padding: 10px 26px 26px;
}

.kc-search-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #EEF0F3;
    margin-bottom: 22px;
}

.kc-search-tab {
    background: none;
    border: none;
    padding: 16px 4px 14px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--kc-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.kc-search-tab i {
    width: 16px;
    height: 16px;
}

.kc-search-tab.active {
    color: var(--kc-yellow-dark);
}

.kc-search-tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--kc-yellow);
}

.kc-search-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.kc-search-field {
    flex: 1 1 200px;
    min-width: 180px;
    padding: 4px 2px;
}

.kc-search-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--kc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.kc-search-field .kc-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kc-search-field .kc-input-row i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.kc-search-field input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--kc-black);
    background: transparent;
}

.kc-search-field input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.kc-search-divider {
    width: 1px;
    background: #EEF0F3;
    align-self: stretch;
    margin: 4px 0;
}

.kc-search-submit {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* ── Section headings ───────────────────────────────────────── */
.kc-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--kc-black);
    text-align: center;
    margin-bottom: 12px;
}

.kc-section-title-rule {
    width: 60px;
    height: 4px;
    background: var(--kc-yellow);
    border-radius: 2px;
    margin: 0 auto 18px;
}

.kc-section-sub {
    text-align: center;
    color: var(--kc-text-muted);
    max-width: 560px;
    margin: 0 auto 50px;
}

/* ── Why choose us ──────────────────────────────────────────── */
.kc-why-card {
    background: #fff;
    border: 1px solid #F0F1F3;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kc-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.kc-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--kc-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.kc-why-icon i {
    width: 28px;
    height: 28px;
    color: var(--kc-yellow-dark);
}

.kc-why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--kc-black);
    margin-bottom: 8px;
}

.kc-why-card p {
    font-size: 0.88rem;
    color: var(--kc-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Services ───────────────────────────────────────────────── */
.kc-service-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(17, 17, 17, 0.06);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kc-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
}

.kc-service-card .kc-service-img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.kc-service-card .kc-service-body {
    padding: 18px 18px 20px;
    position: relative;
}

.kc-service-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--kc-black);
    margin-bottom: 6px;
}

.kc-service-card p {
    font-size: 0.84rem;
    color: var(--kc-text-muted);
    margin: 0;
    padding-right: 40px;
    line-height: 1.55;
}

.kc-service-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--kc-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.kc-service-arrow i {
    width: 16px;
    height: 16px;
    color: var(--kc-black);
}

.kc-service-card:hover .kc-service-arrow {
    background: var(--kc-yellow-dark);
}

/* ── App download banner ───────────────────────────────────── */
.kc-app-banner {
    background: var(--kc-cream);
    border-radius: 24px;
    padding: 50px 40px;
    overflow: hidden;
}

.kc-app-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--kc-black);
    margin-bottom: 14px;
}

.kc-app-banner p {
    color: var(--kc-text-muted);
    font-size: 1rem;
    max-width: 420px;
    margin-bottom: 26px;
}

.kc-store-badge {
    background: var(--kc-black);
    color: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.kc-store-badge .kc-store-eyebrow {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.kc-store-badge .kc-store-name {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}

.kc-app-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kc-app-phone-wrap::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--kc-yellow);
    opacity: 0.35;
    border-radius: 50%;
    z-index: 0;
}

.kc-app-phone-wrap img {
    position: relative;
    z-index: 1;
    max-height: 340px;
    width: auto;
}

/* ── Footer ─────────────────────────────────────────────────── */
.kc-footer {
    background: var(--kc-black);
    color: rgba(255, 255, 255, 0.65);
}

.kc-footer-stats {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 44px 0;
}

.kc-footer-stat {
    text-align: center;
}

.kc-footer-stat h3 {
    color: var(--kc-yellow);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.kc-footer-stat p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

.kc-footer-main {
    padding: 50px 0 30px;
}

.kc-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.kc-footer-logo .kc-logo-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--kc-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kc-footer-logo .kc-logo-badge i {
    width: 18px;
    height: 18px;
    color: var(--kc-black);
}

.kc-footer-logo span {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.kc-footer-logo span em {
    font-style: normal;
    color: var(--kc-yellow);
}

.kc-footer p.kc-footer-desc {
    font-size: 0.86rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 18px;
}

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

.kc-footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.kc-footer-social a i {
    width: 15px;
    height: 15px;
}

.kc-footer-social a:hover {
    background: var(--kc-yellow);
    color: var(--kc-black);
}

.kc-footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.kc-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.kc-footer ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.86rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kc-footer ul a:hover {
    color: var(--kc-yellow);
}

.kc-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.86rem;
    text-decoration: none;
    margin-bottom: 4px;
}

.kc-footer-contact-item i {
    width: 15px;
    height: 15px;
    color: var(--kc-yellow);
    margin-top: 2px;
    flex-shrink: 0;
}

.kc-footer-contact-item:hover {
    color: var(--kc-yellow);
}

.kc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 0.82rem;
}

.kc-footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-left: 18px;
}

.kc-footer-bottom a:hover {
    color: var(--kc-yellow);
}

/* ── Contact page ───────────────────────────────────────────── */
.kc-page-hero {
    position: relative;
    background: var(--kc-black);
    overflow: hidden;
    padding: 60px 0 90px;
}

.kc-page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.kc-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 55%, rgba(10, 10, 10, 0.15) 100%);
}

.kc-page-hero-content {
    position: relative;
    z-index: 2;
}

.kc-page-eyebrow {
    color: var(--kc-yellow);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kc-page-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px;
}

.kc-page-hero-title .kc-accent {
    color: var(--kc-yellow);
    display: block;
}

.kc-page-hero-sub {
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin-bottom: 22px;
}

.kc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.kc-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.kc-breadcrumb a:hover {
    color: #fff;
}

.kc-breadcrumb .kc-crumb-current {
    color: var(--kc-yellow);
    font-weight: 600;
}

.kc-info-card {
    background: #fff;
    border: 1px solid #F0F1F3;
    border-radius: 16px;
    padding: 22px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);
}

.kc-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--kc-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kc-info-icon i {
    width: 22px;
    height: 22px;
    color: var(--kc-yellow-dark);
}

.kc-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kc-black);
    margin-bottom: 4px;
}

.kc-info-card p {
    font-size: 0.86rem;
    color: var(--kc-text-muted);
    margin: 0;
    line-height: 1.5;
}

.kc-info-card .kc-info-highlight {
    color: var(--kc-black);
    font-weight: 700;
}

.kc-contact-form-card {
    background: #fff;
    border: 1px solid #F0F1F3;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);
    height: 100%;
}

.kc-contact-form-card h3 {
    font-weight: 800;
    color: var(--kc-black);
    margin-bottom: 22px;
}

.kc-form-control {
    width: 100%;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.92rem;
    color: var(--kc-black);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.kc-form-control::placeholder {
    color: #9CA3AF;
}

.kc-form-control:focus {
    border-color: var(--kc-yellow);
    background: #fff;
}

textarea.kc-form-control {
    resize: vertical;
    min-height: 130px;
}

.kc-btn-yellow-block {
    width: 100%;
    background: var(--kc-yellow);
    color: var(--kc-black);
    font-weight: 700;
    padding: 15px;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.kc-btn-yellow-block:hover {
    background: var(--kc-yellow-dark);
    color: var(--kc-black);
}

.kc-map-card {
    background: #fff;
    border: 1px solid #F0F1F3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);
}

.kc-map-card .row {
    --bs-gutter-x: 0;
}

.kc-map-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kc-map-info h3 {
    font-weight: 800;
    color: var(--kc-black);
    margin-bottom: 6px;
}

.kc-map-info .kc-section-title-rule {
    margin: 0 0 14px;
}

.kc-map-info p {
    color: var(--kc-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.kc-map-iframe-wrap {
    min-height: 320px;
    height: 100%;
}

.kc-map-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

/* ── About / Services shared pieces ─────────────────────────────── */
.kc-stat-tile {
    background: var(--kc-cream);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
}

.kc-stat-tile .kc-stat-num {
    color: var(--kc-yellow-dark);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.kc-stat-tile .kc-stat-label {
    color: var(--kc-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 2px;
}

.kc-floating-badge {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
    padding: 16px 20px;
}

.kc-floating-badge .kc-badge-num {
    color: var(--kc-yellow-dark);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.kc-floating-badge .kc-badge-label {
    color: var(--kc-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.kc-live-pill {
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.1);
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--kc-black);
}

.kc-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
}

.kc-value-card {
    background: #fff;
    border: 1px solid #F0F1F3;
    border-radius: 20px;
    padding: 34px 28px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kc-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.1);
}

.kc-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--kc-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.kc-value-icon i {
    width: 28px;
    height: 28px;
    color: var(--kc-yellow-dark);
}

.kc-value-card h3,
.kc-value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kc-black);
    margin-bottom: 10px;
}

.kc-value-card p {
    font-size: 0.9rem;
    color: var(--kc-text-muted);
    margin: 0;
    line-height: 1.65;
}

.kc-mission-card {
    border-radius: 20px;
    padding: 34px;
    height: 100%;
    background: var(--kc-cream);
    border: 1px solid #F3E4B8;
}

.kc-mission-card.kc-mission-alt {
    background: #F4F4F6;
    border-color: #E7E7EB;
}

.kc-mission-card i {
    width: 32px;
    height: 32px;
    color: var(--kc-yellow-dark);
    margin-bottom: 16px;
    display: block;
}

.kc-mission-card h3 {
    font-weight: 800;
    color: var(--kc-black);
    margin-bottom: 12px;
}

.kc-mission-card p {
    color: var(--kc-text-muted);
    margin: 0;
    line-height: 1.7;
}

.kc-cta-dark {
    background: var(--kc-black);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kc-cta-dark::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--kc-yellow);
    opacity: 0.12;
    border-radius: 50%;
    top: -140px;
    right: -80px;
}

.kc-cta-dark h2 {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 14px;
    position: relative;
}

.kc-cta-dark p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 30px;
    position: relative;
}

.kc-cta-dark .d-flex {
    position: relative;
}

@media (max-width: 767px) {
    .kc-cta-dark {
        padding: 40px 24px;
    }
}

/* ── Driver Partner registration page ──────────────────────────── */
.kc-driver-split {
    display: flex;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.1);
}

.kc-driver-left {
    position: relative;
    width: 34%;
    min-width: 300px;
    background: var(--kc-black);
    overflow: hidden;
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.kc-driver-left-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.kc-driver-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.45) 40%, rgba(10, 10, 10, 0.92) 100%);
}

.kc-driver-left > * {
    position: relative;
    z-index: 2;
}

.kc-driver-left h1 {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
}

.kc-driver-left h1 span {
    color: var(--kc-yellow);
    display: block;
}

.kc-driver-left p.kc-driver-lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    max-width: 260px;
}

.kc-driver-why h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.kc-driver-why-list {
    display: grid;
    gap: 18px;
}

.kc-driver-help {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: auto;
}

.kc-driver-help h4 {
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.kc-driver-help p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
    margin-bottom: 14px;
}

.kc-driver-help a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kc-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 8px;
}

.kc-driver-help a i {
    width: 15px;
    height: 15px;
}

.kc-driver-right {
    flex: 1;
    background: #fff;
    padding: 44px 46px;
}

.kc-driver-right h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--kc-black);
    margin-bottom: 4px;
}

.kc-driver-right > p {
    color: var(--kc-text-muted);
    font-size: 0.92rem;
    margin-bottom: 30px;
}

.kc-form-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--kc-black);
    font-size: 1rem;
    margin: 26px 0 16px;
}

.kc-form-section-label:first-of-type {
    margin-top: 0;
}

.kc-form-section-label i {
    width: 19px;
    height: 19px;
    color: var(--kc-yellow-dark);
}

.kc-form-group {
    margin-bottom: 16px;
}

.kc-form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--kc-black);
    margin-bottom: 7px;
}

.kc-form-group label .kc-req {
    color: #EF4444;
}

.kc-phone-group {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.kc-phone-code {
    flex: 0 0 68px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 0 10px;
    font-size: 0.92rem;
    color: var(--kc-black);
}

.kc-phone-group .kc-form-control {
    flex: 1;
}

.kc-radio-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.kc-radio-row label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.kc-radio-row input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--kc-yellow);
}

.kc-form-divider {
    border: none;
    border-top: 1px solid #F0F1F3;
    margin: 24px 0;
}

.kc-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.kc-form-check input {
    margin-top: 3px;
    width: 17px;
    height: 17px;
    accent-color: var(--kc-yellow);
    flex-shrink: 0;
}

.kc-form-check label {
    font-size: 0.85rem;
    color: var(--kc-text-muted);
    line-height: 1.55;
}

.kc-form-check label a {
    color: var(--kc-yellow-dark);
    font-weight: 700;
    text-decoration: none;
}

.kc-driver-signin {
    text-align: center;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--kc-text-muted);
}

.kc-driver-signin a {
    color: var(--kc-yellow-dark);
    font-weight: 700;
    text-decoration: none;
}

.kc-perk-strip {
    background: var(--kc-cream);
}

.kc-perk-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kc-perk-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(247, 183, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kc-perk-icon i {
    width: 24px;
    height: 24px;
    color: var(--kc-yellow-dark);
}

.kc-perk-item h4 {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--kc-black);
    margin-bottom: 2px;
}

.kc-perk-item p {
    font-size: 0.82rem;
    color: var(--kc-text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .kc-driver-split {
        flex-direction: column;
        border-radius: 20px;
    }

    .kc-driver-left,
    .kc-driver-right {
        width: 100%;
    }

    .kc-driver-right {
        padding: 30px 22px;
    }
}

/* ── Auth (login/register) split page ──────────────────────────
   Hides the shared kc-navbar/kc-footer chrome for this page only —
   scoped to .kc-auth-page so header.php/footer.php stay untouched. */
body:has(.kc-auth-page) .kc-navbar {
    display: none;
}

body:has(.kc-auth-page) .kc-footer,
body:has(.kc-auth-page) .back-to-top,
body:has(.kc-auth-page) .whatsapp-float {
    display: none;
}

.kc-auth-page {
    position: relative;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    background: #fff;
}

.kc-auth-left {
    position: relative;
    width: 44%;
    min-height: 100vh;
    background: var(--kc-black);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.kc-auth-left-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.kc-auth-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.35) 45%, rgba(10, 10, 10, 0.85) 100%);
}

.kc-auth-left-content {
    position: relative;
    z-index: 2;
    padding: 44px 44px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kc-auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 40px;
}

.kc-auth-title {
    color: var(--kc-yellow);
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.kc-auth-title-sub {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.kc-auth-rule {
    width: 48px;
    height: 3px;
    background: var(--kc-yellow);
    border-radius: 2px;
    margin-bottom: 18px;
}

.kc-auth-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    max-width: 320px;
    margin-bottom: auto;
}

.kc-auth-features {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.kc-auth-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.kc-auth-feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(247, 183, 51, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--kc-yellow);
    font-size: 0.7rem;
    font-weight: 800;
}

.kc-auth-feat-icon i {
    width: 20px;
    height: 20px;
}

.kc-auth-feat h4 {
    color: #fff;
    font-size: 0.94rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.kc-auth-feat p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

.kc-auth-bottom-bar {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    padding: 16px;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kc-auth-bottom-bar strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Decorative S-curve seam between the two panels */
.kc-auth-seam-top,
.kc-auth-seam-bottom {
    position: absolute;
    left: 44%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    z-index: 1;
    transform: translateX(-50%);
    pointer-events: none;
}

.kc-auth-seam-top {
    top: -170px;
    background: var(--kc-black);
}

.kc-auth-seam-bottom {
    bottom: -170px;
    background: #fff;
}

.kc-auth-right {
    position: relative;
    z-index: 2;
    width: 56%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.kc-auth-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    padding: 22px 48px;
}

.kc-auth-support {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
}

.kc-auth-support i {
    width: 20px;
    height: 20px;
    color: #6B7280;
}

.kc-auth-support .kc-auth-support-label {
    font-size: 0.72rem;
    color: #9CA3AF;
    line-height: 1.2;
}

.kc-auth-support .kc-auth-support-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--kc-black);
}

.kc-auth-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
}

.kc-auth-lang i {
    width: 18px;
    height: 18px;
}

.kc-auth-form-outer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px 60px;
}

.kc-auth-form-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border: 1px solid #F0F1F3;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
    padding: 40px;
}

.kc-auth-form-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--kc-black);
    margin-bottom: 6px;
}

.kc-auth-form-card > p {
    color: var(--kc-text-muted);
    font-size: 0.92rem;
    margin-bottom: 26px;
}

.kc-auth-form-card label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--kc-black);
    margin-bottom: 8px;
}

.kc-auth-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 13px 16px;
    margin-bottom: 18px;
    transition: border-color 0.2s ease;
}

.kc-auth-input-group:focus-within {
    border-color: var(--kc-yellow);
}

.kc-auth-input-group i {
    width: 18px;
    height: 18px;
    color: #9CA3AF;
    flex-shrink: 0;
}

.kc-auth-input-group input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.94rem;
    color: var(--kc-black);
    background: transparent;
}

.kc-auth-input-group input::placeholder {
    color: #9CA3AF;
}

.kc-auth-input-group button {
    background: none;
    border: none;
    padding: 0;
    color: #9CA3AF;
    display: flex;
}

.kc-auth-forgot-row {
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
    margin-bottom: 22px;
}

.kc-auth-forgot-row a {
    color: var(--kc-yellow-dark);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.kc-auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #9CA3AF;
    font-size: 0.82rem;
    margin: 22px 0;
}

.kc-auth-divider::before,
.kc-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}

.kc-auth-social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.kc-auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--kc-black);
    cursor: pointer;
    transition: background 0.2s ease;
}

.kc-auth-social-btn:hover {
    background: #F9FAFB;
}

.kc-auth-social-btn img,
.kc-auth-social-btn svg {
    width: 17px;
    height: 17px;
}

.kc-auth-foot-link {
    text-align: center;
    font-size: 0.88rem;
    color: var(--kc-text-muted);
}

.kc-auth-foot-link a {
    color: var(--kc-yellow-dark);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .kc-auth-page {
        flex-direction: column;
    }

    .kc-auth-left,
    .kc-auth-right {
        width: 100%;
    }

    .kc-auth-left {
        min-height: 420px;
    }

    .kc-auth-right {
        min-height: auto;
    }

    .kc-auth-seam-top,
    .kc-auth-seam-bottom {
        display: none;
    }

    .kc-auth-topbar {
        padding: 16px 20px;
    }

    .kc-auth-form-outer {
        padding: 20px;
    }

    .kc-auth-form-card {
        padding: 26px;
    }
}

@media (max-width: 991px) {
    .kc-hero-title {
        font-size: 2.4rem;
    }

    .kc-search-wrap {
        margin-top: 24px;
    }

    .kc-search-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .kc-app-banner {
        text-align: center;
    }

    .kc-app-banner p {
        margin-left: auto;
        margin-right: auto;
    }
}
