* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ----------------------------------------------------------------
   Core Color System
-----------------------------------------------------------------*/
:root {
    /* Typography & Theme -------------------------------------------------- */
    --cnvs-primary-font: "DM Sans", sans-serif;

    /* Brand palette ------------------------------------------------------- */
    --bs-primary: #150958;
    --bs-primary-rgb: 21, 9, 88;
    --bs-secondary: #BB9F55;
    --bs-secondary-rgb: 187, 159, 85;

    /* Semantic aliases ---------------------------------------------------- */
    --cnvs-themecolor: var(--bs-primary);
    --cnvs-themecolor-rgb: var(--bs-primary-rgb);

    /* Extended palette ---------------------------------------------------- */
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
    --color-black-rgb: 0, 0, 0;
    --color-grey-050: #efefef;
    --color-grey-100: #eeeeee;
    --color-grey-200: #aaaaaa;

    --color-shadow: 0, 0, 0; /* use via rgba(var(--color-shadow), <alpha>) */

    /* UI state variants --------------------------------------------------- */
    --color-primary-hover: #0b5ed7;
    --color-primary-hover-border: #0a58ca;
    --color-primary-active-border: #0a53be;
    --color-disabled-bg: #150958;

    /* Component-specific --------------------------------------------------- */
    --color-promo-layer1: #bccce7;
    --color-promo-layer2: #e6ecf7;
    --color-bullet-bg: rgba(204, 204, 204, 0.5);
    --color-bullet-selected-bg: rgba(204, 204, 204, 1);
    --color-trust-badge-bg: #0D1A80;
    --color-emergency-stroke: #750000;
}

/* --- Utility text colours ---------------------------------------------- */
.gold-color,.text-gold {
    color: var(--bs-secondary) !important;
}

.bg-primary {background-color: var(--bs-primary) !important}
.color {
    color: var(--bs-primary) !important;
}

.block-testimonials-3 .swiper-slide {
    width: 400px;
    padding: 15px;
}

.block-testimonials-3 .swiper-horizontal > .swiper-scrollbar {
    width: 75%;
    max-width: 700px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(var(--color-shadow), 0.06);
}

.block-testimonials-3 .swiper,
.block-testimonials-3 .swiper-wrapper {
    cursor: ew-resize !important;
}

@media (min-width: 768px) {
}

/*--- Revo Slider Home Page ---------------------------------------------- */
.tiny_bullet_slider .tp-bullet:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 25px;
    top: -12px;
    left: 0;
    background: transparent;
}

.bullet-bar.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    box-sizing: content-box;
}

.bullet-bar .tp-bullet {
    width: 60px;
    height: 3px;
    position: absolute;
    background: var(--color-bullet-bg);
    cursor: pointer;
    box-sizing: content-box;
}

.bullet-bar .tp-bullet:hover,
.bullet-bar .tp-bullet.selected {
    background: var(--color-bullet-selected-bg);
}

.page-menu-item.current > a {
    color: var(--bs-secondary) !important;
}

.page-menu-item:hover > a,
.page-menu-item.current > a {
    background-color: rgba(var(--color-white-rgb), 0.15);
}

/* --- Buttons ------------------------------------------------------------ */
.btn-primary {
    --bs-btn-color: var(--color-white);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--color-white);
    --bs-btn-hover-bg: var(--color-primary-hover);
    --bs-btn-hover-border-color: var(--color-primary-hover-border);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--color-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--color-primary-active-border);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(var(--color-shadow), 0.125);
    --bs-btn-disabled-color: var(--color-white);
    --bs-btn-disabled-bg: var(--color-disabled-bg);
    --bs-btn-disabled-border-color: var(--color-disabled-bg);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--color-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--color-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(var(--color-shadow), 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
}

@media (min-width: 992px) {
}

/* --- Badges ------------------------------------------------------------- */
.badge {
    padding: 8px;
    font-size: 12px;
    margin-bottom: 15px;
    border-radius: 2px;
    font-weight: 500;
    line-height: 0.8;
}

.badge.badge-default {
    border: 1px solid var(--cnvs-themecolor);
    color: var(--cnvs-themecolor);
}

/* --- Sections ----------------------------------------------------------- */
.section,
.bg-color-light {
    padding: 80px 0;
    background-color: rgba(var(--cnvs-themecolor-rgb), 0.07);
    border-top: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--cnvs-themecolor-rgb), 0.1);
}

.fbox-dark.fbox-outline .fbox-icon i,
.fbox-dark.fbox-outline .fbox-icon img {
    background-color: var(--cnvs-themecolor);
}

.fbox-gold.fbox-outline .fbox-icon i,
.fbox-gold.fbox-outline .fbox-icon img {
    background-color: var(--bs-secondary);
}

.fbox-dark.fbox-outline .fbox-icon i.selected,
.fbox-dark.fbox-outline .fbox-icon img {
    color: var(--bs-secondary);
}

.fbox-gold.fbox-outline .fbox-icon a {
    border: var(--cnvs-featured-box-outline-border) solid var(--bs-secondary);
}

/* --- Carousel Tabs ------------------------------------------------------ */
#carousel-tabs.tabs,
#carousel-tabs .tab-content {
    --cnvs-tab-padding-width: 0;
    --bs-nav-link-padding-y: .5rem;
    --bs-nav-link-font-size: 1rem;
    --bs-nav-link-font-weight: 400;
    --bs-nav-tabs-border-width: 0;
    --bs-nav-link-color: var(--cnvs-contrast-1000);
    --bs-nav-link-hover-color: var(--cnvs-contrast-900);
    --bs-nav-tabs-link-active-bg: rgba(var(--bs-primary-rgb), 0.1);
    --bs-nav-tabs-link-active-color: var(--bs-secondary);
    --cnvs-tabs-bg-color: rgba(var(--cnvs-contrast-rgb), 0.04);
}

.dark #carousel-tabs.tabs,
.dark #carousel-tabs .tab-content {
    --bs-nav-tabs-link-active-bg: rgba(var(--bs-secondary-rgb), 1);
    --bs-nav-tabs-link-active-color: var(--bs-primary);
}

#carousel-tabs .nav-link:not(.active) {
    background-color: rgba(var(--cnvs-contrast-rgb), 0.04);
}

