﻿/*
   GOTHAM FONT β€” place your files in /fonts/
   Expected filenames:
     fonts/gotham-light-webfont.woff2 / .woff
     fonts/Gotham-Book.woff2  / .woff
     fonts/Gotham-Medium.woff2 / .woff
     fonts/gotham-bold-webfont.woff2  / .woff
     fonts/gotham-black-webfont.woff2 / .woff
*/
@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham-light-webfont.woff2') format('woff2'),
         url('fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Book.woff2') format('woff2'),
         url('fonts/Gotham-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Medium.woff2') format('woff2'),
         url('fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham-bold-webfont.woff2') format('woff2'),
         url('fonts/Gotham-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham-black-webfont.woff2') format('woff2'),
         url('fonts/Gotham-Black.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --blue:  #42738d;
    --grey:  #786e63;
    --beige: #b1a99f;
    --light: #e0dcd7;
    --white: #ffffff;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham', 'Montserrat', sans-serif;
    color: var(--blue);
}

.home-reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s cubic-bezier(0.22,1,0.36,1); }
.home-reveal.visible { opacity: 1; transform: translateY(0); }

/* NAVBAR */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 120px;
    background: transparent;
}

.navbar.scrolled {
    background: #42738d;
    opacity: 0.95;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    position: relative;
}

/* Underline for normal links */
.nav-links > li:not(.nav-dropdown) > a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links > li:not(.nav-dropdown) > a:hover::after {
    width: 100%;
}

/* Underline for dropdown parent links (uses ::before, ::after is reserved for chevron) */
.nav-dropdown > a::before {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-dropdown > a:hover::before,
.nav-dropdown.open > a::before {
    width: calc(100% - 20px);
}

.nav-links a.login {
    border: 1.5px solid #fff;
    padding: 9px 24px;
    transition: background 0.25s ease;
}
.nav-links a.login::after { display: none !important; }
.nav-links a.login:hover {
    background: rgba(255,255,255,0.15);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

/* Chevron arrow via ::after */
.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translateY(-3px);
    margin-left: 8px;
    vertical-align: middle;
}

/* Bridge the gap so hover doesn't break */
.nav-dropdown > a {
    padding-bottom: 18px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blue);
    list-style: none;
    min-width: 220px;
    z-index: 200;
    padding: 6px 0;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: none;
    color: #fff;
    white-space: nowrap;
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    display: block;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Carousel slides*/
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.195);
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 0 120px;
    width: 100%;
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 2;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.544);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
}

/* Prev / Next arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s;
    line-height: 1;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-prev { right: 76px; }
.hero-next { right: 24px; }

.hero-inner h1 {
    font-size: clamp(36px, 4.2vw, 62px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-inner p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 38px;
    max-width: 680px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1.5px solid #fff;
    padding: 14px 20px;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--blue);
}

.btn-outline-white .arrow {
    font-size: 20px;
    line-height: 1;
}

/* CORPORATE VALUES */
.corp-values {
    position: relative;
    padding: 110px 120px 110px 360px;
    background: #fff;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.cv-left {
    position: absolute;
    left: -190px;
    top: 52%;
    transform: translateY(-50%);
    width: 660px;
    opacity: 0.20;
    pointer-events: none;
    z-index: 2;
}

.cv-left .orbit {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv-icons {
    position: absolute;
    top: 56%;
    left: 240px;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
}

.cv-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cv-icon.active {
    opacity: 1;
}

.cv-icon-lg {
    width: 84px;
    height: 84px;
    top: -8px;
    left: -8px;
}

.cv-right {
    max-width: 700px;
    width: 100%;
    padding-top: 60px;
}

.cv-right .tag {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 50px;
}

.cv-values {
    position: relative;
    min-height: 140px;
}

.cv-value {
    display: none;
}

.cv-value.active {
    display: block;
    animation: cvFade 0.7s ease;
}

@keyframes cvFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cv-value h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 22px;
}

.cv-value p {
    font-size: 20px;
    color: var(--grey);
    line-height: 1.78;
    max-width: 700px;
}

/* CV arrow navigation */
.cv-nav {
    display: flex;
    gap: 16px;
    margin-top: 44px;
}

.cv-arrow {
    background: transparent;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-size: 22px;
    cursor: pointer;
    padding: 8px 16px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    line-height: 1;
}

.cv-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* ABOUT */
.about {
    position: relative;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 120px;
    background: #fff;
    z-index: 2;
}

.about-deco {
    position: absolute;
    right: -60px;
    
    width: 660px;
    opacity: 0.10;
    pointer-events: none;
    animation: spinDeco 30s linear infinite;
    z-index: 2;
}

.about-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.1;
    color: var(--blue);
    margin-bottom: 28px;
}

.about-text p {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 550px;
}

.about-img {
    flex: 0 0 360px;
    position: relative;
    z-index: 3;
}

.about-img img.portrait {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 3;
}

@keyframes floatPortrait {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

@keyframes spinDeco {
    from { transform: rotate(-30deg); }
    to   { transform: rotate(330deg); }
}

/* SERVICES */
.services {
    padding: 80px 120px 140px;
    background: #fff;
    text-align: center;
}

.services h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 80px;
}

.services-arch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
}

