* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    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);
    }

}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .05)),
        url('../images/ne400_front.png');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* ========================= */
/* VIDEO MODAL */
/* ========================= */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;

    justify-content: center;
    align-items: center;
}

.video-modal.active {
    margin-top: 6.6667%;
    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);
}

.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);
}

/* CONTENT */

.hero-content {
    position: relative;
    z-index: 5;
    left: -44px;
    max-width: 620px;
    padding: 150px 0;
    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-content h1 {
    font-size: 120px;

    line-height: .9;

    font-weight: 900;

    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #4da6ff;
}

.hero-subtitle {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.model-name {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 8px;

    background: linear-gradient(90deg,
            #ffffff,
            #7db7ff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-transform: uppercase;
}

.model-version {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
}

/* DESCRIPTION */

.hero-content p {
    font-size: 28px;

    line-height: 1.5;

    color: white;

    max-width: 540px;

    margin-bottom: 45px;
}

/* SPECS */

.hero-specs {
    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 45px;
}

.spec-card {
    padding: 18px 24px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);

    min-width: 150px;
}

.spec-card h3 {
    font-size: 24px;

    font-weight: 800;

    margin-bottom: 6px;
}

.spec-card span {
    font-size: 12px;

    letter-spacing: 2px;

    color: #c7dfff;
}

/* BUTTONS */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}

/* PRIMARY BUTTON */

.primary-btn {
    padding: 18px 38px;

    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);
}

.primary-btn:hover {
    transform: translateY(-5px);
}

/* WATCH BUTTON */

.watch-btn {
    color: white;

    text-decoration: none;

    font-weight: 600;

    letter-spacing: 1px;

    transition: .3s ease;
}

.watch-btn:hover {
    color: #4da6ff;
}


/* ========================= */
/* INFO SECTION */
/* ========================= */

.info-section {
    padding: 37px 0;
    background: #f3f3f3;
}

.info-section .container {
    max-width: 1400px;
}

/* ========================= */
/* SLIDER */
/* ========================= */

.boat-slider {
    position: relative;

    max-width: 1050px;

    margin: auto;

    border-radius: 35px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}

/* GLOW EFFECT */

.boat-slider::before {
    content: "";

    position: absolute;

    inset: -20px;

    background:
        radial-gradient(rgba(11, 77, 187, 0.18),
            transparent);

    z-index: 0;
}

/* IMAGES */

.boat-slider img {
    width: 100%;

    height: 620px;

    object-fit: cover;

    display: none;

    transition: .4s ease;
}

/* ACTIVE IMAGE */

.boat-slider img.active {
    display: block;

    animation: fadeSlide .5s 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);

    backdrop-filter: blur(8px);

    color: white;

    font-size: 32px;

    cursor: pointer;

    z-index: 10;

    transition: .3s ease;
}

/* LEFT */

.prev-btn {
    left: 25px;
}

/* RIGHT */

.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;

    font-weight: 500;

    color: #222;
}

/* HIGHLIGHT */

.info-text strong {
    color: #002057;
}

.model-section {
    padding: 80px 0;
    background: #fff;
}

model-viewer {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
}

/* ========================= */
/* GALLERY SECTION */
/* ========================= */

.gallery-section {
    padding: 90px 0 40px;
    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);
}

/* WRAPPER */

.gallery-wrapper {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    grid-template-rows:
        340px 340px;

    gap: 20px;
}

/* BIG IMAGE */

.gallery-item.featured {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* IMAGE BOX */

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    cursor: pointer;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .08);

    transition: .4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .6s ease;
}

/* HOVER */

.gallery-item:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .18);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* FADE UP */

@keyframes galleryFade {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.zoom-btn {
    position: absolute;

    top: 20px;
    right: 90px;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    color: white;

    cursor: pointer;

    z-index: 100000;
}


/* ========================= */
/* BENEFITS SECTION */
/* ========================= */

.benefits-section {
    padding: 50px 0;

    background: #f3f3f3;
}

.benefits-section .container {
    max-width: 1400px;
}

/* ========================= */
/* TITLE */
/* ========================= */

.benefits-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 40px;

    margin-bottom: 75px;
}