#carousel-tabs .nav-link {
    border-radius: var(--bs-border-radius);
    font-weight: 500;
}

#carousel-tabs .nav-link.active {
    font-weight: 600;
    border: 2px solid var(--bs-primary);
}

/* --- Carousel blur helpers --------------------------------------------- */
.carousel-blur-left::before,
.carousel-blur-right::after {
    --cnvs-carousel-blur-size: 70px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: var(--cnvs-carousel-blur-size);
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, var(--cnvs-body-bg) 50%, transparent);
}

.carousel-blur-right::after {
    left: auto;
    right: 0;
    background: linear-gradient(to left, var(--cnvs-body-bg) 50%, transparent);
}

/* --- Trust badge -------------------------------------------------------- */
.trust-badge {
    background-color: var(--color-trust-badge-bg);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.4em 0.7em;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

/* --- Typography helpers ------------------------------------------------- */

.orbitron-bold {
    font-family: "Orbitron", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: bold !important;
    font-style: normal !important;
}

.dm-sans-bold {
    font-family: "DM Sans", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: bold !important;
    font-style: normal !important;
}
.dm-sans-semibold {
    font-family: "DM Sans", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 600 !important;
    font-style: normal !important;
}
.dm-sans-regular {
    font-family: "DM Sans", sans-serif !important;
    font-optical-sizing: auto !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* --- Nostos buttons & headers ------------------------------------------ */
.ns-btn {
    white-space: nowrap;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 20px;
    line-height: 50px;
}

.ns-btn-menu{
    font-size: 15px;
    line-height: 30px;
    border-radius:5px;
    padding: 0px 10px;
    text-transform: uppercase;

}
.ns-btn-gold, .btn-secondary {
    color: var(--color-white);
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.ns-btn-primary, .btn-primary {
    color: var(--color-white);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.ns-btn-light-outline {
    color: var(--bs-primary);
    background-color: var(--color-white);
    border: 2px solid var(--bs-secondary);
}
.ns-btn-light-gold:hover,.ns-btn-light-outline:hover {
    background-color: var(--bs-secondary)!important;
    color: var(--color-white)!important;
}
.btn-secondary:hover {
    background-color: var(--bs-secondary)!important;
    color: var(--bs-primary)!important;
    border-color: var(--bs-secondary);
}

.ns-btn-primary:hover,.btn-primary:hover {
    color: var(--bs-secondary) !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary);
}
.ns-sign-in-back{
    top:-120px;
}

.ns-flipcard-front-primary{
    background-color: #F9F9F9;
    background-image: url('/assets/images/working/arrow1.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 60%;
}
.ns-flipcard-front-secondary{
    background-color: #F9F9F9;
    background-image: url('/assets/images/working/arrow2.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 60%;
}
.ns-feature-box.gold{
    background-color: rgba(var(--bs-secondary-rgb), 0.7);
}
.ns-feature-box.gold:hover{
    color: var(--bs-primary);
}
.border-primary{
    border-color: var(--bs-primary);
}
.border-secondary{
    color: var(--bs-secondary);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-primary);
    font-family: var(--cnvs-primary-font), "sans-serif";
    font-weight: bold;
}

.bg-top-left {
    position: absolute;
    top: -10vw;
    left: -5vw;
    z-index: 0;
    width: 40vw;
    max-width: none;
}

.bg-bottom-right {
    position: absolute;
    bottom: -10vh;
    right: -5vw;
    z-index: 0;
    width: 40vw;
    max-width: none;
}

.form-widget {
    position: relative;
    z-index: 1;
}

.block-contact-1,
.block-contact-1 h1,
.block-contact-1 h2,
.block-contact-1 h3,
.block-contact-1 h4,
.block-contact-1 h5,
.block-contact-1 h6,
.block-contact-1 p,
.block-contact-1 label,
.block-contact-1 input {
    font-family: 'Inter', sans-serif;
}

.block-contact-1 .form-control {
    padding: 12px 2px;
    background-color: transparent !important;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 2px;
    border-radius: 0;
    font-weight: 500;
    font-size: 18px;
}

.block-contact-1 .form-control::-moz-placeholder {
    color: #CCC;
    font-weight: 400;
    font-size: 15px;
}
.block-contact-1 .form-control:-ms-input-placeholder {
    color: #CCC;
    font-weight: 400;
    font-size: 15px;
}
.block-contact-1 .form-control::-webkit-input-placeholder {
    color: #CCC;
    font-weight: 400;
    font-size: 15px;
}

.block-contact-1 textarea.form-control {
    resize: none;
    overflow: hidden;
    word-wrap: break-word;
}

.block-contact-1 label:not(.custom-control-label) {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    color: #777;
    margin-bottom: 3px;
    font-size: 14px;
}

.block-contact-1 .custom-control-label::before,
.block-contact-1 .custom-control-label::after { top: 0.0875rem; }

.block-contact-1 .form-control:active,
.block-contact-1 .form-control:focus {
    border-color: #3D1144;
}

.block-contact-1 .social-icon {
    background-color: rgba(0,0,0,0.2);
    font-size: 16px;
}

.ns-form-checkbox{
    width: 25px;
    height: 25px;
    border-color: var(--bs-primary);
}
.show-error-msg + label.error, input[type=checkbox]:not(:checked) + label.error, label.error {
    display: none !important;
}
#discount-coupon.form-control{
    font-size:1rem;
    border:2px solid #000080
}

.ns-form-checkbox.required-check.error, #discount-coupon.form-control.ns-error{
    border-color: var(--bs-danger)!important;
}

#discount-coupon.form-control.ns-success{
    border-color: var(--bs-success)!important;
}
.form-check-input:checked {
    background-color: var(--bs-secondary)!important;
    border-color: var(--bs-secondary)!important;
}

.menu-link .active{
    border-bottom: 3px solid #BB9F55;
}


.wallet-confirm-modal {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.wallet-confirm-box {
    background: white; padding: 2rem; border-radius: 8px;
    max-width: 400px; width: 100%; text-align: center;
}


:root{
    --ns-faq-border: rgba(15, 23, 42, 0.10);
    --ns-faq-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
    --ns-faq-shadow-hover: 0 16px 45px rgba(2, 6, 23, 0.10);
    --ns-faq-radius: 12px;
    --ns-faq-bg: #ffffff;
    --ns-faq-soft: rgba(15, 23, 42, 0.03);
    --ns-faq-title: rgba(15, 23, 42, 0.92);
    --ns-faq-text: rgba(15, 23, 42, 0.78);
    --ns-faq-muted: rgba(15, 23, 42, 0.55);
    --ns-faq-accent: var(--cnvs-themecolor, #1b2a6b);
}

.faqs{
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faqs .toggle{
    background: var(--ns-faq-bg);
    border: 1px solid var(--ns-faq-border);
    border-radius: var(--ns-faq-radius);
    box-shadow: var(--ns-faq-shadow);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faqs .toggle:hover{
    transform: translateY(-1px);
    box-shadow: var(--ns-faq-shadow-hover);
    border-color: rgba(27, 42, 107, 0.25);
}

.faqs .toggle-header{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.faqs .toggle-header .toggle-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--ns-faq-soft);
    color: var(--ns-faq-accent);
    flex: 0 0 auto;
}

.faqs .toggle-header .toggle-icon:last-child{
    margin-left: auto;
    background: transparent;
    width: 34px;
    height: 34px;
    color: var(--ns-faq-muted);
}

.faqs .toggle-title{
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--ns-faq-title);
    line-height: 1.25;
}

.faqs .toggle-content{
    border-top: 1px solid var(--ns-faq-border);
    padding: 18px 18px 20px 18px;
    color: var(--ns-faq-text);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.00));
}

.faqs .toggle.toggle-active{
    border-color: rgba(27, 42, 107, 0.30);
    box-shadow: var(--ns-faq-shadow-hover);
}

.faqs .toggle.toggle-active .toggle-header{
    background: linear-gradient(90deg, rgba(27, 42, 107, 0.06), rgba(27, 42, 107, 0.00));
}

.faqs .toggle.toggle-active .toggle-header .toggle-icon:last-child{
    color: var(--ns-faq-accent);
}

.faqs .toggle:focus-within{
    outline: 2px solid rgba(27, 42, 107, 0.25);
    outline-offset: 2px;
}

.faqs .toggle .toggle-closed,
.faqs .toggle .toggle-open{
    font-size: 16px;
}


/* Container */
.ns-uc-container {
    min-height: 320px;
}

/* Image hover effect */
.ns-uc-image {
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.ns-uc-card:hover .ns-uc-image {
    transform: scale(1.35);
}

/* Dark gradient overlay */
.ns-uc-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
}

/* Frosted glass box */
.ns-uc-glass-box {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Super title */
.ns-uc-super {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Title */
.ns-uc-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* Description */
.ns-uc-description {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* CTA */
.ns-uc-cta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/*START RESP*/

@media (max-width: 575.98px){
    .faqs{
        max-width: 100%;
    }

    .faqs .toggle-header{
        padding: 14px 14px;
        gap: 10px;
    }

    .faqs .toggle-header .toggle-icon{
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .faqs .toggle-content{
        padding: 16px 14px 18px 14px;
    }
}


.grid-filter.style-3 li.activeFilter a {
    color: var(--cnvs-themecolor) !important;
    border-color: var(--bs-secondary);
    background-color: transparent;
    border-top:none;
    border-left:none;
    border-right:none;
    border-radius: 0;

}

@keyframes boat-rock {
    0%   { transform: rotate(-1deg); }
    50%  { transform: rotate(1deg); }
    100% { transform: rotate(-1deg); }
}


.ns-hero-wrap{
    position:relative;
    overflow:hidden;
}

.ns-hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
    object-position: center center;

}

.ns-hero-content{
    position:relative;
    z-index:1;
}

.bg-dark-gray {
    background-color: #2646531b;
}


.bg-top-left-min {
    position: absolute;
    top: -4vw;
    left: -2vw;
    z-index: 0;
    width: 15vw;
    max-width: none;
}

.bg-bottom-right-min {
    position: absolute;
    bottom: -4vh;
    right: -4vw;
    z-index: 0;
    width: 15vw;
    max-width: none;
}
.cart-product-subtotal{    min-width:140px}
.display-6{font-size:1.8rem}
.vh65 {height:65vh!important}
.vh80,.vh70,.vh65,.vh60{overflow-y:auto;}
.ns-decorate{display:none}
#header-wrap #logo img{height:90px!important;width:auto!important;}
.is-expanded-menu #header.sticky-header-shrink #header-wrap #logo img {
    height: var(--cnvs-sticky-header-height)!important;
    width:auto!important;
}
.header-size-custom .menu-link{
    color: #fff;
}
.header-size-custom.sticky-header .menu-link, .header-size-custom.ns-override-color .menu-link {
    color: var(--cnvs-primary-menu-color);

}
.header-size-custom .ns-white-header{    color:#fff;}
.header-size-custom.sticky-header .ns-white-header{    color:var(--bs-primary);}
.overlayed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ρύθμισε το opacity όπως θέλεις */
    z-index: 0;
}
.ns-parallax{    position: relative; overflow: hidden;}
.ns-parallax-img{object-fit: cover; object-position: bottom; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: -1;}
.ns-parallax-content{    position: relative; z-index: 1;}

.nav-pills .nav-link.active,
.nav-pills .show > .payment-method.nav-link {
    background-color: rgba(184, 150, 78, .04);
    border: 2px solid var(--bs-secondary) !important;
    box-shadow: 0 .4rem 1.2rem rgba(17, 24, 39, .08);
}
.ns-paytab{min-width:140px;height:54px}
.ns-paylogo{height:22px;width:auto}
.ns-payicon{font-size:2rem;line-height:1}
.move-up{margin-top:-50px!important}

.feature-sec .heading{
    margin-bottom: 30px;
}
.feature-sec .card{
    box-shadow: 1px 1px 31px #e6e6e6;
    border: none;
    border-radius: 10px;
}
.feature-sec .card .feature-icon{
    display: inline-block;
    position: absolute;
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
}
.feature-sec .card .feature-icon i{
    display: block;
    font-size: 100px;
    color: #dabf07;
    transition: .5s ease;
}
.feature-sec .card:hover .feature-icon i{
    transform: translateY(-10px);
}
.feature-sec .card-body{
    padding: 85px 49px;
    padding-bottom: 50px;
}
.feature-sec .card-text{
    font-size: 22px;
    font-weight: 500;
}

.feature-sec .card .feature-icon {
    top: -3em;
}
.feature-sec h1 {
    font-size: 60px;
}
.ns-overlay-box{max-width: 1000px; transform: translateY(-200px);}

@media (max-width:1179px) {
    .fbox-icon.ms-resp {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--bs-primary);
        border-radius: 50%;
    }
    .fbox-icon.ms-resp.red {
        background-color: var(--bs-danger);
    }
    .fbox-icon.ms-resp a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height:40px;
        padding-bottom:65px;
    }
    .fbox-icon.ms-resp a i {
        font-size: 20px!important;
    }
    #header-wrap #logo img{height:70px!important;width:auto!important;}
    #logo img{margin-left:.5em!important;}
}

@media (max-width:500px) {
    .vh80,.vh70,.vh65,.vh60{height: unset!important;}
    h4 {font-size:.85rem}
    h4.keep {font-size:1.5rem}
    h4.keep-sm {font-size:1.3rem}
    .display-3{font-size: calc(1.2rem + 3.3vw);}
    .display-4{font-size: calc(1rem + 2.5vw);}
    .display-4.ns-smaller{font-size: calc(1rem + 1.8vw);}
    h6.text-larger, .display-6{font-size: calc(1rem + .5vw)!important;}
    .fs-3 {font-size: calc(1rem + 0.3vw) !important;}
    .fs-4 {font-size: calc(1rem + 0.3vw) !important;}
    .fs-5 {font-size: 1.15rem !important;}
    .lead,.page-menu-title {font-size: 1rem;}
    .lead.ms-smaller {font-size: .85rem;}
    #logo, #logo img {width: 70% !important;}
    #logo img {max-height: 90px !important;height: auto !important;}
    #emergency-parallax{height:unset!important;}
    .content-wrap.no-mobile-pad{padding-bottom:0}
    .checkout-form div div small, .checkout-form div div label small span  {font-size:.65rem!important;line-height: .75rem!important;}
    .checkout-form div div label small span{        display:block !important;        margin-top:-2px !important;    }
    .checkout-form div div label small {font-size:.95rem!important;}
    .checkout-form div div input {font-size:.85rem!important;}
    .ns-paytab{min-width:150px;height:54px}


    .bg-top-left-min { left: -13vw; width: 45vw; }
    .bg-bottom-right-min { right: -13vw; width: 45vw; }
    .ns-overlay-box{transform: translateY(-100px);}
}
@media (max-width:1179px) and (min-width:500px) {
    .bg-top-left-min { left: -10vw; width: 35vw; }
    .bg-bottom-right-min { right: -10vw; width: 35vw; }

    .mob-bigger-vh{min-height:60vh!important;}

}
@media (max-width:1175px) and (min-width:1000px) {
    .page-menu-title {
        font-size: 1rem;
    }
    #logo {width: 15%;margin-right: 1rem;}
    #logo img{width:100%!important;height:auto!important;}
}
@media (max-width: 767px){

    .learn-more-pill {
        font-size: 0.70rem!important;
    }
}
@media (min-width: 1100px) and (max-width:1600px) {
    .display-5 {font-size: 2rem;}
    .fs-4 {font-size:1.25rem!important;}
    .checkout-form div div small, .checkout-form div div label small span  {font-size:.65rem!important;line-height: .75rem!important;}
    .checkout-form div div label small span{        display:block !important;        margin-top:2px !important;    }
    .checkout-form div div label small {font-size:.95rem!important;}
    .checkout-form div div input {font-size:.85rem!important;}
    .ns-paytab{min-width:130px;height:54px}
}
@media (min-width:1350px){
}
@media (max-width:990px){
    .header-size-custom .menu-link{
        color: var(--cnvs-primary-menu-color);
    }
}
@media (max-width: 576px) {
    .modal.modal-howto .modal-dialog {
        position: fixed;
        bottom: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        height: 65%!important;
        min-height:65%!important;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        border-radius: 20px 20px 0 0;
    }

    .modal.modal-howto.show .modal-dialog {
        transform: translateY(0);
    }

    .modal.modal-howto .modal-content {
        height: 100%;
        border-radius: 20px 20px 0 0;
        overflow-y: auto;
    }

    .trust-minimal {
        padding: 0.5rem 0.875rem;
        gap: 0.25rem;
    }

    .trust-minimal-category {
        flex-basis: 100%;
        text-align: center;
    }

    .trust-minimal-divider {
        display: none;
    }
}
@media (min-width: 577px) {
    .modal.modal-howto .modal-dialog {
        max-width: 768px;
    }
}

/* --- Desktop Menu Sizing (fits 6 links in 100px header) --- */
@media (min-width: 992px) {
    .header-size-custom .primary-menu .menu-container {
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .header-size-custom .primary-menu .menu-item.d-lg-none {
        display: none !important;
    }
    .header-size-custom .primary-menu .menu-item:not(.d-lg-none) .menu-link {
        padding: 0.4em 0.7em;
        font-size: 0.88rem;
        white-space: nowrap;
    }
}
/* shrink logo slightly at mid-range desktops to give menu room */
@media (min-width: 992px) and (max-width: 1175px) {
    #logo {
        width: 180px;
        margin-right: 0.75rem;
    }
    #logo img {
        width: 100% !important;
        height: auto !important;
    }
    .header-size-custom .primary-menu .menu-item:not(.d-lg-none) .menu-link {
        padding: 0.35em 0.55em;
        font-size: 0.82rem;
    }
}