.svc {
    position: relative;
    border-radius: 50%;
    border: 1.5px solid #e0dcd7;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 360px;
    height: 360px;
    flex-shrink: 0;
    padding: 60px 32px 32px;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
}

.svc:hover {
    border-color: #42738d;
}

.svc-icon-wrap {
    position: absolute;
    top: -20px;
    left: 46px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.svc::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0dcd7;
    top: 27px;
    right: 49px;
}

@keyframes dotRollDown {
    0%   { top: 27px;  right: 49px;  background: #e0dcd7; }
    13%  { top: 62px;  right: 18px;  }
    25%  { top: 118px; right: -9px;  }
    38%  { top: 181px; right: -14px; }
    50%  { top: 241px; right: 2px;   background: #42738d; }
    63%  { top: 292px; right: 38px;  }
    75%  { top: 328px; right: 89px;  }
    88%  { top: 342px; right: 134px; }
    100% { top: 345px; right: 165px; background: #42738d; }
}

.svc:hover::after {
    animation: dotRollDown 0.45s ease forwards;
}

@keyframes iconArcToTop {
    0%   { top: -20px; left: 46px;  }
    10%  { top: -35px; left: 43px;  }
    20%  { top: -40px; left: 52px;  }
    30%  { top: -43px; left: 61px;  }
    40%  { top: -46px; left: 69px;  }
    50%  { top: -49px; left: 78px;  }
    60%  { top: -51px; left: 88px;  }
    70%  { top: -53px; left: 97px;  }
    80%  { top: -54px; left: 106px; }
    90%  { top: -55px; left: 116px; }
    100% { top: -55px; left: 125px; }
}

.svc:hover .svc-icon-wrap {
    animation: iconArcToTop 0.6s linear forwards;
}

.svc img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.svc-icon-wrap .icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc-icon-wrap .icon-default {
    transition: opacity 0.3s ease;
}

.svc:hover .icon-default {
    opacity: 0;
}

.svc:hover .icon-hover {
    opacity: 1;
}

.svc h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
    line-height: 1.25;
}

.svc p {
    font-size: 12px;
    color: var(--grey);
    line-height: 1.7;
}

.arch-svg-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    line-height: 0;
}

/* LET'S SAIL TOGETHER */
.cta {
    position: relative;
    padding: 140px 120px;
    background: url('images/contact.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-animate {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.cta-animate.visible {
    opacity: 1;
    transform: translateX(0);
}

.cta-inner h2 {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 36px;
}

.btn-outline-white-lg {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1.5px solid #fff;
    padding: 13px 28px;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-white-lg:hover {
    background: #fff;
    color: var(--blue);
}

.arrow-lg {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
}

/* 
   LATEST NEWS
 */
.news {
    padding: 76px 120px 80px;
    background: #fff;
}

.news h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
    margin-bottom: 36px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* card = image left + text column right (overlapping) */
.news-card {
    display: flex;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.news-img {
    width: 420px;
    height: 440px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* text column: headline top, date+button pinned to bottom of image */
.news-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: -100px;
    position: relative;
    z-index: 1;
    padding: 30px 0 0;
    height: 440px;
    overflow: hidden;
}

.news-text h3 {
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blue);
    line-height: 1.2;
    padding-left: 50px;
    margin-top: 80px;
}

/* bottom row: pushed to bottom of image via margin-top:auto */
.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 130px;
    margin-top: auto;
}

.news-meta .date {
    font-size: 14px;
    color: var(--grey);
}

.news-btn {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding: 10px 24px;
    border: 1px solid #42738d;
    color: var(--blue);
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}

.news-btn:hover {
    background: var(--blue);
    color: #fff;
}

.news-btn .arrow {
    font-size: 26px;
    line-height: 1;
}

/* News reveal animation */
.news-reveal-img {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.news-reveal-img.visible {
    opacity: 1;
    transform: scale(1);
}

.news-reveal-text {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.news-reveal-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid var(--blue);
    padding: 10px 22px;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-dark:hover {
    background: var(--blue);
    color: #fff;
}

/* VISUAL IDENTITY */
.vi-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/key-south-2.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.vi-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.11); }
.vi-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.vi-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}
.vi-logo-section { background: linear-gradient(160deg, #e3f2f9 0%, #bfe0ef 50%, #8ec3dc 100%); background-attachment: fixed; padding: 80px 120px 0; display: flex; justify-content: center; }
.vi-logo-card { max-width: 1000px; width: 100%; box-shadow: 0 4px 40px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.06); }
.vi-logo-img { width: 100%; height: auto; display: block; }
.vi-text-section { background: linear-gradient(160deg, #e3f2f9 0%, #bfe0ef 50%, #8ec3dc 100%); background-attachment: fixed; padding: 50px 120px 80px; }
.vi-text-inner { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.vi-text-inner p { font-size: 17px; font-weight: 400; color: #1e3a4f; line-height: 1.55; text-align: left; }
.vi-wolda-section { background: #fff; padding: 90px 120px; }
.vi-wolda-inner { max-width: 1000px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.vi-wolda-header { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.vi-wolda-header h2 { font-size: clamp(36px, 5vw, 68px); font-weight: 800; color: var(--blue); letter-spacing: 0.02em; line-height: 1; }
.vi-wolda-sub { font-size: 15px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--beige); }
.vi-wolda-desc { font-size: 17px; font-weight: 400; color: var(--grey); line-height: 1.9; max-width: 580px; text-align: center; }
.vi-wolda-img-wrap { width: 100%; max-width: 1000px; box-shadow: 0 4px 40px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.06); }
.vi-wolda-img-wrap img { width: 100%; height: auto; display: block; }
.vi-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.vi-reveal.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
/* CERTIFICATIONS */
.cert-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/key-south.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.cert-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.11); }
.cert-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.cert-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}
.cert-section {
    background: #fff;
    padding: 90px 120px;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.cert-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 28px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cert-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}
.cert-card img { width: 100%; height: auto; display: block; }
.cert-label {
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.cert-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.cert-reveal.visible { opacity: 1; transform: translateY(0); }

.footer {
    padding: 52px 120px 52px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.footer-deco-logo {
    position: absolute;
    right: -165px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    height: 406px;
    width: auto;
    pointer-events: none;
    opacity: 0.30;
    z-index: 0;
}

.footer-brand,
.footer-columns {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 44px;
    margin-left: -15px;
}

.footer-brand img {
    height: 72px;
    width: auto;
    display: block;
}

.footer-columns {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    font-weight: 300;
    color: var(--beige);
    line-height: 2.0;
    text-decoration: none;
}

.footer-col p {
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
}

.footer-col a:hover {
    color: var(--blue);
}

.footer-address-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.footer-address-link:hover,
.footer-address-link:hover p {
    color: var(--blue);
}

.footer-social {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    z-index: 1;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
    background: transparent;
    color: var(--blue);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: var(--blue);
    color: #fff;
}

.footer-social a:first-child {
    transform: translateX(-35px) translateY(-70px);
}

.footer-social a:nth-child(2) {
    transform: translateX(-45px) translateY(-20px);
}

.footer-social a:nth-child(3) {
    transform:  translateY(70px) translateY(-55px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* CONTACT PAGE */

/* Hero */
.contact-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/contact.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;

}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    padding: 0 120px 0 750px;
    text-align: left;
}

.contact-hero-inner h1 {
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 10px;
}

.contact-hero-inner p {
    font-size: 22px;
    color: #fff;
    font-weight: 300;
}

/* Section wrapper β€” pulls card up over hero bottom */
.contact-section {
    background: transparent;
    padding: 0 120px 80px;
    margin-top: -110px;
    position: relative;
    z-index: 2;
}

/* Card */
.contact-card {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.10);
}

/* Left info panel */
.contact-left {
    width: 320px;
    flex-shrink: 0;
    padding: 48px 36px;
    background: #e8e4e0;
    border-right: none;
}

.contact-left h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.contact-item-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.65;
    font-weight: 300;
}

.contact-social-section {
    margin-top: 36px;
    border-top: 1px solid #fff;
    padding-top: 28px;
}

.contact-social-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 14px;
}

.contact-social-icons {
    display: flex;
    gap: 10px;
}

.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.contact-social-icons a:hover {
    background: var(--blue);
    color: #fff;
}

/* Right form panel */
.contact-right {
    flex: 1;
    padding: 48px 48px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d4cdc8;
    background: #fff;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--grey);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
}

.contact-submit {
    width: 100%;
    padding: 14px;
    background: var(--light);
    color: var(--blue);
    border: none;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.contact-submit:hover {
    background: var(--blue);
    color: #fff;
}

/* Map */
.contact-map {
    width: 100%;
    display: block;
    overflow: hidden;
}

.contact-map a {
    position: relative;
    display: block;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.contact-map a:hover img {
    transform: scale(1.05);
    filter: brightness(0.75);
}

.contact-map-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #fff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    white-space: nowrap;
}

.contact-map a:hover .contact-map-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.contact-map-badge .arrow {
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0;
}


   /* COMPANY PROFILE PAGE */


/* Hero */
.cp-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/profile.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.482);
}

.cp-hero-inner {
    position: relative;
    z-index: 1;
    padding: 60px 120px 0;
}

.cp-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 12px;
}

.cp-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

/* Intro */
.cp-intro {
    position: relative;
    padding: 110px 120px;
    background: #fff;
    overflow: hidden;
}

.cp-year-deco {
    position: absolute;
    right: -20px;
    top: 50%;
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 800;
    color: var(--light);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transform: translateY(-50%) translateX(120px);
    transition: opacity 1.2s ease 0.8s, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

.cp-year-deco.visible {
    opacity: 0.6;
    transform: translateY(-50%) translateX(0);
}

.cp-intro-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.cp-intro-left {
    flex: 0 0 420px;
}

.cp-intro-left h2 {
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 700;
    color: var(--blue);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.cp-founded {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
    display: block;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.cp-intro-right {
    flex: 1;
    padding-top: 8px;
}

.cp-intro-right p {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
}

/* Pillars */
.cp-pillars {
    display: flex;
    min-height: 480px;
}

.cp-pillar {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: url('images/vessel-ship.jpg') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: default;
}

.cp-pillar:nth-child(1) { background-image: url('images/management.jpg'); background-position: center center; }
.cp-pillar:nth-child(2) { background-image: url('images/performance02.jpg'); background-position: center center; }
.cp-pillar:nth-child(3) { background-image: url('images/navigating03.jpg'); background-position: center center; }

.cp-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(66, 115, 141, 1) 0%,
        rgba(66, 115, 141, 1) 20%,
        rgba(66, 115, 141, 0.30) 45%,
        rgba(66, 115, 141, 0) 70%);
    transition: background 0.5s ease;
}

.cp-pillar:hover::before {
    background: linear-gradient(to top,
        rgba(66, 115, 141, 1) 0%,
        rgba(66, 115, 141, 1) 30%,
        rgba(66, 115, 141, 0.55) 55%,
        rgba(66, 115, 141, 0) 75%);
}

.cp-pillar + .cp-pillar {
    border-left: 2px solid rgba(255, 255, 255, 0.85);
}

.cp-pillar-content {
    position: relative;
    z-index: 1;
    padding: 44px 48px;
}

.cp-num {
    display: block;
    font-size: 70px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.562);
    margin-bottom: 16px;
}

.cp-pillar h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.4;
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
}

