* {
    box-sizing: border-box
}

:root {
    --bg: #0b1118;
    --panel: #121c28;
    --panel-2: #172536;
    --text: #f5f8fc;
    --muted: #b8c3d0;
    --blue: #2f9bff;
    --blue-2: #76c7ff;
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 24px 70px rgba(0, 0, 0, .38)
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px clamp(18px, 5vw, 64px);
    background: #000;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800
}

.brand img {
    width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain
}
@media (max-width: 700px) {
    .brand {
        justify-content: center; 
        width: 100%;           
    }
}

nav {
    display: flex;
    gap: 22px
}

nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700
}

nav a:hover {
    color: var(--text)
}

@media (max-width: 700px) {
	nav {
	    justify-content: center; 
        width: 100%;       
	}
}

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem clamp(1.2rem, 5vw, 4rem); 
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(5, 10, 15, .68), rgba(5, 10, 15, .55) 48%, rgba(5, 10, 15, .88)), url('https://images.unsplash.com/photo-1634737581963-5a22ba471961?q=100&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line)
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(47, 155, 255, .24), transparent 46%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: auto
}

.eyebrow {
    text-transform: uppercase;
    color: var(--blue-2);
    letter-spacing: .18em;
    font-weight: 900;
    font-size: 16px;
    margin: 0 0 12px
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1 {
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: .96;
    margin-bottom: 22px
}

h2 {
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 16px
}

h3 {
    font-size: 30px;
}

.hero-text,
.section-heading p,
.booking-card p,
.about-card p {
    color: var(--muted)
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: .2s ease;
    font-size: 1rem
}

.button-primary {
    background: linear-gradient(135deg, var(--blue), #0f6fd0);
    color: white;
    box-shadow: 0 16px 35px rgba(47, 155, 255, .28)
}

.button-secondary {
    background: rgba(255, 255, 255, .08);
    color: white;
    border: 1px solid var(--line)
}

.button:hover {
    transform: translateY(-1px)
}

.full-width {
    width: 100%
}

.section {
    padding: 80px clamp(18px, 5vw, 64px)
}

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

.section-heading.compact {
    margin-bottom: 24px
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: auto
}

.package-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .22)
}

.package-card.featured {
    border-color: rgba(47, 155, 255, .7);
    box-shadow: 0 20px 60px rgba(47, 155, 255, .14)
}

.package-number {
    display: inline-flex;
    background: rgba(47, 155, 255, .13);
   
    color: var(--blue-2);
    font-weight: 900;
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.price {
    font-size: 50px;
    font-weight: 950;
    color: white;
    margin-block-end: 0px;
}

.package-card ul {
    padding-left: 18px;
    color: var(--muted);
    margin-bottom: 0
}

.booking-section {
    background: linear-gradient(180deg, rgba(47, 155, 255, .07), transparent)
}

.booking-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: var(--shadow);
    text-align: center
}

.booking-steps {
    display: grid;
    gap: 14px;
    margin: 28px 0
}

.booking-steps div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px
}

.booking-steps strong {
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(47, 155, 255, .18);
    color: var(--blue-2)
}

.booking-steps span {
    color: var(--muted)
}

.booking-note {
    font-size: .95rem;
    margin: 18px 0 0
}

.about-card {
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 36px;
    text-align: center
}

footer {
    padding: 28px;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--line)
}

@media (max-width:950px) {
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:700px) {
    .site-header {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column
    }

    nav {
        gap: 14px;
        flex-wrap: wrap
    }

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

    .hero {
        min-height: 280px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section {
    	padding-top: 50px;
    	padding-bottom: 50px;
    }
}

.duration {
    color: var(--blue-2);
    font-weight: 800;
    margin-bottom: 8px
}

.about-note {
    margin-top: 18px;
    color: var(--blue-2) !important;
    font-weight: 800
}