/* ================================================================
   NS HEADER — Premium Desktop Menu System
   ================================================================ */

/* --- Full-width header container (breaks out of 1140px) ---------- */
.ns-header-full {
    max-width: none !important;
    padding-left: 3vw;
    padding-right: 3vw;
}

/* --- Logo graduated sizing ---------------------------------------- */
@media (min-width: 992px) and (max-width: 1379px) {
    #header-wrap #logo img {
        height: 64px !important;
        width: auto !important;
    }
    .header-wrap-clone {
        height: 65px !important;
    }
    #header {
        min-height: 65px !important;
        max-height: 65px !important;
        height: 65px !important;
    }
}
@media (min-width: 1380px) and (max-width: 1599px) {
    #header-wrap #logo img {
        height: 74px !important;
        width: auto !important;
    }
    .header-wrap-clone {
        height: 75px !important;
    }
    #header {
        min-height: 75px !important;
        max-height: 75px !important;
        height: 75px !important;
    }
}
@media (min-width: 1600px) {
    #header-wrap #logo img {
        height: 90px !important;
        width: auto !important;
    }
    
        .header-wrap-clone {
            height: 90px !important;
        }
    #header {
        min-height: 90px !important;
        max-height: 90px !important;
        height: 90px !important;
    }
}

/* --- Desktop menu-container: flex row, vertically centered -------- */
@media (min-width: 992px) {
    .ns-header-full .header-row {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    .ns-header-full #logo {
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
    }
    .ns-header-full .primary-menu {
        order: 2;
        flex-shrink: 1;
        flex-grow: 0;
    }
    .ns-header-full .header-misc {
        order: 3 !important;
        flex-shrink: 0;
        margin-left: 12px;
    }
    .ns-header-full .header-misc {
        display: flex !important;
        align-items: center;
        gap: 6px;
        margin-left: 12px;
        flex-shrink: 0;
    }

    .ns-header-full .primary-menu .menu-container {
        display: flex !important;
        align-items: center;
        gap: 0;
    }

    /* hide mobile-only items hard */
    .ns-header-full .primary-menu .menu-item.d-lg-none {
        display: none !important;
    }

    /* --- Menu link: base + hover + active (premium) ------------------- */
    .ns-header-full .primary-menu .menu-item:not(.d-lg-none) > .menu-link {
        position: relative;
        color: var(--bs-primary);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 0.55em 0.75em;
        white-space: nowrap;
        border-radius: 6px;
        transition: color 0.25s ease, background-color 0.25s ease;
        /* gold underline — hidden by default */
    }
    .ns-header-full .primary-menu .menu-item:not(.d-lg-none) > .menu-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 70%;
        height: 2px;
        background: var(--bs-secondary); /* gold */
        border-radius: 2px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* HOVER — subtle bg wash + gold underline slides in */
    .ns-header-full .primary-menu .menu-item:not(.d-lg-none):hover > .menu-link {
        color: var(--bs-primary);
        background-color: rgba(21, 9, 88, 0.06);
    }
    .ns-header-full .primary-menu .menu-item:not(.d-lg-none):hover > .menu-link::after {
        transform: translateX(-50%) scaleX(1);
    }

    /* ACTIVE / CURRENT PAGE — gold text + persistent underline */
    .ns-header-full .primary-menu .menu-item.current:not(.d-lg-none) > .menu-link {
        color: var(--bs-secondary) !important;
    }
    .ns-header-full .primary-menu .menu-item.current:not(.d-lg-none) > .menu-link::after {
        transform: translateX(-50%) scaleX(1);
        background: var(--bs-secondary);
    }
}

