/* =========================================================
   PREMIUM CINEMATIC HERO SLIDER
   Unique namespace: nx-hero-*
   Brand colors: #FF5400 + #008000
========================================================= */

.nx-hero-slider {
    --nx-orange: #FF5400;
    --nx-green: #008000;
    --nx-orange-soft: rgba(255, 84, 0, 0.08);
    --nx-green-soft: rgba(0, 128, 0, 0.05);

    position: relative;
    width: 100%;
    overflow: hidden;
    background: #101010;
}

/* Main carousel */
.nx-hero-slider .carousel,
.nx-hero-slider .carousel-inner,
.nx-hero-slider .carousel-item {
    width: 100%;
    height: 720px;
    min-height: 600px;
}

/* Background image */
.nx-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #111;
}

.nx-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition:
        transform 8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Slow cinematic zoom */
.nx-hero-slider .carousel-item.active .nx-hero-media img {
    transform: scale(1);
}

/* Dark cinematic overlay */
.nx-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.60) 38%,
            rgba(0, 0, 0, 0.22) 75%,
            rgba(0, 0, 0, 0.50) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.05) 45%,
            rgba(0, 0, 0, 0.70) 100%);
}

/* Subtle orange and green atmosphere */
.nx-hero-glow {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.7;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.nx-glow-orange {
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: 70px;
    background: var(--nx-orange-soft);
}

.nx-glow-green {
    width: 220px;
    height: 220px;
    right: 5%;
    top: 10%;
    background: var(--nx-green-soft);
}

/* Content positioning */
.nx-hero-container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Main content */
.nx-hero-content {
    max-width: 780px;
    color: #fff;
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 1.4s ease 0.5s,
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.nx-hero-slider .carousel-item.active .nx-hero-content {
    opacity: 1;
    transform: translateY(0);
}

.nx-content-right {
    margin-left: auto;
}

.nx-content-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Small label */
.nx-hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nx-content-center .nx-hero-kicker {
    justify-content: center;
}

.nx-kicker-line {
    width: 35px;
    height: 2px;
    background: var(--nx-orange);
    box-shadow: 0 0 12px rgba(255, 84, 0, 0.4);
}

/* Main title */
.nx-hero-title {
    margin: 0;

    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: clamp(42px, 5.2vw, 78px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #fff;
}

.nx-hero-title span,
.nx-hero-title strong {
    display: block;
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 1.2s ease,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.nx-hero-title span:nth-child(1) {
    transition-delay: 0.65s;
}

.nx-hero-title strong {
    transition-delay: 0.85s;
}

.nx-hero-title span:nth-child(3) {
    transition-delay: 1.05s;
}

.nx-hero-slider .carousel-item.active .nx-hero-title span,
.nx-hero-slider .carousel-item.active .nx-hero-title strong {
    opacity: 1;
    transform: translateY(0);
}

/* Exact orange brand color */
.nx-hero-title strong {
    color: #FF5400;
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(255, 84, 0, 0.12);
}

/* Description */
.nx-hero-description {
    max-width: 520px;
    margin: 28px 0 35px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.2px;

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 1.2s ease 1.25s,
        transform 1.2s ease 1.25s;
}

.nx-content-center .nx-hero-description {
    margin-left: auto;
    margin-right: auto;
}

.nx-hero-slider .carousel-item.active .nx-hero-description {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.nx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 1.2s ease 1.45s,
        transform 1.2s ease 1.45s;
}

.nx-content-center .nx-hero-actions {
    justify-content: center;
}

.nx-hero-slider .carousel-item.active .nx-hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.nx-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    min-width: 155px;
    padding: 17px 22px;

    border-radius: 3px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    text-decoration: none !important;
    overflow: hidden;

    transition: all 0.35s ease;
}

.nx-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nx-btn:hover i {
    transform: translateX(5px);
}

/* Orange button */
.nx-btn-primary {
    color: #fff !important;
    background: #FF5400;
    border: 1px solid #FF5400;

    box-shadow: 0 12px 30px rgba(255, 84, 0, 0.12);
}

.nx-btn-primary:hover {
    color: #fff !important;
    background: #e94b00;
    border-color: #e94b00;

    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 84, 0, 0.20);
}

/* Glass outline button */
.nx-btn-outline {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(10px);
}

.nx-btn-outline:hover {
    color: #fff !important;
    background: rgba(0, 128, 0, 0.18);
    border-color: #008000;

    transform: translateY(-3px);
}

/* Premium arrows */
.nx-hero-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-top: -29px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: #fff !important;
    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(12px);

    font-size: 22px;
    text-decoration: none !important;
    opacity: 0.65;

    transition: all 0.35s ease;
}

.nx-hero-arrow:hover {
    color: #fff !important;
    background: #FF5400;
    border-color: #FF5400;
    opacity: 1;
    transform: scale(1.08);
}

.nx-arrow-prev {
    left: 30px;
}

.nx-arrow-next {
    right: 30px;
}

/* Number indicators */
.nx-hero-progress {
    position: absolute;
    z-index: 20;

    left: 50%;
    bottom: 38px;

    display: flex;
    align-items: center;
    gap: 22px;

    transform: translateX(-50%);
}

.nx-hero-progress button {
    position: relative;

    width: 48px;
    height: 35px;
    padding: 0;

    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, 0.4);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    cursor: pointer;
    transition: color 0.3s ease;
}

.nx-hero-progress button::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #FF5400;

    transition: width 0.4s ease;
}

.nx-hero-progress button.active {
    color: #fff;
}

.nx-hero-progress button.active::after {
    width: 100%;
}

