/* ════════════════════════════════════════════════════════════
   NEW2 TEMPLATE — Electrotech Webstore
   ════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #08152a;
    --navy-mid: #0d1f3c;
    --navy-light: #132847;
    --orange: #e8a020;
    --orange-dark: #c98510;
    --white: #ffffff;
    --text-muted: #8fa4c0;
    --border: rgba(255, 255, 255, 0.10);
    --font: 'Inter', 'Segoe UI', Arial, sans-serif;
    --radius: 10px;
    --transition: all 0.22s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: #f0f4f8;
    color: #1a2a3a;
    font-size: 15px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── TOP BAR ────────────────────────────────────────────────── */
#n2-topbar {
    background: var(--navy);
    border-bottom: 1px solid var(--border);
}

.n2-topbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    flex-wrap: wrap;
}

.n2-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
}

/* Logo */
.n2-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.n2-logo img {
    height: 48px;
    width: auto;
}

/* Primary Nav */
.n2-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.n2-nav li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    opacity: 0.85;

    font-weight: 700;
    color: var(--orange);

}

.n2-nav li a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* ── Mega-Menu ──────────────────────────────────────────── */
.n2-nav li {
    position: relative;
}

/* Arrow chevron next to label */
.n2-nav-arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.n2-has-sub:hover .n2-nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* The dropdown panel */
.n2-submenu {
    display: flex;
    position: absolute;
    top: 100%;
    /* flush — no gap that breaks hover */
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 620px;
    background: transparent;
    /* transparent wrapper — visual panel is inside */
    border-radius: 12px;
    overflow: visible;
    /* allow padding-top shadow to not clip */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 999;
    padding-top: 10px;
    /* the 10px transparent bridge — keeps hover active */
}

/* The visible inner box */
.n2-submenu>.n2-sub-left,
.n2-submenu>.n2-sub-right {
    position: relative;
}

.n2-submenu>.n2-sub-left {
    border-radius: 12px 0 0 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.n2-submenu>.n2-sub-right {
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

/* Pseudo-element that physically covers the gap between li-bottom and submenu-top */
.n2-has-sub::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    pointer-events: none;
    /* inactive by default */
}

.n2-has-sub:hover::after {
    pointer-events: auto;
    /* active when submenu is open — bridges the gap */
}

/* Show on hover */
.n2-has-sub:hover .n2-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Left column: links */
.n2-sub-left {
    flex: 0 0 220px;
    background: #f5f8fc;
    padding: 10px 0;
    border-right: 1px solid #e8eef5;
}

.n2-sub-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.n2-sub-left ul li a {
    display: block;
    padding: 11px 22px;
    color: #001437 !important;
    font-size: 14px;
    font-weight: 600;
    opacity: 1 !important;
    background: none !important;
    border-radius: 0 !important;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    border-left: 3px solid transparent;
}

.n2-sub-left ul li a:hover {
    background: #fff !important;
    color: var(--orange) !important;
    border-left-color: var(--orange);
    padding-left: 26px;
}

/* Right column: rich content */
.n2-sub-right {
    flex: 1;
    background: linear-gradient(135deg, #001437 60%, #082861);
    display: flex;
    align-items: center;
    justify-content: center;
}

.n2-sub-content {
    padding: 28px 30px;
    text-align: center;
}

.n2-sub-content img {
    max-width: 220px;
    width: 100%;
    margin-bottom: 14px;
    border-radius: 6px;
}

.n2-sub-tagline {
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 14px;
}

.n2-sub-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.n2-sub-tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.5px;
}

.n2-sub-tel svg {
    stroke: var(--orange);
}

/* ── "Book a Service" CTA — left column card ──────────── */
/* ── "Book a Service" — left column compact link ───────── */
.n2-book-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 10px 6px;
    padding: 9px 14px;
    background: linear-gradient(135deg, #f0b840, #f7ca5a) !important;
    ;
    border-radius: 8px;
    color: var(--navy) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    opacity: 1 !important;
    border-left: none !important;
    transition: background 0.15s ease, gap 0.15s ease;
    letter-spacing: 0.2px;
}

.n2-book-simple svg {
    stroke: var(--orange);
    flex-shrink: 0;
}

.n2-book-simple:hover {
    background: rgba(232, 160, 32, 0.22) !important;
    color: var(--navy) !important;
    gap: 11px;
    padding-left: 14px !important;
    border-left: none !important;
}

/* Green overrides for Job Tracking button */
.n2-track-simple {
    background: linear-gradient(135deg, #0ea349, #066129) !important;
    color: #fff !important;
}

.n2-track-simple svg {
    stroke: #fff;
}

.n2-track-simple:hover {
    background: rgba(6, 97, 41, 0.15) !important;
    color: #066129 !important;
}

/* ── "Book a Service" — right panel full card ───────────── */
.n2-sub-book-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: calc(100% - 40px);
    margin: 0 0 20px;
    padding: 16px 18px !important;
    background: linear-gradient(135deg, #e8a020, #f4c244);
    border-radius: 14px;
    color: #001437 !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 28px rgba(232, 160, 32, 0.5);

    margin: 0 auto;
    margin-bottom: 20px;
}

.n2-sub-book-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(232, 160, 32, 0.75);
    background: linear-gradient(135deg, #f0b840, #f7ca5a) !important;
}

.n2-sub-book-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(0, 20, 55, 0.13);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001437;
}

.n2-sub-book-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.n2-sub-book-card-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #001437;
    line-height: 1;
}

