@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --primary: #0878f9;
    --primary-dark: #0554b8;
    --navy: #061a35;
    --blue: #0b63ce;
    --light-blue: #edf6ff;
    --white: #ffffff;
    --text: #243447;
    --muted: #718096;
    --border: #e4edf6;
    --light: #f6faff;
    --shadow: 0 20px 50px rgba(6, 34, 70, 0.10);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

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

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


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0878f9, #004ba8);
    color: white;
    border-radius: 12px;
    font-family: 'Manrope';
    font-size: 22px;
    font-weight: 800;
}

.logo strong {
    display: block;
    color: var(--navy);
    font-family: 'Manrope';
    font-size: 18px;
    letter-spacing: 1px;
}

.logo small {
    display: block;
    color: var(--primary);
    font-size: 8px;
    letter-spacing: 1.7px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.nav a {
    color: #526174;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}


/* HERO */

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2000&q=90")
        center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
        rgba(3,20,42,.92),
        rgba(4,45,91,.65),
        rgba(4,45,91,.15));
}

.hero-content {
    position: relative;
    color: white;
    max-width: 750px;
    padding: 100px 0;
}

.hero-tag {
    display: inline-block;
    color: #79c4ff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Manrope';
    font-size: clamp(45px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #42a5ff;
}

.hero p {
    font-size: 19px;
    max-width: 620px;
    color: rgba(255,255,255,.85);
    margin-bottom: 35px;
}

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


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: .3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(8,120,249,.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255,255,255,.5);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--navy);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
}


/* SECTIONS */

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-heading > span,
.eyebrow {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.section-heading h2 {
    font-family: 'Manrope';
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    color: var(--navy);
    margin: 10px 0 15px;
}

.section-heading p {
    color: var(--muted);
}


/* FEATURES */

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

.feature-card {
    padding: 32px 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #c8e2ff;
}

.feature-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--light-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Manrope';
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
}


/* SERVICES */

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

.service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.07);
}

.service-image {
    height: 240px;
    background-position: center;
    background-size: cover;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-family: 'Manrope';
    color: var(--navy);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--muted);
    margin-bottom: 15px;
}

.service-content a,
.text-link {
    color: var(--primary);
    font-weight: 700;
}


/* DESTINATIONS */

.destination-preview {
    padding: 100px 0;
    background: var(--navy);
}

.light-heading h2 {
    color: white;
}

.light-heading p {
    color: #9db3cc;
}

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

.destination-card {
    min-height: 330px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: .35s;
}

.destination-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(0,0,0,.8));
}

.destination-card > div {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: white;
}

.destination-card h3 {
    font-family: 'Manrope';
    font-size: 25px;
}

.destination-card span {
    color: #78c3ff;
    font-size: 13px;
    font-weight: 700;
}

.destination-card:hover {
    transform: translateY(-7px);
}


/* CTA */

.cta-section {
    background: linear-gradient(120deg, #0878f9, #0049a2);
    padding: 65px 0;
    color: white;
}

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

.cta-content > div > span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #a9d9ff;
}

.cta-content h2 {
    font-family: 'Manrope';
    font-size: 35px;
    margin-top: 5px;
}


/* PAGE HERO */