/* Bottom line */
.nx-hero-bottom {
    position: absolute;
    z-index: 6;

    left: 35px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.nx-bottom-line {
    width: 45px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.nx-hero-bottom small {
    display: none;
    margin-left: 10px;

    font-size: 9px;
    letter-spacing: 1px;
}

.nx-hero-bottom small i {
    margin-left: 6px;
    color: #FF5400;
}

/* Brand mark */
.nx-hero-brand {
    position: absolute;
    z-index: 6;

    right: 35px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 9px;
    line-height: 1.6;
    letter-spacing: 2px;
}

.nx-hero-brand b {
    color: rgba(255, 255, 255, 0.85);
}

.nx-brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #FF5400;
    box-shadow: 0 0 15px rgba(255, 84, 0, 0.7);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .nx-hero-slider .carousel,
    .nx-hero-slider .carousel-inner,
    .nx-hero-slider .carousel-item {
        height: 650px;
        min-height: 580px;
    }

    .nx-hero-title {
        font-size: clamp(40px, 5.5vw, 65px);
    }

    .nx-hero-arrow {
        width: 48px;
        height: 48px;
        margin-top: -24px;
    }

    .nx-arrow-prev {
        left: 15px;
    }

    .nx-arrow-next {
        right: 15px;
    }

}

@media (max-width: 991px) {

    .nx-hero-slider .carousel,
    .nx-hero-slider .carousel-inner,
    .nx-hero-slider .carousel-item {
        height: 600px;
        min-height: 560px;
    }

    .nx-hero-title {
        font-size: clamp(38px, 6vw, 58px);
        letter-spacing: -1.5px;
    }

    .nx-hero-description {
        font-size: 15px;
        max-width: 450px;
    }

    .nx-hero-brand {
        display: none;
    }

    .nx-hero-bottom {
        left: 20px;
        bottom: 25px;
    }

    .nx-hero-progress {
        bottom: 25px;
    }

}

@media (max-width: 767px) {

    .nx-hero-slider .carousel,
    .nx-hero-slider .carousel-inner,
    .nx-hero-slider .carousel-item {
        height: 680px;
        min-height: 620px;
    }

    .nx-hero-shade {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(0, 0, 0, 0.50) 40%,
                rgba(0, 0, 0, 0.88) 100%),
            linear-gradient(90deg,
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.35));
    }

    .nx-hero-container {
        padding-left: 25px;
        padding-right: 25px;
        align-items: flex-end;
        padding-bottom: 120px;
    }

    .nx-hero-content,
    .nx-content-right,
    .nx-content-center {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .nx-hero-kicker {
        font-size: 9px;
        letter-spacing: 2.5px;
        margin-bottom: 18px;
    }

    .nx-content-center .nx-hero-kicker {
        justify-content: flex-start;
    }

    .nx-hero-title {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .nx-hero-description {
        margin: 22px 0 28px;
        font-size: 14px;
        line-height: 1.7;
        max-width: 360px;
    }

    .nx-hero-actions {
        gap: 10px;
    }

    .nx-btn {
        min-width: 145px;
        padding: 15px 17px;
        font-size: 10px;
        gap: 15px;
    }

    .nx-hero-arrow {
        top: 42%;
        width: 40px;
        height: 40px;
        margin-top: -20px;
        font-size: 18px;
    }

    .nx-arrow-prev {
        left: 12px;
    }

    .nx-arrow-next {
        right: 12px;
    }

    .nx-hero-progress {
        left: 25px;
        bottom: 30px;
        transform: none;
        gap: 15px;
    }

    .nx-hero-progress button {
        width: 35px;
        font-size: 10px;
    }

    .nx-hero-bottom {
        display: none;
    }

}

@media (max-width: 420px) {

    .nx-hero-slider .carousel,
    .nx-hero-slider .carousel-inner,
    .nx-hero-slider .carousel-item {
        height: 650px;
        min-height: 600px;
    }

    .nx-hero-container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 105px;
    }

    .nx-hero-title {
        font-size: 32px;
    }

    .nx-hero-description {
        font-size: 13px;
    }

    .nx-btn {
        min-width: 135px;
        padding: 14px 13px;
        font-size: 9px;
        gap: 10px;
    }

    .nx-hero-progress {
        left: 20px;
    }

}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {

    .nx-hero-media img,
    .nx-hero-content,
    .nx-hero-title span,
    .nx-hero-title strong,
    .nx-hero-description,
    .nx-hero-actions {
        transition: none !important;
        transform: none !important;
    }

    .nx-hero-content,
    .nx-hero-title span,
    .nx-hero-title strong,
    .nx-hero-description,
    .nx-hero-actions {
        opacity: 1 !important;
    }

}

/* Supporting headline text */
.nx-hero-title .nx-title-green {
    color: #008000;
    text-shadow: 0 4px 30px rgba(0, 128, 0, 0.10);
}

/* Main headline emphasis */
.nx-hero-title strong {
    color: #FF5400;
}

/* Keep the final line elegant */
.nx-hero-title span:not(.nx-title-green) {
    color: #ffffff;
}/* =========================================================
   PREMIUM ORANGE NAVIGATION
   Default  : #FF5400
   Hover    : #008000
   Namespace: nx-
========================================================= */

.nx-premium-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ---------------------------------------------------------
   ALL NAVIGATION BUTTONS
--------------------------------------------------------- */

.nx-premium-nav .nx-nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 17px !important;

    color: #fff !important;
    background: #FF5400;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;

    text-decoration: none !important;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 6px 18px rgba(255,84,0,0.20);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* ---------------------------------------------------------
   ICONS
--------------------------------------------------------- */

.nx-premium-nav .nx-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    color: #fff;

    font-size: 13px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.nx-premium-nav .nx-nav-icon i {
    line-height: 1;
}

/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.nx-premium-nav .nx-nav-link:hover {
    color: #fff !important;
    background: #008000;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,128,0,0.28);
}

.nx-premium-nav .nx-nav-link:hover .nx-nav-icon {
    color: #fff;

    transform: scale(1.12);
}

/* ---------------------------------------------------------
   ACTIVE PAGE
--------------------------------------------------------- */

.nx-premium-nav .nx-nav-link.active,
.nx-premium-nav .nx-nav-link[aria-current="page"] {
    color: #fff !important;
    background: #008000;

    box-shadow:
        0 8px 22px rgba(0,128,0,0.24);
}

/* ---------------------------------------------------------
   PREMIUM LIGHT EFFECT
--------------------------------------------------------- */

.nx-premium-nav .nx-nav-link::before {
    content: "";

    position: absolute;
    top: 1px;
    left: 12%;
    right: 12%;

    height: 1px;

    background: rgba(255,255,255,0.35);

    border-radius: 50%;

    opacity: 0.8;

    pointer-events: none;
}

/* ---------------------------------------------------------
   REMOVE SPECIAL CONTACT STYLING
   All buttons now look identical
--------------------------------------------------------- */

.nx-premium-nav .nx-contact-link {
    margin-left: 0 !important;

    color: #fff !important;
    background: #FF5400;

    border-radius: 30px;
}

.nx-premium-nav .nx-contact-link:hover {
    color: #fff !important;
    background: #008000;
}

/* ---------------------------------------------------------
   LARGE DESKTOP
--------------------------------------------------------- */

@media (min-width: 1200px) {

    .nx-premium-nav {
        gap: 8px;
    }

    .nx-premium-nav .nx-nav-link {
        padding: 11px 16px !important;
    }
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1199.98px) {

    .nx-premium-nav {
        gap: 5px;
    }

    .nx-premium-nav .nx-nav-link {
        padding: 10px 13px !important;

        font-size: 11px;
    }
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .nx-premium-nav {
        display: block;

        width: 100%;

        padding: 10px 0;
    }

    .nx-premium-nav .nav-item {
        width: 100%;

        margin-bottom: 7px;
    }

    .nx-premium-nav .nx-nav-link {
        display: flex;

        width: 100%;

        min-height: 44px;

        padding: 11px 18px !important;

        justify-content: flex-start;

        border-radius: 10px;

        font-size: 12px;

        transform: none !important;
    }

    .nx-premium-nav .nx-nav-link:hover {
        transform: translateX(3px) !important;
    }

    .nx-premium-nav .nx-nav-icon {
        width: 20px;
    }
}

/* =====================================================
   PREMIUM MOVE TYPES SECTION
   Unique namespace: nx-move-
   Brand colors:
   Orange  #FF5400
   Green   #008000
   Navy    #091426
===================================================== */

.nx-move-section {
    position: relative;

    width: 100%;
    padding: 35px 0 20px;

    overflow: hidden;
}

/* -----------------------------------------------------
   SECTION HEADING
----------------------------------------------------- */

.nx-move-heading {
    max-width: 650px;
    margin: 0 auto 35px;

    text-align: center;
}

.nx-move-kicker {
    display: inline-block;

    margin-bottom: 10px;

    color: #FF5400;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nx-move-heading h2 {
    margin: 0 0 12px;

    color: #091426;

    font-size: clamp(27px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
}

.nx-move-heading h2 strong {
    color: #FF5400;
    font-weight: 800;
}

.nx-move-heading p {
    max-width: 550px;
    margin: 0 auto;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.8;
}

/* -----------------------------------------------------
   CARD GRID
----------------------------------------------------- */

.nx-move-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

/* -----------------------------------------------------
   PREMIUM CARD
----------------------------------------------------- */

.nx-move-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 355px;

    padding: 30px 25px 25px;

    background: #fff;

    border: 1px solid rgba(9, 20, 38, 0.08);
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(9, 20, 38, 0.06);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Decorative top line */
.nx-move-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #FF5400;

    transition: background 0.4s ease;
}