.benefits-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: 1px;
}

/* LINES */

.line {
    flex: 1;

    height: 1px;

    background: #b8b8b8;

    max-width: 420px;
}

/* ========================= */
/* WRAPPER */
/* ========================= */

.benefits-wrapper {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px;
}

/* ========================= */
/* CARD */
/* ========================= */

.benefit-item {
    background: white;

    border-radius: 30px;

    padding: 42px 28px;

    text-align: center;

    min-height: 260px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: center;

    transition: .35s ease;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);
}

/* HOVER */

.benefit-item:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ========================= */
/* ICON */
/* ========================= */

.benefit-icon {
    width: 88px;
    height: 88px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #000c22, #004ba1);

    color: white;

    font-size: 34px;

    margin-bottom: 30px;

    transition: .3s ease;
}

/* HOVER */

.benefit-item:hover .benefit-icon {
    transform: scale(1.08);
}

/* ========================= */
/* TEXT */
/* ========================= */

.benefit-item p {
    font-size: 17px;

    line-height: 1.7;

    font-weight: 700;

    color: #111;

    margin: 0;

    text-transform: uppercase;
}

/* ========================= */
/* PERFORMANCE SECTION */
/* ========================= */

.performance-section {
    padding: 50px 0;
    background: #f3f3f3;
}

.performance-section .container {
    max-width: 1400px;
}

/* TITLE */

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

/* WRAPPER */

.performance-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

/* LEFT */

.performance-left {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

/* ITEM */

.performance-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px 24px;

    background: white;

    border-radius: 18px;

    overflow: hidden;

    transition: .35s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);
}

/* BLUE ACCENT */

.performance-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;
    height: 100%;

    background: linear-gradient(to bottom,
            #000c22,
            #004ba1);
}

/* HOVER */

.performance-item:hover {
    transform: translateX(10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */

.performance-item span {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    display: flex;

    justify-content: center;
    align-items: center;

    color: white;

    font-size: 24px;

    box-shadow:
        0 10px 25px rgba(11, 77, 187, 0.28);
}

/* TEXT */

.performance-item p {
    font-size: 22px;

    font-weight: 600;

    color: #111;

    margin: 0;
}

/* ========================= */
/* COLOR SECTION */
/* ========================= */

.color-section {
    margin-top: 5px;

    padding: 28px;

    background: white;

    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07);
}

/* TITLE */

.color-section h3 {
    font-size: 34px;

    font-weight: 700;

    margin-bottom: 25px;

    color: #111;
}

/* COLOR OPTIONS */

.color-options {
    display: flex;

    align-items: center;

    gap: 20px;
}

/* COLOR BUTTON */

.color {
    position: relative;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    cursor: pointer;

    transition: .35s ease;

    border: 4px solid white;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.15);
}

/* COLORS */

.black {
    background: black;
}

.white {
    background: white;
}

.red {
    background: #ff1a1a;
}

.green {
    background:
        linear-gradient(135deg,
            #00a82d,
            #d4ff00);
}

/* ACTIVE */

.color.active {
    transform: scale(1.18);

    box-shadow:
        0 0 0 4px #002463,
        0 12px 30px rgba(11, 77, 187, 0.28);
}

/* HOVER */

.color:hover {
    transform: translateY(-6px) scale(1.08);
}

/* ========================= */
/* PERFORMANCE RIGHT */
/* ========================= */

.performance-right {
    flex: 1;

    position: relative;

    width: 100%;

    max-width: 950px;

    margin: auto;
}

/* IMAGE */

.performance-right img {
    width: 100%;

    max-width: 950px;

    height: auto;

    object-fit: cover;

    object-position: center;

    border-radius: 30px;

    display: block;

    margin: auto;
}

/* ========================= */
/* STATS OVERLAY */
/* ========================= */

.boat-stats {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    padding: 35px 20px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.60),
            transparent);

    border-radius: 0 0 30px 30px;
}