.cp-pillar:hover h3 {
    margin-bottom: 18px;
}

.cp-pillar p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0);
    line-height: 1.85;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s ease, color 0.4s ease 0.15s;
}

.cp-pillar:hover p {
    max-height: 220px;
    color: rgba(255, 255, 255, 0.8);
}

/* NEWS ARTICLE PAGE */
.na-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/news/crew-conference-2026/news-conference.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.na-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.323); }
.na-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.na-hero-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 16px;
}
.na-hero-inner h1 {
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.1;
}
.na-article {
    background: #fff;
    padding: 80px 120px 0;
    position: relative;
    overflow: hidden;
}
.na-deco {
    position: absolute;
    width: 480px;
    height: 480px;
    background: url('images/ca.png') center / contain no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.na-article-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.na-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 20px;
}
.na-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
}
.na-back {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    transition: opacity 0.2s;
}
.na-back:hover { opacity: 0.65; }
.na-body { display: flex; flex-direction: column; gap: 22px; }
.na-body p {
    font-size: 16px;
    font-weight: 400;
    color: #2a3d4f;
    line-height: 1.75;
}
.na-body p strong { color: var(--blue); font-weight: 600; }
.na-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}
.na-list li {
    font-size: 16px;
    font-weight: 400;
    color: #2a3d4f;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.na-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}
.na-carousel-section {
    background: #fff;
    padding: 30px 120px 80px;
}
.na-carousel {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.na-carousel-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.na-carousel-track { position: absolute; inset: 0; }
.na-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.na-carousel-slide.active { opacity: 1; pointer-events: auto; }
.na-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.na-carousel-prev,
.na-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.637);
    border: none;
    color: var(--blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.na-carousel-prev { left: 14px; }
.na-carousel-next { right: 14px; }
.na-carousel-prev:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.na-carousel-next:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.na-carousel-counter {
    position: absolute;
    bottom: 14px;
    right: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.8);
    z-index: 2;
}
.na-sep { margin: 0 4px; opacity: 0.5; }
.na-thumbs {
    display: flex;
    gap: 8px;
}
.na-thumb {
    flex: 1;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.25s ease;
    border: 2px solid transparent;
}
.na-thumb.active {
    opacity: 1;
    border-color: var(--blue);
}
.na-thumb:hover { opacity: 0.85; }
.na-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.na-sign { font-size: 15px; font-weight: 500; color: var(--blue); line-height: 1.8; margin-top: 8px; }
.na-hashtags {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.04em;
    line-height: 1.8;
}
.na-single-photo {
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.na-single-photo img { width: 100%; height: auto; display: block; }
.na-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.na-reveal.visible { opacity: 1; transform: translateY(0); }

/* News pillar read-more button */
.news-read-more {
    display: inline-block;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.7);
    padding: 9px 22px;
    text-decoration: none;
    transition: max-height 0.45s ease, opacity 0.35s ease 0.1s, margin-top 0.4s ease, background 0.25s ease;
}
.cp-pillar:hover .news-read-more,
.news-pillar:hover .news-read-more {
    max-height: 60px;
    opacity: 1;
    margin-top: 20px;
}

.news-reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.22,1,0.36,1); }
.news-reveal.visible { opacity: 1; transform: translateY(0); }
.news-read-more:hover {
    background: rgba(255,255,255,0.15);
}

