/* =========================
   GLOBAL THEME
   ========================= */
   :root {
    --kc-primary: #5c6cff;          /* violet-blue */
    --kc-primary-dark: #3b47c5;
    --kc-secondary: #ffb347;        /* soft orange */
    --kc-bg: #0c1020;               /* dark hero background */
    --kc-card-bg: #ffffff;
    --kc-soft-primary: rgba(92,108,255,0.12);
    --kc-soft-success: rgba(34,197,94,0.12);
    --kc-text-muted: #6c757d;
}

body {
    background: #f3f4f6;
    color: #111827;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================
   NAVBAR – GRADIENT BLUE
   ========================= */
.kc-navbar {
    background: linear-gradient(135deg, #4a64ff, #3f51b5, #273093);
    padding: .7rem 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.kc-navbar .navbar-brand span {
    color: #fff !important;
}

/* logo circle */
.kc-logo-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* nav links */
.kc-navbar .navbar-nav .nav-link {
    color: #e8eaff;
    font-weight: 500;
    padding: .5rem .9rem;
    border-radius: 8px;
    transition: 0.2s;
}

.kc-navbar .nav-link:hover,
.kc-navbar .nav-link.active {
    color: #ffffff;
    background: rgba(15,23,42,0.35);
}

/* mobile toggler */
.navbar-dark .navbar-toggler {
    border-color: transparent;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* header buttons */
.btn-gradient-blue {
    background: linear-gradient(135deg, #4a64ff, #637aff);
    color: #fff !important;
    border: none;
}
.btn-gradient-blue:hover {
    color: #fff;
    filter: brightness(1.1);
}

/* =========================
   HERO SECTION
   ========================= */
.hero-section {
    position: relative;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin-top: .5rem;      /* small gap under navbar */
    margin-bottom: 2rem;
    overflow: hidden;
    background: radial-gradient(circle at top left, #3034af 0%, #0c1020 45%, #050714 100%);
    color: #ffffff;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 179, 71, 0.6), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(92, 108, 255, 0.6), transparent 55%);
    pointer-events: none;
}

.hero-section .row {
    position: relative;
    z-index: 2;
}

/* Badge above title */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e5e7eb;
    font-size: .8rem;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f9fafb;
}

.hero-subtitle {
    color: #e5e7eb;
    font-size: .95rem;
    line-height: 1.6;
}

.text-light-opacity {
    color: rgba(249, 250, 251, 0.75);
}

/* buttons inside hero */
.btn-gradient {
    border: none;
    background-image: linear-gradient(135deg, var(--kc-primary), var(--kc-secondary));
    color: #fff;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
.btn-gradient:hover {
    color: #fff;
    filter: brightness(1.05);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.hero-outline-btn {
    border-color: rgba(226, 232, 240, 0.7);
    color: #e5e7eb;
    background-color: transparent;
}
.hero-outline-btn:hover {
    background-color: rgba(15, 23, 42, 0.7);
    color: #ffffff;
}

/* =========================
   HERO RIGHT CARD
   ========================= */
.hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem;
}

.hero-card-header h5 {
    font-weight: 600;
}

.bg-soft-primary {
    background: var(--kc-soft-primary);
    border-radius: 999px;
}

/* Category pills */
.category-pill {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .85rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(92, 108, 255, 0.08);
    color: var(--kc-primary);
}

/* Soft badges */
.bg-soft-success {
    background: var(--kc-soft-success);
    border-radius: 999px;
    padding: .2rem .6rem;
}
.text-success-emphasis {
    color: #15803d;
}

/* =========================
   FEATURE CARDS & SECTIONS
   ========================= */
.section-title {
    font-weight: 600;
}

.feature-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.feature-card .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(92, 108, 255, 0.08);
    color: var(--kc-primary);
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.05);
    color: var(--kc-primary-dark);
}

/* =========================
   TRUST STRIP / STATS
   ========================= */
.trust-strip {
    border-radius: 18px;
    background: #f9fafb;
    margin-bottom: 2rem;
}

.trust-item {
    padding: .75rem 0;
}

.trust-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--kc-primary-dark);
}

.trust-label {
    font-size: .8rem;
    color: var(--kc-text-muted);
}

/* =========================
   FOOTER
   ========================= */
.kc-footer {
    background: #0b1020;
    color: #9ca3af;
}

/* =========================
   RESPONSIVE TWEAKS
   ========================= */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 1.7rem;
    }
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .2rem .7rem;
    border-radius: 999px;
    background: rgba(92,108,255,0.08);
    color: var(--kc-primary-dark);
    font-size: .75rem;
    font-weight: 600;
}


/* Category boxes */
.category-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.2rem .5rem;
    transition: 0.3s;
    cursor: pointer;
}

.category-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border-color: var(--kc-primary);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(92,108,255,0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--kc-primary);
}

.category-box h6 {
    font-weight: 600;
    margin-top: .75rem;
    color: #1f2937;
}


