.sea-page {
    direction: rtl;
    background: #f5f7fa;
    color: #102f52;
    overflow: hidden;
}


/* =========================
   HERO
========================= */

.sea-hero {
    position: relative;
    min-height: 610px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            115deg,
            #082c52 0%,
            #123e72 55%,
            #1d548d 100%
        );

    overflow: hidden;
}

.sea-hero::before,
.sea-hero::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);
}

.sea-hero::before {
    width: 600px;
    height: 600px;

    right: -330px;
    top: -330px;
}

.sea-hero::after {
    width: 430px;
    height: 430px;

    left: -250px;
    bottom: -280px;
}

.sea-hero-container {
    position: relative;
    z-index: 2;

    width: min(1240px, 94%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 55px;

    padding: 75px 0;
}

.sea-hero-content {
    color: #fff;
}

.sea-eyebrow {
    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: rgba(255,255,255,.09);

    border:
        1px solid
        rgba(255,255,255,.15);

    font-size: 11px;

    font-weight: 800;
}

.sea-hero h1 {
    margin: 0 0 20px;

    color: #fff;

    font-size: clamp(32px, 4vw, 53px);

    line-height: 1.55;

    font-weight: 900;
}

.sea-hero h1 span {
    color: #ef3438;
}

.sea-hero-content > p {
    max-width: 590px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.80);

    font-size: 13px;

    line-height: 2.25;
}

.sea-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.sea-btn-primary,
.sea-btn-secondary {
    min-height: 48px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 900;

    transition: .2s ease;
}

.sea-btn-primary {
    background: #ef3438;
    color: #fff;

    box-shadow:
        0 12px 28px
        rgba(239,52,56,.25);
}

.sea-btn-primary:hover {
    background: #d9292e;
    transform: translateY(-2px);
}

.sea-btn-secondary {
    color: #fff;

    background: rgba(255,255,255,.06);

    border:
        1px solid
        rgba(255,255,255,.30);
}

.sea-btn-secondary:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-2px);
}


/* =========================
   SEA VISUAL
========================= */

.sea-hero-visual {
    position: relative;

    height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.sea-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.06);

    filter: blur(4px);
}

.sea {
    position: absolute;

    bottom: 45px;

    width: 500px;
    height: 110px;

    opacity: .85;
}

.sea span {
    position: absolute;

    width: 100%;
    height: 2px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.20);

    animation:
        seaWave 4s ease-in-out infinite;
}

.sea span:nth-child(1) {
    top: 15px;
}

.sea span:nth-child(2) {
    top: 45px;

    opacity: .7;

    animation-delay: -.8s;
}

.sea span:nth-child(3) {
    top: 75px;

    opacity: .5;

    animation-delay: -1.5s;
}

@keyframes seaWave {

    0%, 100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(.82);
    }
}


/* Ship */

.ship {
    position: relative;

    z-index: 3;

    width: 470px;
    height: 205px;

    transform:
        translateY(-15px);
}

.ship-hull {
    position: absolute;

    bottom: 0;
    left: 20px;

    width: 430px;
    height: 75px;

    background:
        linear-gradient(
            180deg,
            #1d4d7d,
            #092d50
        );

    clip-path:
        polygon(
            0 0,
            100% 0,
            89% 80%,
            78% 100%,
            10% 100%
        );

    border-bottom:
        5px solid #ef3438;
}

.ship-deck {
    position: absolute;

    bottom: 70px;
    left: 65px;

    width: 345px;
    height: 15px;

    background: #d9e0e6;

    border-radius: 2px;
}

.ship-cabin {
    position: absolute;

    bottom: 85px;
    right: 55px;

    width: 125px;
    height: 80px;

    background:
        linear-gradient(
            145deg,
            #edf4f9,
            #a9c0d2
        );

    border-radius: 4px;

    border:
        3px solid
        #e8eef3;
}

.ship-window {
    display: inline-block;

    width: 27px;
    height: 25px;

    margin:
        13px 3px;

    background: #244f72;

    border-radius: 3px;
}

.ship-stack {
    position: absolute;

    bottom: 165px;
    right: 70px;

    width: 35px;
    height: 45px;
}

.ship-stack i {
    display: block;

    width: 30px;
    height: 15px;

    margin-bottom: 4px;

    background: #ef3438;

    border-radius: 2px;
}

.ship-container {
    position: absolute;

    bottom: 87px;

    width: 52px;
    height: 52px;

    border-radius: 2px;

    box-shadow:
        inset 0 0 0 1px
        rgba(255,255,255,.12);
}

.ship-container::after {
    content: "";

    position: absolute;

    inset: 7px;

    border:
        1px solid
        rgba(255,255,255,.13);
}

