* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    overflow-x: hidden;
    background: #fff;
}

.mobile-explore-item {
    display: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.top-header {
    background: #f5f5f5;
}

.custom-navbar {
    background: #0a0f1c;
}

/* ========================= */
/* HEADER */
/* ========================= */

.top-header {
    background: #f5f5f5;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0a0f1c;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    color: #272727;
    font-size: 15px;
    font-weight: 600;

    transition: .3s ease;
}

.contact-btn:hover {
    color: rgb(129, 129, 129);
}

.support-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    color: #0a0f1c;

    border:
        1px solid rgba(0, 0, 0, .08);

    background: white;

    transition: .3s ease;
}

.support-btn:hover {
    background: #f1f5f9;

    color: #0a0f1c;

    transform: translateY(-2px);
}


.header-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    flex-wrap: wrap;
}

/* LINKS */

.top-link {
    text-decoration: none;

    color: #0a0f1c;

    font-size: 15px;

    font-weight: 700;

    transition: .3s ease;
}

.top-link:hover {
    color: #0b4dbb;
}

/* DIVIDER */

.divider {
    color: #999;

    font-size: 14px;
}

/* ICON */

.header-icon {
    font-size: 18px;

    line-height: 1;
}



/* ========================= */
/* NAVBAR */
/* ========================= */

.custom-navbar {
    background: #0a0f1c;
    padding: 5px 0;
}

.top-header .container,
.custom-navbar .container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

/* NAVBAR ALIGNMENT */

.custom-navbar .navbar-nav {
    margin-left: 0;
    padding-left: 0;
}

/* REMOVE EXTRA SPACING */

.custom-navbar .navbar {
    padding-left: 0;
    padding-right: 0;
}

/* ALIGN ITEMS */

.custom-navbar .row {
    align-items: center;
}

/* NAVBAR MENU */

.custom-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}


/* NAV LINKS */

.nav-link {
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    padding: 0 !important;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #0b4dbb !important;
}

/* BUTTON */

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #666;
    padding: 5px 32px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
}

.explore-btn:hover {
    background: white;
    color: #111;
}

/* DROPDOWN MENU */

/* ========================= */
/* DROPDOWN */
/* ========================= */

.dropdown-menu {
    background: #0a0f1c;

    backdrop-filter: blur(12px);

    border: none;

    border-radius: 20px;

    padding: 14px;

    margin-top: 18px;

    min-width: 230px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35);

    animation: dropdownFade .25s ease;
}


/* ITEMS */

.dropdown-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    border-radius: 14px;

    color: white;

    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;

    position: relative;
}

/* HOVER */

.dropdown-item:hover {
    background: #0b4dbb;

    color: white;

    transform: translateX(6px);
}


/* SMALL DESCRIPTION */

.dropdown-item span {
    display: block;

    font-size: 13px;

    opacity: .7;

    margin-top: 4px;

    font-weight: 400;
}


/* REMOVE DEFAULT BLUE */

.dropdown-item:active {
    background: #0b4dbb;
}


/* DROPDOWN ANIMATION */

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ========================= */
/* MODERN NE590 HERO */
/* ========================= */

.ne590-hero {
    position: relative;

    width: 100%;

    min-height: 100vh;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .08)),
        url('../images/ne590-bg5.png');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* CONTENT */

.hero-modern-content {
    position: relative;
    padding: 150px 0;
    z-index: 5;
    max-width: 620px;
    color: white;
}

/* TAG */

.hero-tag {
    display: inline-block;

    color: #4da6ff;

    letter-spacing: 4px;

    font-size: .85rem;

    font-weight: 700;

    margin-bottom: 25px;

    text-transform: uppercase;
}

/* TITLE */

.hero-modern-content h1 {
    font-size: 120px;

    line-height: .9;

    font-weight: 900;

    margin-bottom: 20px;
}

.hero-modern-content h1 span {
    color: #4da6ff;
}

/* SUBTITLE */

.hero-modern-content h2 {
    font-size: 54px;

    line-height: 1.15;

    font-weight: 700;

    margin-bottom: 28px;
}