/* Decorative corner */
.nx-move-card::after {
    content: "";

    position: absolute;
    top: -55px;
    right: -55px;

    width: 130px;
    height: 130px;

    background: rgba(255, 84, 0, 0.06);

    border-radius: 50%;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

/* -----------------------------------------------------
   CARD HOVER
----------------------------------------------------- */

.nx-move-card:hover {
    background: #091426;

    border-color: #091426;

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(9, 20, 38, 0.18);
}

.nx-move-card:hover::before {
    background: #008000;
}

.nx-move-card:hover::after {
    background: rgba(0, 128, 0, 0.12);

    transform: scale(1.3);
}

/* -----------------------------------------------------
   ICON
----------------------------------------------------- */

.nx-move-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-bottom: 25px;

    color: #fff;
    background: #FF5400;

    border-radius: 15px;

    font-size: 25px;

    box-shadow:
        0 8px 20px rgba(255, 84, 0, 0.22);

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.nx-move-card:hover .nx-move-icon {
    background: #008000;

    transform: rotate(-5deg) scale(1.08);

    box-shadow:
        0 8px 20px rgba(0, 128, 0, 0.25);
}

/* -----------------------------------------------------
   CARD NUMBER
----------------------------------------------------- */

.nx-move-number {
    position: absolute;
    top: 28px;
    right: 24px;

    color: rgba(9, 20, 38, 0.12);

    font-size: 30px;
    font-weight: 900;
    line-height: 1;

    transition: color 0.4s ease;
}

.nx-move-card:hover .nx-move-number {
    color: rgba(255, 255, 255, 0.12);
}

/* -----------------------------------------------------
   CARD CONTENT
----------------------------------------------------- */

.nx-move-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: #091426;

    font-size: 20px;
    font-weight: 800;

    transition: color 0.4s ease;
}

.nx-move-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 25px;

    color: #6b7280;

    font-size: 13px;
    line-height: 1.8;

    transition: color 0.4s ease;
}

.nx-move-card:hover h3 {
    color: #fff;
}

.nx-move-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}

/* -----------------------------------------------------
   BUTTON
----------------------------------------------------- */

.nx-move-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    width: 100%;

    margin-top: auto;
    padding: 12px 15px;

    color: #fff !important;
    background: #FF5400;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    text-decoration: none !important;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.nx-move-button i {
    font-size: 12px;

    transition: transform 0.35s ease;
}

.nx-move-button:hover {
    color: #fff !important;
    background: #008000;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 128, 0, 0.22);
}

.nx-move-button:hover i {
    transform: translateX(5px);
}

.nx-inner-content {
    padding-top: 55px;
}
/* -----------------------------------------------------
   TABLET
----------------------------------------------------- */

@media (max-width: 1199.98px) {

    .nx-move-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nx-move-card {
        min-height: 330px;
    }
}

/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */

@media (max-width: 575.98px) {

    .nx-move-section {
        padding: 25px 0 15px;
    }

    .nx-move-heading {
        margin-bottom: 25px;
    }

    .nx-move-heading h2 {
        font-size: 28px;
    }

    .nx-move-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .nx-move-card {
        min-height: 0;

        padding: 25px 22px 22px;
    }

    .nx-move-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 20px;

        font-size: 22px;
    }

    .nx-move-card h3 {
        font-size: 19px;
    }

}


/* =====================================================
   PREMIUM MOVE TYPES SECTION
   Unique namespace: nx-move-
   Brand colors:
   Orange  #FF5400
   Green   #008000
   Navy    #091426
===================================================== */

.nx-move-section {
    position: relative;

    width: 100%;
    padding: 35px 0 20px;

    overflow: hidden;
}

/* -----------------------------------------------------
   SECTION HEADING
----------------------------------------------------- */

.nx-move-heading {
    max-width: 650px;
    margin: 0 auto 35px;

    text-align: center;
}

.nx-move-kicker {
    display: inline-block;

    margin-bottom: 10px;

    color: #FF5400;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nx-move-heading h2 {
    margin: 0 0 12px;

    color: #091426;

    font-size: clamp(27px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
}

.nx-move-heading h2 strong {
    color: #FF5400;
    font-weight: 800;
}

.nx-move-heading p {
    max-width: 550px;
    margin: 0 auto;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.8;
}

/* -----------------------------------------------------
   CARD GRID
----------------------------------------------------- */

.nx-move-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

/* -----------------------------------------------------
   PREMIUM CARD
----------------------------------------------------- */

.nx-move-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 355px;

    padding: 30px 25px 25px;

    background: #fff;

    border: 1px solid rgba(9, 20, 38, 0.08);
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(9, 20, 38, 0.06);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Decorative top line */
.nx-move-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #FF5400;

    transition: background 0.4s ease;
}

/* Decorative corner */
.nx-move-card::after {
    content: "";

    position: absolute;
    top: -55px;
    right: -55px;

    width: 130px;
    height: 130px;

    background: rgba(255, 84, 0, 0.06);

    border-radius: 50%;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

/* -----------------------------------------------------
   CARD HOVER
----------------------------------------------------- */

.nx-move-card:hover {
    background: #091426;

    border-color: #091426;

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(9, 20, 38, 0.18);
}

.nx-move-card:hover::before {
    background: #008000;
}

.nx-move-card:hover::after {
    background: rgba(0, 128, 0, 0.12);

    transform: scale(1.3);
}

/* -----------------------------------------------------
   ICON
----------------------------------------------------- */

.nx-move-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-bottom: 25px;

    color: #fff;
    background: #FF5400;

    border-radius: 15px;

    font-size: 25px;

    box-shadow:
        0 8px 20px rgba(255, 84, 0, 0.22);

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.nx-move-card:hover .nx-move-icon {
    background: #008000;

    transform: rotate(-5deg) scale(1.08);

    box-shadow:
        0 8px 20px rgba(0, 128, 0, 0.25);
}

/* -----------------------------------------------------
   CARD NUMBER
----------------------------------------------------- */

.nx-move-number {
    position: absolute;
    top: 28px;
    right: 24px;

    color: rgba(9, 20, 38, 0.12);

    font-size: 30px;
    font-weight: 900;
    line-height: 1;

    transition: color 0.4s ease;
}

.nx-move-card:hover .nx-move-number {
    color: rgba(255, 255, 255, 0.12);
}

/* -----------------------------------------------------
   CARD CONTENT
----------------------------------------------------- */

.nx-move-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: #091426;

    font-size: 20px;
    font-weight: 800;

    transition: color 0.4s ease;
}

.nx-move-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 25px;

    color: #6b7280;

    font-size: 13px;
    line-height: 1.8;

    transition: color 0.4s ease;
}

.nx-move-card:hover h3 {
    color: #fff;
}

.nx-move-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}

/* -----------------------------------------------------
   BUTTON
----------------------------------------------------- */

.nx-move-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    width: 100%;

    margin-top: auto;
    padding: 12px 15px;

    color: #fff !important;
    background: #FF5400;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    text-decoration: none !important;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.nx-move-button i {
    font-size: 12px;

    transition: transform 0.35s ease;
}

