/* ═══════════════════════════════════════════════
   SS MARITIME CORPORATION LLP — style.css
   Color Palette:
     --navy:     #0A1628  (deep ocean)
     --navy-mid: #1E4D8C  (steel blue)
     --teal:     #0E7C7B  (ocean teal)
     --gold:     #C9A84C  (maritime gold)
     --offwhite: #F0F4F8
     --text:     #1A2340
══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
  /* Logo-driven palette (SSGroup) */
  --navy: #2f4b9b; /* primary deep blue from logo */
  --navy-mid: #3b5fb2; /* mid blue */
  --navy-light: #5b76c9; /* lighter blue */
  --teal: #33b7e0; /* cyan stripe */
  --teal-light: #6ad0ee; /* cyan light */
  --gold: #8ec63f; /* green from logo (used as primary accent) */
  --gold-light: #b8df74; /* lighter green accent */
  --offwhite: #f0f4f8;
  --text: #1a2340;
  --text-muted: #5a6a8a;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.14);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Approximate height of the fixed navbar (adjust if needed) */
  --nav-height: 112px;
}

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

html {
  scroll-behavior: smooth;
  /* ensure in-page anchors are not hidden behind the fixed header */
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-pad {
  padding: 100px 0;
}

.mb-6 {
  margin-bottom: 80px;
}

/* ── Typography ─────────────────────────────── */
.section-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-eyebrow.light {
  color: var(--gold);
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.section-heading.light {
  color: var(--white);
}

.section-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}
.section-body.light {
  color: rgba(255, 255, 255, 0.75);
}

.text-gold {
  color: var(--gold) !important;
}

/* ── Buttons ────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline-light {
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-weight: 600;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Background helpers ─────────────────────── */
.bg-navy {
  background: var(--navy);
}
.bg-offwhite {
  background: var(--offwhite);
}

/* ════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#mainNav {
  background: transparent;
  padding: 20px 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-logo-icon {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-main {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.brand-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 2px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
}

/* ════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-light) 50%,
    #0d2244 100%
  );
  overflow: hidden;
  /* push the hero content below the fixed header and keep viewport-fitting height */
  padding-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
}

/* -------------------------
   Mobile navbar adjustments
   ------------------------- */
@media (max-width: 991px) {
  #mainNav {
    padding: 12px 0;
  }

  .nav-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }
  .nav-logo-icon img {
    width: 44px;
    height: 44px;
  }

  /* On small screens show the menu as a centered block below the brand (no absolute overlay) */
  .navbar-collapse.collapse.show {
    position: static !important;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: auto !important;
    margin: 8px auto 0;
    display: block !important;
    background: transparent;
    padding: 8px 0 12px;
    box-shadow: none;
  }

  .navbar-nav {
    flex-direction: column !important;
    gap: 12px;
    align-items: center;
  }
  .navbar-nav .nav-item {
    width: auto;
  }
  .navbar-nav .nav-link {
    display: block;
    width: auto;
    padding: 12px 18px !important;
    font-size: 16px;
    text-align: center;
  }
  .navbar-nav .btn-gold {
    width: auto;
    min-width: 200px;
    text-align: center;
  }

  /* Ensure the toggler sits above the menu panel */
  .navbar-toggler {
    z-index: 1060;
  }
}

/* Small screens: reduce hero top padding to keep content visible */
@media (max-width: 575px) {
  :root {
    --nav-height: 84px;
  }
  .hero-section {
    padding-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height));
  }
}

/* Hero background image layer (replace the URL with your image path) */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Uses the CSS variable --hero-bg (set by JS). Default fallback to logo image. */
  --hero-bg: url("src/ship.png");
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.55), rgba(10, 22, 40, 0.25)),
    var(--hero-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: contrast(1.02) saturate(0.95);
  opacity: 1;
  transition:
    opacity 0.4s ease-in-out,
    filter 0.4s ease-in-out;
  pointer-events: none;
}

/* Animated particle field */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-particles .particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(14, 124, 123, 0.25);
  animation: floatParticle linear infinite;
}

/* Compass watermark */
.compass-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 600px;
  color: rgba(255, 255, 255, 0.02);
  z-index: 0;
  pointer-events: none;
  animation: compassSpin 60s linear infinite;
}

/* Ocean wave lines in bg */
.hero-waves-bg {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  height: 200px;
  background: repeating-linear-gradient(
    transparent,
    transparent 28px,
    rgba(14, 124, 123, 0.06) 28px,
    rgba(14, 124, 123, 0.06) 30px
  );
  z-index: 0;
  mask-image: linear-gradient(
    to top,
    transparent,
    rgba(0, 0, 0, 0.4) 60%,
    transparent
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
}
.headline-accent {
  color: var(--teal-light);
  position: relative;
}
.headline-accent::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 2px;
}

.hero-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  line-height: 1.75;
}

.hero-trust-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.trust-item i {
  font-size: 15px;
}