/* DESCRIPTION */

.hero-modern-content p {
    font-size: 20px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .82);

    max-width: 580px;

    margin-bottom: 40px;
}

/* SPECS */

.hero-modern-specs {
    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

/* CARD */

.modern-spec-card {
    padding: 20px 24px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(14px);

    min-width: 160px;
}

/* NUMBER */

.modern-spec-card h3 {
    font-size: 34px;

    font-weight: 800;

    margin-bottom: 5px;
}

/* LABEL */

.modern-spec-card span {
    font-size: 12px;

    letter-spacing: 2px;

    color: #dcecff;
}

/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 22px;

    flex-wrap: wrap;
}

/* PRIMARY BUTTON */

.hero-primary-btn {
    padding: 18px 40px;

    border-radius: 60px;

    background:
        linear-gradient(135deg,
            #0066ff,
            #004ba1);

    color: white;

    text-decoration: none;

    font-weight: 700;

    transition: .35s ease;

    box-shadow:
        0 15px 35px rgba(0, 75, 161, .35);
}

.hero-primary-btn:hover {
    transform: translateY(-5px);
}

/* WATCH BUTTON */

.hero-watch-btn {
    display: inline-flex;

    align-items: center;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;
}

.hero-watch-btn:hover {
    color: #4da6ff;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.video-modal.active {
    margin-top: 6%;
    display: flex;
}

.video-modal video {
    width: 800px;
    max-width: 85vw;
    max-height: 70vh;
    border-radius: 12px;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: white;
    font-size: 28px;
    font-weight: 300;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);

    transition: all .3s ease;

    z-index: 100000;
}

.close-btn:hover {
    background: #0b4dbb;

    transform: scale(1.1) rotate(90deg);

    box-shadow:
        0 12px 35px rgba(11, 77, 187, 0.45);
}

.close-btn:active {
    transform: scale(.95);
}

/* ========================= */
/* INFO SECTION */
/* ========================= */

.info-section {
    padding: 27px 0;

    background: #f3f3f3;
}

.info-section .container {
    max-width: 1400px;
}

/* SLIDER */

.boat-slider {
    position: relative;

    max-width: 1100px;

    margin: auto;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

/* IMAGES */

.boat-slider img {
    width: 100%;

    height: 620px;

    object-fit: cover;

    display: none;
}

/* ACTIVE */

.boat-slider img.active {
    display: block;

    animation: fadeSlide .4s ease;
}

/* ANIMATION */

@keyframes fadeSlide {

    from {
        opacity: 0;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* BUTTONS */

.prev-btn,
.next-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 70px;
    height: 70px;

    border: none;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);

    color: white;

    font-size: 38px;

    cursor: pointer;

    z-index: 10;

    transition: .3s ease;
}

.prev-btn {
    left: 25px;
}

.next-btn {
    right: 25px;
}

/* HOVER */

.prev-btn:hover,
.next-btn:hover {
    background: #0b4dbb;

    transform:
        translateY(-50%) scale(1.08);
}

/* TEXT */

.info-text {
    max-width: 900px;

    margin: 55px auto 0;

    text-align: center;

    font-size: 24px;

    line-height: 1.8;

    color: #222;

    font-weight: 500;
}

/* HIGHLIGHT */

.info-text strong {
    color: #0b4dbb;
}

/* ========================= */
/* GALLERY SECTION */
/* ========================= */

.gallery-section {
    padding: 27px 0;

    background: #f3f3f3;
}

.gallery-section .container {
    max-width: 1400px;
}

/* TITLE */

.gallery-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.gallery-title::after {
    content: "";
    width: 90px;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(90deg,
            #000c22,
            #004ba1);
}

.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(0, 0, 0, .6);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    opacity: 1;

    z-index: 5;
}

/* GRID */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

/* ITEM */

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    cursor: pointer;

    background: white;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);
}

/* LARGE */

.gallery-item.large {
    grid-column: span 2;

    grid-row: span 2;
}

/* IMAGE */

.gallery-item img {
    width: 100%;

    height: 100%;

    min-height: 280px;

    object-fit: cover;

    transition: .5s ease;

    display: block;
}

