:root {
  --navy:    #02080f;
  --deep:    #050d1a;
  --mid:     #0a1628;
  --steel:   #122f47;
  --gold:    #d4af37;
  --gold-lt: #e8d4a2;
  --cream:   #f5f1e8;
  --text:    #d9dfe6;
  --muted:   rgba(217,223,230,0.5);
  --border:  rgba(212,175,55,0.2);
  --accent:  #4a9eff;
  --r:       8px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.6);
  --gold-glow: 0 0 20px rgba(212,175,55,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NOISE TEXTURE overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }

.gold { color: var(--gold); }
.serif { font-family: 'Cormorant Garamond', serif; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(180deg, rgba(5,17,31,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,168,75,0.1);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-logo span { color: var(--gold); }

.nav-logo-img {
  height: 32px;
  width: auto;
  margin-left: 12px;
  vertical-align: middle;
  opacity: 0.95;
  transition: opacity 0.3s;
}

.nav-logo:hover .nav-logo-img { opacity: 1; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Mobile hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  display: block;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
  padding: 120px 48px 80px;
  gap: 60px;
}

/* Animated ocean lines */
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(180deg, transparent 0%, var(--deep) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,58,82,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,168,75,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #05111f 0%, #081828 40%, #0a1f30 100%);
}

/* Horizontal wave lines */
.wave-lines {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.wave-line {
  position: absolute; left: -100%; right: -100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,168,75,0.15) 30%, rgba(200,168,75,0.3) 50%, rgba(200,168,75,0.15) 70%, transparent 100%);
  animation: waveDrift linear infinite;
}
.wave-line:nth-child(1) { top: 30%; animation-duration: 14s; animation-delay: 0s; }
.wave-line:nth-child(2) { top: 45%; animation-duration: 18s; animation-delay: -4s; opacity: 0.6; }
.wave-line:nth-child(3) { top: 60%; animation-duration: 12s; animation-delay: -8s; opacity: 0.4; }
.wave-line:nth-child(4) { top: 72%; animation-duration: 20s; animation-delay: -2s; opacity: 0.3; }

@keyframes waveDrift {
  0%   { transform: translateX(0) scaleY(1); }
  25%  { transform: translateX(4%) scaleY(1.5); }
  50%  { transform: translateX(0) scaleY(1); }
  75%  { transform: translateX(-4%) scaleY(0.8); }
  100% { transform: translateX(0) scaleY(1); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  flex: 1;
}

.hero-image {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
  perspective: 1200px;
}

.hero-image img {
  max-width: 60%;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  animation: coinSpin 3s linear infinite;
    animation: coinSpin 6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

@keyframes coinSpin {
  /* Smooth spin - coin rotates continuously and stays visible */
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }

  }

@-webkit-keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold); opacity: 0.6;
}

.hero-title {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -1px;
  line-height: 1.0;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-block;
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--gold), #e8c547);
      color: var(--navy);
      font-size: 12px; font-weight: 500;
      letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: all 0.3s ease;
      position: relative; overflow: hidden;
      box-shadow: 0 10px 28px rgba(212,175,55,0.35);
      border-radius: 2px;
    }
    .btn-primary::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.2);
      transform: translateX(-100%);
      transition: transform 0.35s;
    }
    .btn-primary:hover {
      box-shadow: 0 14px 36px rgba(212,175,55,0.5);
      transform: translateY(-3px);
    }
    .btn-primary:hover::after { transform: translateX(0); }

.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: var(--cream);
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(212,175,55,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  box-shadow: 0 8px 20px rgba(212,175,55,0.15);
}

/* Hero stats */
.hero-stats {
  position: absolute; bottom: 60px; right: 48px;
  display: flex; gap: 40px; z-index: 2;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600;
  color: var(--gold-lt); line-height: 1;
}
.stat-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

/* ── SECTION BASE ── */
section {
  position: relative; z-index: 1;
  padding: 100px 48px;
}

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold); opacity: 0.6;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; color: var(--cream);
  line-height: 1.1; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-lt); }

.divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 40px;
}

/* ── SERVICES ── */
#services { background: var(--deep); }

.services-intro {
  font-size: 16px; color: var(--muted); line-height: 1.8;
  max-width: 560px; margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

    .service-card {
      background: var(--deep);
      padding: 40px 36px;
      transition: all 0.35s ease;
      position: relative; overflow: hidden;
      border: 1px solid rgba(212,175,55,0.1);
      box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover {
      background: linear-gradient(135deg, var(--mid), var(--steel));
      transform: translateY(-8px);
      box-shadow: 0 16px 32px rgba(212,175,55,0.2);
      border-color: rgba(212,175,55,0.3);
    }
    .service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 28px; margin-bottom: 20px;
  display: block;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--cream); margin-bottom: 12px;
}

.service-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.75;
}

/* ── WHY US ── */
#why {
  background: linear-gradient(160deg, var(--navy) 0%, var(--mid) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-list { display: flex; flex-direction: column; gap: 28px; }

.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(200,168,75,0.1);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300;
  color: var(--gold); opacity: 0.3;
  line-height: 1; flex-shrink: 0;
  width: 48px;
}

.why-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--cream); margin-bottom: 6px;
}

.why-item p { font-size: 13px; color: var(--muted); line-height: 1.7; }