.n2-sub-book-card-text small {
    display: block;
    font-size: 12px;
    color: rgba(0, 20, 55, 0.6);
    font-weight: 500;
}

.n2-sub-book-card-arr {
    flex-shrink: 0;
    color: rgba(0, 20, 55, 0.45);
    transition: transform 0.18s ease, color 0.18s ease;
}

.n2-sub-book-card:hover .n2-sub-book-card-arr {
    transform: translateX(4px);
    color: rgba(0, 20, 55, 0.8);
}

/* ── Responsive: collapse submenus on mobile ─────────────── */



/* CTA Buttons (top right) */
.n2-topbtns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.n2-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    background: #102344de;
}

.n2-btn-outline:hover {
    background: #e8a020;
    border-color: rgba(255, 255, 255, 0.8);
    color: #001437;
}




.n2-btn-outline2 {



    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: var(--navy);
    font-size: 13.5px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    transition: var(--transition);
    white-space: nowrap;

}

.n2-btn-outline2:hover {
    background: var(--navy);
    ;
    border-color: var(--orange);
    ;
    color: var(--orange);
    ;
}




.n2-btn-outline .n2-arrow {
    width: 24px;
    height: 24px;
    border: 0px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Contact info top-right */
.n2-contact-topright {
    color: var(--white);
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
    flex-shrink: 0;
}

.n2-contact-topright .phone {
    font-weight: 700;
    font-size: 14px;
    color: var(--orange);
}

.n2-contact-topright .email {
    opacity: 0.7;
    font-size: 12px;
}


/* ── SEARCH BAR ROW ─────────────────────────────────────────── */
#n2-search-row {
    background: var(--navy);
    padding: 12px 0;
}

.n2-search-row-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Breadcrumbs */
.n2-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.n2-bc-home {
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.n2-bc-home:hover {
    opacity: 1;
}

.n2-bc-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    user-select: none;
}

.n2-bc-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.n2-bc-item:hover {
    color: var(--orange);
}

.n2-bc-current {
    color: var(--orange);
    font-weight: 600;
    cursor: default;
}

/* Search form */
.n2-search-form {
    display: flex;
    align-items: center;
    background: #102344de;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    padding: 0 8px 0 20px;
}

.n2-search-form.full {
    width: 100%;
    margin: 0 25%;
}

.n2-search-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 6px;
    letter-spacing: 0.03em;
}

.n2-search-form input[type="text"] {
    flex: 1;
    min-width: 320px;
    border: none;
    outline: none;
    padding: 11px 12px;
    font-family: var(--font);
    font-size: 14.5px;
    color: #fff;
    background: transparent;
}

.n2-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.n2-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 18px 10px 10px;
    color: #1a2a3a;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.n2-search-btn:hover {
    color: var(--orange);
}


/* ── HEADER WRAPPER (topbar + search + hero) ────────────────── */
#n2-header {
    background: #001437 url('../img/new2/hero-bg2.jpg') top center no-repeat;
    /*background-size: cover;*/
}