/* HOVER */

.gallery-item:hover img {
    transform: scale(1.08);
}

/* DARK OVERLAY */

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.25));

    opacity: 0;

    transition: .4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.image-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .92);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    z-index: 9999;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

.close-image {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: white;
    cursor: pointer;
}

/* ========================= */
/* NE590 BENEFITS */
/* ========================= */

.ne590-benefits {
    padding: 90px 0;

    background: #f3f3f3;
}

.ne590-benefits .container {
    max-width: 1400px;
}

/* ========================= */
/* TITLE */
/* ========================= */

.benefits-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    margin-bottom: 70px;
}



.benefits-title h2 {
    font-size: 42px;

    font-weight: 800;

    color: #111;
}

/* LINE */

.line {
    flex: 1;

    height: 1px;

    background: #9b9b9b;

    max-width: 450px;
}

/* ========================= */
/* BENEFITS */
/* ========================= */

.benefits-wrapper {
    display: flex;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 90px;

    flex-wrap: wrap;
}

/* ITEM */

.benefit-item {
    flex: 1;

    min-width: 180px;

    text-align: center;

    padding: 35px 25px;

    background: white;

    border-radius: 24px;

    transition: .35s ease;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05);
}

/* HOVER */

.benefit-item:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */

.benefit-icon {
    width: 80px;
    height: 80px;

    margin: auto auto 22px;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    color: white;

    font-size: 34px;

    box-shadow:
        0 12px 30px rgba(11, 77, 187, 0.25);
}

/* TEXT */

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 700;
    color: #111;
    margin: 0;
    text-transform: uppercase;
}

/* ========================= */
/* CONFIG WRAPPER */
/* ========================= */

.config-wrapper {
    display: flex;
    gap: 50px;
    align-items: stretch;
    margin-top: 20px;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.equipment-section {
    width: 36%;

    display: flex;
    flex-direction: column;
}

/* HEADER */

.section-header {
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 16px;
}

/* BLUE LINE */

.blue-line {
    width: 85px;
    height: 5px;
    border-radius: 30px;

    background: linear-gradient(90deg,
            #000c22,
            #004ba1);
}

/* ========================= */
/* SECTION HEADER */
/* ========================= */

.section-header {
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 16px;
}

.blue-line {
    width: 85px;
    height: 5px;
    border-radius: 30px;

    background: linear-gradient(90deg,
            #000c22,
            #004ba1);
}

/* ========================= */
/* MODERN CONFIG SECTION */
/* ========================= */

.modern-equip-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

/* ========================= */
/* CONFIGURATION IMAGE */
/* ========================= */

.blueprint-top {
    width: 100%;
}

.blueprint-image {
    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background: #fff;

    padding: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
}

.blueprint-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

/* ========================= */
/* CONFIG LABEL */
/* ========================= */

.blueprint-overlay {
    position: absolute;

    bottom: 20px;
    left: 20px;
}

.blueprint-box {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px;

    border-radius: 16px;

    background: rgba(0, 0, 0, .75);

    backdrop-filter: blur(10px);

    color: white;
}

.blueprint-box span {
    font-size: 24px;
}

.blueprint-box p {
    margin: 0;

    font-size: 14px;
    line-height: 1.4;
}

/* ========================= */
/* EQUIPMENT GRID */
/* ========================= */

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.equipment-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 22px 24px;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    transition: .35s ease;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .05);
}

/* BLUE LEFT BAR */

.equipment-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;
    height: 100%;

    background:
        linear-gradient(to bottom,
            #000c22,
            #004ba1);
}

/* HOVER */

.equipment-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .12);
}

/* ICON */

.equipment-card i {
    width: 62px;
    height: 62px;

    min-width: 62px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    color: #fff;

    font-size: 28px;

    box-shadow:
        0 12px 28px rgba(11, 77, 187, .22);

    margin: 0;
}

/* TEXT */

.equipment-card span {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin: 0;
}


/* ========================= */
/* SPECIFICATIONS SECTION */
/* ========================= */

.specs-section {
    padding: 90px 0;

    background: #f3f3f3;
}