.ship-container.c1 {
    left: 80px;
    background: #e45b42;
}

.ship-container.c2 {
    left: 137px;
    background: #f0a63c;
}

.ship-container.c3 {
    left: 194px;
    background: #326b9c;
}

.ship-container.c4 {
    left: 251px;
    background: #d5dce2;
}

.ship-container.c5 {
    left: 308px;
    background: #4d879c;
}


/* =========================
   STATS
========================= */

.sea-stats {
    position: relative;
    z-index: 5;

    width: min(1050px, 90%);

    margin: -45px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    background: #fff;

    border-radius: 16px;

    box-shadow:
        0 15px 45px
        rgba(10,40,70,.12);
}

.sea-stat {
    padding: 25px 15px;

    text-align: center;

    border-left:
        1px solid #edf0f3;
}

.sea-stat:last-child {
    border-left: none;
}

.sea-stat strong {
    display: block;

    margin-bottom: 6px;

    color: #173b6d;

    font-size: 25px;

    font-weight: 900;
}

.sea-stat span {
    color: #7a8795;

    font-size: 10px;
}


/* =========================
   MAIN
========================= */

.sea-main {
    width: min(1200px, 94%);

    margin: auto;

    padding: 90px 0;
}


/* =========================
   TITLES
========================= */

.sea-section-title {
    text-align: center;

    margin-bottom: 42px;
}

.sea-section-title > span,
.sea-small-title {
    color: #ef3438;

    font-size: 10px;

    font-weight: 900;
}

.sea-section-title h2 {
    margin: 8px 0 10px;

    color: #102f52;

    font-size: 30px;

    font-weight: 900;
}

.sea-section-title p {
    max-width: 680px;

    margin: auto;

    color: #758292;

    font-size: 12px;

    line-height: 2;
}


/* =========================
   SERVICE CARDS
========================= */

.sea-services-section {
    margin-bottom: 90px;
}

.sea-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.sea-card {
    padding: 28px 24px;

    background: #fff;

    border:
        1px solid #e7edf2;

    border-radius: 15px;

    box-shadow:
        0 8px 28px
        rgba(16,47,82,.05);

    transition: .2s ease;
}

.sea-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 18px 38px
        rgba(16,47,82,.12);
}

.sea-card-icon {
    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 14px;

    background: #edf4fb;

    font-size: 23px;
}

.sea-card h3 {
    margin: 0 0 10px;

    color: #102f52;

    font-size: 16px;

    font-weight: 900;
}

.sea-card p {
    margin: 0;

    color: #758292;

    font-size: 11px;

    line-height: 2;
}


/* =========================
   ROUTES
========================= */

.sea-routes {
    padding: 55px 35px;

    margin-bottom: 90px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #0c3158,
            #174777
        );

    color: #fff;
}

.sea-routes-heading {
    text-align: center;

    margin-bottom: 45px;
}

.sea-routes-heading span {
    color: #ff5558;

    font-size: 10px;

    font-weight: 900;
}

.sea-routes-heading h2 {
    margin: 8px 0;

    color: #fff;

    font-size: 29px;

    font-weight: 900;
}

.sea-routes-heading p {
    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 11px;
}

.sea-route-flow {
    display: grid;

    grid-template-columns:
        1fr 70px 1fr 70px 1fr 70px 1fr;

    align-items: center;

    gap: 10px;
}

.sea-route-point {
    padding: 22px 10px;

    text-align: center;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 13px;
}

.sea-route-point strong {
    display: block;

    margin-bottom: 5px;

    color: #fff;

    font-size: 16px;
}

.sea-route-point span {
    color: rgba(255,255,255,.60);

    font-size: 9px;
}

.sea-route-line {
    height: 2px;

    background:
        rgba(255,255,255,.20);

    position: relative;
}

.sea-route-line::after {
    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    width: 8px;
    height: 8px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #ef3438;
}


/* =========================
   ADVANTAGES
========================= */

.sea-advantages {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;

    margin-bottom: 90px;
}

.sea-advantages-content h2 {
    margin: 10px 0 18px;

    color: #102f52;

    font-size: 31px;

    line-height: 1.6;

    font-weight: 900;
}

.sea-advantages-content > p {
    margin-bottom: 25px;

    color: #758292;

    font-size: 12px;

    line-height: 2.1;
}

.sea-benefits {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;
}

.sea-benefits > div {
    padding: 15px;

    border-radius: 10px;

    background: #fff;

    border:
        1px solid #e7edf2;
}

.sea-benefits strong {
    display: block;

    margin-bottom: 5px;

    color: #173b6d;

    font-size: 12px;
}