.nx-move-button:hover {
    color: #fff !important;
    background: #008000;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 128, 0, 0.22);
}

.nx-move-button:hover i {
    transform: translateX(5px);
}

/* -----------------------------------------------------
   TABLET
----------------------------------------------------- */

@media (max-width: 1199.98px) {

    .nx-move-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nx-move-card {
        min-height: 330px;
    }
}

/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */

@media (max-width: 575.98px) {

    .nx-move-section {
        padding: 25px 0 15px;
    }

    .nx-move-heading {
        margin-bottom: 25px;
    }

    .nx-move-heading h2 {
        font-size: 28px;
    }

    .nx-move-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .nx-move-card {
        min-height: 0;

        padding: 25px 22px 22px;
    }

    .nx-move-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 20px;

        font-size: 22px;
    }

    .nx-move-card h3 {
        font-size: 19px;
    }

}

/* =========================================================
   NX PREMIUM MOVING QUOTE FORM
   Brand:
   Orange: #FF5400
   Green:  #008000
   Navy:   #091426
========================================================= */

.nx-quote-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(9, 20, 38, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(9, 20, 38, 0.13);
}


/* TOP BRAND LINE */

.nx-quote-form::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(
        90deg,
        #FF5400 0%,
        #FF5400 50%,
        #008000 50%,
        #008000 100%
    );
}


/* =========================================================
   HEADER
========================================================= */

.nx-quote-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 35px;
    background: #ffffff;
    border-bottom: 1px solid rgba(9, 20, 38, 0.07);
}

.nx-quote-header-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #FF5400;
    color: #ffffff;

    font-size: 23px;

    box-shadow: 0 12px 30px rgba(255, 84, 0, 0.25);
}

.nx-quote-kicker {
    display: block;
    margin-bottom: 5px;

    color: #008000;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.nx-quote-header-content h3 {
    margin: 0 0 6px;

    color: #091426;

    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
}

.nx-quote-header-content h3 strong {
    color: #FF5400;
}

.nx-quote-header-content p {
    margin: 0;

    color: #707985;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   BODY
========================================================= */

.nx-quote-body {
    padding: 35px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.nx-quote-section {
    margin-bottom: 24px;
}

.nx-quote-section-space {
    margin-top: 38px;
}

.nx-quote-section-title {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 14px;

    border-bottom: 1px solid #e9edf1;
}

.nx-quote-section-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 84, 0, 0.09);
    color: #FF5400;

    font-size: 16px;
}

.nx-quote-section-title span:not(.nx-quote-section-icon) {
    display: block;

    margin-bottom: 3px;

    color: #008000;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.nx-quote-section-title h4 {
    margin: 0;

    color: #091426;

    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   GRID
========================================================= */

.nx-quote-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px 20px;
}

.nx-quote-full {
    grid-column: 1 / -1;
}


/* =========================================================
   FORM FIELD
========================================================= */

.nx-quote-field {
    min-width: 0;
}

.nx-quote-field label {
    display: block;

    margin: 0 0 8px;

    color: #091426;

    font-size: 12px;
    font-weight: 800;
}

.nx-quote-field label i {
    margin-right: 6px;

    color: #FF5400;

    font-size: 11px;
}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.nx-quote-input {
    position: relative;
    width: 100%;
}


/* =========================================================
   INPUT / SELECT
========================================================= */

.nx-quote-input input,
.nx-quote-input select {
    width: 100%;
    height: 55px;

    padding: 0 17px 0 48px;

    border: 1px solid #e1e6eb;
    border-radius: 12px;

    background: #f8fafb;

    color: #091426;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.nx-quote-input input::placeholder {
    color: #9ca4ad;
    font-weight: 400;
}


/* =========================================================
   INPUT ICON
========================================================= */

.nx-quote-input-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #FF5400;

    font-size: 14px;

    pointer-events: none;

    transition: color 0.25s ease;
}


/* =========================================================
   SELECT
========================================================= */

.nx-quote-select-wrap select {
    appearance: none;
    -webkit-appearance: none;

    padding-right: 42px;

    cursor: pointer;
}

.nx-quote-select-wrap::after {
    content: "\f107";

    position: absolute;

    right: 17px;
    top: 50%;

    transform: translateY(-50%);

    font-family: FontAwesome;

    color: #091426;

    font-size: 13px;

    pointer-events: none;
}


/* =========================================================
   FOCUS
========================================================= */

.nx-quote-input input:focus,
.nx-quote-input select:focus {
    background: #ffffff;

    border-color: #FF5400;

    box-shadow:
        0 0 0 3px rgba(255, 84, 0, 0.09),
        0 8px 22px rgba(9, 20, 38, 0.06);

    transform: translateY(-1px);
}

.nx-quote-input:focus-within .nx-quote-input-icon {
    color: #008000;
}


/* =========================================================
   HELP TEXT
========================================================= */

.nx-quote-help {
    display: block;

    margin-top: 7px;
    padding-left: 2px;

    color: #89919b;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   SUBMIT
========================================================= */

.nx-quote-submit {
    margin-top: 40px;
    padding-top: 28px;

    border-top: 1px solid #e9edf1;

    text-align: center;
}


/* =========================================================
   BUTTON
========================================================= */

.nx-quote-button {
    width: 100%;
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 7px 7px 7px 25px;

    border: 0;
    border-radius: 14px;

    background: #FF5400;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.3px;

    cursor: pointer;

    box-shadow: 0 14px 30px rgba(255, 84, 0, 0.24);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.nx-quote-button:hover {
    background: #008000;

    transform: translateY(-3px);

    box-shadow: 0 16px 34px rgba(0, 128, 0, 0.25);
}

.nx-quote-button:active {
    transform: translateY(-1px);
}


/* =========================================================
   BUTTON ICON
========================================================= */

.nx-quote-button-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #091426;

    color: #ffffff;

    font-size: 15px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.nx-quote-button:hover .nx-quote-button-icon {
    background: #FF5400;
    transform: translateX(3px);
}


/* =========================================================
   SECURITY NOTE
========================================================= */

.nx-quote-secure {
    margin: 13px 0 0;

    color: #8b939c;

    font-size: 10px;
}

.nx-quote-secure i {
    margin-right: 5px;

    color: #008000;
}


/* =========================================================
   AJAX MESSAGES
========================================================= */

.nx-quote-messages {
    margin-top: 18px;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nx-quote-form {
        border-radius: 18px;
    }

    .nx-quote-header {
        padding: 25px 20px;
        gap: 14px;
    }

    .nx-quote-header-icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;

        border-radius: 14px;

        font-size: 19px;
    }

    .nx-quote-header-content h3 {
        font-size: 21px;
    }

    .nx-quote-header-content p {
        font-size: 12px;
    }

    .nx-quote-body {
        padding: 25px 20px;
    }

    .nx-quote-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .nx-quote-full {
        grid-column: auto;
    }

    .nx-quote-section-space {
        margin-top: 32px;
    }

    .nx-quote-button {
        min-height: 57px;
        padding-left: 18px;
    }

    .nx-quote-button-icon {
        width: 43px;
        height: 43px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .nx-quote-header {
        align-items: flex-start;
    }

    .nx-quote-header-content h3 {
        font-size: 19px;
    }

    .nx-quote-body {
        padding: 22px 16px;
    }

    .nx-quote-section-title h4 {
        font-size: 15px;
    }

}

/* =========================================================
   NX PREMIUM EXTRA SERVICES
   Brand Colors
   Orange: #FF5400
   Green:  #008000
   Navy:   #091426
========================================================= */


/* =========================================================
   SERVICE LIST
========================================================= */

.nx-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.nx-service-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 78px;
    padding: 14px 16px;

    background: #ffffff;

    border: 1px solid #e4e8ec;
    border-radius: 15px;

    box-shadow: 0 6px 20px rgba(9, 20, 38, 0.05);

    cursor: pointer;

    overflow: hidden;

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}


/* LEFT ORANGE ACCENT */

.nx-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #FF5400;

    transform: scaleY(0);

    transform-origin: center;

    transition: transform 0.28s ease;
}


