/* =========================================================
   NAIR Spine & Knee Clinic — Enhancement Styles
   Covers: Floating Chat Widget, Appointment Modal,
   Counter Section, Testimonials, Location Cards,
   Doctor Profile Tabs, CTA Redesign, Latest Updates
   ========================================================= */

/* ---------------------------------------------------------
   1. FLOATING CHAT WIDGET (Desktop)
   --------------------------------------------------------- */
.nskc-float-widget {
    position: fixed;
    right: 28px;
    bottom: 32px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
}
.nskc-float-widget__toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--nskc-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(11,26,48,.28);
    transition: transform .2s ease, background-color .2s ease;
    color: var(--nskc-navy-900);
    font-size: 22px;
}
.nskc-float-widget__toggle:hover { transform: scale(1.08); background: #f2c258; }
.nskc-float-widget__toggle .nskc-fw-open  { display: block; }
.nskc-float-widget__toggle .nskc-fw-close { display: none; }
.nskc-float-widget.is-open .nskc-float-widget__toggle .nskc-fw-open  { display: none; }
.nskc-float-widget.is-open .nskc-float-widget__toggle .nskc-fw-close { display: block; }

.nskc-float-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .22s ease, transform .22s ease;
}
.nskc-float-widget.is-open .nskc-float-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.nskc-float-action {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.nskc-float-action__label {
    background: var(--nskc-navy-900);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,.22);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .18s ease, transform .18s ease;
}
.nskc-float-widget.is-open .nskc-float-action__label {
    opacity: 1;
    transform: translateX(0);
}
.nskc-float-action:nth-child(1) .nskc-float-action__label { transition-delay: .06s; }
.nskc-float-action:nth-child(2) .nskc-float-action__label { transition-delay: .04s; }
.nskc-float-action:nth-child(3) .nskc-float-action__label { transition-delay: .02s; }
.nskc-float-action__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,.22);
    transition: transform .18s ease;
}
.nskc-float-action:hover .nskc-float-action__icon { transform: scale(1.1); }
.nskc-float-action--call  .nskc-float-action__icon { background: #172541; color: #fff; }
.nskc-float-action--wa    .nskc-float-action__icon { background: #25D366; color: #fff; }
.nskc-float-action--book  .nskc-float-action__icon { background: var(--nskc-gold); color: var(--nskc-navy-900); }

/* Hide desktop widget on mobile (sticky bar takes over) */
@media (max-width: 991px) {
    .nskc-float-widget { display: none !important; }
}
/* Hide the old rum_sst_tab when new widget is present */
#rum_sst_tab { display: none !important; }

/* ---------------------------------------------------------
   2. APPOINTMENT MODAL
   --------------------------------------------------------- */
.nskc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(11, 26, 48, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(2px);
}
.nskc-modal-overlay[hidden] { display: none; }
body.nskc-modal-open { overflow: hidden; }

.nskc-modal-box {
    position: relative;
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(11,26,48,.35);
    animation: nskc-modal-in .24s ease;
}
@keyframes nskc-modal-in {
    from { transform: scale(.95) translateY(12px); opacity: 0; }
    to   { transform: scale(1) translateY(0);  opacity: 1; }
}
.nskc-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f0f4f8;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .18s ease;
}
.nskc-modal-close:hover { background: #dce4ef; }
.nskc-modal-header {
    background: linear-gradient(135deg, var(--nskc-navy-800) 0%, var(--nskc-navy-700) 100%);
    color: #fff;
    padding: 28px 28px 22px;
    border-radius: 14px 14px 0 0;
}
.nskc-modal-icon {
    width: 48px;
    height: 48px;
    background: var(--nskc-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--nskc-navy-900);
    margin-bottom: 14px;
}
.nskc-modal-header h2 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 6px;
}
.nskc-modal-header p {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    margin: 0;
}
.nskc-modal-form { padding: 24px 28px 28px; }
.nskc-modal-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.nskc-modal-fields .nskc-field { margin-bottom: 16px; }
.nskc-modal-fields .nskc-field--full { grid-column: 1 / -1; }
.nskc-modal-actions { margin-top: 8px; }
.nskc-btn--full { width: 100%; justify-content: center; }
.nskc-modal-note {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 10px;
    margin-bottom: 0;
}
.nskc-modal-note a { color: var(--nskc-navy-700); font-weight: 600; }
@media (max-width: 575px) {
    .nskc-modal-fields { grid-template-columns: 1fr; }
    .nskc-modal-header { padding: 22px 20px 18px; }
    .nskc-modal-form { padding: 18px 20px 22px; }
}

/* ---------------------------------------------------------
   3. FEATURE CARDS WITH ICONS (below hero slider)
   --------------------------------------------------------- */
.nskc-card--icon { position: relative; padding-top: 70px; }
.nskc-card__icon-wrap {
    position: absolute;
    top: -24px;
    left: 24px;
    width: 52px;
    height: 52px;
    background: var(--nskc-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--nskc-navy-900);
    box-shadow: 0 4px 14px rgba(232,179,61,.4);
}
.nskc-card--icon:hover .nskc-card__icon-wrap {
    transform: translateY(-2px);
    transition: transform .2s ease;
}

/* ---------------------------------------------------------
   4. COUNTER / STATS SECTION
   --------------------------------------------------------- */
.nskc-counter-section {
    background: linear-gradient(135deg, var(--nskc-navy-800) 0%, var(--nskc-navy-900) 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.nskc-counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/bg/counter-bg-02.jpg');
    background-size: cover;
    background-position: center;
    opacity: .08;
}
.nskc-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.nskc-counter-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,.12);
}
.nskc-counter-item:last-child { border-right: none; }
.nskc-counter-icon {
    font-size: 32px;
    color: var(--nskc-gold);
    margin-bottom: 12px;
}
.nskc-counter-num {
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.nskc-counter-num sup {
    font-size: 55%;
    vertical-align: super;
    font-weight: 700;
}
.nskc-counter-label {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}
@media (max-width: 767px) {
    .nskc-counter-grid { grid-template-columns: repeat(2, 1fr); }
    .nskc-counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .nskc-counter-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
    .nskc-counter-item:last-child { border-bottom: none; }
}
@media (max-width: 400px) {
    .nskc-counter-grid { grid-template-columns: 1fr; }
    .nskc-counter-item { border-right: none !important; }
}

/* ---------------------------------------------------------
   5. TESTIMONIALS SECTION
   --------------------------------------------------------- */
.nskc-testimonials-section {
    background: var(--nskc-surface);
    padding: 80px 0;
}
.nskc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.nskc-testimonial-card {
    background: #fff;
    border: 1px solid var(--nskc-border);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 14px rgba(11,26,48,.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease;
}
.nskc-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(11,26,48,.12);
}
.nskc-testimonial-stars {
    color: #F5A623;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.nskc-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--nskc-text);
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.nskc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--nskc-border);
}
.nskc-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nskc-navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--nskc-gold);
    flex-shrink: 0;
}
.nskc-testimonial-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--nskc-navy-800);
    display: block;
}
.nskc-testimonial-meta {
    font-size: 12px;
    color: var(--nskc-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}
.nskc-testimonial-meta img {
    width: 14px;
    height: 14px;
}
.nskc-testimonials-cta {
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .nskc-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .nskc-testimonials-grid { grid-template-columns: 1fr; }
    .nskc-testimonials-section { padding: 50px 0; }
}

/* ---------------------------------------------------------
   6. LATEST UPDATES SECTION
   --------------------------------------------------------- */
.nskc-updates-section {
    padding: 80px 0;
    background: #fff;
}
.nskc-updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.nskc-update-card {
    background: #fff;
    border: 1px solid var(--nskc-border);
    border-top: 4px solid var(--nskc-gold);
    border-radius: 0 0 12px 12px;
    padding: 24px;
    transition: box-shadow .2s ease;
}
.nskc-update-card:hover {
    box-shadow: 0 6px 24px rgba(11,26,48,.12);
}
.nskc-update-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--nskc-gold-dark);
    background: var(--nskc-gold-soft, #F5E4BC);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.nskc-update-card h3 {
    font-size: 17px;
    line-height: 1.4;
    color: var(--nskc-navy-800);
    margin: 0 0 10px;
}
.nskc-update-card p {
    font-size: 14px;
    color: var(--nskc-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.nskc-update-card a.nskc-update-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--nskc-navy-700);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nskc-update-card a.nskc-update-link:hover { color: var(--nskc-gold-dark); text-decoration: underline; }
@media (max-width: 991px) {
    .nskc-updates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .nskc-updates-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   7. ENHANCED CTA BAND
   --------------------------------------------------------- */
.nskc-cta-enhanced {
    background: linear-gradient(135deg, var(--nskc-navy-800) 0%, var(--nskc-navy-900) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.nskc-cta-enhanced::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: var(--nskc-gold);
    opacity: .06;
    border-radius: 50%;
    pointer-events: none;
}
.nskc-cta-enhanced::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: var(--nskc-navy-500, #3A5F8A);
    opacity: .12;
    border-radius: 50%;
    pointer-events: none;
}
.nskc-cta-enhanced__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.nskc-cta-enhanced__badge {
    display: inline-block;
    background: var(--nskc-gold);
    color: var(--nskc-navy-900);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.nskc-cta-enhanced h2 {
    color: #fff !important;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 20ch;
}
.nskc-cta-enhanced p {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    line-height: 1.65;
    max-width: 58ch;
    margin-bottom: 0;
}
.nskc-cta-enhanced__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}
.nskc-cta-enhanced__actions .nskc-btn {
    text-align: center;
    justify-content: center;
}
.nskc-btn--gold {
    background: var(--nskc-gold);
    border-color: var(--nskc-gold);
    color: var(--nskc-navy-900) !important;
    font-weight: 700;
}
.nskc-btn--gold:hover {
    background: #f2c258;
    border-color: #f2c258;
    color: var(--nskc-navy-900) !important;
}
.nskc-btn--outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,.55);
    color: #fff !important;
}
.nskc-btn--outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
}
@media (max-width: 991px) {
    .nskc-cta-enhanced__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .nskc-cta-enhanced__actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 575px) {
    .nskc-cta-enhanced { padding: 52px 0; }
    .nskc-cta-enhanced__actions { flex-direction: column; }
    .nskc-cta-enhanced__actions .nskc-btn { width: 100%; }
}

