* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow-x: hidden;
    background: #fff;
}

.mobile-explore-item {
    display: none;
}

.mobile-boat-cards {
    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;
}

html {
    scroll-behavior: smooth;
}


/* ========================= */
/* 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 */
/* ========================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-dialog {
    max-width: fit-content;
}

.modal-body {
    padding: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 90%;
}

.hero-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
}

/* ========================= */
/* VALUE SECTION */
/* ========================= */

.value-section {
    padding: 90px 0;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f7f9fc);
}

/* WRAPPER */

.value-wrapper {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 55px;

    align-items: center;
}

/* TAG */

.value-tag {
    display: inline-block;

    color: #0b4dbb;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

/* TITLE */

.value-left h2 {
    font-size: 52px;

    line-height: 1;

    font-weight: 900;

    color: #111;

    margin-bottom: 35px;
}

.value-left h2 span {
    color: #0b4dbb;
}

/* FEATURES */

.value-features {
    display: flex;

    flex-direction: column;

    gap: 16px;
}

/* ITEM */

.value-item {
    display: flex;

    align-items: center;

    gap: 18px;

    background: white;

    padding: 18px 22px;

    border-radius: 22px;

    transition: .35s ease;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(11, 77, 187, 0.12);
}

/* ICON */

.value-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    box-shadow:
        0 10px 24px rgba(11, 77, 187, 0.16);
}

.value-icon i {
    color: white;

    font-size: 22px;
}

/* TEXT */

.value-item h3 {
    font-size: 19px;

    font-weight: 800;

    color: #111;

    margin-bottom: 4px;
}

.value-item p {
    font-size: 15px;

    line-height: 1.6;

    color: #4b5563;

    margin: 0;
}

/* IMAGE */

.value-image {
    position: relative;
}

.value-image img {
    width: 100%;

    height: 620px;

    object-fit: cover;

    border-radius: 34px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.10);
}

/* ========================= */
/* COMPARE BOATS */
/* ========================= */

.compare-boats {
    padding: 50px 0;
}

.compare-card {
    position: relative;
    max-width: 1400px;
    margin: auto;
    height: 760px;
    border-radius: 35px;
    overflow: hidden;
    background: #000;
}

/* ========================= */
/* SPLIT IMAGES */
/* ========================= */

.compare-half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;

    text-decoration: none;
    color: white;
    cursor: pointer;
}

.left-half {
    left: 0;
}

.right-half {
    right: 0;
}

.compare-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease;
}

.compare-half:hover img {
    transform: scale(1.08);
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.compare-half::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .25));

    z-index: 1;
}

/* ========================= */
/* CENTER DIVIDER */
/* ========================= */

.divider-line {
    position: absolute;
    top: 0;
    left: 50%;

    width: 3px;
    height: 100%;

    background: rgba(255, 255, 255, .9);

    transform: translateX(-50%);

    z-index: 20;
}

.divider-line::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;

    width: 24px;
    height: 24px;

    border-radius: 50%;
    background: white;

    transform: translate(-50%, -50%);

    box-shadow: 0 0 20px rgba(255, 255, 255, .4);
}

/* ========================= */
/* CONTENT */
/* ========================= */

.compare-content {
    position: absolute;
    left: 70px;
    bottom: 70px;
    color: #fff;
    z-index: 30;
    max-width: 650px;
    pointer-events: none;
}

.boat-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.compare-content h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: .95;
    margin-bottom: 15px;
}

.compare-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, .85);
    max-width: 550px;
}

/* ========================= */
/* MODEL TAG */
/* ========================= */

.model-tag {
    position: absolute;
    top: 30px;
    left: 30px;

    padding: 12px 18px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 18px;

    color: white;

    z-index: 30;

    transition: .3s ease;
}

.right-half .model-tag {
    left: auto;
    right: 30px;
}

.compare-half:hover .model-tag {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .15);
}

/* ========================= */
/* EXPLORE LABEL */
/* ========================= */

.model-overlay {
    position: absolute;
    left: 30px;
    bottom: 35px;

    z-index: 30;

    color: white;
    font-size: 18px;
    font-weight: 700;

    opacity: 0;
    transform: translateY(20px);

    transition: .4s ease;
}

.compare-half:hover .model-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* ARROW */
/* ========================= */

