@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&family=Bebas+Neue&display=swap');

:root {
    --navy: #0D2137;
    --navy-lt: #16324D;
    --teal: #009B8D;
    --teal-lt: #00B5A5;
    --gold: #DCB773;
    --white: #FFFFFF;

    --nav-height: 80px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Base UI classes */
.btn-primary {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--teal-lt);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--teal);
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
    border: 2px solid var(--teal);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-label-line {
    width: 40px;
    height: 1px;
    background: var(--teal);
}

.section-label-text {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: var(--nav-height);
    background: transparent;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(13, 33, 55, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 155, 141, 0.15);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--teal);
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 60% 100%, 40% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: white;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    line-height: 1;
    color: var(--white);
}

.nav-logo-main span {
    color: var(--teal);
}

.nav-logo-sub {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

/* ── DROPDOWN ── */
.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(13, 33, 55, 0.95);
    min-width: 220px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 155, 141, 0.2);
    border-top: 2px solid var(--teal);
    list-style: none;
    padding: 12px 0;
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: rgba(0, 155, 141, 0.1);
    color: var(--teal);
    padding-left: 28px;
}

.nav-cta {
    background: var(--teal);
    color: white;
    padding: 10px 24px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--teal-lt);
}

/* ── HERO ── */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ── SERVICE SLIDESHOW ── */
.service-slideshow {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio fallback */
    overflow: hidden;
    border-radius: 4px;
}

.service-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: sepia(0.2) hue-rotate(180deg) brightness(0.8) contrast(1.2);
    opacity: 0;
    animation: serviceFade 15s infinite;
}

.service-slide:nth-child(1) {
    animation-delay: 0s;
}

.service-slide:nth-child(2) {
    animation-delay: 5s;
}

.service-slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Increased opacity by +10% (0.1) from previous values */
    background: linear-gradient(135deg, rgba(10, 25, 45, 0.5) 0%, rgba(5, 15, 30, 0.7) 50%, rgba(2, 8, 15, 0.9) 100%);
}

.slide-1 {
    background-image: url('../assets/images/hero_slides/hero_cruise_ship.png');
}

.slide-2 {
    background-image: url('../assets/images/hero_bg.png');
}

.slide-3 {
    background-image: url('../assets/images/hero_slides/hero_slide_1_1772118869373.png');
}

.slide-4 {
    background-image: url('../assets/images/hero_slides/hero_slide_2_1772118891827.png');
}

.slide-5 {
    background-image: url('../assets/images/hero_slides/hero_slide_3_1772118914586.png');
}

@keyframes serviceFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    6% {
        opacity: 1;
    }

    27% {
        opacity: 1;
    }

    33% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-dots .dot.active {
    background: var(--teal);
    transform: scale(1.3);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 155, 141, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 155, 141, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

.hero-anchor {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30vw;
    line-height: 1;
    color: rgba(0, 155, 141, 0.06);
    pointer-events: none;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--teal);
}

.hero-eyebrow-text {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.hero-title .t1 {
    color: var(--white);
    display: block;
}

.hero-title .t2 {
    color: var(--teal);
    display: block;
}

.hero-title .t3 {
    color: rgba(255, 255, 255, 0.35);
    display: block;
    font-size: 70%;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 48px;
    left: 60px;
    right: 60px;
    display: flex;
    gap: 0;
    z-index: 2;
    border: 1px solid rgba(0, 155, 141, 0.2);
    background: rgba(13, 33, 55, 0.7);
    backdrop-filter: blur(10px);
}

.hero-stat {
    flex: 1;
    padding: 24px 28px;
    border-right: 1px solid rgba(0, 155, 141, 0.15);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--teal);
    letter-spacing: 2px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* ── TICKER ── */
.ticker {
    background: var(--teal);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.4;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS BASE ── */
.section {
    padding: var(--section-padding);
}

.alt-bg {
    background: #08192B;
}

.desc-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
}

/* ── ABOUT PREVIEW ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.feature-card {
    padding: 24px;
    border: 1px solid rgba(0, 155, 141, 0.2);
    border-left: 3px solid var(--teal);
    background: rgba(0, 155, 141, 0.04);
}

.f-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.f-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 6px;
}

.f-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.img-frame {
    position: relative;
    border: 1px solid rgba(0, 155, 141, 0.2);
    padding: 24px;
    background: linear-gradient(135deg, var(--navy-lt), #0A2A40);
}

.cover-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: sepia(0.2) hue-rotate(180deg) brightness(0.8) contrast(1.2);
    /* Deep blue-teal moody filter */
}

.img-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(13, 33, 55, 0.85);
    backdrop-filter: blur(8px);
    padding: 16px;
    border-top: 2px solid var(--teal);
    text-align: center;
}

.overlay-text {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
}

/* ── BRANDS MARQUEE ── */
.brands-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(0, 155, 141, 0.1);
    border-bottom: 1px solid rgba(0, 155, 141, 0.1);
    overflow: hidden;
}

.brands-track {
    display: inline-flex;
    gap: 60px;
    align-items: center;
    animation: marquee 40s linear infinite;
    padding-left: 60px;
}

.brand-logo {
    height: 72px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.brand-logo:hover {
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── SERVICES PREVIEW ── */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 60px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.s-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 32px;
    border: 1px solid rgba(0, 155, 141, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.s-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.s-card:hover {
    background: rgba(0, 155, 141, 0.07);
    transform: translateY(-4px);
}

.s-card:hover::after {
    transform: scaleX(1);
}

.s-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(0, 155, 141, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.s-card:hover .s-card-num {
    color: rgba(0, 155, 141, 0.4);
}

.s-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.s-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
}

.s-card-arrow {
    color: var(--teal);
    font-size: 20px;
    transition: transform 0.3s;
}

.s-card:hover .s-card-arrow {
    transform: translateX(10px);
}

/* ── FOOTER ── */
.footer {
    background: #060F1A;
    border-top: 1px solid rgba(0, 155, 141, 0.15);
    padding: 80px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 1.8;
    margin: 24px 0;
    max-width: 320px;
    font-weight: 300;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li a,
.footer-col li {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
}

.footer-reg {
    font-size: 11px;
    color: rgba(0, 155, 141, 0.6);
    letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 33, 55, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 2px solid var(--teal);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        border: none;
        padding-left: 20px;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links a {
        font-size: 14px;
        padding: 12px 32px;
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        padding: 0 32px;
    }

    .hero-stats {
        left: 32px;
        right: 32px;
        bottom: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-stats {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}