/* ---------------------------------------------------------
   8. CONTACT PAGE — LOCATION CARDS REDESIGN
   --------------------------------------------------------- */
.nskc-loc-card {
    background: #fff;
    border: 1px solid var(--nskc-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11,26,48,.06);
    margin-bottom: 24px;
    transition: box-shadow .2s ease, transform .2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.nskc-loc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(11,26,48,.12);
}
.nskc-loc-card__head {
    background: linear-gradient(135deg, var(--nskc-navy-800) 0%, var(--nskc-navy-700) 100%);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.nskc-loc-card__head-icon {
    width: 40px;
    height: 40px;
    background: var(--nskc-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--nskc-navy-900);
    flex-shrink: 0;
}
.nskc-loc-card__head h3 {
    color: #fff;
    font-size: 17px;
    margin: 0 0 3px;
    line-height: 1.3;
}
.nskc-loc-card__facility {
    font-size: 13px;
    color: rgba(255,255,255,.75);
}
.nskc-loc-card__body { padding: 20px; flex: 1; }
.nskc-loc-card__address {
    font-size: 14px;
    color: var(--nskc-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: flex;
    gap: 8px;
}
.nskc-loc-card__address i { color: var(--nskc-gold-dark); margin-top: 2px; flex-shrink: 0; }
.nskc-loc-card__doctors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.nskc-loc-card__doctor-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    color: var(--nskc-navy-800);
    background: var(--nskc-gold-soft, #F5E4BC);
    border: 1px solid #e8d49a;
}
.nskc-loc-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--nskc-border);
    margin-top: auto;
}
.nskc-loc-card__btn {
    flex: 1 1 120px;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    transition: background .18s ease, transform .15s ease;
    text-align: center;
}
.nskc-loc-card__btn:hover { transform: translateY(-1px); }
.nskc-loc-card__btn--book {
    background: var(--nskc-navy-800);
    color: #fff !important;
}
.nskc-loc-card__btn--book:hover { background: var(--nskc-navy-700); }
.nskc-loc-card__btn--wa {
    background: #25D366;
    color: #fff !important;
}
.nskc-loc-card__btn--wa:hover { background: #1EB856; }
.nskc-loc-card__btn--details {
    background: var(--nskc-surface);
    color: var(--nskc-navy-800) !important;
    border: 1px solid var(--nskc-border-strong);
}
.nskc-loc-card__btn--details:hover { background: #e8eef5; }

.nskc-contact-primary-card {
    background: linear-gradient(135deg, var(--nskc-navy-800) 0%, var(--nskc-navy-900) 100%);
    border-radius: 14px;
    padding: 32px;
    color: #fff;
    margin-bottom: 32px;
}
.nskc-contact-primary-card h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 8px;
}
.nskc-contact-primary-card p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.nskc-contact-channels { display: flex; flex-wrap: wrap; gap: 12px; }
.nskc-contact-channel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 12px 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: background .18s ease;
}
.nskc-contact-channel:hover { background: rgba(255,255,255,.18); color: #fff; }
.nskc-contact-channel i { font-size: 20px; }
.nskc-contact-channel.is-wa { background: rgba(37,211,102,.2); border-color: rgba(37,211,102,.4); }
.nskc-contact-channel.is-wa:hover { background: rgba(37,211,102,.35); }

/* ---------------------------------------------------------
   9. DOCTOR PROFILE TABS
   --------------------------------------------------------- */
.nskc-profile-tabs {
    margin: 32px 0 0;
}
.nskc-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--nskc-border);
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
}
.nskc-tabs-nav::-webkit-scrollbar { display: none; }
.nskc-tab-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 10px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 15px;
    font-weight: 600;
    color: var(--nskc-text-muted);
    cursor: pointer;
    transition: color .18s ease, border-color .18s ease;
    white-space: nowrap;
}
.nskc-tab-btn:hover { color: var(--nskc-navy-800); }
.nskc-tab-btn.is-active {
    color: var(--nskc-navy-800);
    border-bottom-color: var(--nskc-gold);
}
.nskc-tab-panel { display: none; }
.nskc-tab-panel.is-active { display: block; }
.nskc-publications-list { list-style: none; margin: 0; padding: 0; }
.nskc-pub-item {
    border: 1px solid var(--nskc-border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 14px;
    background: #fff;
    transition: box-shadow .2s ease;
}
.nskc-pub-item:hover { box-shadow: 0 4px 16px rgba(11,26,48,.1); }
.nskc-pub-item__journal {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--nskc-gold-dark);
    margin-bottom: 6px;
}
.nskc-pub-item h3 {
    font-size: 16px;
    line-height: 1.4;
    color: var(--nskc-navy-800);
    margin-bottom: 6px;
}
.nskc-pub-item__authors {
    font-size: 13px;
    color: var(--nskc-text-muted);
    margin-bottom: 8px;
}
.nskc-pub-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--nskc-text-muted);
}
.nskc-pub-item__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nskc-navy-700);
    text-decoration: none;
    margin-top: 10px;
}
.nskc-pub-item__link:hover { color: var(--nskc-gold-dark); text-decoration: underline; }
.nskc-podium-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--nskc-border);
}
.nskc-podium-item:last-child { border-bottom: none; }
.nskc-podium-year {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    background: var(--nskc-navy-800);
    color: var(--nskc-gold);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 4px;
    height: fit-content;
}
.nskc-podium-detail h4 {
    font-size: 15px;
    color: var(--nskc-navy-800);
    margin-bottom: 4px;
}
.nskc-podium-detail p {
    font-size: 13px;
    color: var(--nskc-text-muted);
    margin: 0;
}
.nskc-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.nskc-cert-item {
    background: var(--nskc-surface);
    border: 1px solid var(--nskc-border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.nskc-cert-item i {
    font-size: 28px;
    color: var(--nskc-gold-dark);
    margin-bottom: 12px;
}
.nskc-cert-item h4 {
    font-size: 14px;
    color: var(--nskc-navy-800);
    margin-bottom: 4px;
    line-height: 1.4;
}
.nskc-cert-item p {
    font-size: 12px;
    color: var(--nskc-text-muted);
    margin: 0;
}

/* ---------------------------------------------------------
   10. RESEARCH PUBLICATIONS PAGE
   --------------------------------------------------------- */
.nskc-research-hero {
    background: linear-gradient(135deg, var(--nskc-navy-800) 0%, var(--nskc-navy-700) 100%);
    padding: 60px 0 50px;
}
.nskc-rg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00CCBB;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 20px;
}
.nskc-rg-badge:hover { background: #00B5A6; color: #fff; }

/* ---------------------------------------------------------
   11. ABOUT SECTION — ALIGNMENT FIX
   --------------------------------------------------------- */
.nskc-about-media .nskc-figure img { object-fit: cover; object-position: top center; width: 100%; }
.creative-agency-about-us-content.pl-50 { padding-left: 40px; }
@media (max-width: 991px) {
    .creative-agency-about-us-content.pl-50 { padding-left: 0; margin-top: 24px; }
}

/* ---------------------------------------------------------
   12. FOOTER ENHANCEMENTS
   --------------------------------------------------------- */
.footer-copyright-area .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    justify-content: flex-end;
}
.footer-copyright-area .footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--nskc-navy-900);
    font-size: 14px;
    text-decoration: none;
}
.footer-copyright-area .footer-bottom-links a:hover { text-decoration: underline; }
@media (max-width: 767px) {
    .footer-copyright-area .footer-bottom-links { justify-content: flex-start; }
}