.specs-section .container {
    max-width: 1400px;
}

/* ========================= */
/* TITLE */
/* ========================= */

.specs-section .section-title {
    text-align: left;

    margin-bottom: 50px;
}

.specs-section .section-title h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;

    color: #111;

    margin-bottom: 18px;
}

/* BLUE LINE */

.specs-section .section-title::after {
    content: "";

    display: block;

    width: 95px;
    height: 5px;

    border-radius: 30px;

    background:
        linear-gradient(90deg,
            #000c22,
            #004ba1);
}

/* ========================= */
/* TOP VIDEO */
/* ========================= */

.specs-top-video {
    width: 100%;

    max-width: 780px;

    margin: 0 auto 60px;

    position: relative;
}

/* GLOW */

.specs-top-video::before {
    content: "";

    position: absolute;

    inset: -18px;

    background:
        radial-gradient(rgba(11, 77, 187, 0.18),
            transparent);

    z-index: 0;

    border-radius: 40px;
}

/* VIDEO */

.specs-top-video video {
    position: relative;

    width: 100%;

    height: 420px;

    object-fit: cover;

    border-radius: 30px;

    z-index: 2;

    display: block;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);
}

/* ========================= */
/* GRID */
/* ========================= */

.specs-grid-modern {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin: auto;
}

/* CARD */

.spec-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 24px;

    background: white;

    border-radius: 22px;

    overflow: hidden;

    transition: .35s ease;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05);
}

/* LEFT ACCENT */

.spec-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;
    height: 100%;

    background:
        linear-gradient(to bottom,
            #000c22,
            #004ba1);
}

/* HOVER */

.spec-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ICON */

.spec-icon {
    width: 62px;
    height: 62px;

    min-width: 62px;

    border-radius: 18px;

    display: flex;

    justify-content: center;
    align-items: center;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    color: white;

    font-size: 28px;

    box-shadow:
        0 12px 28px rgba(11, 77, 187, 0.22);
}

/* CONTENT */

.spec-content h3 {
    font-size: 18px;

    font-weight: 800;

    margin-bottom: 4px;

    color: #111;
}

.spec-content p {
    font-size: 15px;

    margin: 0;

    color: #444;
}

.model-section {
    padding: 80px 0;
    background: #fff;
}




.model-description {
    text-align: center;
    color: #bdbdbd;
    font-size: 18px;
    margin-bottom: 30px;
}

.model-note {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    max-width: 800px;
    margin: 15px auto;
}

model-viewer {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

/* ========================= */
/* MODERN APPLICATIONS */
/* ========================= */

.modern-apps-section {
    padding: 90px 0;
    background: #f3f3f3;
}

.modern-apps-section .container {
    max-width: 1400px;
}

/* ========================= */
/* CENTER TITLE */
/* ========================= */



.center-title h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 18px;
}

.center-title h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 5px;
    border-radius: 30px;
    margin-top: 18px;
    background: linear-gradient(90deg,
            #000c22,
            #004ba1);
}

/* ========================= */
/* APPLICATIONS */
/* ========================= */


/* GRID */

.application-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

/* CARD */

.application-card {
    background: white;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);

    transition: .35s ease;
}

/* HOVER */

.application-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.application-card img {
    width: 100%;

    height: 230px;

    object-fit: cover;

    display: block;
}

/* CONTENT */

.application-content {
    padding: 22px 18px 26px;

    text-align: center;

    position: relative;
}

/* ICON */

.application-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    margin: -58px auto 18px;

    background: linear-gradient(135deg,
            #000c22,
            #004ba1);

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;

    font-size: 30px;

    border: 6px solid white;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}

/* TEXT */

.application-content h3 {
    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;

    color: #111;

    margin: 0;
}

/* ========================= */
/* APPLICATIONS + UPGRADES */
/* ========================= */