/* ── TOP BAR: transparent — inherits header bg ───────────────── */
#n2-topbar {
    background: transparent;
}

/* ── SEARCH ROW: transparent — inherits header bg ────────────── */
#n2-search-row {
    background: transparent;
}

/* ── HERO ───────────────────────────────────────────────────── */
#n2-hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 90px;
    min-height: 480px;
}

/*
#n2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8,21,42,0.97) 38%, rgba(8,21,42,0.55) 70%, rgba(8,21,42,0.15) 100%);
    pointer-events: none;
}

#n2-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(232,160,32,0.04) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.06'%3E%3Cpath d='M10 0v60M20 0v60M30 0v60M40 0v60M50 0v60M0 10h60M0 20h60M0 30h60M0 40h60M0 50h60'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
    */

.n2-hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.n2-hero-left {
    color: var(--white);
}

.n2-hero-h1 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    background: -webkit-linear-gradient(209deg, #ffffff, #ffedd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.n2-hero-divider {
    width: 44px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 20px;
}

.n2-hero-sub {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.82;
    margin-bottom: 44px;
    line-height: 1.5;
}

/* Feature icon row */
.n2-features {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.n2-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    opacity: 0.9;
}

.n2-feat-icon {
    width: 52px;
    height: 52px;
    border: 0x solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;

    backdrop-filter: blur(4px);
}

.n2-feat-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    color: #e8a020;
    line-height: 1.3;
    max-width: 95px;
}

/* ── SERVICE CARDS (floating) ───────────────────────────────── */
#n2-services {
    background: transparent;
    padding: 0 28px;
    position: relative;
    z-index: 10;
    margin-top: -52px;
}

.n2-services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.n2-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}

.n2-card {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 2px solid #edf0f4;
    transition: var(--transition);
    cursor: pointer;
    border-image: linear-gradient(0deg, #fff, #c6cfde, #fff) 1;
}

.n2-card:last-child {
    border-right: none;
}

.n2-card:hover {
    background: #fafbff;
    transform: translateY(-3px);
}

.n2-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 30px;
    color: var(--orange);
}

.n2-card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.n2-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1d2e;
    margin-bottom: 8px;
}

.n2-card p {
    font-size: 13px;
    color: var(--orange-dark);
    line-height: 1.55;
    font-weight: 500;
}

/* ── ABOUT / CTA SECTION ────────────────────────────────────── */
#n2-about {
    max-width: 1300px;
    margin: 64px auto 60px;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
    align-items: center;
}


.n2-about-text {
    font-size: 18px;
    font-weight: 700;
    color: #08152a;
    line-height: 1.6;
    margin-bottom: 36px;
}

.n2-about-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}





/* ── ABOUT / CTA SECTION ────────────────────────────────────── */
#n2-content {
    max-width: 1300px;
    margin: 0 auto 0;
    padding: 0 28px;

    align-items: center;
}

/* Dark pill buttons */
.n2-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--navy);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.n2-btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 21, 42, 0.22);
}

.n2-btn-dark .icon {
    font-size: 15px;
}

.n2-btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: var(--navy);
    font-size: 13.5px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    transition: var(--transition);
    white-space: nowrap;
}

.n2-btn-orange:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

.n2-btn-orange .icon {
    font-size: 15px;
}

.n2-about-right img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(8, 21, 42, 0.18);
}

.n2-about-h2 {
    font-size: 26px;
    font-weight: 800;
    color: #08152a;
    line-height: 1.25;
    margin-bottom: 14px;
}

.n2-about-sub {
    font-size: 15px;
    font-weight: 400;
    color: #596779;
    line-height: 1.65;
    margin-bottom: 36px;
}

/* ── HOME CONTENT SECTIONS ──────────────────────────────────── */
#n2-home-content {
    max-width: 1300px;
    margin: 0 auto 64px;
    padding: 0 28px;
}

.n2-home-section {
    margin-bottom: 52px;
}

.n2-home-section h2 {
    color: var(--navy);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.n2-home-lead {
    color: #596779;
    font-size: 15px;
    margin-bottom: 22px;
}

.n2-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.n2-do-card {
    display: block;
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid rgba(8, 21, 42, 0.07);
    box-shadow: 0 2px 12px rgba(8, 21, 42, 0.05);
    transition: var(--transition);
}

.n2-do-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 10px 26px rgba(8, 21, 42, 0.10);
}