/* ---------------------------------------------------------
   13. SOCIAL ICONS — Uniform size across header & footer
   --------------------------------------------------------- */
.ht-social-networks { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.ht-social-networks .item { margin: 0; }
.ht-social-networks .item > a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
    text-decoration: none;
}
.ht-social-networks .item > a:hover {
    background: var(--nskc-gold);
    border-color: var(--nskc-gold);
    color: var(--nskc-navy-900) !important;
}
.header-top-wrap .ht-social-networks .item > a {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

/* ---------------------------------------------------------
   14. SECTION — BG SOFT
   --------------------------------------------------------- */
.nskc-bg-soft-section { background: var(--nskc-surface); }

/* ---------------------------------------------------------
   15. HERO SLIDER ARROW FIX
   --------------------------------------------------------- */
.hero-slider-wrap .hero-nav-next,
.hero-slider-wrap .hero-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.45);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background .2s ease, border-color .2s ease;
}
.hero-slider-wrap .hero-nav-next { right: 20px; }
.hero-slider-wrap .hero-nav-prev { left: 20px; }
.hero-slider-wrap .hero-nav-next:hover,
.hero-slider-wrap .hero-nav-prev:hover {
    background: rgba(255,255,255,.3);
    border-color: rgba(255,255,255,.8);
}
.hero-slider-wrap .hero-nav-next .nav-button-icon::after { content: '›'; font-size: 24px; line-height: 1; }
.hero-slider-wrap .hero-nav-prev .nav-button-icon::after { content: '‹'; font-size: 24px; line-height: 1; }
@media (max-width: 767px) {
    .hero-slider-wrap .hero-nav-next,
    .hero-slider-wrap .hero-nav-prev { display: none; }
}

/* ---------------------------------------------------------
   16. MISC — Page banner text alignment fix
   --------------------------------------------------------- */
.nskc-page-hero { padding: 60px 0 50px; }
.nskc-page-hero h1 { font-size: clamp(22px, 3.5vw, 36px); }

/* ---------------------------------------------------------
   17. BANNER — Sub-page inner page hero (full display fix)
   --------------------------------------------------------- */
.nskc-page-hero {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--nskc-navy-900);
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    position: relative;
}
.nskc-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,26,48,.45) 0%, rgba(11,26,48,.72) 100%);
}
.nskc-page-hero__inner {
    position: relative;
    z-index: 1;
    padding: 48px 0 36px;
}
.nskc-page-hero .breadcrumb_box { padding-bottom: 0; }
.nskc-page-hero .page-h1 {
    color: #fff !important;
    font-size: clamp(22px, 3.5vw, 38px);
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.nskc-hero-sub {
    color: rgba(255,255,255,.88);
    font-size: 16px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .nskc-page-hero { min-height: 180px; }
    .nskc-page-hero__inner { padding: 36px 0 28px; }
    .nskc-page-hero .page-h1 { font-size: 22px; }
}

/* ---------------------------------------------------------
   18. NAV MENU — Prevent overlapping on wide nav
   --------------------------------------------------------- */
.navigation-menu > ul > li {
    margin: 0 5px !important;
}
.navigation-menu > ul > li > a span {
    font-size: 13px !important;
    font-weight: 600;
    white-space: nowrap;
}
/* Shrink further below 1400px */
@media (max-width: 1399px) {
    .navigation-menu > ul > li { margin: 0 3px !important; }
    .navigation-menu > ul > li > a span { font-size: 12.5px !important; }
}
@media (max-width: 1280px) {
    .navigation-menu > ul > li { margin: 0 1px !important; }
    .navigation-menu > ul > li > a span { font-size: 12px !important; }
}
/* Header bottom layout — keep logo + nav on one line */
.header-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------------------------------------------------------
   19. SLIDER ARROWS — Larger and more visible
   --------------------------------------------------------- */
.hero-slider-wrap .hero-nav-next,
.hero-slider-wrap .hero-nav-prev {
    width: 56px !important;
    height: 56px !important;
    font-size: 24px !important;
}
/* Service slider arrows */
.service-area .swiper-nav-button,
.swiper-nav-button {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--nskc-navy-800) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    transition: background .18s ease;
    position: relative;
    z-index: 2;
}
.swiper-nav-button:hover { background: var(--nskc-gold) !important; color: var(--nskc-navy-900) !important; }

