:root {
    --bg-color: #050505;
    --card-surface: #111111;
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
    --accent-gradient: linear-gradient(to right, #06B6D4, #EC4899);
    --purple-glow: #7C3AED;
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    
    --font-primary: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.relative { position: relative; }
.mt-4 { margin-top: 1rem; }
.mt-16 { margin-top: 4rem; }
.w-full { width: 100%; }

/* --- Typography --- */
.hero-headline {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    border: none;
    outline: none;
}

.btn:hover {
    transform: scale(1.02);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: var(--border-glass);
    color: var(--text-primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.icon-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    line-height: 1;
}
.icon-btn:hover {
    transform: scale(1.1);
}

/* --- Glassmorphism --- */
.glass-panel {
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: var(--border-glass);
    border-radius: 12px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    mix-blend-mode: difference;
    padding: 1.5rem 2rem;
    transition: background 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90rem;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.nav-links a {
    margin: 0 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.nav-links a:hover {
    color: var(--text-secondary);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #000;
    padding: 2rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
}

/* --- Global FABs --- */
.global-fabs {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.fab i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    line-height: 1;
}
.fab:hover { transform: scale(1.1); }

.call-fab { background: #3b82f6; }
.wa-fab { background: #25D366; }

/* --- 1. Hero Section --- */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 20vw, 25rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    gap: 3rem;
}

/* 3D Cube */
.cube-container {
    position: relative;
    width: 40vh;
    height: 40vh;
    perspective: 2000px;
    z-index: 1;
    opacity: 0.8;
}

.cube-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: var(--border-glass);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cube-face img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cube-face h2 {
    position: absolute;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    text-transform: uppercase;
}

.face-front  { transform: rotateX(0deg) translateZ(25vh); }
.face-bottom { transform: rotateX(-90deg) translateZ(25vh); }
.face-back   { transform: rotateX(-180deg) translateZ(25vh); }
.face-top    { transform: rotateX(90deg) translateZ(25vh); }

@keyframes rotateCube {
    0%   { transform: rotateX(0deg); }
    100% { transform: rotateX(360deg); }
}

/* Booking Form */
.booking-form-wrapper {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group {
    flex: 1;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.input-group input, .input-group select {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: var(--border-glass);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-family: inherit;
    outline: none;
}

.input-group input:focus, .input-group select:focus {
    border-color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
    .form-row { flex-direction: column; }
    .cube-container { width: 30vh; height: 30vh; }
    .face-front  { transform: rotateX(0deg) translateZ(15vh); }
    .face-bottom { transform: rotateX(-90deg) translateZ(15vh); }
    .face-back   { transform: rotateX(-180deg) translateZ(15vh); }
    .face-top    { transform: rotateX(90deg) translateZ(15vh); }
    .hero-headline { font-size: 3rem; }
    .hero { padding-top: 6rem; padding-bottom: 2rem; }
}

/* --- 2. Packages Section --- */
.packages-section {
    position: relative;
    padding: 8rem 0;
    background: #0B0216;
    overflow: hidden;
}

.purple-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: var(--purple-glow);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.price-card {
    padding: 3rem 2rem;
    text-align: center;
}

.price-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-card .desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features i {
    color: #06B6D4;
}

.price-card.highlight {
    background: white;
    color: #111;
    transform: scale(1.05);
    border-radius: 12px;
}
.price-card.highlight .desc { color: #666; }
.price-card.highlight .features i { color: var(--purple-glow); }
.price-card.highlight .btn-primary {
    background: #111;
    color: white;
}

@media (max-width: 900px) {
    .price-card.highlight { transform: scale(1); }
}

/* --- 3. Services Section --- */
.services-section {
    padding: 8rem 0;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.85);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
    justify-items: center;
}

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: max-content;
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: filter 0.4s ease, transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.wide-card {
    padding: 2rem;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.icon-large {
    font-size: 4rem;
    color: #06B6D4;
}

@media (max-width: 768px) {
    .flex-row { flex-direction: column; text-align: center; }
    .col-span-2 { grid-column: span 1; }
}

/* --- 4. Fleet Section --- */
.fleet-section {
    padding: 8rem 0;
    background: #000;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fleet-card {
    padding: 2rem;
    text-align: center;
}

.fleet-img-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.fleet-img-wrap img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.1);
}

.fleet-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.specs {
    font-size: 0.875rem;
    color: var(--purple-glow);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tagline {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.full-width { justify-content: center; }

/* --- 5. Destinations Section --- */
.destinations-section {
    padding: 8rem 0;
    background: var(--bg-color);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    align-items: start;
    justify-items: center;
}

.dest-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    max-width: max-content;
    display: flex;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.5);
    border: var(--border-glass);
}

.dest-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: filter 0.4s ease, transform 0.4s ease;
}

.dest-card:hover img {
    transform: scale(1.05);
}

.dest-content {
    padding: 1.5rem;
    text-align: center;
    background: var(--card-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.dest-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* --- Footer --- */
.footer {
    padding: 6rem 0 2rem;
    background: #000;
    border-top: var(--border-glass);
}

.footer-massive-text {
    font-size: clamp(4rem, 15vw, 15rem);
    font-weight: 900;
    line-height: 0.8;
    color: #111;
    margin-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-col a, .footer-col p {
    display: block;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 500;
}

.footer-col a:hover {
    color: #06B6D4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.875rem;
}