/* --- Sign In ghost button ----------------------------------------- */
.ns-signin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid var(--bs-secondary);
    border-radius: 6px;
    color: var(--bs-primary);
    font-family: var(--cnvs-primary-font);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}
.ns-signin-btn .ns-signin-icon {
    font-size: 0.9rem;
    line-height: 1;
}
.ns-signin-btn:hover {
    background-color: var(--bs-secondary);
    color: #fff;
    border-color: var(--bs-secondary);
}

/* 992–1379px: label hides, only icon remains */
@media (min-width: 992px) and (max-width: 1379px) {
    .ns-signin-btn .ns-signin-label {
        display: none;
    }
    .ns-signin-btn {
        padding: 7px 10px;
    }
}
/* --- Language globe + dropdown ------------------------------------- */
.ns-lang-wrap {
    position: relative;
    flex-shrink: 0;
}
.ns-lang-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--bs-primary);
    font-family: var(--cnvs-primary-font);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 6px 4px;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.ns-lang-trigger:hover {
    background-color: rgba(21, 9, 88, 0.06);
    color: var(--bs-primary);
}
.ns-lang-trigger .fa-globe {
    font-size: 0.95rem;
}
.ns-lang-chevron {
    font-size: 0.55rem;
    transition: transform 0.25s ease;
}
.ns-lang-wrap .ns-lang-dropdown.ns-lang-open + .ns-lang-trigger .ns-lang-chevron,
.ns-lang-trigger[aria-expanded="true"] .ns-lang-chevron {
    transform: rotate(180deg);
}