/* ---------------------------------------------------------
   20. TEXT ALIGNMENT — About section & Know Your Doctor
   --------------------------------------------------------- */
/* Reset any right shift from section-title-wrap */
.creative-agency-about-us-content .section-title-wrap,
.about-us-content .section-title-wrap {
    text-align: left !important;
}
.creative-agency-about-us-content .section-title-wrap h2,
.creative-agency-about-us-content .section-title-wrap p,
.creative-agency-about-us-content .section-title-wrap span,
.about-us-content .section-title-wrap h2,
.about-us-content .section-title-wrap p,
.about-us-content .section-title-wrap span {
    text-align: left !important;
    margin-left: 0 !important;
}
/* Remove pl-50 on mobile */
.creative-agency-about-us-content.pl-50 {
    padding-left: 36px !important;
}
@media (max-width: 991px) {
    .creative-agency-about-us-content.pl-50 { padding-left: 0 !important; }
    .about-us-content.about-us-offset { margin-top: 24px !important; }
}

/* ---------------------------------------------------------
   21. LOCATION CARD — Facility name accent color (homepage & about)
   --------------------------------------------------------- */
.nskc-card .nskc-card__meta {
    color: var(--nskc-gold-dark, #b8861a) !important;
    font-weight: 600;
    font-size: 13px;
}

/* ---------------------------------------------------------
   22. FOOTER — Remove email overlap, clean copyright row
   --------------------------------------------------------- */
.footer-copyright-area {
    padding: 14px 0 !important;
}
.footer-copyright-area .row {
    align-items: center;
}
.footer-copyright-area .copyright-text {
    margin: 0;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-copyright-area .copyright-text.nskc-disclaimer {
    white-space: normal;
    font-size: 11px;
    color: rgba(23,37,65,.65);
    margin-top: 6px;
}
@media (max-width: 767px) {
    .footer-copyright-area .copyright-text { white-space: normal; }
}

/* ---------------------------------------------------------
   23. MOBILE MENU — Less crowded, better spacing
   --------------------------------------------------------- */
.mobile-menu-overlay__body {
    padding: 16px 24px 24px !important;
}
.offcanvas-navigation > ul > li > a {
    font-size: 15px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offcanvas-navigation .sub-menu > li > a {
    font-size: 14px !important;
    padding: 8px 12px !important;
}
/* Mobile header top — stack vertically */
@media (max-width: 575px) {
    .header-top-wrap { display: none; }
}

/* ---------------------------------------------------------
   24. VIDEO TESTIMONIALS — Clean reel grid
   --------------------------------------------------------- */
.nskc-reel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.nskc-reel-card {
    background: #fff;
    border: 1px solid var(--nskc-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11,26,48,.07);
    transition: box-shadow .2s ease, transform .2s ease;
}
.nskc-reel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(11,26,48,.14);
}
.nskc-reel-card__frame {
    position: relative;
    width: 100%;
    /* Instagram reels are portrait 9:16 */
    padding-bottom: 177.78%;
    background: var(--nskc-surface);
}
.nskc-reel-card__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.nskc-reel-card__caption {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--nskc-text-muted);
    line-height: 1.4;
    margin: 0;
    text-align: center;
    border-top: 1px solid var(--nskc-border);
}
@media (max-width: 991px) {
    .nskc-reel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .nskc-reel-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   25. COUNTER — Animation via IntersectionObserver (CSS assist)
   --------------------------------------------------------- */
.nskc-counter-num {
    display: block;
    transition: color .3s ease;
}
/* Stagger the counter items on reveal */
.nskc-counter-item:nth-child(1) { transition-delay: .0s; }
.nskc-counter-item:nth-child(2) { transition-delay: .1s; }
.nskc-counter-item:nth-child(3) { transition-delay: .2s; }
.nskc-counter-item:nth-child(4) { transition-delay: .3s; }

/* ---------------------------------------------------------
   26. FORMS — Minimalist, fluid design
   --------------------------------------------------------- */
/* Shared field styles */
.nskc-field label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 6px;
    display: block;
    letter-spacing: .02em;
}
.nskc-field input,
.nskc-field select,
.nskc-field textarea {
    width: 100%;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    line-height: 1.5;
    transition: border-color .18s ease, background .18s ease;
    appearance: none;
    -webkit-appearance: none;
}
.nskc-field input::placeholder,
.nskc-field textarea::placeholder {
    color: rgba(255,255,255,.45) !important;
}
.nskc-field input:focus,
.nskc-field select:focus,
.nskc-field textarea:focus {
    outline: none;
    border-color: var(--nskc-gold) !important;
    background: rgba(255,255,255,.12) !important;
    box-shadow: 0 0 0 3px rgba(232,179,61,.15);
}
.nskc-field input[aria-invalid="true"],
.nskc-field textarea[aria-invalid="true"] {
    border-color: #f87171 !important;
}
.nskc-field textarea {
    min-height: 100px !important;
    resize: vertical;
}
.nskc-field select option { color: #000; background: #fff; }
/* Optional label style — just lighter text, no "(optional)" text */
.nskc-field input:not([required]),
.nskc-field select:not([required]),
.nskc-field textarea:not([required]) {
    border-color: rgba(255,255,255,.15) !important;
}
.nskc-field { margin-bottom: 16px !important; }
.form-messege { font-size: 12px; margin-top: 8px; color: rgba(255,255,255,.6); }
/* Modal form (on white bg) */
.nskc-modal-form .nskc-field label { color: var(--nskc-text) !important; }
.nskc-modal-form .nskc-field input,
.nskc-modal-form .nskc-field select,
.nskc-modal-form .nskc-field textarea {
    background: var(--nskc-surface) !important;
    border: 1px solid var(--nskc-border) !important;
    color: var(--nskc-text) !important;
}
.nskc-modal-form .nskc-field input::placeholder,
.nskc-modal-form .nskc-field textarea::placeholder {
    color: var(--nskc-text-muted) !important;
}
.nskc-modal-form .nskc-field input:focus,
.nskc-modal-form .nskc-field select:focus,
.nskc-modal-form .nskc-field textarea:focus {
    background: #fff !important;
    border-color: var(--nskc-navy-700) !important;
    box-shadow: 0 0 0 3px rgba(23,37,65,.1);
}
/* Submit button in modal */
.nskc-btn--accent {
    background: var(--nskc-navy-800) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .18s ease;
}
.nskc-btn--accent:hover { background: var(--nskc-navy-700) !important; }

/* ---------------------------------------------------------
   27. CONTACT PAGE — Cleaned-up location cards
   --------------------------------------------------------- */
/* Unified card width/height */
.nskc-loc-card {
    border-radius: 12px !important;
}
/* Remove the heavy blue-green contrast — use cleaner palette */
.nskc-loc-card__btn--wa {
    background: #1a9e50 !important;
    font-size: 12px !important;
}
.nskc-loc-card__btn--book {
    background: var(--nskc-navy-900) !important;
    font-size: 12px !important;
}
.nskc-loc-card__btn--details {
    font-size: 12px !important;
}
.nskc-loc-card__actions { padding-top: 12px !important; gap: 6px !important; }
.nskc-loc-card__head { background: linear-gradient(135deg, #172541 0%, #213355 100%) !important; }
/* Make all cards equal height via CSS grid parent */
.row.section-space--mb_60 .col-lg-4.col-md-6 {
    display: flex;
    flex-direction: column;
}
.row.section-space--mb_60 .nskc-loc-card {
    flex: 1;
}
/* Uniform min-height for address block */
.nskc-loc-card__body { min-height: 0; }

/* ---------------------------------------------------------
   28. PUBLICATIONS TABLE (research page)
   --------------------------------------------------------- */
.nskc-pub-table { border: 1px solid var(--nskc-border); border-radius: 12px; overflow: hidden; }
.nskc-pub-table__head {
    display: grid;
    grid-template-columns: 36px 1fr 80px 100px;
    background: var(--nskc-navy-800);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.nskc-pub-table__row {
    display: grid;
    grid-template-columns: 36px 1fr 80px 100px;
    border-bottom: 1px solid var(--nskc-border);
    background: #fff;
    transition: background .15s ease;
}
.nskc-pub-table__row:last-child { border-bottom: none; }
.nskc-pub-table__row:hover { background: var(--nskc-surface); }
.nskc-pub-table__cell {
    padding: 16px 14px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nskc-pub-table__cell--num {
    color: var(--nskc-text-muted);
    font-size: 13px;
    font-weight: 700;
    justify-content: flex-start;
    padding-top: 18px;
}
.nskc-pub-table__title {
    font-weight: 600;
    color: var(--nskc-navy-800);
    line-height: 1.45;
    margin-bottom: 4px;
    display: block;
}
.nskc-pub-table__journal {
    font-size: 13px;
    color: var(--nskc-gold-dark, #b8861a);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}
.nskc-pub-table__doi {
    font-size: 11px;
    color: var(--nskc-text-muted);
    font-family: monospace;
    display: block;
    margin-bottom: 6px;
}
.nskc-pub-table__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.nskc-pub-table__tag {
    font-size: 11px;
    font-weight: 600;
    background: #eef2f8;
    color: var(--nskc-navy-800);
    padding: 2px 8px;
    border-radius: 20px;
}
.nskc-pub-year-badge {
    display: inline-block;
    background: var(--nskc-navy-800);
    color: var(--nskc-gold);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
}
.nskc-pub-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nskc-navy-700);
    text-decoration: none;
    background: var(--nskc-surface);
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid var(--nskc-border);
    white-space: nowrap;
    transition: background .15s ease;
}
.nskc-pub-link:hover { background: #dce4ef; color: var(--nskc-navy-900); }
/* Responsive table — stack on mobile */
@media (max-width: 767px) {
    .nskc-pub-table__head { display: none; }
    .nskc-pub-table__row { grid-template-columns: 1fr; border-bottom: 2px solid var(--nskc-border); }
    .nskc-pub-table__cell--num { display: none; }
    .nskc-pub-table__cell--year,
    .nskc-pub-table__cell--link { padding-top: 0; padding-bottom: 16px; }
}

/* ---------------------------------------------------------
   29. NOTE BOX (research page & others)
   --------------------------------------------------------- */
.nskc-note-box {
    background: #fffbe8;
    border: 1px solid #e8d49a;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.nskc-note-box i { color: var(--nskc-gold-dark, #b8861a); flex-shrink: 0; margin-top: 2px; }
.nskc-note-box a { color: var(--nskc-navy-700); font-weight: 600; }

/* ---------------------------------------------------------
   30. AUTHOR STRIP (research page)
   --------------------------------------------------------- */
.nskc-author-strip {
    background: var(--nskc-surface);
    border: 1px solid var(--nskc-border);
    border-radius: 14px;
    padding: 20px 24px;
}
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }

/* ---------------------------------------------------------
   31. SLIDER IMAGES — Proper display on all screens
   --------------------------------------------------------- */
.hero-slider-wrap .creative-hero {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
/* Ensure hero content stays readable on mobile */
@media (max-width: 767px) {
    .hero-slider-wrap .creative-hero-text { padding-right: 16px !important; padding-left: 16px !important; }
    .hero-slider-wrap .creative-hero h1,
    .hero-slider-wrap .creative-hero h2 { font-size: 22px !important; }
    .hero-slider-wrap .creative-hero p { font-size: 14px !important; }
}
/* Service sliders — full width images */
.nskc-cond-card__media img,
.nskc-cond-card__media--16x9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------
   32. PERFORMANCE — Reduce layout shift
   --------------------------------------------------------- */
img { max-width: 100%; height: auto; }
.nskc-media { position: relative; overflow: hidden; background: var(--nskc-surface); }
.nskc-media--16x9 { padding-bottom: 56.25%; }
.nskc-media--4x3  { padding-bottom: 75%; }
.nskc-media--16x9 img,
.nskc-media--4x3  img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------
   33. STICKY CTA — Mobile bar improvements
   --------------------------------------------------------- */
@media (max-width: 991px) {
    /* Ensure body has bottom padding so content isn't hidden behind sticky bar */
    body { padding-bottom: 70px; }
}

/* ---------------------------------------------------------
   35. GRID — 3-column layout (used in about, locations)
   --------------------------------------------------------- */
.nskc-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 991px) { .nskc-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .nskc-grid--3 { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   36. COUNTER — Animated number reveal
   --------------------------------------------------------- */
.nskc-counter-num {
    display: inline-block;
    transition: opacity .3s ease;
}
/* When section not yet in view, hide numbers at 0 */
.nskc-counter-section[data-counter-init="0"] .nskc-counter-num {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}

/* ===========================================================
   FIRE ROUND — consolidated fixes (Aug 2026)
   =========================================================== */

/* 37. NAV — never wrap mid-item */
.navigation-menu > ul > li > a { white-space: nowrap; }
.navigation-menu > ul > li > a span { white-space: nowrap !important; }
@media (max-width: 1399px) {
    .navigation-menu > ul > li { margin: 0 2px !important; }
    .navigation-menu > ul > li > a span { font-size: 12px !important; }
}

/* 38. HERO SLIDER ARROWS — solid, high-visibility */
.hero-nav-prev, .hero-nav-next,
.hero-slider-wrap .hero-nav-prev, .hero-slider-wrap .hero-nav-next {
    width: 54px !important;
    height: 54px !important;
    background: var(--nskc-navy-800) !important;
    border: 2px solid rgba(232,179,61,.7) !important;
    border-radius: 50% !important;
    color: var(--nskc-gold) !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.3);
    transition: background .18s ease, color .18s ease;
    z-index: 5;
}
.hero-nav-prev:hover, .hero-nav-next:hover {
    background: var(--nskc-gold) !important;
    color: var(--nskc-navy-900) !important;
}
.hero-nav-prev { left: 18px !important; }
.hero-nav-next { right: 18px !important; }
.hero-nav-prev i, .hero-nav-next i { line-height: 1; }
@media (max-width: 767px) {
    .hero-nav-prev, .hero-nav-next { width: 40px !important; height: 40px !important; font-size: 15px !important; }
    .hero-nav-prev { left: 8px !important; }
    .hero-nav-next { right: 8px !important; }
}

/* 39. EYEBROW — match live-site style: elegant serif, gold, subtle tracking */
.nskc-eyebrow {
    font-family: "Merriweather", serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-transform: none !important;
    color: var(--nskc-gold-dark) !important;
    display: block;
    margin-bottom: 8px;
}
.nskc-on-dark .nskc-eyebrow,
.nskc-counter-section .nskc-eyebrow,
.creative-hero-text .nskc-eyebrow { color: var(--nskc-gold) !important; }

/* 40. SECTION HEADINGS — common left edge with eyebrow */
.creative-agency-about-us-content,
.creative-agency-about-us-content * ,
.about-us-content .section-title-wrap,
.about-us-content .section-title-wrap * {
    text-align: left !important;
}
.creative-agency-about-us-content .section-title,
.about-us-content .section-title {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
}

/* 41. COUNTER — number + suffix inline on one baseline */
.nskc-counter-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}
.nskc-counter-value .nskc-counter-num { display: inline; }
.nskc-counter-suffix {
    font-size: .85em;
    font-weight: 800;
    color: var(--nskc-gold);
    line-height: 1;
}
.nskc-counter-suffix--star {
    font-size: .72em;
    align-self: center;
    margin-left: 2px;
}
.nskc-counter-item { text-align: center; }

/* 42. FOOTER EMAIL — never wrap mid-word */
.footer-widget a[href^="mailto:"] {
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}
@media (max-width: 400px) {
    .footer-widget a[href^="mailto:"] { font-size: 12.5px; }
}

/* 43. FORM LABELS — always readable on dark panels */
.nskc-on-dark .nskc-field label,
.nskc-on-dark label {
    color: #fff !important;
    opacity: .92;
}
.nskc-on-dark .nskc-req { color: var(--nskc-gold) !important; }

/* 44. CONTACT LOCATION CARDS — muted, calm, aligned */
.nskc-loc-card {
    display: flex !important;
    flex-direction: column !important;
    background: #fff;
    border: 1px solid var(--nskc-border) !important;
    box-shadow: 0 2px 10px rgba(11,26,48,.06) !important;
}
.nskc-loc-card__head {
    background: var(--nskc-surface-2) !important;
    border-bottom: 1px solid var(--nskc-border);
}
.nskc-loc-card__head h3 { color: var(--nskc-navy-800) !important; }
.nskc-loc-card__facility { color: var(--nskc-gold-dark) !important; font-weight: 600; }
.nskc-loc-card__head-icon {
    background: var(--nskc-navy-800) !important;
}
.nskc-loc-card__head-icon i { color: var(--nskc-gold) !important; }
.nskc-loc-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.nskc-loc-card__doctor-tag {
    background: var(--nskc-surface) !important;
    border: 1px solid var(--nskc-border) !important;
    color: var(--nskc-text-muted) !important;
    font-weight: 600;
}
/* Buttons pinned to bottom, one row, same height everywhere */
.nskc-loc-card__actions {
    margin-top: auto !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    padding-top: 16px !important;
}
.nskc-loc-card__btn {
    flex: 1;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px !important;
    border-radius: 8px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: 1px solid transparent;
    cursor: pointer;
}
.nskc-loc-card__btn--book {
    background: var(--nskc-navy-800) !important;
    color: #fff !important;
}
.nskc-loc-card__btn--book:hover { background: var(--nskc-navy-700) !important; }
.nskc-loc-card__btn--wa {
    background: #fff !important;
    color: #178a46 !important;
    border-color: #b9dfc9 !important;
}
.nskc-loc-card__btn--wa:hover { background: #f0faf4 !important; }
.nskc-loc-card__btn--details {
    background: #fff !important;
    color: var(--nskc-text-muted) !important;
    border-color: var(--nskc-border) !important;
}
.nskc-loc-card__btn--details:hover { color: var(--nskc-navy-800) !important; }

/* 45. STICKY MOBILE CTA — clean single-bar design */
.nskc-sticky-cta {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1050;
    background: var(--nskc-navy-900);
    box-shadow: 0 -4px 16px rgba(11,26,48,.25);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (max-width: 991px) {
    .nskc-sticky-cta { display: flex; }
}
.nskc-sticky-cta__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px 8px;
    color: rgba(255,255,255,.9) !important;
    text-decoration: none !important;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .02em;
    border-right: 1px solid rgba(255,255,255,.08);
}
.nskc-sticky-cta__item:last-child { border-right: none; }
.nskc-sticky-cta__item i { font-size: 17px; color: rgba(255,255,255,.85); }
.nskc-sticky-cta__item.is-book {
    background: var(--nskc-gold);
    color: var(--nskc-navy-900) !important;
}
.nskc-sticky-cta__item.is-book i { color: var(--nskc-navy-900); }

/* 46. MOBILE HEADER — hide top bar & social, hamburger level with logo */
@media (max-width: 991px) {
    .header-top-wrap { display: none !important; }
    .ht-social-networks { display: none !important; }
    .header-bottom-wrap .header { padding: 6px 0; }
    .header-bottom-wrap .col-lg-12 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mobile-navigation-icon {
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        align-self: center;
    }
    .header__logo { padding: 4px 0 !important; }
    .header__logo img { max-height: 52px; width: auto; }
    /* Hide desktop floating widget on mobile — sticky bar covers it */
    .nskc-float-widget { display: none !important; }
}

/* 47. INNER PAGE HERO — reference style: tall banner, no header overlap */
.nskc-page-hero {
    margin-top: 0;
    padding-top: 96px; /* clear the absolute/sticky header */
    min-height: 300px;
    justify-content: center;
}
.nskc-page-hero::before {
    background: linear-gradient(100deg, rgba(11,26,48,.88) 0%, rgba(11,26,48,.65) 45%, rgba(11,26,48,.25) 100%);
}
.nskc-page-hero .page-h1 { max-width: 720px; }
.nskc-page-hero .nskc-hero-sub { max-width: 640px; font-size: 17px; }
@media (max-width: 767px) {
    .nskc-page-hero { min-height: 240px; padding-top: 84px; }
    .nskc-page-hero .nskc-hero-sub { font-size: 15px; }
}

/* 48. ABOUT PAGE — logo/branded images never cropped */
.nskc-img-contain img,
img.nskc-contain {
    object-fit: contain !important;
    width: 100%;
    height: auto !important;
    max-height: 420px;
    background: transparent;
}

/* 49. VISITING DOCTORS CARD (location pages) */
.nskc-visiting-docs { margin: 40px 0; }
.nskc-visiting-docs h2 { margin-bottom: 20px; }
.nskc-visiting-docs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.nskc-visiting-doc {
    display: flex;
    gap: 16px;
    background: var(--nskc-surface);
    border: 1px solid var(--nskc-border);
    border-radius: 12px;
    padding: 20px;
    align-items: flex-start;
}
.nskc-visiting-doc__photo {
    width: 76px !important;
    height: 76px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--nskc-gold);
    flex-shrink: 0;
}
.nskc-visiting-doc__info h3 { font-size: 16px; margin-bottom: 2px; }
.nskc-visiting-doc__role {
    font-size: 12.5px;
    color: var(--nskc-gold-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}
.nskc-visiting-doc__info p {
    font-size: 13px;
    color: var(--nskc-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}
.nskc-visiting-doc__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--nskc-navy-700);
}

/* 50. LOCATION MAP BLOCK (location pages) */
.nskc-loc-map { margin: 40px 0; }
.nskc-loc-map__note {
    background: #fffbe8;
    border: 1px solid #e8d49a;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #6b5d33;
    margin-bottom: 16px;
}
.nskc-loc-map__frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--nskc-border);
    box-shadow: var(--nskc-shadow-1);
}
.nskc-loc-map__actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.nskc-loc-map__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nskc-navy-800);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: background .18s ease;
}
.nskc-loc-map__btn:hover { background: var(--nskc-navy-700); }
.nskc-loc-map__btn--ghost {
    background: #fff;
    color: var(--nskc-navy-800) !important;
    border: 1px solid var(--nskc-border-strong);
}
.nskc-loc-map__btn--ghost:hover { background: var(--nskc-surface); }

/* 51. MOBILE HERO SLIDER — full image, clean text placement */
@media (max-width: 991px) {
    .hero-slider-wrap .creative-hero {
        min-height: 420px;
        background-position: center right -60px !important;
    }
    .hero-slider-wrap .creative-hero-text {
        padding-top: 40px;
        max-width: 78%;
    }
    .hero-slider-wrap .creative-hero h1,
    .hero-slider-wrap .creative-hero h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
        text-shadow: 0 2px 10px rgba(11,26,48,.55);
    }
}
@media (max-width: 575px) {
    .hero-slider-wrap .creative-hero { min-height: 380px; }
    .hero-slider-wrap .creative-hero h1,
    .hero-slider-wrap .creative-hero h2 { font-size: 22px !important; }
}

/* ===========================================================
   FIRE ROUND 2 (Aug 2026) — scoped fixes only
   =========================================================== */

/* 52. INNER-PAGE PROSE — coloured headings instead of flat grey */
.nskc-prose h2 {
    font-family: "Merriweather", serif;
    color: var(--nskc-navy-800) !important;
    font-weight: 700;
    padding-left: 14px;
    border-left: 4px solid var(--nskc-gold);
    margin-top: 36px;
    margin-bottom: 14px;
    line-height: 1.3;
}
.nskc-prose h3 {
    font-family: "Merriweather", serif;
    color: var(--nskc-navy-700) !important;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
}
.nskc-prose h4 { color: var(--nskc-navy-700) !important; }
.nskc-prose > h2:first-child { margin-top: 0; }

/* 53. HERO ARROWS — hard override so the theme can't win */
.hero-slider-wrap .hero-nav-prev,
.hero-slider-wrap .hero-nav-next,
div.hero-nav-prev, div.hero-nav-next {
    width: 54px !important;
    height: 54px !important;
    background: var(--nskc-navy-800) !important;
    border: 2px solid rgba(232,179,61,.75) !important;
    border-radius: 50% !important;
    color: var(--nskc-gold) !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.35) !important;
}
.hero-slider-wrap .hero-nav-prev .nav-button-icon::after,
.hero-slider-wrap .hero-nav-next .nav-button-icon::after {
    font-size: 30px !important;
    font-weight: 700;
    color: var(--nskc-gold) !important;
    line-height: 1 !important;
    display: block;
    margin-top: -3px;
}
.hero-slider-wrap .hero-nav-prev:hover,
.hero-slider-wrap .hero-nav-next:hover { background: var(--nskc-gold) !important; }
.hero-slider-wrap .hero-nav-prev:hover .nav-button-icon::after,
.hero-slider-wrap .hero-nav-next:hover .nav-button-icon::after { color: var(--nskc-navy-900) !important; }
/* Keep the deliberate mobile behavior: arrows stay hidden on phones */
@media (max-width: 767px) {
    .hero-slider-wrap .hero-nav-prev,
    .hero-slider-wrap .hero-nav-next,
    div.hero-nav-prev, div.hero-nav-next { display: none !important; }
}

/* 54. STATS BAND v2 — card layout replaces the flat centered row */
.nskc-stats-v2 { padding: 64px 0; }
.nskc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.nskc-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}
.nskc-stat-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--nskc-gold);
    opacity: .85;
}
.nskc-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(232,179,61,.45);
}
.nskc-stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(232,179,61,.14);
    border: 1px solid rgba(232,179,61,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nskc-stat-icon i { font-size: 22px; color: var(--nskc-gold); }
.nskc-stat-body { display: flex; flex-direction: column; }
.nskc-stat-body .nskc-counter-value {
    justify-content: flex-start;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
}
.nskc-stat-body .nskc-counter-num { font-size: 34px; font-weight: 800; color: #fff; }
.nskc-stat-label {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    margin-top: 4px;
}
@media (max-width: 991px) {
    .nskc-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .nskc-stat-card { padding: 18px 16px; }
    .nskc-stat-body .nskc-counter-value,
    .nskc-stat-body .nskc-counter-num { font-size: 28px; }
}
@media (max-width: 420px) {
    .nskc-stats-grid { grid-template-columns: 1fr; }
}

/* 55. FOOTER — wider contact column so the email never clips.
   Desktop only: must NOT override the tablet/mobile stacking. */
@media (min-width: 992px) {
    .nskc-footer-grid { grid-template-columns: 1.25fr 1fr 0.95fr 1.25fr; }
}
.footer-widget a[href^="mailto:"] { font-size: 13.5px; }

/* ---------------------------------------------------------
   34. BREADCRUMB on inner pages
   --------------------------------------------------------- */
.breadcrumb-area,
.nskc-breadcrumb { background: rgba(0,0,0,.15); padding: 8px 0; }
.breadcrumb-area a,
.nskc-breadcrumb a { color: rgba(255,255,255,.8); font-size: 13px; }
.breadcrumb-area span,
.nskc-breadcrumb span { color: rgba(255,255,255,.55); font-size: 13px; }

/* =========================================================
   FIRE ROUND 3 (Aug 2026) — scoped fixes only
   ========================================================= */

/* ---------------------------------------------------------
   56. DARK SECTIONS — headings must be white; no gold bar.
       Belt-and-suspenders: inline style on cta.php h2 is
       the primary fix; this catches any other dark block.
   --------------------------------------------------------- */
.nskc-on-dark h2,
.nskc-on-dark h3,
.nskc-on-dark h4,
.nskc-cta h2,
.nskc-cta h3,
.nskc-prose .nskc-on-dark h2,
.nskc-prose .nskc-on-dark h3,
.nskc-prose .nskc-cta h2,
.nskc-prose .nskc-cta h3 {
    color: #fff !important;
    border-left: 0 !important;
    padding-left: 0 !important;
}

/* ---------------------------------------------------------
   57. BREADCRUMB — now lives inside the page hero, on the
       banner image. Kill the old light strip styling.
   --------------------------------------------------------- */
.nskc-page-hero .nskc-breadcrumb {
    background: transparent !important;
    border: 0 !important;
    padding: 0 0 12px !important;
    font-size: 13px;
}
.nskc-page-hero .nskc-breadcrumb .container { padding: 0; }
.nskc-page-hero .nskc-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nskc-page-hero .nskc-breadcrumb li { color: rgba(255,255,255,.92); }
.nskc-page-hero .nskc-breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255,255,255,.45);
}
.nskc-page-hero .nskc-breadcrumb a {
    color: rgba(255,255,255,.85) !important;
    text-decoration: none;
}
.nskc-page-hero .nskc-breadcrumb a:hover { color: var(--nskc-gold) !important; text-decoration: none; }
.nskc-page-hero .nskc-breadcrumb li[aria-current] { color: var(--nskc-gold) !important; }
/* Safety: any breadcrumb strip left outside a hero gets legible text */
.nskc-breadcrumb:not(.nskc-page-hero .nskc-breadcrumb) a { color: var(--nskc-navy-700); }

