/* ═══════════════════════════════════════════
   AREL SHIPPING — Custom Stylesheet
   Color Palette from Logo:
   Navy: #0B2545 | Blue: #1565A0 | Cyan: #3EAFCF
   ═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --navy: #0B2545;
  --navy-mid: #0E3460;
  --navy-lt: #122D4F;
  --blue: #1565A0;
  --blue-light: #1E7EC2;
  --cyan: #3EAFCF;
  --cyan-light: #6ED4EA;
  --ice: #EAF4FB;
  --cream: #F7FAFB;
  --white: #FFFFFF;
  --t-light: rgba(255, 255, 255, 0.75);
  --t-muted: rgba(255, 255, 255, 0.4);
  --t-dark: #2D3748;
  --t-gray: #5A6B80;
}

/* ─── Base Reset ─── */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ─── Typography ─── */
.font-display {
  font-family: 'Playfair Display', serif;
}

.font-condensed {
  font-family: 'Barlow Condensed', sans-serif;
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(62, 175, 207, 0.3);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

@keyframes waveFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes wordFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wordFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar-arel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar-arel.scrolled {
  background: rgba(11, 37, 69, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

.navbar-arel .nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.navbar-arel .nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
  background: var(--white);
  padding: 5px;
}

.navbar-arel.scrolled .nav-logo img {
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 5px;
  line-height: 1;
}

.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 6px;
}

.navbar-arel .nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--t-light) !important;
  letter-spacing: 2.5px;
  padding: 8px 20px !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-arel .nav-link:hover,
.navbar-arel .nav-link.active {
  color: var(--cyan) !important;
}

.navbar-arel .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.navbar-toggler {
  border: none !important;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  width: 24px;
  height: 24px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.navbar-toggler-icon::before {
  top: 6px;
}

.navbar-toggler-icon::after {
  bottom: 6px;
}

.navbar-collapse {
  background: rgba(11, 37, 69, 0.98);
  margin: 10px -12px 0;
  padding: 12px 20px;
  border-radius: 4px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    margin: 0;
    padding: 0;
  }
}

/* ═══════════════════════════════════════════
   HERO SECTION — Slider
   ═══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Slider container */
.hero-slider {
  position: absolute;
  inset: 0;
}

/* Individual slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ken Burns zoom effect on images */
.hero-slide img {
  animation: none;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-slide.active img {
  transform: scale(1.08);
}

/* Overlay sits above slides */
.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(11, 37, 69, 0.92) 0%,
    rgba(11, 37, 69, 0.55) 35%,
    rgba(14, 52, 96, 0.75) 100%
  );
}

.hero-slider .hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-slider .hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0.08;
}

/* Slider dots */
.hero-slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}

.hero-dot.active {
  background: var(--cyan);
  width: 48px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active:hover {
  background: var(--cyan);
}

/* Slider arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

/* Progress bar on active dot */
.hero-dot.active::after {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: var(--cyan-light);
  border-radius: 2px;
  animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease-out;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-tagline-line {
  width: 48px;
  height: 1px;
  background: var(--cyan);
}

.hero-tagline-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 5px;
}

.hero-title-line1 {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  font-style: italic;
}

.hero-title-line2 {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.12;
  margin-top: 4px;
  color: var(--white);
}

.hero-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--blue-light), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
  transition: opacity 0.4s;
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--t-light);
  max-width: 540px;
  line-height: 1.8;
  margin: 28px 0 44px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 16px 36px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hero-primary:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: var(--cyan);
  opacity: 0.5;
  animation: scrollPulse 1.6s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label-line {
  width: 40px;
  height: 2px;
  background: var(--blue);
}

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

.section-label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--blue);
}

.section-label-text.light {
  color: var(--cyan);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

.section-title.light {
  color: var(--white);
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
#about {
  background: var(--white);
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}

.about-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--t-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-image-wrap {
  position: relative;
  margin-bottom: 32px;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12);
}

.about-floating-badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: var(--blue);
  padding: 18px 24px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(21, 101, 160, 0.3);
  animation: waveFloat 4s ease-in-out infinite;
  text-align: center;
}

.about-floating-badge .value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-floating-badge .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Stats Cards */
.stats-row {
  padding-top: 60px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--ice);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  border-bottom: 3px solid var(--cyan);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 37, 69, 0.12);
}