.compare-arrow {
    position: absolute;
    right: 70px;
    bottom: 70px;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: white;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .15);

    font-size: 42px;

    z-index: 40;

    transition: .3s ease;
}

.compare-arrow:hover {
    background: #0b4dbb;
    transform: translateY(-5px);
}

/* ========================= */
/* CONTENT */
/* ========================= */

.hero-container {
    position: relative;
    z-index: 5;
}

.model-content {
    max-width: 650px;
    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 */

.model-content h1 {
    font-size: 120px;

    line-height: .9;

    font-weight: 900;

    margin-bottom: 20px;

    color: white;
}

.model-content h1 span {
    color: #4da6ff;
}

/* SUBTITLE */

.model-content h2 {
    font-size: 28px;

    letter-spacing: 5px;

    color: #dcecff;

    margin-bottom: 30px;

    font-weight: 600;
}

.model-content h2 span {
    font-size: 20px;

    letter-spacing: 5px;

    color: #dcecff;

    margin-bottom: 30px;

    font-weight: 600;
}

/* DESCRIPTION */

.model-content p {
    font-size: 22px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .82);

    max-width: 580px;

    margin-bottom: 40px;
}

/* ========================= */
/* SPECS */
/* ========================= */

.hero-specs {
    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 45px;
}

.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;
}

.spec-card h3 {
    font-size: 34px;

    font-weight: 800;

    margin-bottom: 6px;

    color: white;
}

.spec-card span {
    font-size: 12px;

    letter-spacing: 2px;

    color: #dcecff;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.hero-buttons {
    display: flex;

    gap: 22px;

    flex-wrap: wrap;
}

.hero-primary-btn {
    letter-spacing: 1px;
    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);
}

.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;
}

/* ========================= */
/* WHY SECTION */
/* ========================= */

.why-section {
    padding: 120px 0;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .85) 0%,
            rgba(255, 255, 255, .65) 35%,
            rgba(255, 255, 255, .20) 70%,
            rgba(255, 255, 255, .05) 100%),
        url('../images/why-bg.png');

    background-size: cover;
    background-position: center;
    position: relative;
}

.why-content {
    width: 100%;
}

.why-left {
    max-width: 1400px;
}

/* ========================= */
/* TITLE */
/* ========================= */

.why-left h1 {
    font-size: 90px;
    font-weight: 900;
    line-height: .92;
    margin-bottom: 25px;
    color: #111;

    text-shadow:
        0 2px 8px rgba(255, 255, 255, .7),
        0 10px 30px rgba(255, 255, 255, .5);
}

.why-left h1 span {
    color: #0b4dbb;

    text-shadow:
        0 4px 15px rgba(11, 77, 187, .25);
}

.why-left h1::after {
    content: "";
    display: block;

    width: 160px;
    height: 5px;

    margin-top: 20px;

    border-radius: 20px;

    background:
        linear-gradient(90deg,
            #0b4dbb,
            #4da6ff);
}

/* ========================= */
/* SUBTITLE */
/* ========================= */

.why-left>p {
    background: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;

    font-size: 26px;
    max-width: 500px;

    color: #1f2937;
}

/* ========================= */
/* FEATURES */
/* ========================= */

/* LAYOUT */

.why-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.why-left {
    width: 55%;
}

.why-right {
    width: 45%;
}

.why-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* FEATURES */

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    display: flex;
    gap: 20px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.feature-box i {
    font-size: 42px;
    color: #0b4dbb;
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.feature-box span {
    display: block;
    font-size: 17px;
    line-height: 1.7;
    color: #141414;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.why-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 50px;

    padding: 18px 34px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #0b4dbb,
            #0066ff);

    color: white;
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(11, 77, 187, .30);

    transition: .35s ease;
}

.why-btn:hover {
    transform: translateY(-4px);

    color: white;

    box-shadow:
        0 25px 45px rgba(11, 77, 187, .40);
}


/* ========================= */
/* APPLICATION SECTION */
/* ========================= */

.application-section {
    padding: 70px 0;
    background: #f5f5f5;
}

.application-section .row {
    align-items: flex-start;
}

.application-section .container {
    max-width: 1400px;
}


/* LEFT SIDE */

.application-title {
    padding-top: 10px;
    letter-spacing: 1px;
}

.application-title h5 {
    color: #0b4dbb;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.application-title h1 {
    font-size: 88px;
    line-height: 0.92;
    font-weight: 800;
    color: #111;
    margin-bottom: 40px;
}

.application-title h1 span {
    color: #0b4dbb;
}

.application-title::after {
    content: '';
    width: 120px;
    height: 5px;
    background: #0b4dbb;
    display: block;
}


/* ========================= */
/* CARDS */
/* ========================= */

.application-cards {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
}

.app-card {
    flex: 1;
    max-width: 205px;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    position: relative;

    display: flex;
    flex-direction: column;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
}


/* IMAGE */

.app-card img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
}


/* ICON */

.app-icon {
    width: 72px;
    height: 72px;

    background: linear-gradient(135deg, #000c22, #004ba1);
    color: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;

    top: 220px;
    left: 50%;

    transform: translateX(-50%);

    border: 5px solid white;

    font-size: 30px;

    z-index: 2;
}


/* TEXT */

.app-card h3 {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding:
        55px 18px 25px;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;

    color: #111;

    min-height: 150px;
}



/* ========================= */
/* CTA SECTION */
/* ========================= */

.cta-section {
    padding: 20px 0 90px;
    background: #f3f3f3;
}

.cta-content {
    position: relative;

    width: 100%;
    min-height: 460px;

    border-radius: 34px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 0 70px;

    background: url('../images/cta_bg.png');
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 22, 60, 0.97),
            rgba(0, 22, 60, 0.55),
            transparent);
}