.n2-do-card h3 {
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.n2-do-card p {
    color: #596779;
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 12px;
}

.n2-do-link {
    color: var(--orange-dark);
    font-weight: 600;
    font-size: 13px;
}

.n2-repair-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.n2-repair-chip {
    background: #fff;
    border: 1px solid rgba(8, 21, 42, 0.12);
    color: var(--navy);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
}

.n2-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.n2-why-card {
    background: linear-gradient(135deg, #001437 0%, #07265a 100%);
    border-radius: var(--radius);
    padding: 22px;
}

.n2-why-card h3 {
    color: var(--orange);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.n2-why-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    line-height: 1.55;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#n2-footer {
    background: var(--navy);
    background: url(../img/new2/Footer.svg) center center no-repeat #001537;
    padding: 32px 28px 24px;
    margin-top: 0;
}

.n2-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.n2-footer-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.n2-footer-contact {
    text-align: right;
}

.n2-footer-contact .phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    display: block;
    margin-bottom: 4px;
}

.n2-footer-contact .email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.n2-footer-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 0 20px;
}

.n2-footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.8;
}

.n2-footer-bottom a {
    color: var(--orange);
    opacity: 0.8;
    transition: var(--transition);
}

.n2-footer-bottom a:hover {
    opacity: 1;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .n2-hero-inner {
        grid-template-columns: 1fr;
    }

    #n2-about {
        grid-template-columns: 1fr;
    }

    .n2-about-right {
        display: none;
    }

    .n2-cards {
        grid-template-columns: 1fr;
    }

    .n2-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n2-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .n2-card {
        border-right: none;
        border-bottom: 1px solid #edf0f4;
    }

    .n2-card:last-child {
        border-bottom: none;
    }

    .n2-topbar-inner {
        padding: 0;
    }

    .n2-nav {
        gap: 2px;
    }

    .n2-submenu {
        min-width: 420px;
    }

    .n2-contact-topright {
        display: none;
    }
}

@media (max-width: 640px) {
    .n2-features {
        gap: 16px;
        display: none;
        margin-bottom: 0;
    }

    .n2-do-grid {
        grid-template-columns: 1fr;
    }

    .n2-why-grid {
        grid-template-columns: 1fr;
    }

    .n2-topbtns {
        display: none;
        /*
        position: absolute;
        top: 70px;
        right: 0;
        */
    }

    .n2-nav li a {
        font-size: 12px;
        padding: 6px 8px;
    }

    /* Mobile submenus — stack vertically and show statically */
    .n2-submenu {
        display: flex !important;
        flex-direction: column;
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        min-width: 100%;
        padding: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        /* distinct background for submenus */
    }

    .n2-sub-left,
    .n2-sub-right {
        flex: auto;
        width: 100%;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
    }

    .n2-sub-right {
        display: none !important;
        /* Hide promo cards on mobile to save space */
    }

    .n2-sub-left ul li a {
        color: #fff !important;
        padding: 18px 40px !important;
        /* indented for hierarchy */
        font-size: 15px !important;
        border-left: none !important;
    }

    /* Prevent mobile tap (hover) from shifting layout */
    .n2-has-sub:hover .n2-submenu {
        transform: none !important;
    }

    .n2-sub-left ul li a:hover {
        padding: 18px 40px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-left: none !important;
    }

    .n2-book-simple {
        justify-content: center;
        margin: 15px 20px 10px !important;
    }

    .n2-book-simple:hover {
        padding: 9px 14px !important;
        gap: 8px !important;
    }

    .n2-nav-arrow {
        display: none;
    }

    /* Mobile topbar: logo on left, toggle on right */
    .n2-topbar-inner {
        position: relative;
        z-index: 999;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 12px 16px;
    }

    .n2-logo {
        width: auto;
        justify-content: flex-start;
    }

    .n2-mobile-toggle {
        display: block;
        color: #fff;
    }

    .n2-nav {
        display: none;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0d1f3c;
        /* var(--navy-mid) */
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding-bottom: 0;
        max-height: calc(75vh);
        overflow-y: auto;
    }

    .n2-nav.active {
        display: flex;
    }

    .n2-nav li {
        width: 100%;
    }

    .n2-nav li a {
        display: flex;
        width: 100%;
        white-space: normal;
        padding: 20px 24px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        justify-content: flex-start;
        border-radius: 0;
    }

    /* Search row: stack breadcrumbs above a full-width search box */
    .n2-search-row-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 16px;
    }

    .n2-breadcrumbs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .n2-search-form,
    .n2-search-form.full {
        width: 100%;
        margin: 0;
    }

    .n2-search-form input[type="text"] {
        min-width: 0;
    }

    /* Prevent wide tables/iframes from overflowing the viewport */
    #n2-content {}
}