/* Dropdown panel */
.ns-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 80px;
    background: #fff;
    border: 1px solid rgba(21, 9, 88, 0.12);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(21, 9, 88, 0.12);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 500;
}
.ns-lang-dropdown.ns-lang-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown options */
.ns-lang-option {
    display: block;
    padding: 7px 18px;
    color: var(--bs-primary);
    font-family: var(--cnvs-primary-font);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.ns-lang-option:hover {
    background-color: rgba(21, 9, 88, 0.06);
}
.ns-lang-option.ns-lang-active {
    color: var(--bs-secondary);
    font-weight: 700;
    border-left: 2px solid var(--bs-secondary);
    padding-left: 16px;
}

/* --- Mobile menu: premium hover + active (current) ------------ */
@media (max-width: 991px) {
    .menu-container .menu-item > .menu-link {
        position: relative;
        padding: 14px 18px;
        color: var(--bs-primary);
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        border-radius: 8px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    /* left gold bar — hidden by default */
    .menu-container .menu-item > .menu-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) scaleY(0);
        width: 3px;
        height: 70%;
        background: var(--bs-secondary);
        border-radius: 0 3px 3px 0;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* HOVER */
    .menu-container .menu-item:hover > .menu-link {
        background-color: rgba(21, 9, 88, 0.05);
    }
    .menu-container .menu-item:hover > .menu-link::before {
        transform: translateY(-50%) scaleY(1);
    }

    /* ACTIVE / CURRENT */
    .menu-container .menu-item.current > .menu-link {
        color: var(--bs-secondary) !important;
        background-color: rgba(187, 159, 85, 0.08);
    }
    .menu-container .menu-item.current > .menu-link::before {
        transform: translateY(-50%) scaleY(1);
        background: var(--bs-secondary);
    }
}
.uc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(21,9,88,0.35),
            rgba(21,9,88,0.55)
    );
    pointer-events: none;
}
.learn-more-link:hover {
    opacity: 0.8;
}