/* ---------------------------------------------------------
   58. MOBILE/TABLET HAMBURGER — compact 26px icon, centred
       in a 44px tap target, balanced 7px line spacing.
   --------------------------------------------------------- */
@media (max-width: 991px) {
    .mobile-navigation-icon,
    .header-area .mobile-navigation-icon {
        position: relative !important; /* anchor for the absolutely-positioned bars (§46 set static) */
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px;
    }
    .mobile-navigation-icon i,
    .mobile-navigation-icon i::before,
    .mobile-navigation-icon i::after {
        height: 2px !important;
        border-radius: 2px;
        background-color: var(--nskc-gold) !important;
    }
    .mobile-navigation-icon i {
        width: 26px !important;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }
    .mobile-navigation-icon i::before { width: 26px !important; bottom: 7px !important; left: 0 !important; }
    .mobile-navigation-icon i::after  { width: 26px !important; bottom: -7px !important; left: 0 !important; }
    .mobile-navigation-icon:hover i::before,
    .mobile-navigation-icon:hover i::after { width: 26px !important; }
}

/* ---------------------------------------------------------
   59. MOBILE/TABLET HERO SLIDER — image right-aligned and
       visible; scrim strong on the left where the text sits,
       fading out to the right so the photo shows through.
   --------------------------------------------------------- */