/* HOVER */

.nx-service-card:hover {
    transform: translateY(-3px);

    border-color: rgba(255, 84, 0, 0.35);

    box-shadow: 0 12px 28px rgba(9, 20, 38, 0.10);
}

.nx-service-card:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.nx-service-left {
    display: flex;
    align-items: center;

    min-width: 0;
    padding-right: 12px;
}


/* =========================================================
   CUSTOM CHECKBOX
========================================================= */

.nx-service-check {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   SERVICE LABEL
========================================================= */

.nx-service-label {
    position: relative;

    display: flex;
    align-items: center;

    margin: 0;

    padding-left: 35px;

    color: #091426;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;

    cursor: pointer;

    transition: color 0.25s ease;
}


/* CHECKBOX BOX */

.nx-service-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 21px;
    height: 21px;

    transform: translateY(-50%);

    border: 2px solid #d6dce2;
    border-radius: 6px;

    background: #ffffff;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* CHECK MARK */

.nx-service-label::after {
    content: "\f00c";

    position: absolute;

    left: 4px;
    top: 50%;

    transform: translateY(-50%) scale(0);

    font-family: FontAwesome;

    color: #ffffff;

    font-size: 11px;

    transition: transform 0.22s ease;
}


/* =========================================================
   SELECTED STATE
========================================================= */

.nx-service-card:has(.nx-service-check:checked) {
    background: linear-gradient(
        135deg,
        #fffaf7 0%,
        #ffffff 100%
    );

    border-color: #FF5400;

    box-shadow:
        0 10px 30px rgba(255, 84, 0, 0.12);
}

.nx-service-card:has(.nx-service-check:checked)::before {
    transform: scaleY(1);

    background: #008000;
}

.nx-service-check:checked + .nx-service-label {
    color: #091426;
}

.nx-service-check:checked + .nx-service-label::before {
    border-color: #FF5400;
    background: #FF5400;

    box-shadow:
        0 4px 10px rgba(255, 84, 0, 0.20);
}

.nx-service-check:checked + .nx-service-label::after {
    transform: translateY(-50%) scale(1);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.nx-service-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-shrink: 0;

    gap: 10px;
}


/* =========================================================
   PRICE
========================================================= */

.nx-service-price {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 5px 10px;

    border-radius: 8px;

    background: rgba(0, 128, 0, 0.08);

    color: #008000;

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   QUANTITY BOX
========================================================= */

.nx-service-qty {
    display: flex;
    align-items: center;

    height: 36px;

    padding: 3px;

    border: 1px solid #dfe4e8;
    border-radius: 10px;

    background: #f7f9fa;

    overflow: hidden;
}


/* =========================================================
   QUANTITY BUTTON
========================================================= */

.nx-service-qty button {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 7px;

    background: #091426;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nx-service-qty button:hover {
    background: #008000;
    transform: scale(1.05);
}


/* =========================================================
   QUANTITY INPUT
========================================================= */

.nx-service-qty input {
    width: 38px;
    height: 29px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #091426;

    font-size: 12px;
    font-weight: 800;

    text-align: center;

    outline: none;
}


/* REMOVE NUMBER SPINNER */

.nx-service-qty input::-webkit-inner-spin-button,
.nx-service-qty input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nx-service-qty input[type="number"] {
    -moz-appearance: textfield;
}


/* =========================================================
   SELECTED CARD HOVER
========================================================= */

.nx-service-card:has(.nx-service-check:checked):hover {
    border-color: #008000;

    box-shadow:
        0 13px 32px rgba(0, 128, 0, 0.12);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nx-service-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nx-service-card {
        min-height: 70px;
        padding: 12px 13px;
    }

    .nx-service-label {
        font-size: 12px;
        padding-left: 32px;
    }

    .nx-service-label::before {
        width: 20px;
        height: 20px;
    }

    .nx-service-label::after {
        left: 4px;
    }

    .nx-service-price {
        font-size: 9px;
        padding: 4px 8px;
    }

    .nx-service-qty {
        height: 34px;
    }

    .nx-service-qty button {
        width: 27px;
        height: 27px;
    }

    .nx-service-qty input {
        width: 32px;
    }
}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 430px) {

    .nx-service-card {
        align-items: flex-start;
    }

    .nx-service-left {
        padding-top: 7px;
    }

    .nx-service-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }

}

/* =========================================================
   PREMIUM LOCATION SWEETALERT
   NAMESPACED - NX
========================================================= */

.nx-swal-popup {
    overflow: hidden !important;
    border-radius: 24px !important;

    border: 1px solid rgba(9, 20, 38, 0.06) !important;

    box-shadow:
        0 25px 70px rgba(9, 20, 38, 0.18),
        0 8px 25px rgba(9, 20, 38, 0.08) !important;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.nx-swal-location {
    position: relative;

    padding: 34px 32px 30px;

    text-align: center;
}


/* =========================================================
   BRAND ACCENT
========================================================= */

.nx-swal-location::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: linear-gradient(
        90deg,
        #FF5400 0%,
        #FF5400 50%,
        #008000 50%,
        #008000 100%
    );
}


/* =========================================================
   MAIN ICON
========================================================= */

.nx-swal-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}


.nx-swal-icon {
    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        rgba(255, 84, 0, 0.13),
        rgba(255, 84, 0, 0.04)
    );

    border: 1px solid rgba(255, 84, 0, 0.16);

    color: #FF5400;

    font-size: 27px;

    box-shadow:
        0 10px 25px rgba(255, 84, 0, 0.10);
}


.nx-swal-icon i {
    transform: translateY(-1px);
}


/* =========================================================
   TITLE
========================================================= */

.nx-swal-title {
    margin-bottom: 10px;

    color: #091426;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -0.4px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.nx-swal-description {
    max-width: 355px;

    margin: 0 auto 24px;

    color: #667085;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   LOCATION CARD
========================================================= */

.nx-swal-location-card {
    display: flex;
    align-items: center;

    padding: 17px;

    background: #f8fafc;

    border: 1px solid #e7ebf0;

    border-radius: 16px;

    text-align: left;
}


/* =========================================================
   LOCATION ITEM
========================================================= */

.nx-swal-location-item {
    display: flex;
    align-items: center;

    flex: 1;

    min-width: 0;
}


/* =========================================================
   LOCATION ICONS
========================================================= */

.nx-swal-location-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 10px;

    border-radius: 12px;

    font-size: 15px;
}


.nx-swal-from {
    color: #FF5400;

    background: rgba(255, 84, 0, 0.10);

    border: 1px solid rgba(255, 84, 0, 0.14);
}


.nx-swal-to {
    color: #008000;

    background: rgba(0, 128, 0, 0.09);

    border: 1px solid rgba(0, 128, 0, 0.14);
}


/* =========================================================
   LOCATION TEXT
========================================================= */