/* News page hero */
.news-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/ocean2.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.news-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.2); }
.news-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.news-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}
.news-pillars { display: grid; grid-template-columns: repeat(3, 1fr); padding: 130px 120px 90px; background: #fff; gap: 24px; }
.news-pillar {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: url('images/vessel-ship.jpg') center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: default;
}
.news-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(66,115,141,1) 0%,
        rgba(66,115,141,1) 28%,
        rgba(66,115,141,0.40) 55%,
        rgba(66,115,141,0) 78%);
    transition: background 0.5s ease;
}
.news-pillar:hover::before {
    background: linear-gradient(to top,
        rgba(66,115,141,1) 0%,
        rgba(66,115,141,1) 38%,
        rgba(66,115,141,0.60) 62%,
        rgba(66,115,141,0) 82%);
}
.news-pillar + .news-pillar { border-left: none; }
.news-pillar-content { position: relative; z-index: 1; padding: 44px 48px 18px; }
.news-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    display: block;
}
.news-pillar h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.4;
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
}
.news-pillar:hover h3 { margin-bottom: 20px; }
.news-status {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7a85;
}

/* Services grid */
.cp-services {
    padding: 100px 120px;
    background: #fff;
}

.cp-services-head {
    margin-bottom: 60px;
}

.cp-services-head h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 12px;
}