@media (max-width: 991px) {
    .hero-slider-wrap .creative-hero {
        background-position: right center !important; /* pin subject to the right edge */
    }
    .hero-slider-wrap .creative-hero::before {
        background: linear-gradient(
            90deg,
            rgba(11, 26, 48, .96) 0%,
            rgba(11, 26, 48, .88) 46%,
            rgba(11, 26, 48, .55) 72%,
            rgba(11, 26, 48, .18) 100%) !important;
    }
    .hero-slider-wrap .creative-hero-text {
        max-width: 82%;
        text-align: left;
    }
}
@media (max-width: 575px) {
    .hero-slider-wrap .creative-hero-text { max-width: 88%; }
}

/* ---------------------------------------------------------
   60. FOOTER (blue section) — tidy alignment
       Widgets: consistent left alignment & even spacing.
       Bottom bar: copyright + disclaimer centred as a unit.
   --------------------------------------------------------- */
.footer-area .footer-widget__title { margin-top: 0; }
.footer-area .footer-widget { text-align: left; }
.footer-area .footer-widget__item-list > li { line-height: 1.55; }

.footer-copyright-area { padding: 18px 0 14px; }
.footer-copyright-area .copyright-text {
    text-align: center;
    margin: 0;
}
.footer-copyright-area .col-md-7 { flex: 0 0 100%; max-width: 100%; }
.footer-copyright-area .copyright-text.nskc-disclaimer {
    text-align: center;
    max-width: 860px;
    margin: 8px auto 0;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .nskc-footer-grid { gap: 28px; }
    .footer-area .footer-widget__title { margin-bottom: 10px; }
    .footer-copyright-area .copyright-text { font-size: 12.5px; }
    .footer-copyright-area .copyright-text.nskc-disclaimer { font-size: 11.5px; padding: 0 8px; }
}