/* STAT BOX */

.stat-box {
    flex: 1;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.35);

    padding: 0 10px;
}

.stat-box:last-child {
    border-right: none;
}

/* TITLE */

.stat-box h2 {
    color: white;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;
}

/* DESCRIPTION */

.stat-box p {
    color: white;

    font-size: 14px;

    margin: 0;

    opacity: .95;
}

/* ========================= */
/* SPECIFICATIONS SECTION */
/* ========================= */


.specs-section {
    padding: 50px 0 90px;

    background: #f3f3f3;
}

.specs-section .container {
    max-width: 1400px;
}

/* TITLE */

.specs-section .section-title {
    margin-bottom: 40px;
}

.specs-section .section-title h2 {
    font-size: 42px;
    font-weight: 800;

    line-height: 1;

    color: #111;

    margin-bottom: 16px;
}

/* BLUE LINE */

.specs-section .section-title::after {
    content: "";

    display: block;

    width: 90px;
    height: 5px;

    border-radius: 30px;

    background: linear-gradient(90deg,
            #000c22,
            #004ba1);
}

/* WRAPPER */

.specs-wrapper {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;
}

/* GRID */

.specs-grid {
    flex: 1;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

/* BOX */

.spec-box {
    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    background: white;

    border-radius: 18px;

    overflow: hidden;

    transition: .35s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
}

/* LEFT ACCENT */

.spec-box::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;
    height: 100%;

    background: linear-gradient(to bottom,
            #000c22,
            #004ba1);
}

/* HOVER */

.spec-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);
}

/* ICON */

.spec-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    font-size: 24px;

    box-shadow:
        0 10px 25px rgba(11, 77, 187, 0.22);
}

/* TEXT */

.spec-box h3 {
    font-size: 16px;

    font-weight: 800;

    margin-bottom: 4px;

    color: #111;
}

.spec-box p {
    font-size: 14px;

    margin: 0;

    color: #444;
}

/* ========================= */
/* VIDEO */
/* ========================= */

.specs-video {
    position: relative;

    width: 340px;

    flex-shrink: 0;
}

/* GLOW */

.specs-video::before {
    content: "";

    position: absolute;

    inset: -15px;

    border-radius: 35px;

    background:
        radial-gradient(rgba(11, 77, 187, 0.18),
            transparent);

    z-index: 0;
}

/* VIDEO */

.specs-video video {
    position: relative;

    width: 100%;

    border-radius: 28px;

    display: block;

    object-fit: cover;

    z-index: 2;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);
}

/* ========================= */
/* FEATURES SECTION */
/* ========================= */

.features-section {
    padding: 50px 0;

    background: #f3f3f3;
}

.features-section .container {
    max-width: 1400px;
}

.feature-item .zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(0, 0, 0, .5);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
}

/* ========================= */
/* WRAPPER */
/* ========================= */

.features-wrapper {
    display: grid;

    grid-template-columns: 1.4fr .8fr;

    gap: 60px;

    align-items: start;
}

/* ========================= */
/* TITLES */
/* ========================= */

.features-section .section-title {
    margin-bottom: 40px;
}

.features-section .section-title h2 {
    font-size: 42px;
    font-weight: 800;

    line-height: 1.1;

    color: #111;

    margin-bottom: 18px;
}

/* BLUE LINE */

.title-line {
    width: 90px;
    height: 5px;

    border-radius: 30px;

    background: linear-gradient(90deg,
            #000c22,
            #004ba1);
}

/* ========================= */
/* FEATURE GRID */
/* ========================= */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

/* ========================= */
/* FEATURE ITEM */
/* ========================= */

.feature-item {
    position: relative;

    border-radius: 24px;

    overflow: hidden;

    cursor: pointer;

    min-height: 230px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);

    transition: .35s ease;
}

/* HOVER */

.feature-item:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.feature-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .45s ease;
}

/* IMAGE HOVER */

.feature-item:hover img {
    transform: scale(1.08);
}

/* OVERLAY */

.feature-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: flex-start;

    padding: 24px;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.10),
            transparent);

    color: white;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.5;
}