.learn-more-link:hover i {
    transform: translateX(5px);
}
.ns-bg-pattern {
    background: url("data:image/svg+xml,<svg width='100' height='100' xmlns='http://www.w3.org/2000/svg'><rect width='100' height='100' fill='%23BB9F55' opacity='0.03'/></svg>");
    opacity: 0.5;
}

/* Button Hover Enhancement */
.ns-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(21, 9, 88, 0.5) !important;
}

/* Smooth transitions for all interactive elements */
.card, .button, a {
    transition: all 0.3s ease;
}

/* ── Comparison Cards ─────────────────────────────────────────── */
.ns-comparison-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ns-comparison-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

/* ── Learn More Button Hover (Light theme version) ──────────── */
.ns-learn-more-btn:hover {
    background: rgba(21, 9, 88, 0.12) !important;
    border-color: rgba(21, 9, 88, 0.25) !important;
    transform: translateY(-2px);
}
.ns-learn-more-btn:hover .ns-hero-why-arr {
    transform: translateY(3px);
    transition: transform 0.25s ease;
}

/* ── FAQ Hover ────────────────────────────────────────────────── */
.toggle:hover {
    box-shadow: 0 8px 30px rgba(21, 9, 88, 0.12) !important;
}

/* ── Toggle Icons ─────────────────────────────────────────────── */
.toggle .toggle-closed {
    display: inline-block;
    transition: transform 0.3s ease;
}
.toggle .toggle-open {
    display: none;
}
.toggle.active .toggle-closed {
    display: none;
}
.toggle.active .toggle-open {
    display: inline-block;
}