/* ---------------------------------------------------------
   61. MOBILE HERO — doctors visible. Both banner photos have
       the doctor at ~55–90% of the image width, so on narrow
       cover-crops we anchor at 70% (not hard right) and swap
       the heavy left scrim for a vertical one: dark behind
       the top text zone, clear over the doctor below.
   --------------------------------------------------------- */
@media (max-width: 991px) {
    .hero-slider-wrap .creative-hero {
        min-height: 480px;
        align-items: flex-start !important;
        background-position: 70% center !important;
    }
    .hero-slider-wrap .creative-hero::before {
        background: linear-gradient(
            180deg,
            rgba(11, 26, 48, .95) 0%,
            rgba(11, 26, 48, .85) 34%,
            rgba(11, 26, 48, .35) 62%,
            rgba(11, 26, 48, .08) 100%) !important;
    }
    .hero-slider-wrap .creative-hero-text {
        max-width: 100%;
        padding-top: 24px;
        text-align: left;
    }
}
@media (max-width: 575px) {
    .hero-slider-wrap .creative-hero { min-height: 440px; }
}

/* ---------------------------------------------------------
   62. MOBILE TOP BAR — phone numbers above the header
   --------------------------------------------------------- */
.nskc-mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--nskc-navy-900);
    padding: 7px 12px;
    position: relative;
    z-index: 5;
}
.nskc-mobile-topbar a {
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}
.nskc-mobile-topbar a i { color: var(--nskc-gold); margin-right: 4px; }
.nskc-mobile-topbar__sep { color: rgba(255,255,255,.35); font-size: 12px; }
@media (min-width: 992px) { .nskc-mobile-topbar { display: none !important; } }

/* ---------------------------------------------------------
   63. FOOTER STACKING + centred bottom strip (hard rules)
   --------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
    .nskc-footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 767px) {
    .nskc-footer-grid { grid-template-columns: 1fr !important; }
}
.footer-copyright-area .copyright-text,
.footer-copyright-area .copyright-text.nskc-disclaimer {
    text-align: center !important;
    white-space: normal !important;
}