/* ========================= */
/* RIGHT SIDE */
/* ========================= */

.features-right {
    background: white;

    padding: 38px;

    border-radius: 30px;

    position: sticky;

    top: 30px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ========================= */
/* UPGRADE LIST */
/* ========================= */

.upgrade-list {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 25px;
}


/* TEXT */

.upgrade-item {
    font-size: 15px;

    font-weight: 700;

    color: #111;

    line-height: 1.5;
}



/* ========================= */
/* IMAGE MODAL */
/* ========================= */

.image-modal {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.92);

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;

    z-index: 99999;

    padding: 30px;
}

/* ACTIVE */

.image-modal.active {
    opacity: 1;

    visibility: visible;
}

/* IMAGE */

.custom-modal-image {
    width: auto;
    max-width: 85vw;
    max-height: 89vh;
    border-radius: 24px;
    object-fit: contain;
    transform: scale(.85);
    transition: .35s ease;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);
}

/* ACTIVE IMAGE */

.image-modal.active .custom-modal-image {
    transform: scale(1);
}

/* CLOSE BUTTON */

.close-image {
    position: absolute;

    top: 30px;
    right: 40px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(8px);

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 32px;

    cursor: pointer;

    transition: .3s ease;
}

/* HOVER */

.close-image:hover {
    background: #0b4dbb;

    transform: rotate(90deg);
}

/* UPGRADE ITEM */

.upgrade-item {
    display: flex;

    align-items: center;

    gap: 5px;

    padding: 15px 0;

    border-bottom: 1px solid #d8d8d8;

    font-size: 17px;

    font-weight: 100;
}

/* ICON CIRCLE */

.upgrade-item span {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 14px;

    background: linear-gradient(135deg, #000c22, #004ba1);

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 18px;

    color: rgb(255, 255, 255);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ========================= */
/* BLACK EDITION HERO */
/* ========================= */

.black-hero {
    position: relative;

    min-height: 100vh;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 0, 0, .45) 40%,
            rgba(0, 0, 0, .08) 75%),
        url('../images/ne400_front.png');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* ========================= */
/* CONTENT */
/* ========================= */

.black-content {
    position: relative;

    z-index: 5;

    max-width: 650px;

    color: white;
}

/* SMALL TAG */

.black-tag {
    display: inline-block;

    color: #4da6ff;

    letter-spacing: 4px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 28px;

    text-transform: uppercase;
}

/* MAIN TITLE */

.black-content h1 {
    font-size: 130px;

    line-height: .9;

    font-weight: 900;

    margin-bottom: 30px;

    letter-spacing: -4px;
}

/* BLUE TEXT */

.black-content h1 span {
    color: #4da6ff;
}

/* SUBTITLE */

.black-content h2 {
    font-size: 24px;

    letter-spacing: 6px;

    font-weight: 700;

    color: #dcecff;

    margin-bottom: 35px;

    text-transform: uppercase;
}

/* DESCRIPTION */

.black-content p {
    font-size: 28px;

    line-height: 1.5;

    color: white;

    max-width: 540px;

    margin-bottom: 45px;
}

/* BUTTON */

.watch-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: .3s ease;
}

.watch-btn:hover {
    color: #4da6ff;
}

/* ========================= */
/* DESIGNED SECTION */
/* ========================= */

.designed-section {
    padding: 70px 0;

    border-bottom: 1px solid #cfcfcf;

    background: #f3f3f3;
}

/* ========================= */
/* TITLE */
/* ========================= */

.designed-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 40px;

    margin-bottom: 70px;
}

.designed-title h2 {
    font-size: 42px;
    font-weight: 800;

    margin: 0;

    color: #111;
}

/* LINE */

.line {
    flex: 1;

    height: 1px;

    background: #b8b8b8;

    max-width: 420px;
}

/* ========================= */
/* WRAPPER */
/* ========================= */

.designed-wrapper {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}

/* ========================= */
/* CARD */
/* ========================= */