.cta-text {
    position: relative;
    z-index: 2;

    max-width: 560px;

    color: white;
}

.line {
    width: 100px;
    height: 5px;
    background: #0b4dbb;
    margin-bottom: 35px;
}

.cta-text h1 {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -3px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 27px;
}

.cta-text h1 span {
    color: #0b4dbb;
}



/* ========================= */
/* CTA BUTTONS */
/* ========================= */

.cta-buttons {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}


.primary-btn,
.secondary-btn {
    padding: 16px 30px;
    font-size: 18px;
    border-radius: 14px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: #0b4dbb;
    color: white;
}

.primary-btn:hover {
    background: #08368a;
}

.secondary-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: #111;
}

/* ========================= */
/* 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;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1400px) {


    .application-title h1 {
        font-size: 66px;
    }

    .app-card img {
        height: 230px;
    }

    .app-icon {
        top: 190px;
    }

    .boat-img {
        width: 72%;
        right: -8%;
    }

    .model-text h1 {
        font-size: 100px;
    }
}

@media(max-width:1460px) {
    .navbar-expand-lg .navbar-collapse {
        margin-left: 28px;
    }
}

@media(max-width:1200px) {

    .application-cards {
        flex-wrap: wrap;
    }

    .app-card {
        max-width: none;
        width: calc(33.333% - 14px);
    }

    .application-title {
        margin-bottom: 50px;
    }


    .application-title h1 {
        font-size: 64px;
    }

    .application-section .row {
        align-items: flex-start;
    }

    .overlay-shape {
        width: 88%;
    }

    .boat-img {
        width: 78%;
        right: -12%;
    }

    .model-content h1 {
        font-size: 90px;
    }

    .model-content p {
        font-size: 20px;
    }

    .spec-card {
        min-width: 140px;
    }

    .value-wrapper {
        grid-template-columns: 1fr;
    }

    .value-image img {
        height: 520px;
    }

    .why-left h1 {
        font-size: 70px;
    }

    .why-features {
        gap: 20px;
        margin-top: 0;
    }
}

@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;
    }

    .hero-content h2 {
        font-size: 50px;
    }

    .value-text h2,
    .application-title h1,
    .cta-text h1 {
        font-size: 50px;
    }

    .why-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 30px;
    }

    .why-left {
        width: 100% !important;
        max-width: 700px !important;
        margin: 0 auto !important;
    }



    .feature-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .feature-box h4,
    .feature-box p,
    .feature-box span {
        text-align: center !important;
    }

    .why-btn {
        display: flex;
        margin: 40px auto 0;
    }

    .why-left h1::after {
        margin: 20px auto 0;
    }

    .why-left>p {
        margin-left: auto;
        margin-right: auto;
    }

    /* hide empty right column if you don't use it */

    .why-right {
        display: none;
    }

    .why-btn {
        justify-content: center;
    }

    .application-title h1 {
        font-size: 58px;
    }

    .app-card {
        width: calc(50% - 14px);
    }

    .desktop-explore {
        display: none !important;

    }

    /* Hide split design */

    .compare-card {
        display: none;
    }

    .mobile-boat-cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 700px;
        margin: 40px auto 0;
        padding: 0 20px;
    }

    .mobile-boat-card {
        display: block;
        text-decoration: none;

        background: #0c1d4b;

        border-radius: 28px;

        overflow: hidden;

        border: 1px solid rgba(255, 255, 255, .08);

        box-shadow:
            0 15px 40px rgba(0, 0, 0, .15);

        transition: .3s ease;
    }

    .mobile-boat-card img {
        width: 100%;
        height: 260px;

        object-fit: contain;

        padding: 20px;

        background:
            radial-gradient(circle at center,
                rgba(11, 77, 187, .15),
                transparent 70%);
    }

    .mobile-card-content {
        padding: 24px;
        text-align: center;
    }

    .mobile-card-content span {
        display: block;

        color: #4da6ff;

        font-size: 12px;

        letter-spacing: 2px;

        text-transform: uppercase;

        margin-bottom: 8px;
    }

    .mobile-card-content h3 {
        color: white;

        font-size: 24px;

        font-weight: 800;

        margin-bottom: 10px;
    }

    .mobile-card-content p {
        color: #cbd5e1;

        margin: 0;
    }

    /* 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;

    }

    .navbar-collapse {
        opacity: 0;
        transform: translateY(-20px);
        transition: all .4s ease;
    }

    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }

    .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;
    }

}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* DESKTOP MEGA MENU */
/* ========================= */