/* ══════════════════════════════════════════════════════════════
   SEARCH PAGE — #bigsearch bar
   ══════════════════════════════════════════════════════════════ */

#n2-content {
    padding: 0;
}

#bigsearch {
    background: #206dbc;
    border-bottom: 8px solid #175286;
    box-shadow: 0 150px 140px -160px rgba(0, 0, 0, .75) inset;
    padding: 30px 25px;
    text-align: center;
    width: 100%;
}

#bigsearch form .nw {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 700px;
    width: 100%;
}

#bigsearch input[type="text"] {
    flex: 1 1 300px;
    min-width: 0;
    border: 1px solid #14609a;
    border-right: none;
    border-radius: 3px 0 0 3px;
    font-size: 17px;
    line-height: 1;
    padding: 10px 14px;
    background: #fff;
    color: #111;
    outline: none;
}

#bigsearch form a {
    background: #3b3b3b;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 -15px 25px -15px rgba(0, 0, 0, .5) inset;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    flex-shrink: 0;
}

#bigsearch form a img {
    display: block;
}

/* limit dropdown */
#bigsearch .limitpp {
    display: inline-flex;
    align-items: stretch;
    margin-left: 8px;
}

#bigsearch .limitpp select {
    border: 1px solid #14609a;
    border-radius: 3px;
    background: #fff;
    font-size: 15px;
    padding: 8px 10px;
    cursor: pointer;
}

#resultshead {
    color: #fff;
    font-size: 13px;
    padding: 14px 0 0;
}

#resultshead .key {
    color: #001437;
    font-weight: 600;
}

#resultshead .pages {
    background: #c58c23;
    border-radius: 4px;
    padding: 3px 8px;
    margin-left: 6px;
    color: #001437;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID — flexbox, 4 cols → 2 → 1
   ══════════════════════════════════════════════════════════════ */

#productlist {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px 60px;
}

#productlist>div.size {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    /* handled by .row padding */
}

/* Each card wrapper */
#productlist .row {
    width: 25%;
    padding: 12px;
    box-sizing: border-box;
}

/* The card itself */
#productlist .product {
    display: flex;
    flex-direction: column;
    background: none;
    overflow: hidden;
    border-radius: 3px;
    text-decoration: none;
    height: 100%;
    transition: box-shadow 200ms ease;

    border: 1px solid #00143773;
    border-radius: 8px;

}

#productlist .product:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .45);
}

/* Image */
#productlist .crop {
    overflow: hidden;
    flex-shrink: 0;
}

#productlist .row img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: opacity 200ms ease, transform 200ms ease;
    margin-bottom: -1px;
}

#productlist .product:hover img {
    opacity: .85;
    transform: scale(1.02);
}

/* Text info */
#productlist .manu {
    color: #a5a5a5;
    display: block;
    font-size: 12px;
    padding: 10px 10px 0;
    background: #001437;
}

#productlist .part {
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 10px 2px;
    transition: background 200ms;
    background: #001437;
}

#productlist .desc {
    color: #a5a5a5;
    display: block;
    font-size: 11px;
    padding: 2px 10px 10px;
    flex: 1;
    /* push prices to bottom */
    transition: background 200ms;
    background: #001437;
}

#productlist .product:hover .part,
#productlist .product:hover .manu,
#productlist .product:hover .desc {
    background: #111;
}

/* Price bands — flex row at bottom */
#productlist .cb {
    display: none;
}

/* was clearfix, not needed */