.designed-item {
    background: white;

    border-radius: 30px;

    padding: 45px 30px;

    min-height: 260px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: center;

    text-align: center;

    transition: .35s ease;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);
}

/* HOVER */

.designed-item:hover {
    transform: translateY(-10px);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.12);
}

/* ========================= */
/* ICON */
/* ========================= */

.designed-icon {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    font-size: 34px;

    margin-bottom: 30px;

    transition: .3s ease;
}

/* ICON HOVER */

.designed-item:hover .designed-icon {
    transform: scale(1.08);
}

/* ========================= */
/* TEXT */
/* ========================= */

.designed-item p {
    font-size: 22px;

    font-weight: 800;

    line-height: 1.5;

    margin: 0;

    color: #111;

    text-transform: uppercase;
}

/* ========================= */
/* ADVANTAGES SECTION */
/* ========================= */

.advantages-section {
    padding: 90px 0;

    background: #f3f3f3;
}

.advantages-section .container {
    max-width: 1400px;
}

/* WRAPPER */

.advantages-wrapper {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

    margin-bottom: 80px;
}

/* ========================= */
/* ADVANTAGES LEFT */
/* ========================= */

.advantages-left {
    flex: 1;
}

/* TITLE */

.section-title h2 {
    font-size: 42px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 18px;

    color: #111;
}

/* BLUE LINE */

.title-line {
    width: 90px;

    height: 5px;

    border-radius: 20px;

    background: linear-gradient(90deg,
            #000c22,
            #004ba1);

    margin-bottom: 55px;
}

/* LIST */

.advantages-list {
    display: flex;

    flex-direction: column;

    gap: 28px;
}

/* ITEM */

.advantage-item {
    position: relative;

    padding: 28px 30px 28px 85px;

    background: white;

    border-radius: 20px;

    font-size: 24px;

    font-weight: 600;

    color: #111;

    overflow: hidden;

    transition: .35s ease;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);
}

/* LEFT ACCENT */

.advantage-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 10px;
    height: 100%;

    background: linear-gradient(to bottom,
            #000c22,
            #004ba1);
}

/* ICON */

.advantage-item::after {
    content: "✓";

    position: absolute;

    left: 28px;
    top: 50%;

    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #00163b;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    font-weight: 700;
}

/* HOVER */

.advantage-item:hover {
    transform: translateX(12px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.14);
}

/* RIGHT IMAGE */

.advantages-right {
    position: relative;

    width: 420px;

    display: flex;

    justify-content: center;
    align-items: center;
}

/* GLOW EFFECT */

.advantages-right::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    background: radial-gradient(rgba(11, 77, 187, 0.18),
            transparent);

    border-radius: 50%;

    z-index: 0;
}

/* IMAGE */

.advantages-right img {
    position: relative;

    width: 100%;

    max-width: 330px;

    object-fit: contain;

    z-index: 2;

    animation: floatBoat 4s ease-in-out infinite;
}

/* FLOAT EFFECT */

@keyframes floatBoat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }

}

/* ========================= */
/* CTA BANNER */
/* ========================= */

.cta-banner {
    position: relative;

    border-radius: 25px;

    overflow: hidden;

    min-height: 300px;

    background:
        linear-gradient(rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)),
        url('../images/cta_bg.png');

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    padding: 60px;
}

/* CONTENT */

.cta-content {
    max-width: 500px;
}

.cta-content h2 {
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;

}

.cta-content p {
    font-size: 24px;
    line-height: 1.5;
    max-width: 450px;
    color: white;
}

/* SMALL LINE */

.cta-line {
    width: 70px;

    height: 4px;

    background: #0b4dbb;

    margin-bottom: 25px;
}


/* BUTTON */

.cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 16px 28px;

    background: #0b4dbb;

    color: white;

    text-decoration: none;

    border-radius: 12px;

    font-size: 18px;

    font-weight: 600;

    transition: .3s ease;
}

.cta-btn:hover {
    background: #08398b;

    transform: translateY(-3px);
}