.why-visual {
  position: relative;
  background: var(--steel);
  border: 1px solid var(--border);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.why-visual::before {
  content: 'R';
  position: absolute; top: -30px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 700;
  color: var(--gold); opacity: 0.04;
  line-height: 1; pointer-events: none;
}

.metric {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.metric:last-child { border-bottom: none; padding-bottom: 0; }

.metric-label { font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.metric-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  color: var(--gold-lt);
}

/* ── CONTACT ── */
#contact { background: var(--deep); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(200,168,75,0.1);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(200,168,75,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.contact-detail-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); opacity: 0.8; margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px; color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}

/* ── FORM ── */
    .form-wrap {
      background: linear-gradient(135deg, var(--mid), var(--steel));
      border: 1px solid rgba(212,175,55,0.3);
      padding: 44px 40px;
      box-shadow: 0 12px 36px rgba(0,0,0,0.5);
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }
    .form-wrap::before {
      content: '';
      position: absolute;
      top: -50%; right: -50%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(212,175,55,0.12), transparent);
      border-radius: 50%;
      pointer-events: none;
    }

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--cream); margin-bottom: 28px;
  position: relative; z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,75,0.2);
  color: var(--cream);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(205,214,224,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,168,75,0.06);
}

.form-group select option { background: var(--deep); color: var(--cream); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  position: relative; overflow: hidden;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-lt); }
.form-submit:active { transform: translateY(1px); }

/* Success message — shown via JS, hidden by default */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon { font-size: 40px; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; color: var(--gold-lt);
  margin-bottom: 10px;
}
.form-success p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, var(--deep), var(--navy));
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 48px;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--cream);
  letter-spacing: 1px;
}
.footer-brand span { color: var(--gold); }

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px; color: rgba(217,223,230,0.35);
  letter-spacing: 0.5px;
}

/* ── VESSEL STRIP ── */
#vessels {
  background: var(--navy);
  padding: 22px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.vessel-strip {
  display: flex;
  gap: 0;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.vessel-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.vessel-tag:last-child { border-right: none; }
.vessel-tag .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: 0.6; flex-shrink: 0;
}

/* ── CAROUSEL ── */
#gallery {
  background: var(--deep);
  padding: 80px 0 0;
}
.gallery-header {
  padding: 0 48px 36px;
  max-width: 1100px; margin: 0 auto;
}

.section-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 12px;
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
  height: 480px;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: transform 6s ease, filter 0.4s;
}
.carousel-slide.active img { transform: scale(1.04); }
.carousel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 48px 32px;
  background: linear-gradient(0deg, rgba(5,17,31,0.88) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.caption-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; opacity: 0.85;
}
.caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--cream);
  line-height: 1.15;
}
.carousel-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; color: var(--gold-lt);
  opacity: 0.5; line-height: 1;
}
.carousel-nav {
  display: flex; gap: 8px;
  padding: 20px 48px;
  justify-content: center;
  background: var(--deep);
}
.carousel-dot {
  width: 28px; height: 2px;
  background: rgba(200,168,75,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.carousel-dot.active { background: var(--gold); width: 48px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(5,17,31,0.6);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(200,168,75,0.2); border-color: var(--gold); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

@media (max-width: 768px) {
  .carousel-slide { height: 280px; }
  .caption-title { font-size: 20px; }
  .carousel-caption { padding: 24px 24px 20px; }
  #vessels { padding: 18px 0; }
  .gallery-header { padding: 0 24px 28px; }
  .carousel-nav { padding: 16px 24px; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Navigation */
  nav { padding: 16px 24px; z-index: 101; }
  .nav-logo { font-size: 18px; }
  .nav-logo-img { height: 28px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5,17,31,0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 16px;
    list-style: none;
    border-bottom: 1px solid rgba(200,168,75,0.1);
    z-index: 100;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 13px; padding: 10px 0; }

  /* Hero Section */
  #hero {
    flex-direction: column;
    padding: 90px 24px 40px;
    gap: 30px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-image {
    min-height: 280px;
    margin-top: 20px;
  }
  .hero-image img {
    max-width: 80%;
    animation: coinSpin 6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  }
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* Stats */
  .hero-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    justify-content: space-around;
  }
  .stat { text-align: center; flex: 1; min-width: 80px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 9px; }

  /* Sections */
  section { padding: 60px 24px; }
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .section-desc { font-size: 13px; max-width: 100%; }

  /* Vessel Strip */
  #vessels { padding: 16px 12px; }
  .vessel-strip { flex-wrap: wrap; gap: 8px; }
  .vessel-tag {
    padding: 8px 16px;
    font-size: 10px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex: 0 1 calc(50% - 4px);
  }

  /* Carousel */
  .carousel-slide { height: 240px; }
  .caption-title { font-size: 18px; }
  .carousel-caption { padding: 20px 16px 16px; }
  .carousel-counter { font-size: 28px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 14px; }
  .carousel-btn.prev { left: 12px; }
  .carousel-btn.next { right: 12px; }
  .gallery-header { padding: 0 24px 24px; }
  .carousel-nav { padding: 14px 24px; gap: 6px; }
  .carousel-dot { width: 24px; }
  .carousel-dot.active { width: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card { padding: 28px 20px; }
  .service-icon { font-size: 24px; margin-bottom: 12px; }
  .service-name { font-size: 18px; margin-bottom: 8px; }
  .service-desc { font-size: 12px; line-height: 1.6; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-visual { padding: 32px 20px; }
  .metric { font-size: 14px; }
  .metric-value { font-size: 24px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-detail { flex-direction: column; gap: 8px; margin-bottom: 24px; padding-bottom: 24px; }
  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Form */
  .form-wrap { padding: 28px 20px; }
  .form-title { font-size: 20px; margin-bottom: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-group { margin-bottom: 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  .form-group textarea { min-height: 90px; }
  .form-submit { padding: 12px; font-size: 11px; margin-top: 6px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-brand { font-size: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; font-size: 10px; }
  .footer-copy { font-size: 10px; }

  /* Wave lines - hide on mobile */
  .wave-lines { display: none; }
}

