:root {
    --blue: #0877e8;
    --blue2: #0459b5;
    --cyan: #16b7c9;
    --navy: #07182e;
    --ink: #17243a;
    --muted: #66758b;
    --bg: #f5f9fe;
    --line: #e4ebf3;
    --white: #fff;
    --shadow: 0 18px 55px rgba(7, 24, 46, .10);
    --r: 18px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: #fff;
    overflow-x: hidden
}

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

.wrap {
    width: min(1180px, 92%);
    margin: auto
}

.top {
    background: var(--navy);
    color: #dbeafe;
    font-size: 13px
}

.top .wrap {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    font-size: 23px;
    font-weight: 900;
    color: var(--navy)
}

.brand b {
    color: var(--blue)
}

.links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-weight: 700;
    font-size: 14px
}

.links a:hover {
    color: var(--blue)
}

.book {
    background: var(--blue);
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 9px 24px rgba(8, 119, 232, .2)
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 26px
}

.hero {
    padding: 72px 0 55px;
    background: linear-gradient(120deg, #eef8ff 0%, #fff 54%, #eafcff 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 50px;
    align-items: center
}

.eyebrow {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px
}

h1 {
    font-size: clamp(38px, 5.2vw, 61px);
    line-height: 1.05;
    letter-spacing: -2.3px;
    margin: 13px 0;
    color: var(--navy)
}

h2 {
    font-size: clamp(29px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin: 0 0 13px;
    color: var(--navy)
}

h3 {
    color: var(--navy);
    line-height: 1.25
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 650px
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    padding: 14px 21px;
    font-weight: 850;
    border: 1px solid var(--line)
}

.primary {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

.secondary {
    background: #fff
}

.visual {
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 20px
}

.visual-main {
    height: 355px;
    border-radius: 21px;
    background: linear-gradient(145deg, #dff3ff, #f8fdff);
    display: grid;
    place-items: center;
    font-size: 125px;
    overflow: hidden
}

.visual-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.visual-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px
}

.mini {
    border: 1px solid var(--line);
    padding: 13px;
    border-radius: 13px;
    text-align: center;
    background: #fff
}

.mini strong {
    display: block;
    color: var(--navy)
}

.section {
    padding: 78px 0
}

.alt {
    background: var(--bg)
}

.intro {
    max-width: 730px;
    margin-bottom: 34px
}

.intro p {
    color: var(--muted)
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 26px;
    box-shadow: 0 6px 25px rgba(7, 24, 46, .045);
    transition: .25s
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eaf5ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 14px
}

.card p {
    color: var(--muted)
}

.link {
    color: var(--blue);
    font-weight: 800
}

.service-card {
    overflow: hidden;
    padding: 0
}

.service-card .pic {
    height: 150px;
    display: grid;
    place-items: center;
    font-size: 75px;
    background: linear-gradient(145deg, #e7f5ff, #f5fdff)
}

.service-card .inside {
    padding: 23px
}

.booking {
    background: linear-gradient(110deg, var(--blue2), var(--blue));
    color: #fff;
    padding: 50px 0
}

.booking-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 30px;
    align-items: center
}

.booking h2 {
    color: #fff
}

.booking p {
    color: #dbeafe
}

.form {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow)
}

.form h3 {
    margin-top: 0
}

label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 6px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ccd8e5;
    border-radius: 9px;
    padding: 12px 13px;
    font: inherit;
    margin-bottom: 13px
}

textarea {
    min-height: 90px
}

.form button {
    width: 100%
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px
}

.brand {
    background: #fff;
    /* border: 1px solid var(--line); */
    border-radius: 13px;
    padding: 18px;
    text-align: center;
    font-weight: 850;
    color: #40516a
}

.process {
    counter-reset: step
}

.step {
    position: relative
}

.step:before {
    counter-increment: step;
    content: counter(step);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 15px
}

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

.area-list a {
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #42536b;
    font-weight: 700
}

.area-list a:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.review {
    position: relative
}

.stars {
    color: #f59e0b;
    letter-spacing: 2px
}

.review p {
    font-style: italic;
    color: #526176
}

.review small {
    font-weight: 800;
    color: var(--muted)
}

.faq {
    max-width: 850px
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 18px 0
}

.faq summary {
    cursor: pointer;
    font-weight: 850;
    color: var(--navy)
}

.cta-band {
    background: var(--navy);
    color: #fff;
    padding: 50px 0
}

.cta-band .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px
}