.apps-upgrades-wrapper {
    display: grid;

    grid-template-columns:
        1.4fr .8fr;

    gap: 55px;

    align-items: start;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.applications-modern {
    width: 100%;
}

/* APPLICATION GRID */

.application-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

/* ========================= */
/* RIGHT SIDE */
/* ========================= */

.upgrades-modern {
    background: #fff;
    border-radius: 34px;
    padding: 38px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    position: sticky;
    top: 30px;
}

.upgrades-modern .section-mini-title {
    margin-bottom: 30px;
}

.upgrades-modern .center-title h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 18px;
}

.upgrades-modern .center-title h2::after {
    content: "";
    display: block;
    width: 65px;
    height: 5px;
    background: linear-gradient(90deg, #000c22, #004ba1);
    border-radius: 50px;
    margin-top: 25px;
}

.upgrade-modern-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.upgrade-modern-item {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 24px 0;

    background: transparent;
    border-radius: 0;

    border-bottom: 1px solid #dcdcdc;

    font-size: 18px;
    font-weight: 500;
    color: #222;

    transition: .3s;
}

.upgrade-modern-item:last-child {
    border-bottom: none;
}

.upgrade-modern-item:hover {
    background: transparent;
    transform: none;
}

.upgrade-modern-item span {

    width: 42px;
    height: 42px;
    min-width: 42px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(90deg, #000c22, #004ba1);

    color: #fff;

    font-size: 18px;

    box-shadow: 0 8px 18px rgba(11, 77, 187, .25);
}

.upgrade-modern-item i {
    font-size: 18px;
}

/* ========================= */
/* CTA SECTION */
/* ========================= */

.cta-section {
    padding: 20px 0 90px;

    background: #f3f3f3;
}

.cta-section .container {
    max-width: 1400px;
}

/* ========================= */
/* CTA BANNER */
/* ========================= */

.cta-banner {
    position: relative;

    width: 100%;

    min-height: 460px;

    border-radius: 34px;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 00px 70px;

    background:
        url('../images/cta_bg.png');

    background-size: cover;

    background-position: center;
}

/* DARK OVERLAY */

.cta-banner::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 6, 20, .92) 0%,
            rgba(0, 15, 45, .68) 35%,
            rgba(0, 0, 0, .12) 70%);

    z-index: 1;
}

/* LIGHT EFFECT */

.cta-banner::after {
    content: "";

    position: absolute;

    left: -10%;
    top: -20%;

    width: 70%;
    height: 140%;

    background:
        radial-gradient(rgba(24, 102, 255, .18),
            transparent 70%);

    z-index: 1;
}

/* ========================= */
/* CONTENT */
/* ========================= */

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 560px;

    color: white;
}

/* LINE */

.cta-line {
    width: 72px;
    height: 5px;

    border-radius: 30px;

    background: #0b67ff;

    margin-bottom: 28px;
}

/* TITLE */

.cta-content h2 {
    font-size: 65px;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 27px;
}

/* BUTTON */

.cta-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 18px 34px;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #0066ff,
            #004ba1);

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    transition: .35s ease;

    box-shadow:
        0 14px 35px rgba(0, 75, 161, .35);
}

/* HOVER */

.cta-btn:hover {
    transform: translateY(-4px);

    color: white;

    box-shadow:
        0 20px 40px rgba(0, 75, 161, .45);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer-section {
    background: #0a0f1c;
    color: white;

    padding: 70px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;

    padding-bottom: 40px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* LEFT */

.footer-left {
    max-width: 320px;
}

.footer-left img {
    width: 90px;
    margin-bottom: 20px;
}

.footer-left p {
    color: #bdbdbd;
    line-height: 1.7;
}


/* LINKS */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;

    transition: .3s ease;
}

.footer-links a:hover {
    color: #0b4dbb;
}

.footer-contact a,
.socials a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #0b4dbb;
}

/* CONTACT */

.footer-contact p {
    margin-bottom: 20px;
    color: #bdbdbd;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 18px;

    padding: 12px 18px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    color: white;

    font-size: 14px;
    font-weight: 600;
}

.footer-badge i {
    color: #ffffff;
    font-size: 18px;
}

.footer-company h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-company {
    max-width: 280px;
}

.footer-company p {
    color: #bdbdbd;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.footer-certification {
    display: block;
    margin-top: 10px;

    color: #7f8aa3;

    font-size: 13px;

    letter-spacing: .5px;
}