.cp-services-head p {
    font-size: 15px;
    font-weight: 300;
    color: var(--grey);
}

.cp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #fff;
}

.cp-card {
    background: #fff;
    padding: 52px 48px;
    transition: background 0.3s, color 0.3s;
}

.cp-card:hover {
    background: var(--blue);
}

.cp-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--blue);
    transition: color 0.3s;
}

.cp-card:hover .cp-card-icon {
    color: #fff;
}

.cp-card-icon svg {
    width: 100%;
    height: 100%;
}

.cp-card h3 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 16px;
    transition: color 0.3s;
}

.cp-card:hover h3 {
    color: #fff;
}

.cp-card p {
    font-size: 13px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.8;
    transition: color 0.3s;
}

.cp-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Our People */
.cp-people {
    position: relative;
    padding: 45px 120px;
    background: url('images/our-people.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}

.cp-people::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(66, 115, 141, 1) 0%,
        rgba(66, 115, 141, 1) 40%,
        rgba(66, 115, 141, 0.30) 65%,
        rgba(66, 115, 141, 0) 85%);
}

.cp-people-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.cp-people-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 20px;
}

.cp-people-inner h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 28px;
}

.cp-people-inner > p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    margin-bottom: 40px;
}

/* Scroll reveal animations */
.cp-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cp-reveal-delay {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease 0.45s, transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

/* Intro stagger */
.cp-d1 { transition-delay: 0.1s !important; }
.cp-d2 { transition-delay: 0.5s !important; }
.cp-d3 { transition-delay: 0.9s !important; }

/* Stagger pillars */
.cp-pillar:nth-child(2).cp-reveal { transition-delay: 0.35s; }
.cp-pillar:nth-child(3).cp-reveal { transition-delay: 0.65s; }

/* Offset anchor scroll for fixed navbar */
.cp-pillar[id] { scroll-margin-top: 250px; }

/* Stagger cards */
.cp-card:nth-child(2).cp-reveal { transition-delay: 0.15s; }
.cp-card:nth-child(3).cp-reveal { transition-delay: 0.15s; }
.cp-card:nth-child(4).cp-reveal { transition-delay: 0.3s; }

.cp-reveal.visible,
.cp-reveal-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

/* APPLY FOR A JOB PAGE */
.apply-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/sea2.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.apply-hero::before { content: ''; position: absolute; inset: 0; background: rgba(15, 40, 60, 0.348); }
.apply-hero-inner { position: relative; z-index: 1; }
.apply-hero-inner h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.apply-section {
    background: transparent;
    padding: 0 120px 100px;
    margin-top: -110px;
    position: relative;
    z-index: 2;
}
.apply-form-wrap {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.10);
    padding: 48px 56px;
}

.apply-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 28px;
}

.form-group-full { grid-column: 1 / -1; }

.form-alert {
    display: none;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    margin-bottom: 20px;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-size: 13px;
    border: 1px solid transparent;
}

.form-alert-success {
    background: rgba(66, 115, 141, 0.08);
    border-color: var(--blue);
    color: var(--blue);
}

.form-alert-error {
    background: rgba(178, 58, 58, 0.08);
    border-color: #b23a3a;
    color: #b23a3a;
}

.apply-decor-dots {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: radial-gradient(rgba(66, 115, 141, 0.18) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 60% 70% at 85% 15%, #000 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 70% at 85% 15%, #000 0%, transparent 70%);
    pointer-events: none;
}

.apply-decor-logo {
    position: absolute;
    z-index: 0;
    left: -150px;
    bottom: -100px;
    width: 500px;
    opacity: 0.05;
    pointer-events: none;
}

.apply-select {
    position: relative;
}

.apply-select-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #d4cdc8;
    background: #fff;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--grey);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s;
}
.apply-select.open .apply-select-btn,
.apply-select-btn:focus { border-color: var(--blue); outline: none; }

.apply-select-arrow {
    color: var(--blue);
    font-size: 11px;
    transition: transform 0.2s ease;
}
.apply-select.open .apply-select-arrow { transform: rotate(180deg); }

.apply-select-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #d4cdc8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.apply-select.open .apply-select-list { display: block; }

.apply-select-list li {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--grey);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.apply-select-list li:hover,
.apply-select-list li.selected {
    background: var(--blue);
    color: #fff;
}

.apply-form input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d4cdc8;
    background: #fff;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--grey);
}

/* CONTACT PAGE ANIMATIONS */

/* Hero block slides in from the right on load */
.ch-slide {
    animation: chSlideRight 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes chSlideRight {
    from { opacity: 0; transform: translateX(60vw); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Card + Map: slide up from below */
.ct-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.ct-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WORLDWIDE NETWORK PAGE */

/* Hero */
.wn-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/management.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}

.wn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.29);
}

.wn-hero-inner {
    position: relative;
    z-index: 1;
    padding: 60px 120px 0;
}

.wn-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

/* Compass wrap */
.wn-compass-wrap {
    width: 100%;
    aspect-ratio: 1;
}