/* Hero stat card */
.hero-ship-card {
  perspective: 1000px;
}
.ship-card-inner {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 340px;
  animation: floatCard 6s ease-in-out infinite;
}
.ship-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(14, 124, 123, 0.4);
}
.stat-row {
  display: flex;
  gap: 20px;
}
.stat-mini {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.stat-mini-num {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}
.stat-mini span {
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}
.stat-mini p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin: 4px 0 0;
  line-height: 1.3;
}
.ship-card-tag {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}
.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-visual-wrap {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-card {
  width: 300px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.about-img-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
}
.about-img-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 2px 0;
}
.about-img-tagline {
  font-size: 11px !important;
  color: var(--gold) !important;
  letter-spacing: 0.5px;
  margin-top: 8px !important;
}
.about-globe-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.about-floating-pill {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-floating-pill i {
  color: var(--teal);
}
.pill-1 {
  bottom: 40px;
  left: -20px;
  animation: floatCard 5s ease-in-out infinite;
}
.pill-2 {
  top: 40px;
  right: -20px;
  animation: floatCard 5s ease-in-out infinite reverse;
}

.about-feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 35, 64, 0.08);
}
.about-feature-row:last-child {
  border-bottom: none;
}
.af-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.about-feature-row strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.about-feature-row p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 124, 123, 0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 124, 123, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  background: linear-gradient(
    135deg,
    rgba(14, 124, 123, 0.15),
    rgba(30, 77, 140, 0.15)
  );
  border-color: rgba(14, 124, 123, 0.3);
}

.sc-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sc-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(14, 124, 123, 0.3);
}
.service-card:hover .sc-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(14, 124, 123, 0.5);
}

.service-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.sc-list li i {
  color: var(--teal-light);
  font-size: 12px;
}

/* ════════════════════════════════════════════
   STATISTICS SECTION
══════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(160deg, var(--offwhite) 0%, #e2eaf4 100%);
  position: relative;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(30, 77, 140, 0.08);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin: 0 auto 20px;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .counter {
  color: var(--navy-mid);
}
.stat-suffix {
  font-size: 28px;
  color: var(--teal);
  font-weight: 700;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.adv-pill {
  background: var(--white);
  border: 1px solid rgba(14, 124, 123, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.adv-pill i {
  color: var(--teal);
}
.adv-pill:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.adv-pill:hover i {
  color: var(--white);
}

/* ════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════ */
.feature-visual {
  height: 320px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.3) 10px,
    rgba(255, 255, 255, 0.3) 12px
  );
}
.fv-teal {
  background: linear-gradient(135deg, var(--teal), #0d5c5c);
}
.fv-gold {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
}
.fv-navy {
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.fv-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.feature-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.feature-check-list i {
  color: var(--teal);
  font-size: 16px;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  backdrop-filter: blur(16px);
}

.tc-quote {
  font-size: 40px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
}

.tc-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tc-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.tc-author strong {
  color: var(--white);
  font-size: 16px;
  display: block;
}
.tc-author p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin: 2px 0 0;
}

.carousel-ctrl-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-ctrl-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.carousel-indicators-custom {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ci-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.ci-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════
   VESSELS GRID
══════════════════════════════════════════════ */
.vessels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vessel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 77, 140, 0.08);
  transition: var(--transition);
  text-align: center;
}
.vessel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.vc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(14, 124, 123, 0.1),
    rgba(30, 77, 140, 0.1)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.vessel-card:hover .vc-icon {
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  color: var(--white);
}
.vessel-card h5 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.vessel-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-btn {
  background: transparent !important;
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  border: none !important;
  box-shadow: none !important;
  transition: var(--transition);
}
.faq-btn:not(.collapsed) {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.06) !important;
}
.faq-btn::after {
  filter: invert(1);
}
.faq-btn:not(.collapsed)::after {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.faq-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  padding: 8px 24px 24px;
}

/* ════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--navy-mid) 0%,
    var(--navy) 40%,
    #0d3a3a 100%
  );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(14, 124, 123, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 50%
    );
  animation: ctaPulse 8s ease-in-out infinite alternate;
  z-index: 0;
}

.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.cta-contact-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.cta-contact-item i {
  color: var(--gold);
}
.cta-contact-item:hover {
  color: var(--white);
}

/* ════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: #060e1a;
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bio {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 300px;
}

.social-icons {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.fc-item i {
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.fc-item a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.fc-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  color: var(--white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(14, 124, 123, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 124, 123, 0.5);
}

/* ════════════════════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════════════════════ */
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float-anim {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}
.float-anim {
  animation: float-anim 6s ease-in-out infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120vh) translateX(60px) scale(0.5);
    opacity: 0;
  }
}
@keyframes compassSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0);
  }
}
@keyframes ctaPulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .vessels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-visual-wrap {
    height: 340px;
  }
  .pill-1 {
    left: 0;
  }
  .pill-2 {
    right: 0;
  }
  .testimonial-card {
    padding: 32px 28px;
  }
  .mb-6 {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 70px 0;
  }
  .vessels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .hero-headline {
    font-size: 44px;
  }
  .cta-section {
    padding: 80px 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .tc-text {
    font-size: 15px;
  }
  .testimonial-card {
    padding: 28px 22px;
  }
}

@media (max-width: 575px) {
  .vessels-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  .about-floating-pill {
    display: none;
  }
  .stat-number {
    font-size: 36px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