/* ========================= */
/* 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;
}

.zoom-icon {
    display: none;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1200px) {

    .hero-content h2 {
        font-size: 90px;
    }

    .hero-content h3 {
        font-size: 42px;
    }

    .specs-wrapper {
        flex-direction: row;
    }

    .specs-video {
        width: 320px;
    }

    .specs-grid {
        max-width: 100%;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .features-left {
        border-right: none;

        padding-right: 0;
    }

    .features-right {
        width: 100%;
    }

    .benefits-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }


}

@media(max-width:991px) {

    .top-header .row {
        text-align: center;
    }

    .logo {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .video-modal.active {
        margin-top: 14%;
        display: flex;
    }


    .header-actions {
        justify-content: center;
    }

    .hero-section {
        min-height: 75vh;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-content h2 {
        font-size: 70px;
    }

    .hero-content h3 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .hero-subtitle {
        justify-content: center;
        gap: 10px;
    }

    .model-name {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .model-version {
        font-size: 16px;
        letter-spacing: 3px;
    }


    .custom-navbar .navbar-nav {
        gap: 55px;
        padding-top: 20px;
        align-items: center;
        text-align: center;
    }

    .explore-btn {
        margin-top: 20px;
        display: inline-flex;
    }

    .specs-section {
        padding: 70px 0;
    }

    .specs-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 14px;
    }

    .spec-box {
        padding: 10px 71px;
        border-radius: 20px;
        gap: 14px;
        min-height: 85px;
    }

    .spec-icon {
        width: 50px;
        height: 50px;

        min-width: 50px;

        border-radius: 15px;

        font-size: 20px;
    }

    .spec-text h3 {
        font-size: 15px;

        margin-bottom: 3px;

        line-height: 1.3;
    }

    .spec-text p {
        font-size: 13px;

        line-height: 1.4;

        margin: 0;
    }

    .specs-video {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .specs-video video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 24px;
    }

    .black-hero {
        min-height: 750px;

        padding: 80px 0;
    }

    .black-content h1 {
        font-size: 90px;
    }

    .black-content h2 {
        font-size: 20px;

        letter-spacing: 4px;
    }

    .black-content p {
        font-size: 22px;
    }

    .advantages-wrapper {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-content p {
        font-size: 20px;
    }

    .boat-slider img {
        height: 500px;
    }

    .gallery-item img {
        height: 420px;
    }

    .designed-wrapper {
        grid-template-columns: 1fr;
    }

    .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;
    }

    .gallery-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.featured {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 500px;
    }

    .gallery-item:not(.featured) {
        min-height: 260px;
    }
}

/* ========================= */
/* DESKTOP MEGA MENU */
/* ========================= */
@media(max-width:1460px) {
    .navbar-expand-lg .navbar-collapse {
        margin-left: 28px;
    }

}