/* Σχήμα 1 — CW 18s */
.wn-shape-1 {
    transform-origin: 250px 250px;
    animation: wnRotateCW 20s linear infinite;
}

/* Σχήμα 2 — CCW αργό */
.wn-shape-2 {
    transform-origin: 250px 250px;
    animation: wnRotateCCW 44s linear infinite;
}

/* Σχήμα 3 — CW γρήγορο */
.wn-shape-3 {
    transform-origin: 250px 250px;
    animation: wnRotateCW 15s linear infinite;
}

/* Κύκλοι μεσαίοι — CW */
.wn-ring-med {
    transform-origin: 250px 250px;
    animation: wnRotateCW 22s linear infinite;
}

/* Κύκλοι γρήγοροι — CCW */
.wn-ring-fast {
    transform-origin: 250px 250px;
    animation: wnRotateCCW 16s linear infinite;
}

/* Κύκλοι αργοί — CCW */
.wn-ring-slow {
    transform-origin: 250px 250px;
    animation: wnRotateCCW 42s linear infinite;
}

/* Compass needle */
.wn-needle {
    transform-origin: 250px 250px;
    animation: wnRotateCW 20s linear infinite;
}

@keyframes wnRotateCW  { to { transform: rotate(360deg); } }
@keyframes wnRotateCCW { to { transform: rotate(-360deg); } }

/* Intro */
.wn-intro {
    position: relative;
    padding: 100px 120px;
    background: #fff;
    overflow: hidden;
}

.wn-intro-deco {
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 400px;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

.wn-intro-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.wn-intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.wn-intro-right {
    flex: 0 0 400px;
    margin-top: 120px;
}

.wn-intro-top {
    display: flex;
    flex-direction: column;
}

.wn-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 18px;
}

.wn-intro-top h2 {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.wn-intro-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wn-intro-body p {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.9;
}

.wn-intro-body p strong {
    color: var(--blue);
    font-weight: 600;
}

/* Offices — dark editorial rows */
.wn-offices-dark {
    position: relative;
    background: #14304a url('images/map3.jpg') center center / cover no-repeat;
    padding: 50px 120px;
}

.wn-offices-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 48, 74, 0.636);
    pointer-events: none;
}

.wn-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.281);
    overflow: hidden;
    transition: background 0.35s ease;
    text-decoration: none;
    color: inherit;
}



.wn-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--beige);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wn-row:hover::before {
    transform: scaleY(1);
}

.wn-row-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.604);
    line-height: 1;
    flex-shrink: 0;
    width: 66px;
    transition: color 0.35s ease;
}

.wn-row:hover .wn-row-num {
    color: rgba(66, 115, 141, 0.5);
}

.wn-row-city {
    flex: 1;
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.wn-row:hover .wn-row-city {
    color: #fff;
    letter-spacing: 0.08em;
}

.wn-pin {
    width: 22px;
    height: 26px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.wn-row:hover .wn-pin {
    opacity: 1;
    transform: translateY(-3px);
}

.wn-row-country {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity 0.35s ease, color 0.35s ease;
}

.wn-row:hover .wn-row-country {
    opacity: 1;
    color: #42738d;
}

/* Reveal */
.wn-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.wn-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.wn-offices-dark .wn-row:nth-child(2).wn-reveal { transition-delay: 0.12s; }
.wn-offices-dark .wn-row:nth-child(3).wn-reveal { transition-delay: 0.24s; }
.wn-offices-dark .wn-row:nth-child(4).wn-reveal { transition-delay: 0.36s; }

/* FLEET PAGE */
.fleet-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/blooming.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.fleet-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.145); }
.fleet-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.fleet-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.fleet-intro {
    position: relative;
    background: #42738d;
    padding: 30px 120px;
    overflow: hidden;
}

.fleet-intro-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse 55% 65% at 28% 45%, #000 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 55% 65% at 28% 45%, #000 0%, transparent 75%);
    pointer-events: none;
}

.fleet-intro-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-intro-inner {
    flex: 1 1 420px;
    min-width: 420px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.fleet-intro-inner > p { font-size: 17px; font-weight: 400; color: #fff; line-height: 1.7; }
.fleet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    list-style: none;
}
.fleet-list li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}
.fleet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.fleet-decor {
    position: relative;
    flex: 0 1 360px;
    aspect-ratio: 1;
    margin-left: auto;
    right: -60px;
}

.fleet-decor-rings {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fleet-decor-stars {
    transform-origin: 200px 200px;
    animation: fleetDecoRotate 30s linear infinite;
}

@keyframes fleetDecoRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.fleet-gallery { background: #fff; padding: 20px 60px 90px; }
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1880px;
    margin: 0 auto;
}
.fleet-card {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.1);
    cursor: pointer;
}
.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.fleet-card:hover img { transform: scale(1.06); }

.fleet-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.fleet-reveal.visible { opacity: 1; transform: translateY(0); }