.stat-card .stat-icon {
  color: var(--blue);
  margin-bottom: 14px;
}

.stat-card .stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.stat-card .stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.stat-card .stat-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--t-gray);
  margin-top: 4px;
}

/* Wave Divider */
.wave-divider {
  margin-top: 80px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════════
   FLEET SECTION
   ═══════════════════════════════════════════ */
#fleet {
  background: var(--navy);
  padding: 70px 0 100px;
}

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.fleet-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--t-light);
  margin-top: 8px;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

.fleet-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) transparent;
}

.fleet-slider::-webkit-scrollbar {
  height: 3px;
}

.fleet-slider::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 2px;
}

.fleet-slider::-webkit-scrollbar-track {
  background: transparent;
}

/* Ship Card */
.ship-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--navy-lt);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ship-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.ship-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.ship-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ship-card:hover .ship-card-img img {
  transform: scale(1.08);
}

.ship-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11, 37, 69, 0.85);
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: 1px;
  border-radius: 2px;
}

.ship-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(21, 101, 160, 0.2);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.ship-card:hover .ship-card-hover {
  opacity: 1;
}

.ship-card-hover span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}

.ship-card-body {
  padding: 18px 22px;
}

.ship-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin: 0 0 8px;
}

/* Fleet grid on light background */
.fleet-grid .ship-card-body {
  background: var(--navy-lt);
}

.ship-card-meta {
  font-size: 12px;
  color: var(--t-muted);
  margin-bottom: 14px;
}

.ship-card-meta .dot {
  margin: 0 8px;
}

.ship-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.ship-card-action .link-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ship-card-action svg {
  color: var(--cyan);
}

/* Ship card as link */
a.ship-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.ship-card:hover {
  color: inherit;
}

/* ═══════════════════════════════════════════
   TERSANE SECTION
   ═══════════════════════════════════════════ */
#tersane {
  background: var(--white);
  padding: 100px 0;
}

.tersane-image-stack {
  position: relative;
  min-height: 400px;
}

.tersane-img-main {
  width: 75%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12);
}

.tersane-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tersane-img-secondary {
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 50%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  border: 4px solid var(--white);
  box-shadow: 0 10px 40px rgba(11, 37, 69, 0.1);
}

.tersane-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tersane-floating-card {
  position: absolute;
  top: -16px;
  right: 48px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  padding: 20px 26px;
  border-radius: 4px;
  text-align: center;
  animation: waveFloat 5s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(21, 101, 160, 0.3);
  z-index: 2;
}

.tersane-floating-card .value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.tersane-floating-card .label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  margin-top: 4px;
  line-height: 1.3;
}

.tersane-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--t-gray);
  line-height: 1.85;
  margin-bottom: 32px;
}

.tersane-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--ice);
}

.tersane-stat-row .label {
  font-size: 14px;
  font-weight: 500;
  color: var(--t-gray);
}

.tersane-stat-row .value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
}

.btn-tersane {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 36px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 32px;
}

.btn-tersane:hover {
  background: var(--blue);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   FOOTER / CONTACT
   ═══════════════════════════════════════════ */
#contact {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--white);
  padding: 5px;
}