/* COPYRIGHT */

.copyright {
    text-align: center;

    padding-top: 25px;

    color: #888;

    font-size: 14px;
}

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: .8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: .8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: .8s ease;
}

.zoom-in {
    opacity: 0;
    transform: scale(.9);
    transition: .8s ease;
}

.fade-up.active,
.fade-left.active,
.fade-right.active,
.zoom-in.active {
    opacity: 1;
    transform: none;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media(max-width:1460px) {
    .navbar-expand-lg .navbar-collapse {
        margin-left: 28px;
    }
}

@media(max-width:1200px) {

    .hero-right h2 {
        font-size: 85px;
    }

    .hero-right h3 {
        font-size: 34px;
    }

    .config-wrapper {
        flex-direction: column;
    }

    .equipment-section {
        width: 100%;
    }

    .specs-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-upgrades-wrapper {
        grid-template-columns: 1fr;
    }

    .upgrades-modern {
        position: relative;
        top: 0;
    }

    .video-modal.active {
        margin-top: 14%;
        display: flex;
    }

}

@media(max-width:991px) {
    .top-header .row {
        text-align: center;
    }

    .logo {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-actions {
        justify-content: center;
    }

    .desktop-explore {
        display: none !important;
    }

    /* SHOW MOBILE BUTTON ONLY WHEN MENU IS OPEN */

    .navbar-collapse.show .mobile-explore-item {
        display: flex;

        justify-content: center;

        width: 100%;

        margin-top: 5px;

        margin-bottom: 10px;

    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-left,
    .footer-links,
    .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer-left img {
        display: block;
        margin: 0 auto 20px;
    }

    .footer-links {
        align-items: center;
    }

    .socials {
        justify-content: center;
    }

}

@media(max-width:992px) {

    .ne590-hero {
        min-height: 620px;
    }

    .hero-right {
        text-align: center;

        margin: auto;
    }

    .boat-slider img {
        height: 500px;
    }

    .upgrade-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        min-height: 400px;

        padding: 50px;
    }

    .cta-content h2 {
        font-size: 58px;

        line-height: .95;
    }
}

@media(min-width:992px) {
    /* ========================= */
    /* DESKTOP MEGA MENU */
    /* ========================= */

    .nav-item.dropdown {
        position: relative;
    }

    /* MENU */

    .mega-menu {
        width: 400px;

        padding: 20px;

        border: none;

        top: 10px;

        border-radius: 24px;

        background: #000c22;

        gap: 2px;

        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.08);
    }

    /* ITEM */

    .mega-item {
        flex: 1;

        padding: 0 !important;

        background: transparent !important;

        border: none;

        text-align: left;

        transition: .3s ease;
    }

    .mega-item:hover {
        background: transparent !important;

        transform: none;
    }

    /* IMAGE */

    .mega-item img {
        width: 32%;
        height: 80px;
        object-fit: contain;
        margin-bottom: 8px;
        transition: .3s ease;
    }

    .mega-item:hover img {
        transform: translateY(-3px);
    }

    /* CONTENT */

    .mega-content h4 {
        font-size: 20px;

        font-weight: 700;

        color: #ffffff;

        margin-bottom: 4px;
    }

    .mega-content p {
        font-size: 13px;

        line-height: 1.5;

        color: #ffffff;

        margin: 0;
    }

    /* REMOVE DEFAULT */

    .mega-menu .dropdown-item {
        color: #111 !important;
    }

    .mega-menu .dropdown-item:hover {
        color: #111 !important;
    }

    .dropdown-menu {
        animation: fadeMenu .25s ease;
    }

    @keyframes fadeMenu {

        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }
}

@media(max-width:768px) {
    .logo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .logo h1 {
        font-size: 16px;
        text-align: center;
    }

    /* ========================= */
    /* MOBILE DROPDOWN FIX */
    /* ========================= */

    .mega-menu {
        width: 100% !important;

        padding: 12px;

        border-radius: 20px;

        background: #000c22;

        flex-direction: column;

        gap: 12px;
    }

    /* ONLY OPEN WHEN CLICKED */

    .mega-menu.show {
        display: flex !important;
    }

    .mega-item {
        display: flex;

        justify-content: center;

        align-items: center;

        gap: 14px;

        padding: 10px !important;

        border-radius: 16px;

        background: rgba(255, 255, 255, 0.03) !important;
    }

    .mega-item img {
        width: 85px !important;

        height: 55px !important;

        object-fit: contain;

        margin: 0 !important;

        flex-shrink: 0;
    }

    .mega-content {
        flex: 1;
    }

    .mega-content h4 {
        font-size: 18px;

        margin-bottom: 2px;

        color: white;
    }

    .mega-content p {
        font-size: 12px;

        line-height: 1.4;

        color: rgba(255, 255, 255, 0.75);
    }

    .nav-item.dropdown .nav-link {
        justify-content: center !important;

        text-align: center;

        gap: 10px;
    }

    /* EXTRA SMALL DROPDOWN */

    .mega-item {
        gap: 10px;
    }

    .mega-item img {
        width: 70px !important;

        height: 45px !important;
    }

    .mega-content h4 {
        font-size: 16px;
    }

    .mega-content p {
        font-size: 11px;
    }

    .video-modal.active {
        margin-top: 22.666667%;
        display: flex;
    }

    /* NE590 HERO */
    /* ========================= */

    .ne590-hero {
        min-height: 100vh;

        padding: 90px 20px 120px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;

        background-position: center center;
    }

    .hero-container {
        width: 100%;
    }

    .hero-modern-content {
        width: 100%;
        max-width: 100%;

        margin: auto;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;
    }

    /* TAG */

    .hero-tag {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 2px;
    }

    /* TITLE */

    .hero-modern-content h1 {
        font-size: 68px;
        line-height: .95;
        margin-bottom: 15px;
    }

    .hero-modern-content h2 {
        font-size: 18px;

        line-height: 1.2;

        margin-bottom: 35px;
    }

    /* SPECS */

    .hero-modern-specs {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 16px;

        margin-bottom: 35px;
    }

    .modern-spec-card {
        width: 100%;
        max-width: 390px;

        padding: 22px 20px;

        border-radius: 26px;

        text-align: center;

        background: rgba(255, 255, 255, .10);

        border: 1px solid rgba(255, 255, 255, .12);

        backdrop-filter: blur(14px);
    }

    .modern-spec-card h3 {
        font-size: 28px;

        margin-bottom: 8px;
    }

    .modern-spec-card span {
        font-size: 13px;

        letter-spacing: 3px;
    }

    /* BUTTONS */

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 18px;
    }

    .hero-primary-btn {
        width: 100%;
        max-width: 350px;

        padding: 18px 25px;

        border-radius: 50px;

        text-align: center;

        font-size: 16px;
    }

    .hero-watch-btn {
        font-size: 16px;
    }

    .boat-slider img {
        height: 320px;
    }

    .prev-btn,
    .next-btn {
        width: 55px;
        height: 55px;

        font-size: 28px;
    }

    .info-text {
        font-size: 18px;

        padding: 0 20px;

        line-height: 1.7;
    }

    .benefits-title h2,
    .section-header h2 {
        font-size: 36px;
        text-align: center;
    }

    .blueprint-overlay {
        grid-template-columns: repeat(2, 1fr);
    }

    .modern-blueprint-section {
        gap: 35px;
    }

    .section-header {
        text-align: center;
    }

    .blue-line {
        margin: 0 auto;
    }

    .blueprint-image {
        padding: 10px;
        border-radius: 20px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-card {
        padding: 18px;
    }

    .equipment-card i {
        width: 55px;
        height: 55px;
        min-width: 55px;

        font-size: 24px;
    }

    .equipment-card span {
        font-size: 16px;
    }

    .specs-section .section-title {
        margin-bottom: 50px;
        text-align: -webkit-center;
    }

    .specs-section .section-title h2 {
        font-size: 38px;
        font-weight: 800;
        line-height: 1;
        color: #111;
        margin-bottom: 18px;
        text-align: center;
    }

    .specs-top-video video {
        height: 300px;
    }

    .specs-grid-modern {
        grid-template-columns: 1fr;
    }

    .spec-card {
        padding: 18px;
    }

    .spec-icon {
        width: 55px;
        height: 55px;

        min-width: 55px;

        font-size: 24px;
    }

    .section-mini-title h2 {
        font-size: 38px;
        text-align: -webkit-center;
    }

    .application-grid {
        grid-template-columns: 1fr;
    }

    .upgrade-modern-grid {
        flex-direction: column;
    }

    .upgrades-modern .center-title h2 {
        font-size: 38px;
        font-weight: 800;
        line-height: 1.1;
        color: #111;
        text-align: -webkit-center;
        margin-bottom: 18px;
    }

    .cta-section {
        padding: 0 0 70px;
    }

    .cta-banner {
        min-height: 360px;

        padding: 38px 28px;

        border-radius: 26px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-line {
        margin-bottom: 22px;
    }

    .cta-content h2 {
        font-size: 42px;

        line-height: 1;

        letter-spacing: -1px;

        margin-bottom: 26px;
    }

    .cta-btn {
        width: 100%;

        padding: 16px 22px;

        font-size: 16px;
    }

    .application-card img {
        height: 220px;
    }

    /* ========================= */
    /* GALLERY FIX */
    /* ========================= */

    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .gallery-item {
        height: auto;

        border-radius: 20px;

        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    /* Pinterest Layout */

    .gallery-item:nth-child(1) {
        height: 260px;
    }

    .gallery-item:nth-child(2) {
        height: 320px;
    }

    .gallery-item:nth-child(3) {
        height: 320px;
    }

    .gallery-item:nth-child(4) {
        height: 320px;
    }

    .gallery-item:nth-child(5) {
        height: 320px;
    }

    /* ========================= */
    /* IMAGE MODAL */
    /* ========================= */

    .gallery-item .zoom-icon {
        opacity: 1;
    }

    /* ========================= */
    /* CONFIGURATION FIX */
    /* ========================= */

    .config-wrapper {
        flex-direction: column;

        gap: 35px;
    }

    .equipment-section,
    .configuration-section {
        width: 100%;
    }

    .config-image {
        border-radius: 28px;

        overflow: hidden;
    }

    .config-image img {
        width: 100%;

        height: 700px;

        object-fit: cover;
    }

    .config-overlay {
        grid-template-columns: repeat(2, 1fr);

        gap: 0;

        background:
            linear-gradient(to top,
                rgba(0, 0, 0, .92),
                rgba(0, 0, 0, .25),
                transparent);
    }

    .config-box {
        padding: 24px 14px;

        min-height: 150px;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .config-box span {
        font-size: 32px;

        margin-bottom: 12px;
    }

    .config-box p {
        font-size: 16px;

        line-height: 1.6;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

}

@media(max-width:480px) {

    .hero-modern-content {
        width: 100%;
        max-width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .gallery-section {
        padding: 70px 0 30px;
    }

    .gallery-title h2 {
        font-size: 36px;
    }

    .cta-banner {
        min-height: 320px;

        padding: 28px 22px;

        border-radius: 22px;
    }

    .cta-content h2 {
        font-size: 34px;

        line-height: 1.02;
    }

    .close-btn {
        position: absolute;
        top: 50px;
        right: 41px;
        width: 38px;
        height: 37px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: white;
        font-size: 28px;
        font-weight: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.25),
            inset 0 1px 1px rgba(255, 255, 255, 0.15);
        transition: all .3s ease;
        z-index: 100000;
    }

    .video-modal.active {
        margin-top: 37.666667%;
        display: flex;
    }

    .video-modal video {
        width: 800px;
        height: auto;
        max-width: 85vw;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* EXTRA SMALL DROPDOWN */

    .mega-item {
        gap: 10px;
    }

    .mega-item img {
        width: 70px !important;

        height: 45px !important;
    }

    .mega-content h4 {
        font-size: 16px;
    }

    .mega-content p {
        font-size: 11px;
    }



}