.fleet-intro-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: fleetIntroFade 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.4s;
}
@keyframes fleetIntroFade {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Fleet lightbox */
.fleet-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 20, 30, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
}
.fleet-lightbox.open { display: flex; }
.fleet-lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.fleet-lightbox-close {
    position: absolute;
    top: 28px;
    right: 36px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.fleet-lightbox-close:hover { opacity: 1; }
.fleet-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.fleet-lightbox-arrow:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.fleet-lightbox-prev { left: 32px; }
.fleet-lightbox-next { right: 32px; }
.fleet-lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

/* CREW MANAGEMENT SERVICES PAGE */
.cm-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/caroline-theresa.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.cm-hero::before { content: ''; position: absolute; inset: 0; background: rgba(10, 30, 45, 0.159); }
.cm-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.cm-hero-inner h1 {
    font-size: clamp(34px, 4.6vw, 60px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.08;
    max-width: 820px;
}

.cm-intro { background: #fff; padding: 80px 120px 30px; }
.cm-intro-inner { max-width: 980px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 22px; }
.cm-intro-inner p { font-size: 22px; font-weight: 600; color: var(--blue); line-height: 1.5; white-space: nowrap; }

.cm-list { background: #fff; padding: 20px 120px 100px; }
.cm-list-inner { max-width: 980px; margin: 0 auto; }

.cm-item {
    border-bottom: 1px solid rgba(66, 115, 141, 0.16);
}

.cm-item-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 26px;
    width: 100%;
    padding: 26px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.cm-item-head::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cm-item-head:hover::before,
.cm-item.active .cm-item-head::before {
    transform: scaleY(1);
}

.cm-num {
    flex-shrink: 0;
    width: 48px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--beige);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.cm-item.active .cm-num { color: var(--blue); }

.cm-title {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--blue);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.cm-item-head:hover .cm-title { color: #2c5770; }

.cm-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.cm-icon::before,
.cm-icon::after {
    content: '';
    position: absolute;
    background: var(--blue);
    transition: transform 0.35s ease;
}
.cm-icon::before {
    left: 0; top: 50%;
    width: 100%; height: 2px;
    transform: translateY(-50%);
}
.cm-icon::after {
    top: 0; left: 50%;
    width: 2px; height: 100%;
    transform: translateX(-50%);
}
.cm-item.active .cm-icon::after { transform: translateX(-50%) rotate(90deg); }

.cm-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cm-item-body-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 4px 30px 74px;
}

.cm-item-body-inner p {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.85;
    max-width: 720px;
}

.cm-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.cm-reveal.visible { opacity: 1; transform: translateY(0); }

.cm-terms {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: url('images/ozden-theresa.jpg') right center / cover no-repeat;
    padding: 50px 120px;
    overflow: hidden;
}
.cm-terms::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #42738d 0%, rgba(66, 115, 141, 0.93) 40%, rgba(66, 115, 141, 0.195) 65%, rgba(66, 115, 141, 0) 88%);
}
.cm-terms-row {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.cm-terms-inner { max-width: 560px; display: flex; flex-direction: column; gap: 22px; }
.cm-terms-inner > p { font-size: 17px; font-weight: 400; color: #fff; line-height: 1.75; }
.cm-terms-list { display: flex; flex-direction: column; gap: 16px; list-style: none; }
.cm-terms-list li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}
.cm-terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}
.cm-terms-list li strong { color: #fff; font-weight: 700; }

/* FINANCIAL AND ADMINISTRATION PAGE */
.fa-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/financial-administration.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.fa-hero::before { content: ''; position: absolute; inset: 0; background: rgba(10, 30, 45, 0.234); }
.fa-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.fa-hero-inner h1 {
    font-size: clamp(34px, 4.6vw, 60px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.08;
    max-width: 820px;
}

.fa-intro { background: #fff; padding: 80px 80px 30px; }
.fa-intro-inner { max-width: 1440px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 22px; padding-left: 60px; }
.fa-intro-inner p { font-size: 22px; font-weight: 600; color: var(--blue); line-height: 1.5; }

.fa-list { background: #fff; padding: 20px 80px 110px; }
.fa-list-inner { max-width: 1440px; margin: 0 auto; }

.fa-tabs {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.fa-tabs-nav {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 60px;
    position: sticky;
    top: 130px;
    align-self: flex-start;
}

.fa-tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px 14px;
    background: none;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.25s ease;
}

.fa-tab-btn:hover { background: rgba(66, 115, 141, 0.05); }
.fa-tab-btn.active { background: rgba(66, 115, 141, 0.09); }

.fa-tab-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(66, 115, 141, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.fa-tab-icon svg { width: 22px; height: 22px; }

.fa-tab-btn.active .fa-tab-icon {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.fa-num { display: none; }

.fa-tab-text { display: flex; flex-direction: column; gap: 2px; }

.fa-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--blue);
    text-transform: none;
    line-height: 1.35;
}

.fa-subtitle {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.4;
}

.fa-tabs-panels {
    flex: 1;
    min-width: 0;
    max-height: 640px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fa-tabs-panels::-webkit-scrollbar { display: none; width: 0; height: 0; }

.fa-tab-panel {
    max-width: 680px;
    border: 1.5px solid rgba(66, 115, 141, 0.15);
    border-radius: 16px;
    padding: 30px 34px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fa-tab-panel.active {
    border-color: var(--blue);
    box-shadow: 0 4px 12px rgba(66, 115, 141, 0.06);
}

.fa-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.fa-panel-head .fa-tab-icon { border-color: var(--blue); color: var(--blue); }

.fa-panel-head h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.35;
    margin-bottom: 6px;
}

.fa-panel-lead {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.6;
}

.fa-tab-panel > p {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--grey);
    margin: 0 0 12px;
}

.fa-tab-panel ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.fa-tab-panel ul li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.6;
}
.fa-tab-panel ul li::before {
    content: '✓';
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.6;
}

.fa-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.fa-reveal.visible { opacity: 1; transform: translateY(0); }

.va-hero { background-image: url('images/asxaz.jpg'); }

/* TRAINING PAGE */
.tr-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/training-8.jpg') center 30% / cover no-repeat;
    display: flex;
    align-items: center;
}
.tr-hero::before { content: ''; position: absolute; inset: 0; background: rgba(10, 26, 40, 0.364); }
.tr-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.tr-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.tr-content { background: #fff; padding: 90px 0 110px 120px; }
.tr-content-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tr-content-text { flex: 0 0 470px; }
.tr-content-text p {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.55;
}

.tr-slider {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: -30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
}

.tr-slider-track {
    position: relative;
    width: 100%;
    height: 630px;
    overflow: hidden;
}

.tr-slide {
    position: absolute;
    left: 0;
    top: 50%;
    width: 300px;
    height: 380px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(20, 40, 60, 0.16);
    cursor: pointer;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), width 0.55s cubic-bezier(0.22, 1, 0.36, 1), height 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease, opacity 0.55s ease;
}

.tr-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.tr-slider-controls { position: relative; z-index: 2; display: flex; align-items: center; gap: 22px; width: 100%; padding: 0 70px 0 70px; margin-top: -40px; }

.tr-slider-progress {
    flex: 1 1 auto;
    height: 2px;
    background: rgba(30, 58, 79, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.tr-slider-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--beige);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tr-slider-counter {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    font-variant-numeric: tabular-nums;
    min-width: 34px;
    text-align: right;
}

.tr-slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--blue);
    background: #fff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.tr-slider-arrow svg { width: 18px; height: 18px; }
.tr-slider-arrow:hover:not(:disabled) { background: var(--blue); color: #fff; }
.tr-slider-arrow:disabled { opacity: 0.35; cursor: default; }

/* VACANCIES PAGE */
.vac-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/fleet/general-cargo-vessel-2.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}
.vac-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.142); }
.vac-hero-inner { position: relative; z-index: 1; padding: 60px 120px 0; }
.vac-hero-inner h1 {
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.vac-welcome { background: #fff; padding: 90px 120px; text-align: center; }
.vac-welcome-inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.vac-welcome-inner h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.vac-welcome-inner p {
    font-size: 17px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.7;
}
.vac-welcome-inner .vac-btn { margin-top: 10px; }
.vac-welcome-inner .vac-btn .arrow { font-size: 15px; }

.vac-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: #fff;
    padding: 100px 120px;
}
.vac-card {
    flex: 1 1 420px;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 50px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.vac-card:hover { transform: translateY(-6px); }
.vac-divider {
    width: 2px;
    align-self: stretch;
    background: var(--light);
    margin: 0 30px;
    flex-shrink: 0;
}
.vac-card-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: box-shadow 0.4s ease;
}
.vac-card:hover .vac-card-photo { box-shadow: 0 16px 40px rgba(66,115,141,0.25); }
.vac-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.vac-card:hover .vac-card-photo img { transform: scale(1.08); }
.vac-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.vac-card p {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 340px;
}
.vac-card p a { color: var(--blue); text-decoration: underline; }

.vac-btn {
    display: inline-block;
    border: 1.5px solid var(--blue);
    background: transparent;
    color: var(--blue);
    padding: 14px 36px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.vac-btn:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(66, 115, 141, 0.3);
}
.vac-btn .arrow { display: inline-block; transition: transform 0.3s ease; }
.vac-btn:hover .arrow { transform: translateX(5px); }

.vac-gdpr { background: var(--light); padding: 70px 120px; }
.vac-gdpr-inner { max-width: 860px; margin: 0 auto; }
.vac-gdpr-inner p {
    font-size: 15px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.9;
    text-align: center;
}

.vac-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.vac-reveal.visible { opacity: 1; transform: translateY(0); }

/* GDPR POLICY PAGE */
.gdpr-hero {
    position: relative;
    height: 62vh;
    min-height: 380px;
    background: url('images/key-south-2.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 120px 0;
}
.gdpr-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.11); }
.gdpr-hero h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.gdpr-article { background: #fff; padding: 70px 120px 20px; }
.gdpr-article-inner { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.gdpr-article-inner h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.4;
}
.gdpr-article-inner h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: #42738d;
}
.gdpr-pagebreak {
    border-top: 2px solid var(--blue);
    padding-top: 24px;
}
.gdpr-article-inner p,
.gdpr-article-inner li {
    font-size: 15.5px;
    font-weight: 400;
    color: #786e63;
    line-height: 1.85;
}
.gdpr-article-inner strong {
    color: #42738d;
}
.gdpr-article-inner ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    margin-top: -8px;
}
.gdpr-article-inner ul li {
    position: relative;
    padding-left: 20px;
}
.gdpr-article-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}
.gdpr-contact-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gdpr-contact-block p { margin: 0; }
.gdpr-signature p { margin: 0; }

.gdpr-consent { padding: 10px 120px 90px; }
.gdpr-consent-inner { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.gdpr-consent-inner p {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--grey);
    line-height: 1.85;
}