.sea-benefits span {
    color: #7a8795;

    font-size: 9px;
}


/* Advantages visual */

.sea-advantages-visual {
    min-height: 350px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #0c3158,
            #1d548d
        );

    overflow: hidden;
}

.sea-circle {
    width: 220px;
    height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.18);

    box-shadow:
        0 0 0 25px rgba(255,255,255,.03),
        0 0 0 55px rgba(255,255,255,.02);
}

.sea-circle-inner {
    width: 130px;
    height: 130px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: #ef3438;

    color: #fff;

    font-size: 17px;

    line-height: 1.5;

    font-weight: 900;
}

.sea-wave {
    position: absolute;

    width: 600px;
    height: 150px;

    border-top:
        2px solid
        rgba(255,255,255,.12);

    border-radius: 50%;
}

.wave-one {
    bottom: -55px;
}

.wave-two {
    bottom: -95px;
}


/* =========================
   PROCESS
========================= */

.sea-process {
    margin-bottom: 90px;
}

.sea-process-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;
}

.sea-process-item {
    text-align: center;

    padding: 20px 10px;
}

.sea-process-item b {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 14px;

    border-radius: 50%;

    background: #173b6d;

    color: #fff;

    font-size: 15px;

    border:
        5px solid #edf3f8;
}

.sea-process-item h3 {
    margin: 0 0 7px;

    color: #102f52;

    font-size: 13px;
}

.sea-process-item p {
    margin: 0;

    color: #7a8795;

    font-size: 9px;

    line-height: 1.9;
}


/* =========================
   CTA
========================= */

.sea-cta {
    padding: 60px 30px;

    text-align: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #ef3438,
            #d9272c
        );

    box-shadow:
        0 18px 45px
        rgba(239,52,56,.18);
}

.sea-cta span {
    color: rgba(255,255,255,.70);

    font-size: 10px;

    font-weight: 900;
}

.sea-cta h2 {
    max-width: 700px;

    margin: 10px auto 12px;

    color: #fff;

    font-size: 29px;

    line-height: 1.6;

    font-weight: 900;
}

.sea-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    color: rgba(255,255,255,.82);

    font-size: 12px;

    line-height: 2;
}

.sea-cta a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 28px;

    border-radius: 9px;

    background: #fff;

    color: #d9272c;

    text-decoration: none;

    font-size: 11px;

    font-weight: 900;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .sea-hero-container,
    .sea-advantages {
        grid-template-columns: 1fr;
    }

    .sea-hero-content {
        text-align: center;
    }

    .sea-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .sea-hero-actions {
        justify-content: center;
    }

    .sea-services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sea-process-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .sea-route-flow {
        grid-template-columns:
            1fr 45px 1fr 45px 1fr;
    }

    .sea-route-flow
    .sea-route-point:last-child {
        grid-column: 2 / 5;
        width: 50%;
        margin: 10px auto 0;
    }

    .sea-route-flow
    .sea-route-point:last-child
    + .sea-route-line {
        display: none;
    }

    .sea-advantages-visual {
        min-height: 300px;
    }
}


@media (max-width: 650px) {

    .sea-hero {
        min-height: auto;
    }

    .sea-hero-container {
        width: 92%;

        padding: 55px 0;
    }

    .sea-hero h1 {
        font-size: 30px;
    }

    .sea-hero-content > p {
        font-size: 11px;
    }

    .sea-hero-visual {
        height: 290px;
    }

    .ship {
        transform:
            scale(.68);
    }

    .sea-stats {
        width: 92%;

        grid-template-columns: 1fr;

        margin-top: -15px;
    }

    .sea-stat {
        border-left: none;

        border-bottom:
            1px solid #edf0f3;
    }

    .sea-stat:last-child {
        border-bottom: none;
    }

    .sea-main {
        width: 92%;

        padding: 65px 0;
    }

    .sea-services-grid {
        grid-template-columns: 1fr;
    }

    .sea-routes {
        padding: 40px 18px;
    }

    .sea-route-flow {
        grid-template-columns: 1fr;
    }

    .sea-route-line {
        width: 2px;
        height: 35px;

        margin: auto;
    }

    .sea-route-flow
    .sea-route-point:last-child {
        grid-column: auto;

        width: auto;

        margin: 0;
    }

    .sea-advantages-content h2 {
        font-size: 26px;
    }

    .sea-benefits {
        grid-template-columns: 1fr;
    }

    .sea-process-grid {
        grid-template-columns: 1fr;
    }

    .sea-cta {
        padding: 45px 20px;
    }

    .sea-cta h2 {
        font-size: 25px;
    }
}