.page-hero {
    padding: 120px 0;
    background:
        linear-gradient(120deg, #061a35, #0878f9);
    color: white;
}

.page-hero span {
    color: #89ccff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.page-hero h1 {
    font-family: 'Manrope';
    font-size: clamp(40px, 6vw, 65px);
    line-height: 1.1;
    margin: 12px 0;
}

.page-hero p {
    max-width: 650px;
    color: #d9e9f9;
    font-size: 17px;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-grid h2 {
    font-family: 'Manrope';
    color: var(--navy);
    font-size: 42px;
    line-height: 1.15;
    margin: 12px 0 20px;
}

.about-grid p {
    color: var(--muted);
    margin-bottom: 16px;
}

.about-image {
    height: 520px;
    border-radius: 25px;
    background-position: center;
    background-size: cover;
}


/* SERVICE LARGE */

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

.service-large-card {
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
    transition: .3s;
}

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

.large-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.service-large-card h2 {
    font-family: 'Manrope';
    color: var(--navy);
    margin-bottom: 12px;
}

.service-large-card p {
    color: var(--muted);
    margin-bottom: 18px;
}


/* PACKAGES */

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

.package-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.package-image {
    height: 300px;
    background-position: center;
    background-size: cover;
}

.package-content {
    padding: 30px;
}

.package-content > span {
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
}

.package-content h2 {
    font-family: 'Manrope';
    color: var(--navy);
    margin: 8px 0;
}

.package-content p {
    color: var(--muted);
    margin-bottom: 20px;
}


/* DESTINATIONS FULL */

.destination-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.destination-full-card {
    min-height: 370px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.destination-full-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(0,0,0,.8));
}

.destination-full-card > div {
    position: relative;
    z-index: 2;
    padding: 28px;
    color: white;
}

.destination-full-card h2 {
    font-family: 'Manrope';
}

.destination-full-card p {
    color: #b8ddff;
}


/* FLEET */

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

.fleet-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.fleet-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.fleet-content {
    padding: 28px;
}

.fleet-content h2 {
    font-family: 'Manrope';
    color: var(--navy);
}

.fleet-content p {
    color: var(--muted);
    margin: 10px 0 15px;
}

.fleet-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fleet-features span {
    background: var(--light-blue);
    color: var(--primary-dark);
    border-radius: 30px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
}


/* GALLERY */

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

.gallery-item {
    height: 270px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
}

.contact-info h2 {
    font-family: 'Manrope';
    font-size: 42px;
    line-height: 1.15;
    color: var(--navy);
    margin: 12px 0 18px;
}

.contact-info > p {
    color: var(--muted);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin: 22px 0;
}

.contact-item > div:first-child {
    width: 45px;
    height: 45px;
    background: var(--light-blue);
    display: grid;
    place-items: center;
    border-radius: 12px;
}

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

.contact-item a {
    color: var(--primary);
}

.contact-item p {
    color: var(--muted);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 35px;
    border-radius: 22px;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--border);
    background: white;
    padding: 14px;
    border-radius: 10px;
    font: inherit;
    outline: none;
    margin-bottom: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
}

.map-section {
    padding-bottom: 100px;
}

.map-placeholder {
    min-height: 300px;
    border-radius: 25px;
    background: linear-gradient(135deg, #eaf5ff, #f8fbff);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 40px;
}

.map-placeholder h2 {
    font-family: 'Manrope';
    color: var(--navy);
}

.map-placeholder p {
    color: var(--muted);
}


/* LEGAL */

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    font-family: 'Manrope';
    color: var(--navy);
    margin: 35px 0 10px;
}

.legal-content p {
    color: var(--muted);
}


/* FOOTER */

.footer {
    background: #031225;
    color: #9eb0c5;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-logo {
    color: white;
    font-family: 'Manrope';
    font-weight: 800;
    font-size: 22px;
}

.footer-logo span {
    display: block;
    font-size: 9px;
    color: #42a5ff;
    letter-spacing: 2px;
}

.footer-grid h4 {
    color: white;
    margin-bottom: 18px;
}

.footer-grid a {
    display: block;
    color: #9eb0c5;
    margin-bottom: 9px;
    font-size: 14px;
    transition: .3s;
}

.footer-grid a:hover {
    color: #42a5ff;
}

.footer-grid p {
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 22px;
    font-size: 13px;
}


/* WHATSAPP */

.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    background: #18b95a;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .nav {
        gap: 15px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: white;
        padding: 25px 5%;
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
    }

    .service-large-grid,
    .package-grid,
    .destination-full-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 520px) {

    .section {
        padding: 70px 0;
    }

    .feature-grid,
    .destination-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .page-hero {
        padding: 90px 0;
    }

    .contact-form-wrapper {
        padding: 22px;
    }

    .service-large-card {
        padding: 30px;
    }

}