@media(min-width:992px) {

    .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: 18px;
        text-align: center;
    }

    .color-section h3 {
        font-size: 27px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #111;
    }

    .color-options {
        display: flex;
        align-items: center;
        gap: 20px;
        place-content: center;
    }

    /* COLOR BUTTON */

    .color {
        position: relative;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        transition: .35s ease;
        border: 4px solid white;
        box-shadow:
            0 8px 22px rgba(0, 0, 0, 0.15);
    }

    /* ========================= */
    /* HERO SECTION */
    /* ========================= */
    .section-title h2 {
        font-size: 35px !important;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 18px;
        color: #111;
    }

    .hero-section {
        min-height: 100vh;
        padding: 43px 20px 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        position: relative;

        left: 0;

        width: 100%;
        max-width: 100%;

        margin: auto;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .hero-tag {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 2px;
    }

    .hero-content h1 {
        font-size: 68px;
        line-height: .95;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 18px;

        letter-spacing: 2px;

        margin-bottom: 28px;
    }

    .hero-content p {
        font-size: 15px;

        line-height: 1.7;

        max-width: 340px;

        margin: 0 auto 35px;
    }

    .hero-subtitle {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-bottom: 25px;
    }

    .model-name {
        font-size: 28px;
        letter-spacing: 4px;
        line-height: 1;

    }

    .model-version {
        font-size: 14px;
        letter-spacing: 2px;
        opacity: .85;
    }

    .model-note {
        text-align: center;
    }

    /* ========================= */
    /* SPECS */
    /* ========================= */
    .specs-section .section-title h2 {
        font-size: 35px;
        font-weight: 800;
        line-height: 1;
        color: #111;
        margin-bottom: 16px;
    }

    .hero-specs {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 16px;

        margin-bottom: 35px;
    }

    /* ========================= */
    /* BUTTONS */
    /* ========================= */

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 18px;
    }

    .primary-btn {
        width: 100%;
        max-width: 350px;

        padding: 18px 25px;

        border-radius: 50px;

        text-align: center;
    }

    .watch-btn {
        font-size: 16px;
    }

    /* ========================= */
    /* SLIDER */
    /* ========================= */

    .boat-slider {
        height: auto;
    }

    .boat-slider img {
        height: 350px;
    }

    .prev-btn,
    .next-btn {
        width: 55px;
        height: 55px;

        font-size: 22px;
    }


    /* ========================= */
    /* BENEFITS */
    /* ========================= */
    .benefit-item {
        background: white;
        border-radius: 30px;
        padding: 42px 28px;
        text-align: center;
        min-height: 220px;
        width: 91%;
        justify-self: center;
        display: flex;
        flex-direction: column;
        /* justify-content: flex-start; */
        align-items: center;
        transition: 0.35s;
        box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 40px;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-title {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 20px;
    }

    .benefits-title h2 {
        font-size: 32px;

        text-align: center;
    }

    /* ========================= */
    /* PERFORMANCE */
    /* ========================= */

    .performance-wrapper {
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    .performance-left,
    .performance-right {
        width: 100%;
        max-width: 100%;
    }

    .performance-right img {
        width: 100%;
        max-width: 100%;
    }

    .boat-stats {
        flex-wrap: wrap;
        gap: 35px;
    }

    .stat-box {
        width: 48%;
        border-right: none;
    }

    /* ========================= */
    /* SPECS */
    /* ========================= */
    .spec-card {
        width: 100%;

        padding: 14px 18px;

        border-radius: 18px;

        background:
            linear-gradient(135deg,
                rgba(255, 255, 255, .14),
                rgba(255, 255, 255, .04));

        border:
            1px solid rgba(255, 255, 255, .10);

        backdrop-filter: blur(14px);

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .28);
    }

    .spec-card h3 {
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 3px;
        color: white;
    }

    .spec-card span {
        font-size: 9px;
        letter-spacing: 2px;
        color: #dbeafe;
    }

    .specs-video {
        margin-top: 10%;
        display: flex;
    }


    .specs-wrapper {
        display: block;
    }

    .specs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .spec-box {
        display: flex;
        align-items: center;
        gap: 18px;

        padding: 20px;

        min-height: 96px;

        border-radius: 24px;
    }

    .spec-icon {
        width: 58px;
        height: 58px;

        min-width: 58px;

        border-radius: 18px;
    }

    .spec-box h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .spec-box p {
        font-size: 14px;
        margin: 0;
    }

    .video-modal.active {
        margin-top: 22.666667%;
        display: flex;
    }

    /* ========================= */
    /* GALLERY SECTION */
    /* ========================= */

    .gallery-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .gallery-item.featured {
        min-height: 300px;
    }

    .gallery-item:not(.featured) {
        min-height: 220px;
    }

    .gallery-title h2 {
        font-size: 36px;
    }

    .gallery-title::after {
        content: "";
        width: 90px;
        height: 5px;
        border-radius: 20px;
        background: linear-gradient(90deg,
                #000c22,
                #004ba1);
    }

    .zoom-icon {
        display: flex;

        position: absolute;
        top: 15px;
        right: 15px;

        width: 40px;
        height: 40px;

        border-radius: 50%;

        background: rgba(0, 0, 0, .6);

        color: white;

        align-items: center;
        justify-content: center;

        z-index: 10;
    }

    .zoom-icon i {
        font-size: 18px;
    }


    /* ========================= */
    /* WRAPPER */
    /* ========================= */
    .gallery-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    /* ========================= */
    /* FEATURES */
    /* ========================= */

    .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-item:nth-child(1) {
        grid-row: span 2;
        height: 455px;
    }

    .feature-item:nth-child(2) {
        height: 150px;
    }

    .feature-item:nth-child(3) {
        height: 150px;
    }

    .feature-item:nth-child(4) {
        grid-column: span 2;
        height: 180px;
    }

    .feature-item:nth-child(5) {
        height: 180px;
    }

    .feature-item:nth-child(6) {
        height: 180px;
    }

    .feature-item:nth-child(7) {
        grid-column: span 2;
        height: 220px;
    }

    .gallery-item {
        height: 220px;
        min-height: 220px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .black-hero {
        min-height: 100vh;

        padding: 90px 20px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;

        background-position: center center;
    }

    .advantages-list {
        gap: 15px;
    }

    .advantage-item {
        position: relative;

        display: flex;
        align-items: center;

        min-height: 90px;
        /* SAME HEIGHT */
        height: 90px;

        padding: 20px 24px 20px 70px;

        background: #fff;

        border-radius: 18px;

        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;

        color: #111;

        overflow: hidden;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .08);

        transition: .3s ease;
    }

    .advantage-item::before {
        width: 6px;
    }

    .advantage-item::after {
        width: 28px;
        height: 28px;
        left: 18px;
        font-size: 14px;
    }

    .title-line {
        margin-bottom: 30px;
    }

    .black-content {
        width: 100%;
        max-width: 100%;

        margin: auto;

        display: flex;
        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .black-tag {
        font-size: 13px;

        letter-spacing: 3px;

        margin-bottom: 18px;
    }

    .black-content h1 {
        font-size: 72px;
        line-height: .95;
        margin-bottom: 15px;
    }

    .black-content h2 {
        font-size: 35px;

        letter-spacing: 3px;

        margin-bottom: 28px;
    }

    .black-content p {
        font-size: 16px;
        line-height: 1.7;

        max-width: 340px;

        margin-bottom: 35px;
    }

    .watch-btn {
        font-size: 16px;
    }

    /* ========================= */
    /* 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;
    }


    /* ========================= */
    /* DESIGNED */
    /* ========================= */

    .designed-wrapper {
        grid-template-columns: 1fr;
    }

    .designed-title {
        flex-direction: column;

        gap: 20px;
    }

    .designed-title h2 {
        font-size: 30px;

        text-align: center;
    }

    .designed-item {
        min-height: 220px;
    }

    .designed-item p {
        font-size: 18px;
    }

    /* ========================= */
    /* CTA */
    /* ========================= */

    .cta-banner {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 16px;
    }

    /* ========================= */
    /* FOOTER */
    /* ========================= */

    .footer-content {
        flex-direction: column;

        gap: 35px;
    }

}


/* ========================= */
/* MOBILE SMALL */
/* ========================= */

@media(max-width:480px) {

    .logo h1 {
        font-size: 16px;
    }

    .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);
    }

    /* HERO */

    .hero-content h2 {
        font-size: 25px;
    }

    .hero-content h3 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* BUTTON */

    .watch-btn {
        font-size: 16px;
    }

    /* SLIDER */

    .boat-slider {
        height: 240px;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* GALLERY */

    .gallery-section {
        padding: 70px 0 30px;
    }

    .gallery-item img {
        height: 219px;
    }

    /* BENEFITS */

    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-title h2 {
        font-size: 36px;
    }

    .benefit-item {
        padding: 35px 24px;
    }

    .benefit-item p {
        font-size: 15px;
    }

    .section-title {
        margin-bottom: 50px;
        justify-items: center;
    }

    /* DESIGNED */

    .designed-title h2 {
        font-size: 36px;
    }

    .designed-item {
        padding: 35px 25px;
    }

    .features-section .section-title h2 {
        text-align: center;
    }

    /* 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;
    }

}