/* Trending activity cards */
.activity-card {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
    border-color: var(--kc-primary);
}

/* top colored area instead of real image (can be swapped with img later) */
.activity-banner {
    position: relative;
    height: 110px;
    background: linear-gradient(135deg, #4a64ff, #5c6cff);
}

.activity-banner.banner-2 {
    background: linear-gradient(135deg, #1fb6ff, #3f51b5);
}
.activity-banner.banner-3 {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
}
.activity-banner.banner-4 {
    background: linear-gradient(135deg, #34d399, #16a34a);
}

.activity-banner .badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.activity-body {
    padding: .9rem .9rem 1rem;
    flex: 1;
}

.activity-credits {
    font-weight: 600;
    color: var(--kc-primary-dark);
    font-size: .9rem;
}

.activity-rating {
    font-size: .85rem;
    color: #f59e0b;
}
.activity-rating i {
    font-size: .9rem;
}


/* Testimonials */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.3rem;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.15);
    border-color: var(--kc-primary);
}

.testimonial-header .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}

/* Avatar gradient variations */
.bg-avatar-1 {
    background: linear-gradient(135deg, #4a64ff, #5c6cff);
}
.bg-avatar-2 {
    background: linear-gradient(135deg, #1fb6ff, #3f51b5);
}
.bg-avatar-3 {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
}

.testimonial-text {
    font-size: .92rem;
    color: #374151;
    line-height: 1.55;
}

.testimonial-rating {
    font-size: .9rem;
    margin-top: .8rem;
    font-weight: 600;
    color: #f59e0b;
}

.testimonial-rating i {
    margin-right: 3px;
}


/* Partner / Logo strip */
.partner-strip {
    max-width: 900px;
    margin: 0 auto;
}

.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .95rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: .85rem;
    color: #111827;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    transition: 0.25s;
    white-space: nowrap;
}

.partner-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    border-color: var(--kc-primary);
}

.partner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a64ff, #ffb347);
}


/* Packages */
.package-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    padding: 1.2rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    border-color: var(--kc-primary);
}

.package-card-featured {
    border-width: 2px;
    border-color: var(--kc-primary);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

.package-ribbon {
    position: absolute;
    top: 12px;
    right: 16px;
    background: linear-gradient(135deg, #4a64ff, #ffb347);
    color: #ffffff;
    font-size: .7rem;
    padding: .2rem .6rem;
    border-radius: 999px;
    font-weight: 600;
}

.package-header {
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: .25rem;
    margin-bottom: .2rem;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

.price-duration {
    font-size: .8rem;
    color: var(--kc-text-muted);
}

.package-credits {
    font-size: .9rem;
    font-weight: 600;
    color: var(--kc-primary-dark);
}

.package-list li {
    font-size: .85rem;
    color: #374151;
    margin-bottom: .25rem;
}

.package-list i {
    color: #22c55e;
    font-size: .9rem;
    margin-right: .3rem;
}


/* Packages */
.package-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    padding: 1.2rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    border-color: var(--kc-primary);
}

.package-card-featured {
    border-width: 2px;
    border-color: var(--kc-primary);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

.package-ribbon {
    position: absolute;
    top: 12px;
    right: 16px;
    background: linear-gradient(135deg, #4a64ff, #ffb347);
    color: #ffffff;
    font-size: .7rem;
    padding: .2rem .6rem;
    border-radius: 999px;
    font-weight: 600;
}

.package-header {
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: .25rem;
    margin-bottom: .2rem;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

.price-duration {
    font-size: .8rem;
    color: var(--kc-text-muted);
}

.package-credits {
    font-size: .9rem;
    font-weight: 600;
    color: var(--kc-primary-dark);
}

.package-list li {
    font-size: .85rem;
    color: #374151;
    margin-bottom: .25rem;
}

.package-list i {
    color: #22c55e;
    font-size: .9rem;
    margin-right: .3rem;
}


/* Age group cards */
.age-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 1rem .9rem 1.1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: 0.25s;
}

.age-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    border-color: var(--kc-primary);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    padding: .15rem .6rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(92,108,255,0.10);
    color: var(--kc-primary-dark);
}



/* Explore by City / Emirate */
.city-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 0.9rem 0.8rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: 0.25s;
    color: #111827;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.13);
    border-color: var(--kc-primary);
}

.city-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin: 0 auto 0.4rem;
    background: rgba(92,108,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kc-primary);
    font-size: 1.25rem;
}

.city-name {
    font-weight: 600;
    font-size: .9rem;
}

.city-meta {
    font-size: .75rem;
    color: var(--kc-text-muted);
}

/* Safety & Verification */
.safety-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 1.1rem 1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: 0.25s;
    height: 100%;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    border-color: var(--kc-primary);
}

.safety-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    background: rgba(92,108,255,0.10);
    color: var(--kc-primary-dark);
}
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

#creditCSS ~ * button,
#creditCSS ~ * .btn {
    all: unset;
    /* फिर अपनी bootstrap / custom button styling apply करें */
}