/* Override old float-based c-4 columns with flex */
#productlist .product>.c-4 {
    width: auto !important;
    float: none !important;
}



/* Wrap the three price divs in a flex row automatically */
#productlist .new,
#productlist .ref,
#productlist .rep {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    position: relative;
    font-size: 11px;
    color: #fff;
    text-align: center;
}

/* Force price row to be a flex row */
#productlist .product>.new,
#productlist .product>.ref,
#productlist .product>.rep {
    /* These are siblings — make a pseudo flex-row via a wrapper trick.
       Since PHP outputs them as siblings, we use CSS grid on the parent. */
}

/* Better approach: use CSS grid on the .product for the price zone */
#productlist .product {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr auto;
    /* crop / manu / part / desc / (space) / price-row */
}

/* Make the three price bands sit in one row */
#productlist .new {
    background: #082861;
    grid-row: 6;
}

#productlist .ref {
    background: #123d88;
    grid-row: 6;
}

#productlist .rep {
    background: #2f59a4;
    grid-row: 6;
}

/* Use subgrid/columns trick: price cells use grid column */
#productlist .product {
    grid-template-columns: 1fr 1fr 1fr;
}

#productlist .crop {
    grid-column: 1 / -1;
}

#productlist .manu {
    grid-column: 1 / -1;
}

#productlist .part {
    grid-column: 1 / -1;
}

#productlist .desc {
    grid-column: 1 / -1;
    grid-row: 4 / 6;
}

#productlist .cb {
    display: none;
}

#productlist .new {
    grid-column: 1;
}

#productlist .ref {
    grid-column: 2;
}

#productlist .rep {
    grid-column: 3;
}

/* Price labels */
#productlist .type {
    color: rgba(255, 255, 255, .7);
    display: block;
    font-size: 10px;
    margin-bottom: 4px;
}

/* Quantity badge */
#productlist .qty {
    background: #3aa615;
    border-radius: 100%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    min-width: 24px;
    min-height: 24px;
    padding: 0 6px;
    position: absolute;
    top: -12px;
    right: 6px;
}

/* ── No results ── */
.noresult-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #001437 !important;
}

/* ── Pagination ── */
#pagination {
    text-align: center;
    padding: 20px 0 40px;
    margin: 0 auto;
}

#pagination ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
}

#pagination ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    background: #fff;
    color: #175286;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 150ms, color 150ms;
}

#pagination ul li a:hover {
    background: #175286;
    color: #fff;
}

#pagination ul li a.current {
    background: #175286;
    color: #fff;
    font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    #productlist .row {
        width: 33.333%;
    }
}

/* ── SERVICES / ABOUT: hide sidebar submenu + images on mobile & tablet ── */
@media (max-width: 1024px) {
    .submenu {
        display: none !important;
    }

    .services-section img,
    .about-section img {
        display: none !important;
    }
}

@media (max-width: 700px) {
    #productlist .row {
        width: 50%;
    }

    #bigsearch input[type="text"] {
        flex-basis: 180px;
    }
}

@media (max-width: 420px) {
    #productlist .row {
        width: 100%;
    }
}






#browserform {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    margin-bottom: 20px;
    margin-top: -50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    box-shadow: 0 4px 20px rgba(0, 20, 55, 0.08);
}

@media (max-width: 1024px) {
    #browserform {
        margin-top: -50px !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   MODAL OVERLAY
   ══════════════════════════════════════════════════════════════ */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal .close {
    position: fixed;
    top: 18px;
    right: 22px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    text-decoration: none;
    transition: color 0.2s;
}

.modal .close:hover {
    color: var(--orange);
}

.modal-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 620px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.25s ease;
}

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

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── Loader spinner ── */
.loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    z-index: 10;
    border-radius: 14px;
}