.cta-band h2 {
    color: #fff;
    margin: 0
}

.cta-band p {
    color: #bcd0e7
}

.breadcrumb {
    background: #f8fafc;
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
    font-size: 13px;
    color: var(--muted)
}

.pagehero {
    padding: 62px 0;
    background: linear-gradient(135deg, #eef8ff, #fff)
}

.pagehero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px
}

.footer {
    background: #061426;
    color: #b7c6d9;
    padding: 58px 0 24px
}

.footgrid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px
}

.footer h3 {
    color: #fff
}

.footer a:hover {
    color: #fff
}

.copyright {
    border-top: 1px solid #1b2b40;
    margin-top: 30px;
    padding-top: 18px;
    font-size: 12px
}

.float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.float a {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 11px 14px;
    border-radius: 999px;
    font-weight: 900
}

.float .wa {
    color: #087f5b
}

@media(max-width:900px) {
    .links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 18px 4%;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 12px 20px rgba(7, 24, 46, .08)
    }

    .links.open {
        display: flex
    }

    .links a {
        width: 100%;
        padding: 8px 0
    }

    .links .book {
        width: auto
    }

    .menu {
        display: block;
        padding: 8px;
        line-height: 1;
        cursor: pointer
    }

    .hero-grid,
    .booking-grid,
    .grid2 {
        grid-template-columns: 1fr
    }

    .grid3 {
        grid-template-columns: 1fr 1fr
    }

    .grid4 {
        grid-template-columns: 1fr 1fr
    }

    .brand-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .footgrid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .wrap {
        width: min(100% - 32px, 1180px)
    }

    .top .wrap {
        font-size: 11px;
        min-height: 34px
    }

    .top .wrap span:last-child {
        display: none
    }

    .nav {
        height: 64px
    }

    .links {
        top: 64px
    }

    .brand {
        font-size: 21px
    }

    .hero {
        padding: 45px 0 38px
    }

    .hero h1 {
        font-size: clamp(34px, 11vw, 46px);
        letter-spacing: -1.5px
    }

    .hero p {
        font-size: 16px
    }

    .actions {
        width: 100%
    }

    .actions .btn {
        flex: 1 1 100%;
        width: 100%
    }

    .visual {
        padding: 10px;
        border-radius: 20px
    }

    .visual-main {
        height: 220px;
        border-radius: 14px
    }

    .visual-bottom {
        gap: 6px
    }

    .mini {
        padding: 9px 4px;
        font-size: 12px
    }

    .mini small {
        font-size: 11px
    }

    .section {
        padding: 55px 0
    }

    .intro {
        margin-bottom: 25px
    }

    .intro h2 {
        font-size: 30px
    }

    .grid3,
    .grid4 {
        grid-template-columns: 1fr
    }

    .card {
        padding: 21px
    }

    .service-card {
        padding: 0
    }

    .service-card .inside {
        padding: 20px
    }

    .booking {
        padding: 42px 0
    }

    .booking-grid {
        gap: 24px
    }

    .form {
        padding: 19px;
        border-radius: 15px
    }

    .brand-row {
        grid-template-columns: 1fr 1fr
    }

    .brand-row .brand {
        padding: 13px 8px
    }

    .cta-band {
        padding: 40px 0
    }

    .cta-band .wrap {
        display: block
    }

    .cta-band .btn {
        width: 100%;
        margin-top: 15px
    }

    .footgrid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .float {
        right: 12px;
        bottom: 12px;
        left: 12px;
        flex-direction: row
    }

    .float a {
        flex: 1;
        text-align: center;
        padding: 9px 8px;
        font-size: 13px
    }
}



/* =========================================
   SCROLLING HERO SLIDER
========================================= */

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: #f7fbff;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0.7s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.hero-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 680px;
}

.hero-content .eyebrow {
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 22px;
    color: #101828;
    font-weight: 800;
}

.hero-content h1 span {
    color: #0877e8;
    display: inline;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.75;
    color: #667085;
    max-width: 650px;
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 620px;
    justify-self: end;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    right: 5%;
    top: 5%;
    background: #0877e8;
    opacity: 0.08;
    border-radius: 40px;
    transform: rotate(5deg);
}

.hero-image img {
    position: relative;
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.15);
}

/* Buttons */

.hero-slider .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-slider .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.hero-slider .btn.primary {
    background: #0877e8;
    color: #fff;
}