.footer-about {
  font-size: 14px;
  font-weight: 300;
  color: var(--t-light);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 300;
  color: var(--t-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  font-size: 12px;
  color: var(--t-muted);
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-credit {
  font-size: 12px;
  color: var(--t-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit strong {
  font-weight: 600;
}

.footer-credit:hover {
  color: var(--cyan);
}

/* ═══════════════════════════════════════════
   SUB-PAGE: Page Header Banner
   ═══════════════════════════════════════════ */
.page-header {
  position: relative;
  background: var(--navy);
  padding: 140px 0 60px;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  opacity: 0.95;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.page-breadcrumb a {
  color: var(--t-light);
  text-decoration: none;
  transition: color 0.3s;
}

.page-breadcrumb a:hover {
  color: var(--cyan);
}

.page-breadcrumb .separator {
  color: var(--t-muted);
}

.page-breadcrumb .current {
  color: var(--cyan);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.page-header .page-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--t-light);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SUB-PAGE: Content Sections
   ═══════════════════════════════════════════ */
.page-section {
  padding: 80px 0;
}

.page-section.bg-white {
  background: var(--white);
}

.page-section.bg-cream {
  background: var(--cream);
}

.page-section.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.content-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--t-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   SUB-PAGE: Fleet Table (Filo List Page)
   ═══════════════════════════════════════════ */
.fleet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.fleet-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--navy);
  padding: 16px 18px;
  white-space: nowrap;
  border-bottom: 2px solid var(--cyan);
}

.fleet-table tbody tr {
  border-bottom: 1px solid var(--ice);
  transition: background 0.2s;
}

.fleet-table tbody tr:hover {
  background: rgba(62, 175, 207, 0.06);
}

.fleet-table tbody td {
  padding: 14px 18px;
  color: var(--t-gray);
  font-weight: 400;
  vertical-align: middle;
  white-space: nowrap;
}

.fleet-table tbody td:last-child {
  white-space: normal;
  min-width: 200px;
}

.fleet-ship-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: color 0.3s;
}

.fleet-ship-link:hover {
  color: var(--blue);
}

/* Fleet grid (kept for homepage slider & potential future use) */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.fleet-grid .ship-card {
  width: 100%;
  flex-shrink: unset;
}

/* ═══════════════════════════════════════════
   SUB-PAGE: Ship Detail Gallery
   ═══════════════════════════════════════════ */
.ship-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy);
}

.ship-gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.ship-gallery-slide {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4/3;
}

.ship-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sticky gallery on desktop */
@media (min-width: 992px) {
  .ship-gallery {
    position: sticky;
    top: 100px;
  }
}

.ship-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 37, 69, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.ship-gallery-arrow:hover {
  background: rgba(11, 37, 69, 0.9);
  border-color: var(--cyan);
  color: var(--cyan);
}

.ship-gallery-arrow.prev {
  left: 16px;
}

.ship-gallery-arrow.next {
  right: 16px;
}

.ship-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.ship-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.ship-gallery-dot.active {
  background: var(--cyan);
  transform: scale(1.2);
}

/* Ship specs table */
.ship-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.ship-specs-table tr {
  border-bottom: 1px solid var(--ice);
  transition: background 0.2s;
}

.ship-specs-table tr:hover {
  background: rgba(62, 175, 207, 0.04);
}

.ship-specs-table td {
  padding: 8px 16px;
  font-size: 14px;
  vertical-align: top;
}

.ship-specs-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 40%;
  font-size: 12px;
}

.ship-specs-table td:last-child {
  color: var(--t-gray);
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   SUB-PAGE: Contact Cards
   ═══════════════════════════════════════════ */
.contact-card {
  background: var(--white);
  border: 1px solid var(--ice);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.3s;
}

.contact-card:hover {
  box-shadow: 0 12px 40px rgba(11, 37, 69, 0.08);
}

.contact-card-header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-card-header i {
  font-size: 24px;
  color: var(--cyan);
}

.contact-card-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  margin: 0;
}

.contact-card-body {
  padding: 28px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--t-gray);
  line-height: 1.7;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-info-row > i {
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-row a {
  color: var(--t-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-row a:hover {
  color: var(--blue);
}

/* Contact location block — info + map unified */
.contact-location-block {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 37, 69, 0.08);
  border: 1px solid var(--ice);
}

.contact-location-block .contact-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.contact-location-block iframe {
  border-radius: 0;
}

/* ═══════════════════════════════════════════
   SUB-PAGE: Form Inputs (HR / Contact)
   ═══════════════════════════════════════════ */
.form-label-arel {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-input-arel {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--ice);
  border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: vertical;
}

.form-input-arel:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(62, 175, 207, 0.12);
}

.form-input-arel::placeholder {
  color: rgba(90, 107, 128, 0.5);
}

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--t-muted);
  letter-spacing: 1px;
  padding: 4px 6px;
  transition: color 0.3s;
}

.lang-btn.active {
  color: var(--cyan);
}

.lang-btn:hover {
  color: var(--white);
}

.lang-divider {
  color: var(--t-muted);
  font-size: 12px;
  user-select: none;
}

/* ═══════════════════════════════════════════
   SOCIAL MEDIA LINKS (Footer) — Icon only
   ═══════════════════════════════════════════ */
.footer-social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--t-light);
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(62, 175, 207, 0.1);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ─── Tablet ─── */
@media (max-width: 991px) {
  .hero-desc {
    font-size: 15px;
  }

  .tersane-image-stack {
    min-height: 300px;
    margin-bottom: 40px;
  }
}