@media(min-width:900px) {

    .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;
    }

    /* ========================================= */
    /* HERO */
    /* ========================================= */

    .hero {
        height: 100vh;
    }

    .hero-content h2 {
        font-size: 39px;
    }

    .hero-content p {
        padding: 0 38px;
        font-size: 18px;
    }

    /* ========================================= */
    /* VALUE SECTION */
    /* ========================================= */

    .value-section {
        padding: 70px 0;
    }

    .value-left {
        text-align: center;

        align-items: center;
    }

    .value-tag {
        display: block;

        text-align: center;

        margin:
            0 auto 20px;
    }

    .value-left h2 {
        text-align: center;
        font-size: 41px;
        margin:
            0 auto 40px;

        line-height: 1.05;
    }

    .value-item {
        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;
    }

    .value-item h3,
    .value-item p {
        text-align: center;
    }

    .value-icon {
        margin: 0 auto 14px;
    }

    .value-image img {
        height: 360px;
    }

    .value-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }


    .value-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

        min-height: 180px;
        padding: 25px 18px;
    }

    .value-item:last-child {
        grid-column: 1 / -1;
    }

    /* ========================================= */
    /* WHY SECTION */
    /* ========================================= */
    .why-section {
        background:
            linear-gradient(rgba(255, 255, 255, .92),
                rgba(255, 255, 255, .92)),
            url('../images/why-bg.png');

        background-size: cover;
        background-position: center;
    }

    .why-left {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: auto;
    }

    .why-left h1 {
        font-size: 42px;
        text-align: center;
    }

    .why-left h1::after {
        margin: 20px auto 0;
    }

    .why-left>p {
        font-size: 23px;
        max-width: 100%;
        text-align: center;
        margin: 20px auto 35px;
    }


    .feature-box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .feature-box h3,
    .feature-box i {
        margin: 0 auto 15px;
    }

    .feature-box h4 {
        text-align: center;
    }

    .feature-box span,
    .feature-box p {
        text-align: center;
        margin: auto;
    }

    .why-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 35px auto 0;
        width: fit-content;
    }

    /* ========================= */
    /* CTA */
    /* ========================= */

    .cta-content {
        min-height: 300px;
        padding: 35px 25px;
        align-items: center;
    }

    .cta-text {
        max-width: 100%;
    }

    .line {
        width: 70px;
        margin-bottom: 20px;
    }

    .cta-text h1 {
        font-size: 32px;
        line-height: 1.05;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        max-width: 260px;
    }

    .primary-btn,
    .secondary-btn {
        width: 94%;
        padding: 14px 20px;
        font-size: 16px;
    }


    .model-tag {
        font-size: 13px;
        padding: 12px 15px;
    }

    .model-overlay {
        font-size: 14px;
        padding: 12px;
    }

    /* Explore Button */
    .compare-arrow {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 20px auto 25px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    /* ========================= */
    /* APPLICATION */
    /* ========================= */

    .application-section {
        padding: 70px 0;

        overflow: hidden;
    }

    .application-title {
        text-align: center;

        margin-bottom: 40px;
    }

    .application-title h5 {
        font-size: 18px;

        margin-bottom: 20px;
    }

    .application-title h1 {
        font-size: 52px;

        line-height: 1.05;
    }

    .application-title::after {
        margin: 30px auto 0;
    }

    /* CARDS */

    .application-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: stretch;
    }

    .app-card {
        width: 100%;

        max-width: 100%;

        border-radius: 28px;
    }

    .app-card img {
        width: 100%;

        height: 320px;

        object-fit: cover;
    }

    .app-icon {
        width: 76px;

        height: 76px;

        font-size: 28px;

        top: 275px;
    }

    .app-card h3 {
        font-size: 18px;
        line-height: 1.4;
        padding: 56px 19px 20px;
        min-height: auto;
    }

    /* Last card centered */
    .app-card:last-child {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: 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;
    }

    /* ========================= */
    /* FOOTER */
    /* ========================= */

    .footer-content {
        flex-direction: column;

        gap: 35px;
    }

    .model-slider {
        height: 100vh;
        background: #000;
        overflow: hidden;
    }

    /* KEEP CONTENT ABOVE IMAGE */

    .model-content {
        position: relative;
        z-index: 5;
    }

    /* SPACE FOR IMAGE */

    .model-content p {
        margin-bottom: 260px;
    }

    /* ========================================= */
    /* CONTENT */
    /* ========================================= */

    .hero-container {
        width: 100%;
        position: relative;
        z-index: 5;
    }

    .model-content {
        width: 100%;
        max-width: 320px;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: white;
        padding-top: 10px;
    }

    /* MODEL TAG */

    .hero-tag {
        font-size: 11px;
        letter-spacing: 4px;
        color: #4da6ff;
        font-weight: 700;
        margin-bottom: 10px;
    }

    /* TITLE */

    .model-content h1 {
        font-size: 45px;
        line-height: .9;
        font-weight: 900;
        margin-bottom: 8px;
        color: white;
    }

    .model-content h1 span {
        color: #4da6ff;
    }

    /* SUBTITLE */

    .model-content h2 {
        font-size: 18px;
        letter-spacing: 1px;
        font-weight: 700;
        margin-bottom: 5px;
        color: white;
    }

    .model-content h2 span {
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 700;
        color: white;
    }

    /* DESCRIPTION */

    .model-content p {
        font-size: 10px;
        line-height: 1.7;
        color: rgba(255, 255, 255, .88);
        max-width: 250px;
        margin-bottom: 153px;
    }

    /* ========================================= */
    /* SPECS */
    /* ========================================= */

    .hero-specs {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 12px;

        margin-bottom: 20px;

        margin-top: 38px;
    }

    .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;
    }

    /* ========================================= */
    /* BUTTONS */
    /* ========================================= */

    .hero-buttons {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-primary-btn {
        width: 100%;

        padding: 14px 18px;

        border-radius: 50px;

        background:
            linear-gradient(135deg,
                #0066ff,
                #004ba1);

        color: white;

        text-decoration: none;

        font-size: 13px;
        font-weight: 700;

        text-align: center;

        box-shadow:
            0 10px 28px rgba(0, 102, 255, .30);
    }

    .hero-watch-btn {
        color: white;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }

    .cta-content {
        padding: 35px 20px;
    }




    /* 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;
    }

}

@media(max-width:520px) {
    .value-features {
        display: flex;

        flex-direction: column;

        gap: 16px;
    }

    .why-features {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 30px;
    }

    .application-cards {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 0;
    }

    .app-card:last-child {
        grid-column: 1 / -1;
        width: 100%;
        justify-self: center;
    }
}

@media(max-width:460px) {
    .container {
        padding: 0 25px;
    }
    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

}