.hero-slider .btn.primary:hover {
    background: #0564c7;
    transform: translateY(-2px);
}

.hero-slider .btn.secondary {
    background: #fff;
    color: #0877e8;
    border: 1px solid #d0d5dd;
}

.hero-slider .btn.secondary:hover {
    border-color: #0877e8;
    transform: translateY(-2px);
}

/* Features */

.hero-features {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.hero-features>div {
    min-width: 125px;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
}

.hero-features strong {
    display: block;
    font-size: 15px;
    color: #101828;
}

.hero-features small {
    display: block;
    margin-top: 4px;
    color: #667085;
}

/* Arrows */

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #0877e8;

    font-size: 22px;
    cursor: pointer;

    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.12);

    transition: all 0.25s ease;
}

.hero-arrow:hover {
    background: #0877e8;
    color: #fff;
}

.hero-prev {
    left: 25px;
}

.hero-next {
    right: 25px;
}

/* Dots */

.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: #cbd5e1;
    cursor: pointer;

    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 30px;
    border-radius: 10px;
    background: #0877e8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .hero-slider {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 55px;
        padding-bottom: 90px;
        gap: 35px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider .actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        justify-self: center;
        max-width: 650px;
    }

    .hero-image img {
        height: 360px;
    }
}


@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-image img {
        height: 280px;
        border-radius: 20px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-features>div {
        min-width: 105px;
        padding: 10px;
    }

    .hero-features strong {
        font-size: 13px;
    }

    .hero-features small {
        font-size: 11px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-slider .btn {
        width: 100%;
    }
}


/* ==========================================
   HERO - STATIC CONTENT + IMAGE SLIDER
========================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: #f7fbff;
}

.hero-grid {
    min-height: 620px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 55px;

    padding-top: 60px;
    padding-bottom: 60px;
}


/* LEFT CONTENT */

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.05;

    margin: 15px 0 22px;

    color: #101828;
    font-weight: 800;
}

.hero-content p {
    max-width: 650px;

    font-size: 18px;
    line-height: 1.7;

    color: #667085;

    margin-bottom: 30px;
}


/* BUTTONS */

.hero .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero .btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.25s ease;
}

.hero .btn.primary {
    background: #0877e8;
    color: #ffffff;
}

.hero .btn.primary:hover {
    background: #0564c7;
    transform: translateY(-2px);
}

.hero .btn.secondary {
    background: #ffffff;
    color: #0877e8;

    border: 1px solid #d0d5dd;
}

.hero .btn.secondary:hover {
    border-color: #0877e8;
}


/* FEATURES */

.hero-features {
    display: flex;
    gap: 12px;

    margin-top: 35px;
}

.hero-features .mini {
    background: #ffffff;

    border: 1px solid #eaecf0;

    border-radius: 12px;

    padding: 13px 17px;

    min-width: 120px;

    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
}

.hero-features strong {
    display: block;

    font-size: 15px;

    color: #101828;
}

.hero-features small {
    display: block;

    margin-top: 4px;

    color: #667085;
}


/* ==========================================
   ONLY IMAGE AREA SLIDES
========================================== */

.hero-image-slider {
    position: relative;

    width: 100%;

    height: 450px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.15);

    background: #ffffff;
}


/* IMAGE SLIDE */

.hero-image-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity 0.8s ease,
        transform 1.2s ease;

    pointer-events: none;
}

.hero-image-slide.active {
    opacity: 1;

    transform: scale(1);

    z-index: 2;
}


/* IMAGE */

.hero-image-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* IMAGE DARK/WHITE OVERLAY */

.hero-image-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.15));

    pointer-events: none;
}


/* ==========================================
   IMAGE DOTS
========================================== */

.hero-image-dots {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    gap: 8px;
}

.image-dot {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #ffffff;

    opacity: 0.65;

    cursor: pointer;

    transition: 0.3s ease;
}

.image-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #0877e8;

    opacity: 1;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 50px;
        padding-bottom: 80px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-slider {
        max-width: 700px;

        height: 400px;

        margin: auto;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .hero-grid {
        gap: 30px;

        padding-top: 40px;
        padding-bottom: 70px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero .btn {
        width: 100%;
    }

    .hero-image-slider {
        height: 280px;

        border-radius: 18px;
    }

    .hero-features .mini {
        min-width: 100px;

        padding: 10px;
    }

    .hero-features strong {
        font-size: 13px;
    }

    .hero-features small {
        font-size: 11px;
    }
}