/* ─── Mobile ─── */
@media (max-width: 767px) {

  /* Hero: stacked layout — slider on top, content below */
  #hero {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-slider {
    position: relative;
    inset: auto;
    height: 30vh;
    min-height: 180px;
    flex-shrink: 0;
  }

  .hero-slide video,
  .hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-slider .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 37, 69, 0.3) 0%,
      rgba(11, 37, 69, 0.7) 100%
    );
  }

  .hero-slider .hero-waves {
    display: none;
  }

  .hero-slider .hero-grain {
    display: none;
  }

  .hero-slider-dots {
    bottom: 12px;
  }

  .hero-dot {
    width: 24px;
    height: 2px;
  }

  .hero-dot.active {
    width: 36px;
  }

  .hero-slider-arrow {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    background: var(--navy);
    padding: 36px 24px 48px;
    animation: none;
  }

  .hero-tagline {
    margin-bottom: 20px;
  }

  .hero-tagline-line {
    width: 32px;
  }

  .hero-tagline-text {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .hero-title-line1 {
    font-size: 30px;
  }

  .hero-title-line2 {
    font-size: 30px;
  }

  h1.mb-4 {
    margin-bottom: 16px !important;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 28px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 13px 24px;
    font-size: 12px;
    letter-spacing: 2px;
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* About section */
  #about {
    padding-top: 60px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-floating-badge {
    bottom: -16px;
    right: 16px;
    padding: 14px 18px;
  }

  .about-floating-badge .value {
    font-size: 26px;
  }

  .stats-row {
    padding-top: 44px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-card .stat-value {
    font-size: 26px;
  }

  .stat-card .stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .stat-card .stat-desc {
    font-size: 11px;
  }

  .wave-divider {
    margin-top: 50px;
  }

  /* Fleet section */
  #fleet {
    padding: 50px 0 70px;
  }

  .fleet-header {
    margin-bottom: 24px;
  }

  .section-title.light {
    font-size: 26px;
  }

  .slider-controls {
    display: none;
  }

  .ship-card {
    width: 260px;
  }

  .ship-card-img {
    height: 155px;
  }

  .ship-card-body {
    padding: 14px 18px;
  }

  .ship-card-name {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  /* Tersane section */
  #tersane {
    padding: 60px 0;
  }

  .tersane-image-stack {
    min-height: 260px;
    margin-bottom: 32px;
  }

  .tersane-floating-card {
    right: 8px;
    top: -10px;
    padding: 14px 18px;
  }

  .tersane-floating-card .value {
    font-size: 22px;
  }

  .tersane-text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .tersane-stat-row .label {
    font-size: 13px;
  }

  .tersane-stat-row .value {
    font-size: 14px;
  }

  .btn-tersane {
    padding: 14px 28px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  #contact {
    padding-top: 48px;
  }

  .footer-heading {
    margin-top: 8px;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 36px;
    font-size: 11px;
  }

  .footer-credit {
    font-size: 11px;
  }

  /* Navbar mobile */
  .navbar-arel {
    background: rgba(11, 37, 69, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
  }

  .navbar-arel .nav-logo img {
    height: 36px;
  }

  .nav-logo-text {
    font-size: 17px;
    letter-spacing: 4px;
  }
  /* Sub-page responsive */
  .page-header {
    padding: 110px 0 40px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header .page-desc {
    font-size: 14px;
  }

  .page-section {
    padding: 50px 0;
  }

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

  .ship-gallery-arrow {
    width: 36px;
    height: 36px;
  }

  .ship-gallery-arrow.prev {
    left: 10px;
  }

  .ship-gallery-arrow.next {
    right: 10px;
  }

  .ship-specs-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .ship-specs-table td:first-child {
    width: 45%;
    font-size: 11px;
  }

  /* Contact location block mobile */
  .contact-location-block .contact-card {
    border-radius: 0 !important;
    border-right: none !important;
  }

  .contact-location-block iframe {
    min-height: 260px !important;
  }
}

/* ─── Very small screens ─── */
@media (max-width: 380px) {
  .hero-title-line1,
  .hero-title-line2 {
    font-size: 26px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 11px;
  }

  .stat-card .stat-value {
    font-size: 22px;
  }

  .ship-card {
    width: 240px;
  }
}