.loader::after {
    content: '';
    width: 36px;
    height: 36px;
    border: 4px solid #e0e8f0;
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Alert boxes ── */
.alert {
    border-radius: 8px;
    padding: 12px 16px;
    margin: 10px 0;
    font-size: 14px;
    position: relative;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert:not(.success) {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert .closebtn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
}

.alert .closebtn:hover {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE ENHANCED SECTIONS
   ══════════════════════════════════════════════════════════════ */

/* Capabilities / Guarantees Grid */
.n2-caps-section {
    max-width: 1240px;
    margin: 60px auto 40px;
    padding: 0 24px;
}

.n2-caps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.n2-cap-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 18px rgba(0, 20, 55, 0.06);
    border: 1px solid #eef2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.n2-cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 20, 55, 0.12);
    border-color: #dbe4f0;
}

.n2-cap-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background: rgba(219, 153, 66, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.n2-cap-body h4 {
    margin: 0 0 6px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
}

.n2-cap-body p {
    margin: 0;
    font-size: 13px;
    color: #5d6d82;
    line-height: 1.5;
}

/* Facility & Story Split Section */
.n2-facility-section {
    max-width: 1240px;
    margin: 50px auto 60px;
    padding: 0 24px;
}

.n2-facility-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 20, 55, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #edf1f7;
}

.n2-facility-img-wrap {
    position: relative;
    min-height: 380px;
    background: #001437;
}

.n2-facility-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.n2-facility-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0, 20, 55, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(219, 153, 66, 0.4);
    padding: 12px 18px;
    border-radius: 10px;
    color: #fff;
}

.n2-facility-badge strong {
    display: block;
    font-size: 17px;
    color: var(--orange);
}

.n2-facility-badge span {
    font-size: 12px;
    opacity: 0.85;
}

.n2-facility-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.n2-facility-tag {
    display: inline-block;
    background: rgba(219, 153, 66, 0.14);
    color: #b07019;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.n2-facility-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 0 0 16px;
}

.n2-facility-content p {
    font-size: 14.5px;
    color: #4a596d;
    line-height: 1.7;
    margin: 0 0 20px;
}

.n2-facility-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 26px;
    padding-top: 14px;
    border-top: 1px solid #edf1f7;
}

.n2-facility-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.n2-facility-stat span {
    font-size: 12px;
    color: #718299;
}

/* Brands & Manufacturers Bar */
.n2-brands-section {
    max-width: 1240px;
    margin: 20px auto 60px;
    padding: 0 24px;
    text-align: center;
}

.n2-brands-title {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8c9ba5;
    margin-bottom: 22px;
}

.n2-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.n2-brand-pill {
    background: #ffffff;
    color: var(--navy);
    border: 1px solid #dde5ef;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.n2-brand-pill:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 20, 55, 0.15);
}

/* Live Workshop Snapshot on Homepage */
.n2-livefeed-section {
    max-width: 1240px;
    margin: 40px auto 70px;
    padding: 0 24px;
}

.n2-livefeed-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 30px;
    box-shadow: 0 10px 36px rgba(0, 20, 55, 0.07);
    border: 1px solid #edf1f7;
}

.n2-livefeed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

.n2-livefeed-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.n2-live-indicator {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.n2-livefeed-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.n2-livefeed-col {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #eef2f6;
}

.n2-livefeed-col-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6edf5;
}

.n2-livefeed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 13px;
}

.n2-livefeed-item:last-child {
    border-bottom: none;
}

.n2-livefeed-item a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s;
}

.n2-livefeed-item a:hover {
    color: var(--orange);
}

.n2-livefeed-item .part-badge {
    color: #62758d;
    font-family: monospace;
    font-size: 12.5px;
}

/* Sell Surplus Callout Banner */
.n2-surplus-banner {
    max-width: 1240px;
    margin: 40px auto 80px;
    padding: 0 24px;
}

.n2-surplus-inner {
    background: linear-gradient(135deg, #001437 0%, #07265a 100%);
    border-radius: 16px;
    padding: 38px 44px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: 0 16px 40px rgba(0, 20, 55, 0.18);
    position: relative;
    overflow: hidden;
}

.n2-surplus-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(219, 153, 66, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.n2-surplus-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #fff;
}

.n2-surplus-text p {
    font-size: 14.5px;
    color: #cbd5e1;
    margin: 0;
    max-width: 620px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 860px) {
    .n2-facility-card {
        grid-template-columns: 1fr;
    }

    .n2-facility-img-wrap {
        min-height: 240px;
    }

    .n2-livefeed-columns {
        grid-template-columns: 1fr;
    }

    .n2-surplus-inner {
        padding: 30px 24px;
    }
}