.nx-swal-location-text {
    display: flex;
    flex-direction: column;

    min-width: 0;
}


.nx-swal-label {
    display: block;

    margin-bottom: 4px;

    color: #091426;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.8px;

    line-height: 1.2;
}


.nx-swal-hint {
    color: #98a2b3;

    font-size: 10px;

    line-height: 1.2;
}


/* =========================================================
   CONNECTION LINE
========================================================= */

.nx-swal-location-line {
    width: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.nx-swal-location-line span {
    position: relative;

    display: block;

    width: 100%;

    height: 1px;

    background: #d7dce3;
}


.nx-swal-location-line span::after {
    content: "";

    position: absolute;

    right: -1px;
    top: 50%;

    width: 6px;
    height: 6px;

    border-top: 1px solid #b8bec8;
    border-right: 1px solid #b8bec8;

    transform:
        translateY(-50%)
        rotate(45deg);
}


/* =========================================================
   INFORMATION MESSAGE
========================================================= */

.nx-swal-footer-message {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 18px;

    padding: 11px 14px;

    background: rgba(9, 20, 38, 0.025);

    border-radius: 10px;

    color: #7b8492;

    font-size: 11px;

    line-height: 1.5;

    text-align: center;
}


.nx-swal-footer-message i {
    flex: 0 0 auto;

    color: #FF5400;

    font-size: 13px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.nx-swal-close {
    position: absolute !important;

    top: 13px !important;
    right: 14px !important;

    width: 30px !important;
    height: 30px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 50% !important;

    color: #98a2b3 !important;

    font-size: 20px !important;

    transition:
        background 0.2s ease,
        color 0.2s ease !important;
}


.nx-swal-close:hover {
    background: #f2f4f7 !important;

    color: #091426 !important;
}


/* =========================================================
   CONTINUE BUTTON
========================================================= */

.nx-swal-confirm {
    width: calc(100% - 64px) !important;

    height: 50px !important;

    margin: 0 32px 28px !important;

    padding: 0 20px !important;

    border: 0 !important;

    border-radius: 13px !important;

    background: linear-gradient(
        135deg,
        #FF5400,
        #ff6a21
    ) !important;

    color: #ffffff !important;

    font-size: 14px !important;

    font-weight: 700 !important;

    box-shadow:
        0 9px 22px rgba(255, 84, 0, 0.23) !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
}


.nx-swal-confirm:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(255, 84, 0, 0.30) !important;
}


.nx-swal-confirm:active {
    transform: translateY(0);
}


/* =========================================================
   BUTTON CONTENT
========================================================= */

.nx-swal-confirm-content {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    gap: 10px;
}


.nx-swal-confirm-content i {
    font-size: 12px;

    transition:
        transform 0.2s ease;
}


.nx-swal-confirm:hover
.nx-swal-confirm-content i {
    transform: translateX(3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .nx-swal-popup {
        width: calc(100% - 24px) !important;

        border-radius: 20px !important;
    }


    .nx-swal-location {
        padding: 30px 20px 24px;
    }


    .nx-swal-icon {
        width: 58px;
        height: 58px;

        border-radius: 17px;

        font-size: 24px;
    }


    .nx-swal-title {
        font-size: 21px;
    }


    .nx-swal-description {
        font-size: 13px;

        margin-bottom: 20px;
    }


    .nx-swal-location-card {
        padding: 13px;
    }


    .nx-swal-location-icon {
        width: 37px;
        height: 37px;

        flex-basis: 37px;

        margin-right: 8px;

        font-size: 13px;
    }


    .nx-swal-label {
        font-size: 10px;
    }


    .nx-swal-hint {
        font-size: 9px;
    }


    .nx-swal-location-line {
        width: 20px;

        flex-basis: 20px;
    }


    .nx-swal-footer-message {
        font-size: 10px;
    }


    .nx-swal-confirm {
        width: calc(100% - 40px) !important;

        margin-left: 20px !important;
        margin-right: 20px !important;

        margin-bottom: 22px !important;
    }

}
/* =========================================================
   PREMIUM BOOKING SUCCESS PAGE
========================================================= */

.nx-success-page {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 55px 20px 70px;
    box-sizing: border-box;
}

.nx-success-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(9, 20, 38, 0.07);
    border-radius: 28px;
    box-shadow:
        0 25px 70px rgba(9, 20, 38, 0.12),
        0 8px 24px rgba(9, 20, 38, 0.05);
    text-align: center;
}

.nx-success-accent {
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #FF5400 0%,
        #FF5400 50%,
        #008000 50%,
        #008000 100%
    );
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.nx-success-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 42px;
    margin-bottom: 22px;
}

.nx-success-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 25px;
    background: linear-gradient(
        135deg,
        #008000,
        #16a34a
    );
    color: #ffffff;
    font-size: 34px;
    box-shadow:
        0 14px 30px rgba(0, 128, 0, 0.24);
}

.nx-success-icon::before {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid rgba(0, 128, 0, 0.16);
    border-radius: 31px;
}

.nx-success-icon i {
    transform: translateY(-1px);
}


/* =========================================================
   HEADING
========================================================= */

.nx-success-heading {
    padding: 0 35px;
}

.nx-success-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #FF5400;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nx-success-heading h1 {
    margin: 0;
    color: #091426;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.nx-success-heading h1 span {
    color: #008000;
}

.nx-success-heading p {
    max-width: 490px;
    margin: 17px auto 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BOOKING DETAILS
========================================================= */

.nx-success-details {
    margin: 32px 35px 0;
    padding: 22px;
    background: #f8fafc;
    border: 1px solid #e7ebf0;
    border-radius: 19px;
    text-align: left;
}

.nx-success-details-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 15px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
    color: #091426;
    font-size: 14px;
    font-weight: 800;
}

.nx-success-details-heading i {
    color: #FF5400;
    font-size: 16px;
}

.nx-success-detail-row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid #e9edf2;
}

.nx-success-detail-row:last-child {
    padding-bottom: 3px;
    border-bottom: 0;
}

.nx-success-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    background: rgba(255, 84, 0, 0.09);
    color: #FF5400;
    font-size: 15px;
}

.nx-success-detail-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 4px;
}

.nx-success-detail-label {
    color: #98a2b3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nx-success-detail-content strong {
    overflow-wrap: anywhere;
    color: #091426;
    font-size: 14px;
    font-weight: 700;
}

.nx-success-order-code {
    color: #008000 !important;
    letter-spacing: 0.7px;
}


/* =========================================================
   NEXT STEP MESSAGE
========================================================= */

.nx-success-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 35px 0;
    padding: 16px 17px;
    border: 1px solid rgba(0, 128, 0, 0.12);
    border-radius: 15px;
    background: rgba(0, 128, 0, 0.045);
    text-align: left;
}

.nx-success-message-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(0, 128, 0, 0.12);
    color: #008000;
    font-size: 14px;
}

.nx-success-message strong {
    display: block;
    margin-bottom: 4px;
    color: #091426;
    font-size: 13px;
    font-weight: 800;
}

.nx-success-message p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.nx-success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 28px 35px 0;
}

.nx-success-primary-btn,
.nx-success-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.nx-success-primary-btn {
    background: linear-gradient(
        135deg,
        #FF5400,
        #ff6a21
    );
    color: #ffffff !important;
    box-shadow:
        0 9px 22px rgba(255, 84, 0, 0.22);
}

.nx-success-primary-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        0 13px 28px rgba(255, 84, 0, 0.30);
}