/* ── Cost Comparison Section ─────────────────────────────────── */
.ns-cost-section { background: #f8f9fa; }

/* ── Prevention Card — Dark Premium ──────────────────────────── */
.ns-prev-card {
    background: radial-gradient(circle at top left, rgba(187,159,85,0.08), transparent 40%),
    linear-gradient(160deg, #070320 0%, #12074a 45%, #1a0d6b 100%);
    box-shadow: 0 20px 60px rgba(21,9,88,0.35);
}
.ns-prev-card:hover {
    box-shadow: 0 28px 70px rgba(21,9,88,0.45), 0 0 80px rgba(187,159,85,0.08);
}

/* Gold shimmer top bar */
.ns-gold-bar {
    height: 4px;
    background: linear-gradient(90deg, #BB9F55, #d4b76a, #BB9F55);
    background-size: 200% 100%;
    animation: ns-shimmer 4s ease-in-out infinite;
}

/* Badge */
.ns-smart-badge {
    background: linear-gradient(135deg, #BB9F55 0%, #d4b76a 100%);
    color: #ffffff;
    border-radius: 0 0 0 14px;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(187,159,85,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}
.ns-smart-badge-mobile {
    background: linear-gradient(135deg, #BB9F55 0%, #d4b76a 100%);
    color: #ffffff;
    border-radius: 0 0 0 10px;
    font-size: 0.6rem;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 12px rgba(187,159,85,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.35);
}

/* Icon circles */
.ns-prev-icon {
    width: 75px;
    height: 75px;
    background: rgba(187,159,85,0.1);
    border: 1px solid rgba(187,159,85,0.2);
}
.ns-prev-icon-mobile {
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at top, rgba(187,159,85,0.28), rgba(187,159,85,0.08));
    border: 1px solid rgba(187,159,85,0.35);
    box-shadow: 0 10px 24px rgba(187,159,85,0.35);
}
.ns-prev-cancel {
    color: rgba(187,159,85,0.8);
}

/* Check circles */
.ns-prev-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: radial-gradient(circle at top, rgba(187,159,85,0.35), rgba(187,159,85,0.12));
    border: 1px solid rgba(187,159,85,0.45);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ns-prev-card li:hover .ns-prev-check {
    transform: scale(1.12);
    box-shadow: 0 0 12px rgba(187,159,85,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.2);
}
.ns-prev-check i {
    font-size: 0.8rem;
    color: #BB9F55;
}
.ns-prev-item-text {
    color: rgba(255,255,255,0.85);
}
.ns-prev-card li {
    transition: transform 0.2s ease;
}
.ns-prev-card li:hover {
    transform: translateX(4px);
}

/* Footer box */
.ns-prev-footer {
    background: linear-gradient(135deg, rgba(187,159,85,0.12), rgba(187,159,85,0.04));
    border: 1px solid rgba(187,159,85,0.25);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.ns-gold { color: #BB9F55; }
.ns-text-white-90 { color: rgba(255,255,255,0.9); }

/* ── Emergency Card — Clean White ────────────────────────────── */
.ns-emerg-card {
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(0,0,0,0.10);
    border: 1px solid rgba(220,53,69,0.14) !important;
}
.ns-emerg-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

/* Danger gradient bar */
.ns-danger-bar {
    height: 4px;
    background: linear-gradient(90deg, #dc3545 0%, #f1b2b8 40%, #dc3545 100%);
}
.ns-danger-bar-mobile {
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #f1b2b8 40%, #dc3545 100%);
}

/* Warning icon */
.ns-emerg-icon {
    width: 75px;
    height: 75px;
    background: radial-gradient(circle at top, rgba(220,53,69,0.22), rgba(220,53,69,0.06));
    border: 1px solid rgba(220,53,69,0.25);
    box-shadow: 0 10px 24px rgba(220,53,69,0.25);
}
.ns-emerg-icon-mobile {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at top, rgba(220,53,69,0.22), rgba(220,53,69,0.06));
    border: 1px solid rgba(220,53,69,0.25);
    box-shadow: 0 8px 18px rgba(220,53,69,0.25);
}
.ns-emerg-card:hover .ns-price-250 { color: rgba(220,53,69,0.4); }
.ns-emerg-card:hover .ns-price-500 { color: rgba(220,53,69,0.65); }
.ns-emerg-card:hover .ns-price-1500 { text-shadow: 0 8px 24px rgba(220,53,69,0.25); }

/* X circles */
.ns-emerg-x {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: radial-gradient(circle at top, rgba(220,53,69,0.25), rgba(220,53,69,0.08));
    border: 1px solid rgba(220,53,69,0.35);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
    transition: transform 0.25s ease;
}
.ns-emerg-card li:hover .ns-emerg-x {
    transform: scale(1.12);
}
.ns-emerg-x i { font-size: 0.8rem; }
.ns-emerg-card li {
    transition: transform 0.2s ease;
}
.ns-emerg-card li:hover {
    transform: translateX(4px);
}

/* Emergency footer */
.ns-emerg-footer {
    background: linear-gradient(135deg, rgba(220,53,69,0.06), rgba(220,53,69,0.02));
    border: 1px solid rgba(220,53,69,0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

/* ── Mobile Containers ───────────────────────────────────────── */
.ns-prev-mobile {
    background: linear-gradient(160deg, #0a0533 0%, #150958 45%, #1a0d6b 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(21,9,88,0.35);
}
.ns-emerg-mobile {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* Mobile savings box */
.ns-prev-savings-m {
    background: linear-gradient(135deg, rgba(187,159,85,0.14), rgba(187,159,85,0.05));
    border: 1px solid rgba(187,159,85,0.25);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.ns-emerg-cost-m {
    background: linear-gradient(135deg, rgba(220,53,69,0.06), rgba(220,53,69,0.02));
    border: 1px solid rgba(220,53,69,0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}
.ns-prev-cancel-m {
    font-size: 0.75rem;
    color: rgba(187,159,85,0.85);
}

/* ── VS Divider ──────────────────────────────────────────────── */
.ns-vs-divider {
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

/* ── Analogy Footer ──────────────────────────────────────────── */
.ns-analogy {
    background: rgba(21,9,88,0.04);
    border: 1px solid rgba(21,9,88,0.08);
}

/* ── Mobile check/x icon size ────────────────────────────────── */
.ns-mobile-icon { font-size: 0.85rem; }
.ns-mobile-text { font-size: 0.85rem; }

/* ── Prevention Cards Enhanced Hover ───────────────────────────────── */
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12) !important;
}
.ns-prev-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-card:hover .ns-prev-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ── Pricing Cards Enhanced ────────────────────────────────────────── */
.ns-pricing-card {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ns-pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15) !important;
}

/* ── Sentinel Card Glow Effect ─────────────────────────────────────── */
.ns-pricing-sentinel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #BB9F55, transparent);
    animation: shimmer 3s ease-in-out infinite;
}


/* ── Pricing Row Alignment ─────────────────────────────────────────── */
.ns-pricing-row {
    align-items: stretch;
}

/* ── Touch Target Safety ───────────────────────────────────────────── */
.ns-pricing-card .button {
    min-height: 50px;
}

/* ── Smooth Scroll Behavior ────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

/* ── Performance: Will-Change ──────────────────────────────────────── */
.ns-pricing-card,
.trust-card,
.ns-faq-item,
.ns-pricing-cta {
    will-change: transform;
}

/* ── Sentinel Dark Text Safety ─────────────────────────────────────── */
.ns-pricing-sentinel .list-unstyled li span strong {
    color: #ffffff;
}

/* Hover Effects */
.hover-effect {
    transition: all 0.3s ease;
}
.hover-effect:hover {
    color: var(--bs-secondary) !important;
    transform: translateX(5px);
}

/* 3 Cards Hover */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
}

.accordion-arrow {
    margin-left: auto;
    font-size: 0.9rem;
    transition: transform 0.25s ease;
    color: #150958;
}

.accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.initially-hidden {
    display: none;
}

/* Premium hover effect for learn more link */
.hover-underline {
    position: relative;
    transition: all 0.3s ease;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #150958;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* Form field invalid state */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Enhanced form controls */
.form-control:focus {
    border-color: #150958;
    box-shadow: 0 0 0 0.2rem rgba(21, 9, 88, 0.15);
}

/* Trust alert hover effect */
.alert:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08) !important;
}

.trust-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg,
    rgba(21, 9, 88, 0.02) 0%,
    rgba(187, 159, 85, 0.015) 100%);
    border: 1px solid rgba(21, 9, 88, 0.06);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(21, 9, 88, 0.02);
}

.trust-minimal:hover {
    background: linear-gradient(135deg,
    rgba(21, 9, 88, 0.03) 0%,
    rgba(187, 159, 85, 0.025) 100%);
    border-color: rgba(187, 159, 85, 0.12);
    box-shadow: 0 4px 16px rgba(21, 9, 88, 0.06);
    transform: translateY(-1px);
}

.trust-minimal-icon {
    font-size: 1rem;
    color: #BB9F55;
    opacity: 0.7;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-minimal:hover .trust-minimal-icon {
    opacity: 1;
    transform: rotate(-8deg);
}

.trust-minimal-category {
    font-size: 0.875rem;
    color: #150958;
    white-space: nowrap;
    opacity: 0.85;
}

.trust-minimal-divider {
    font-size: 0.875rem;
    color: rgba(21, 9, 88, 0.2);
    margin: 0 0.125rem;
}

.trust-minimal-text {
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.trust-minimal-link {
    font-size: 0.875rem;
    color: #150958;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

.trust-minimal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #BB9F55;
    transition: width 0.3s ease;
}

.trust-minimal-link:hover {
    color: #BB9F55;
}

.trust-minimal-link:hover::after {
    width: calc(100% - 1.25rem);
}

.trust-minimal-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.trust-minimal-link:hover i {
    transform: translateX(3px);
}
/* Hide default checkbox */
.premium-service-checkbox{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

/* Premium Service Card default neutral state */
.premium-service-card{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    padding:1.25rem;
    background:#ffffff;
    border:1.5px solid rgba(21,9,88,0.08);
    border-radius:12px;
    cursor:pointer;
    transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
    position:relative;
    height:100%;
    margin:0;
}

.premium-service-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:12px;
    background:linear-gradient(135deg,
    rgba(187,159,85,0.06) 0%,
    rgba(21,9,88,0.06) 100%);
    opacity:0;
    transition:opacity 0.3s ease;
    pointer-events:none;
}

/* Hover state */
.premium-service-card:hover{
    border-color:rgba(187,159,85,0.25);
    box-shadow:0 4px 16px rgba(21,9,88,0.06);
    transform:translateY(-2px);
}

.premium-service-card:hover::before{
    opacity:0.4;
}

/* Checkbox box */
.service-card-check{
    flex-shrink:0;
    width:22px;
    height:22px;
    border:2px solid rgba(21,9,88,0.25);
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    transition:all 0.25s ease;
    position:relative;
    z-index:1;
}

.service-card-check i{
    font-size:0.75rem;
    color:#ffffff;
    opacity:0;
    transform:scale(0.5);
    transition:all 0.25s ease;
}

/* Checked state */
.premium-service-checkbox:checked + .premium-service-card{
    background:linear-gradient(135deg,
    rgba(21,9,88,0.04) 0%,
    rgba(255,255,255,0.85) 50%,
    rgba(187,159,85,0.04) 100%);
    border-color:#BB9F55;
    box-shadow:0 4px 20px rgba(187,159,85,0.18);
}

.premium-service-checkbox:checked + .premium-service-card::before{
    opacity:1;
}

.premium-service-checkbox:checked + .premium-service-card .service-card-check{
    background:linear-gradient(135deg,#BB9F55 0%,#d4b66a 100%);
    border-color:#BB9F55;
    box-shadow:0 2px 8px rgba(187,159,85,0.35);
}

.premium-service-checkbox:checked + .premium-service-card .service-card-check i{
    opacity:1;
    transform:scale(1);
}

/* Content */
.service-card-content{
    flex:1;
    position:relative;
    z-index:1;
}

.service-card-title{
    color:#150958;
    font-size:0.95rem;
    line-height:1.4;
}

.service-card-subtitle{
    color:#6c757d;
    font-size:0.85rem;
    line-height:1.5;
    display:block;
}

/* Focus accessibility */
.premium-service-checkbox:focus + .premium-service-card{
    outline:2px solid rgba(187,159,85,0.35);
    outline-offset:2px;
}

/* Premium Terms Styling */
.premium-terms-wrapper {
    position: relative;
}

.premium-terms-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.premium-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg,
    rgba(21, 9, 88, 0.015) 0%,
    rgba(255, 255, 255, 0.5) 100%);
    border: 1.5px solid rgba(21, 9, 88, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.premium-terms-label:hover {
    background: linear-gradient(135deg,
    rgba(21, 9, 88, 0.025) 0%,
    rgba(255, 255, 255, 0.8) 100%);
    border-color: rgba(187, 159, 85, 0.2);
    box-shadow: 0 2px 12px rgba(21, 9, 88, 0.04);
}

/* Custom Checkbox */
.terms-checkbox-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    border: 2px solid rgba(21, 9, 88, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-checkbox-box i {
    font-size: 0.7rem;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

/* Hover State */
.premium-terms-label:hover .terms-checkbox-box {
    border-color: rgba(187, 159, 85, 0.35);
    background: rgba(187, 159, 85, 0.03);
}

/* Checked State */
.premium-terms-checkbox:checked + .premium-terms-label {
    background: linear-gradient(135deg,
    rgba(21, 9, 88, 0.03) 0%,
    rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(187, 159, 85, 0.3);
}

.premium-terms-checkbox:checked + .premium-terms-label .terms-checkbox-box {
    background: linear-gradient(135deg, #BB9F55 0%, #d4b66a 100%);
    border-color: #BB9F55;
    box-shadow: 0 2px 6px rgba(187, 159, 85, 0.25);
}

.premium-terms-checkbox:checked + .premium-terms-label .terms-checkbox-box i {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

/* Text Content */
.terms-text {
    flex: 1;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.terms-link {
    color: #150958;
    text-decoration: none;
    border-bottom: 1px solid rgba(21, 9, 88, 0.2);
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.terms-link:hover {
    color: #BB9F55;
    border-bottom-color: #BB9F55;
}

.terms-subtext {
    font-size: 0.8rem;
    color: #8b92a0;
    line-height: 1.4;
}

/* Focus State */
.premium-terms-checkbox:focus + .premium-terms-label {
    outline: 2px solid rgba(187, 159, 85, 0.3);
    outline-offset: 2px;
}

/* Required Validation */
.premium-terms-checkbox:invalid + .premium-terms-label {
    border-color: rgba(220, 53, 69, 0.15);
}

.premium-terms-checkbox:invalid:focus + .premium-terms-label {
    border-color: rgba(220, 53, 69, 0.3);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
/* MediaStalker Hero Card Styles */
.mediastalker-hero-card {
    background: url('/assets/images/working/about-us/about-mediastalker.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    box-shadow:20px 20px 20px rgba(21,9,88,.35)

}

.mediastalker-content-wrapper {
    z-index: 2;
}

/* Liquid Glass Effect */
.mediastalker-glass-panel {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.mediastalker-badge {
    background: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.mediastalker-badge:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

.mediastalker-badge-accent {
    background: rgba(187,159,85,0.3);
    border: 1px solid rgba(187,159,85,0.4);
}

.mediastalker-badge-accent:hover {
    background: rgba(187,159,85,0.4);
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem !important;
    }
    .display-5 {
        font-size: 1.75rem !important;
    }
    .display-6 {
        font-size: 1.5rem !important;
    }
    .category-card {
        padding: 1.5rem !important;
    }
    .premium-terms-label {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    .terms-text {
        font-size: 0.85rem;
    }
    .terms-subtext {
        font-size: 0.75rem;
    }
    .premium-service-card{
        padding:1rem;
        gap:0.875rem;
    }
    .service-card-check{
        width:20px;
        height:20px;
    }
    .service-card-title{
        font-size:0.9rem;
    }
    .service-card-subtitle{
        font-size:0.8rem;
    }
    .trust-minimal {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.625rem 1rem;
        gap: 0.375rem;
    }

    .trust-minimal-icon {
        font-size: 0.9rem;
    }

    .trust-minimal-category,
    .trust-minimal-text,
    .trust-minimal-link {
        font-size: 0.8125rem;
    }

    .trust-minimal-text {
        white-space: normal;
        flex-basis: 100%;
        text-align: center;
    }
}

/* ── Mobile Single Column ──────────────────────────────────────────── */
@media (max-width: 575px) {
    .ns-pricing-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px); }
    to {         opacity: 1;         transform: translateY(0);     }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ns-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
     0%, 100% {
         opacity: 0.5;
         transform: scale(1);
     }
     50% {
         opacity: 1;
         transform: scale(1.02);
     }
 }
@keyframes shimmer {
     0%, 100% {
         opacity: 0.3;
     }
     50% {
         opacity: 1;
     }
 }