.nx-success-secondary-btn {
    background: #ffffff;
    border: 1px solid #dce2e8;
    color: #091426 !important;
}

.nx-success-secondary-btn:hover {
    background: #f8fafc;
    border-color: #008000;
    color: #008000 !important;
    transform: translateY(-2px);
}

.nx-success-primary-btn i,
.nx-success-secondary-btn i {
    font-size: 13px;
}


/* =========================================================
   FOOTER
========================================================= */

.nx-success-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 27px 35px 30px;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.5;
}

.nx-success-footer i {
    color: #008000;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 576px) {

    .nx-success-page {
        padding: 30px 13px 45px;
    }

    .nx-success-card {
        border-radius: 22px;
    }

    .nx-success-icon-wrap {
        margin-top: 32px;
        margin-bottom: 19px;
    }

    .nx-success-icon {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        font-size: 28px;
    }

    .nx-success-icon::before {
        inset: -7px;
        border-radius: 25px;
    }

    .nx-success-heading {
        padding: 0 20px;
    }

    .nx-success-heading h1 {
        font-size: 27px;
        letter-spacing: -0.7px;
    }

    .nx-success-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .nx-success-details {
        margin: 25px 20px 0;
        padding: 17px;
    }

    .nx-success-message {
        margin: 18px 20px 0;
        padding: 14px;
    }

    .nx-success-actions {
        flex-direction: column;
        margin: 23px 20px 0;
    }

    .nx-success-primary-btn,
    .nx-success-secondary-btn {
        width: 100%;
        min-height: 47px;
    }

    .nx-success-footer {
        margin: 23px 20px 25px;
        font-size: 10px;
    }

}

/* ========================================== NAIROBI PACKERS - PREMIUM BLOG META ========================================== */ .np-entry-meta { margin-top: 22px; padding: 14px 18px; background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.07); border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); } .np-entry-meta ul { display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; list-style: none; } .np-entry-meta li { display: flex; align-items: center; position: relative; padding: 0 20px; } .np-entry-meta li:first-child { padding-left: 0; } .np-entry-meta li:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; width: 1px; height: 30px; background: #e8e8e8; transform: translateY(-50%); } .np-meta-item { display: flex; align-items: center; gap: 9px; color: #555; } .np-meta-item > i { font-size: 17px; color: #ff5400; } .np-meta-item span { display: flex; flex-direction: column; line-height: 1.15; font-size: 13px; font-weight: 600; color: #222; } .np-meta-item small { margin-top: 3px; font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.6px; color: #999; } /* Share Button */ .np-share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 7px; background: #ff5400; color: #ffffff !important; font-size: 12px; font-weight: 600; text-decoration: none !important; transition: all 0.3s ease; } .np-share-btn i { font-size: 15px; } .np-share-btn:hover { background: #091426; color: #ffffff !important; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); } /* Mobile */ @media (max-width: 767px) { .np-entry-meta { padding: 13px; } .np-entry-meta ul { justify-content: flex-start; gap: 15px 0; } .np-entry-meta li { padding: 0 13px; } .np-entry-meta li:first-child { padding-left: 0; } .np-entry-meta li:nth-child(2)::after { display: none; } .np-entry-meta li:nth-child(2), .np-entry-meta li:nth-child(3) { padding-right: 0; } .np-share-btn { padding: 8px 12px; } }


/* ========================================================== NAIROBI PACKERS COMMENTS ========================================================== */ .np-blog-comments { margin-top: 45px; padding-top: 10px; } /* ========================= COMMENTS HEADER ========================= */ .np-comments-header { margin-bottom: 30px; } .np-comments-title { display: flex; align-items: center; gap: 14px; } .np-comments-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: #FF5400; color: #fff; border-radius: 12px; font-size: 21px; box-shadow: 0 8px 20px rgba(255, 84, 0, 0.20); } .np-comments-title h4 { margin: 0; color: #091426; font-size: 21px; font-weight: 700; } .np-comments-title p { margin: 3px 0 0; color: #999; font-size: 12px; } .np-comments-line { height: 1px; width: 100%; margin-top: 20px; background: linear-gradient( to right, #FF5400 0%, #FF5400 70px, #eeeeee 70px, #eeeeee 100% ); } /* ========================= COMMENT CARD ========================= */ .np-comment { margin-bottom: 20px; } .np-comment-card { display: flex; gap: 15px; padding: 20px; background: #fff; border: 1px solid #eeeeee; border-radius: 14px; transition: all .3s ease; } .np-comment-card:hover { border-color: rgba(255, 84, 0, .25); box-shadow: 0 10px 30px rgba(9, 20, 38, .07); transform: translateY(-2px); } /* Avatar */ .np-comment-avatar { flex: 0 0 46px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient( 135deg, #FF5400, #ff7a38 ); color: #fff; font-size: 17px; font-weight: 700; box-shadow: 0 5px 15px rgba(255, 84, 0, .20); } /* Content */ .np-comment-content { flex: 1; min-width: 0; } .np-comment-top { display: flex; justify-content: space-between; } .np-comment-top h5 { margin: 0 0 4px; color: #091426; font-size: 15px; font-weight: 700; } .np-comment-date { color: #999; font-size: 11px; } .np-comment-date i { color: #FF5400; margin-right: 3px; } .np-comment-text { margin: 12px 0 10px; color: #666; font-size: 14px; line-height: 1.75; } /* Reply */ .np-comment-actions { margin-top: 8px; } .np-reply-link { display: inline-flex; align-items: center; gap: 5px; color: #FF5400; font-size: 12px; font-weight: 600; text-decoration: none; transition: .3s; } .np-reply-link:hover { color: #091426; } .np-reply-link i { font-size: 14px; } /* Replies */ .np-comment > .np-comment { margin-left: 55px; margin-top: 15px; } /* ========================= COMMENT FORM ========================= */ .np-comment-form-wrapper { margin-top: 45px; padding: 30px; background: #f9fafb; border: 1px solid #eeeeee; border-radius: 18px; } .np-form-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; } .np-form-icon { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: #091426; color: #fff; border-radius: 11px; font-size: 18px; } .np-form-heading h4 { margin: 0; color: #091426; font-size: 20px; font-weight: 700; } .np-form-heading p { margin: 3px 0 0; color: #999; font-size: 12px; } /* Notice */ .np-form-note { margin-bottom: 22px; padding: 11px 14px; background: #fff; border-left: 3px solid #FF5400; color: #777; font-size: 12px; border-radius: 5px; } .np-form-note i { color: #FF5400; margin-right: 5px; } /* Inputs */ .np-input-group { position: relative; } .np-input-group > i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #FF5400; font-size: 16px; z-index: 2; } .np-input-group.np-textarea > i { top: 20px; transform: none; } .np-form-control { width: 100%; padding: 13px 15px 13px 45px; background: #fff; border: 1px solid #e5e5e5; border-radius: 9px; color: #333; font-size: 13px; outline: none; transition: all .3s ease; } .np-form-control::placeholder { color: #aaa; } .np-form-control:focus { border-color: #FF5400; box-shadow: 0 0 0 3px rgba(255, 84, 0, .08); } textarea.np-form-control { resize: vertical; min-height: 130px; } /* ========================= SUBMIT BUTTON ========================= */ .np-comment-submit { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 23px; border: none; border-radius: 8px; background: #FF5400; color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .3s ease; box-shadow: 0 7px 18px rgba(255, 84, 0, .20); } .np-comment-submit i { transition: transform .3s ease; } .np-comment-submit:hover { background: #091426; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(9, 20, 38, .20); } .np-comment-submit:hover i { transform: translateX(4px); } /* ========================= MOBILE ========================= */ @media (max-width: 767px) { .np-comment-form-wrapper { padding: 20px; border-radius: 14px; } .np-comment-card { padding: 15px; } .np-comment-avatar { flex-basis: 40px; width: 40px; height: 40px; font-size: 15px; } .np-comment > .np-comment { margin-left: 20px; } .np-comments-title h4 { font-size: 18px; } } 

/* ========================================================== NAIROBI PACKERS PREMIUM RECENT POSTS ========================================================== */ .np-recent-posts { width: 100%; padding: 22px; background: #ffffff; border: 1px solid #eeeeee; border-radius: 16px; box-shadow: 0 8px 30px rgba(9, 20, 38, 0.05); } /* ========================================================== HEADER ========================================================== */ .np-recent-header { margin-bottom: 20px; } .np-recent-title { display: flex; align-items: center; gap: 12px; } .np-recent-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: #FF5400; color: #ffffff; border-radius: 10px; font-size: 18px; box-shadow: 0 6px 15px rgba(255, 84, 0, 0.20); } .np-recent-title h3 { margin: 0; color: #091426; font-size: 19px; font-weight: 700; line-height: 1.2; } .np-recent-title h3 span { color: #FF5400; } .np-recent-title p { margin: 3px 0 0; color: #999999; font-size: 10px; letter-spacing: .4px; } .np-header-line { display: block; width: 100%; height: 1px; margin-top: 17px; background: linear-gradient( to right, #FF5400 0, #FF5400 55px, #eeeeee 55px, #eeeeee 100% ); } /* ========================================================== POST ITEM ========================================================== */ .np-recent-post { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid #f0f0f0; transition: all .3s ease; } .np-recent-post:last-child { border-bottom: none; padding-bottom: 2px; } .np-recent-post:hover { transform: translateX(3px); } /* ========================================================== IMAGE ========================================================== */ .np-post-image { position: relative; flex: 0 0 82px; width: 82px; height: 72px; overflow: hidden; border-radius: 9px; background: #091426; } .np-post-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s ease; } .np-recent-post:hover .np-post-image img { transform: scale(1.08); } /* Image dark overlay */ .np-post-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient( to bottom, transparent 40%, rgba(9, 20, 38, .45) ); pointer-events: none; } /* Number */ .np-post-number { position: absolute; left: 6px; bottom: 5px; z-index: 2; min-width: 25px; height: 20px; display: flex; align-items: center; justify-content: center; padding: 0 5px; background: #FF5400; color: #ffffff; border-radius: 4px; font-size: 9px; font-weight: 700; } /* ========================================================== CONTENT ========================================================== */ .np-post-content { min-width: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; } .np-post-label { display: block; margin-bottom: 4px; color: #FF5400; font-size: 8px; font-weight: 700; letter-spacing: 1px; } .np-post-content h5 { margin: 0; line-height: 1.35; } .np-post-content h5 a { display: -webkit-box; overflow: hidden; color: #091426; font-size: 13px; font-weight: 650; text-decoration: none; -webkit-line-clamp: 2; -webkit-box-orient: vertical; transition: color .3s ease; } .np-post-content h5 a:hover { color: #FF5400; } /* ========================================================== READ ARTICLE ========================================================== */ .np-read-more { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; color: #999999; font-size: 9px; font-weight: 600; text-decoration: none; transition: all .3s ease; } .np-read-more i { font-size: 11px; transition: transform .3s ease; } .np-read-more:hover { color: #FF5400; } .np-read-more:hover i { transform: translateX(3px); } /* ========================================================== EMPTY STATE ========================================================== */ .np-no-posts { padding: 30px 10px; text-align: center; color: #999999; } .np-no-posts i { display: block; margin-bottom: 8px; color: #FF5400; font-size: 25px; } .np-no-posts p { margin: 0; font-size: 12px; } /* ========================================================== MOBILE ========================================================== */ @media (max-width: 575px) { .np-recent-posts { padding: 18px; } .np-post-image { flex-basis: 75px; width: 75px; height: 65px; } .np-post-content h5 a { font-size: 12px; } }


/* ========================================================== NAIROBI PACKERS PREMIUM USEFUL LINKS ========================================================== */ .np-useful-links { width: 100%; padding: 22px; background: #ffffff; border: 1px solid #eeeeee; border-radius: 16px; box-shadow: 0 8px 30px rgba(9, 20, 38, 0.05); } /* ========================================================== HEADER ========================================================== */ .np-useful-header { margin-bottom: 15px; } .np-useful-title { display: flex; align-items: center; gap: 12px; } .np-useful-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: #FF5400; color: #ffffff; border-radius: 10px; font-size: 20px; box-shadow: 0 6px 15px rgba(255, 84, 0, 0.20); } .np-useful-title h3 { margin: 0; color: #091426; font-size: 19px; font-weight: 700; line-height: 1.2; } .np-useful-title h3 span { color: #FF5400; } .np-useful-title p { margin: 3px 0 0; color: #999999; font-size: 10px; letter-spacing: .3px; } /* Header line */ .np-useful-line { width: 100%; height: 1px; margin-top: 17px; background: linear-gradient( to right, #FF5400 0, #FF5400 55px, #eeeeee 55px, #eeeeee 100% ); } /* ========================================================== LINKS ========================================================== */ .np-links-list { display: flex; flex-direction: column; } /* Individual link */ .np-useful-link { display: flex; align-items: center; gap: 12px; position: relative; padding: 13px 2px; border-bottom: 1px solid #f0f0f0; text-decoration: none !important; transition: all .3s ease; } .np-useful-link:last-child { border-bottom: none; padding-bottom: 2px; } /* Hover background */ .np-useful-link::before { content: ""; position: absolute; left: -8px; right: -8px; top: 5px; bottom: 5px; background: #fff7f2; border-radius: 9px; opacity: 0; transform: scale(.96); transition: all .3s ease; z-index: 0; } .np-useful-link:hover::before { opacity: 1; transform: scale(1); } /* ========================================================== LINK ICON ========================================================== */ .np-link-icon { position: relative; z-index: 1; flex: 0 0 36px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #f5f6f8; color: #091426; border-radius: 8px; font-size: 15px; transition: all .3s ease; } .np-useful-link:hover .np-link-icon { background: #FF5400; color: #ffffff; transform: translateX(2px); } /* Quote icon */ .np-useful-link:hover .np-quote-icon { box-shadow: 0 5px 12px rgba(255, 84, 0, .20); } /* ========================================================== TEXT ========================================================== */ .np-link-text { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; } .np-link-text strong { color: #091426; font-size: 13px; font-weight: 650; line-height: 1.3; transition: color .3s ease; } .np-link-text small { margin-top: 2px; color: #999999; font-size: 9px; line-height: 1.3; } .np-useful-link:hover .np-link-text strong { color: #FF5400; } /* ========================================================== ARROW ========================================================== */ .np-link-arrow { position: relative; z-index: 1; width: 27px; height: 27px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #aaaaaa; font-size: 12px; transition: all .3s ease; } .np-useful-link:hover .np-link-arrow { background: #091426; color: #ffffff; transform: translateX(3px); } /* ========================================================== MOBILE ========================================================== */ @media (max-width: 575px) { .np-useful-links { padding: 18px; } .np-link-text strong { font-size: 12px; } }