﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Brand Color Tokens */
  --navy-950: #040E1B;
  --navy-900: #07182B; /* Dark Navy Hero & Stats Band */
  --navy-800: #0A2540;
  --navy-700: #103860;
  --navy-600: #194F85;
  --navy-100: #E0EBF7;
  --navy-50: #EEF4FA;

  /* Accent Colors */
  --gold-500: #DF9B35; /* Gold / Orange Accent */
  --gold-400: #F3B755;
  --gold-600: #B87B1D;
  --gold-100: #FEF3D6;

  --crimson-500: #E11D48; /* Reference Pink/Crimson Accent */
  --crimson-600: #BE123C;
  --crimson-700: #9F1239;
  --crimson-100: #FFE4E6;

  --teal-500: #0D9488; /* Marine Teal */
  --teal-400: #14B8A6;
  --teal-600: #0F766E;
  --teal-100: #CCFBF1;

  --green-500: #22C55E; /* Eco Leaf Green */
  --green-600: #16A34A;
  --green-100: #DCFCE7;

  --cyan-500: #0EA5E9;
  --cyan-100: #E0F2FE;

  /* Neutrals */
  --white: #FFFFFF;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 35px -6px rgba(0,0,0,0.2);
  --shadow-crimson: 0 8px 20px -4px rgba(225, 29, 72, 0.4);
  --shadow-gold: 0 8px 20px -4px rgba(223, 155, 53, 0.35);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: var(--slate-50);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
h4 { font-size: 1.2rem; }

.font-serif {
  font-family: var(--font-serif);
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.text-gold { color: var(--gold-500); }
.text-crimson { color: var(--crimson-500); }
.text-teal { color: var(--teal-400); }
.text-green { color: var(--green-500); }
.text-white { color: var(--white); }

/* Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-padding-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Eyebrow / Category Tags */
.eyebrow-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.badge-gold { background: var(--gold-100); color: var(--gold-600); border: 1px solid rgba(223,155,53,0.3); }
.badge-crimson { background: var(--crimson-100); color: var(--crimson-600); border: 1px solid rgba(225,29,72,0.3); }
.badge-teal { background: var(--teal-100); color: var(--teal-600); border: 1px solid rgba(13,148,136,0.3); }
.badge-green { background: var(--green-100); color: var(--green-600); border: 1px solid rgba(34,197,94,0.3); }
.badge-navy { background: var(--navy-100); color: var(--navy-800); border: 1px solid rgba(10,37,64,0.2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-crimson {
  background-color: var(--crimson-500);
  color: var(--white);
  border: 1px solid var(--crimson-600);
  box-shadow: var(--shadow-crimson);
}

.btn-crimson:hover {
  background-color: var(--crimson-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(225, 29, 72, 0.55);
}

.btn-primary {
  background-color: var(--gold-500);
  color: var(--navy-950);
  border: 1px solid var(--gold-400);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--navy-800);
  color: var(--white);
}

.btn-navy:hover {
  background-color: var(--navy-900);
  color: var(--gold-400);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   HEADER & NAVBAR (Matching Reference Screenshot)
   ========================================================================== */
.topbar {
  background: var(--navy-950);
  color: var(--slate-300);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-items {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-300);
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
}

.topbar-item a:hover {
  color: var(--gold-400);
}

.topbar-badge {
  background: rgba(223, 155, 53, 0.18);
  color: var(--gold-400);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(7, 24, 43, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(4, 14, 27, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name span {
  color: var(--gold-400);
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--teal-400);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #CBD5E1;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-bottom: 2px solid var(--crimson-500);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.6rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1010;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--slate-200);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(225, 29, 72, 0.15);
  color: var(--crimson-500);
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--teal-400);
  flex-shrink: 0;
}

.dropdown-item-title {
  font-weight: 600;
  color: var(--white);
  display: block;
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

/* Floating Social Bar (Left side on desktop, matching reference) */
.social-sidebar {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 500;
}

.social-sidebar::before {
  content: '';
  width: 2px;
  height: 40px;
  background: var(--gold-500);
  margin-bottom: 0.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 24, 43, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.social-link:hover {
  background: var(--crimson-500);
  border-color: var(--crimson-500);
  transform: scale(1.1);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   HERO SECTION (Matching Reference Screenshot Exactly)
   ========================================================================== */
.hero-ref {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: url('../images/hero_bg.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 6.5rem 0 5rem 0;
  overflow: hidden;
}

.hero-ref::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(4, 14, 27, 0.88) 0%, rgba(4, 14, 27, 0.65) 50%, rgba(4, 14, 27, 0.4) 100%),
              linear-gradient(180deg, rgba(4, 14, 27, 0.3) 0%, rgba(7, 24, 43, 0.95) 100%);
  z-index: 1;
}

.hero-ref-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: center;
}

.hero-ref-content {
  max-width: 720px;
}

.hero-ref-eyebrow {
  color: var(--gold-500);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-ref-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-ref-title span.crimson-text {
  color: var(--crimson-500);
  font-style: italic;
}

.hero-ref-subtitle {
  font-size: 1.15rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-ref-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

/* Hero Right Side Vessel Selector / Pagination (Matching Reference) */
.hero-vessel-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.75rem;
}

.vessel-tab-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: right;
}

.vessel-tab-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  cursor: pointer;
  transition: var(--transition);
}

.vessel-tab-num {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.vessel-tab-item.active {
  color: var(--white);
}

.vessel-tab-item.active .vessel-tab-label {
  border-bottom: 2px solid var(--crimson-500);
  padding-bottom: 2px;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.slider-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-circle-btn:hover {
  background: var(--crimson-500);
  border-color: var(--crimson-500);
  transform: scale(1.05);
}

/* ==========================================================================
   WHO WE ARE & STATS BAND (Dark Navy Band from Reference)
   ========================================================================== */
.who-we-are-section {
  background-color: var(--navy-900);
  color: var(--white);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.who-content h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.who-content p {
  color: var(--slate-300);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.who-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--crimson-500);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.who-link:hover {
  color: var(--white);
  gap: 0.75rem;
}

/* Stats 4-Item Grid */
.stats-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-icon-wrapper {
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
}

.stat-box-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-box-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.stat-box-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
}

/* Right Safety Vessel Card */
.commitment-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: url('../images/vessel_safety.jpg') center center / cover no-repeat;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.commitment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(4, 14, 27, 0.2) 0%, rgba(4, 14, 27, 0.9) 100%);
  z-index: 1;
}

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

.commitment-tag {
  font-size: 0.72rem;
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.commitment-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
}

/* ==========================================================================
   WHAT WE DO / 4 PHOTO SERVICE CARDS (Matching Reference Layout)
   ========================================================================== */
.what-we-do-section {
  background-color: var(--slate-50);
  padding: 5.5rem 0;
}

.what-we-do-header {
  margin-bottom: 3rem;
  max-width: 680px;
}

.what-we-do-header h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin-bottom: 0.75rem;
}

.what-we-do-header p {
  color: var(--slate-600);
  font-size: 1rem;
}

.photo-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.photo-service-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.photo-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(7, 24, 43, 0.2) 0%, rgba(7, 24, 43, 0.85) 100%);
  transition: var(--transition);
  z-index: 1;
}

.photo-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.photo-service-card:hover::before {
  background: linear-gradient(180deg, rgba(7, 24, 43, 0.1) 0%, rgba(7, 24, 43, 0.95) 100%);
}

.card-badge-circle {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-green-circle { background: var(--green-600); }
.badge-gold-circle { background: var(--gold-500); }
.badge-cyan-circle { background: var(--cyan-500); }
.badge-magenta-circle { background: var(--crimson-500); }

.card-badge-circle svg {
  width: 22px;
  height: 22px;
}

.photo-card-bottom {
  position: relative;
  z-index: 2;
  background: rgba(7, 24, 43, 0.9);
  backdrop-filter: blur(8px);
  margin: -0.5rem -0.5rem -0.5rem -0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-card-arrow {
  color: var(--crimson-500);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.photo-service-card:hover .photo-card-arrow {
  transform: translateX(4px);
  color: var(--white);
}

/* ==========================================================================
   INNER PAGE HEROES & SERVICE HEADERS
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 60%, #0d3b66 100%);
  color: var(--white);
  padding: 5rem 0 4rem 0;
  text-align: center;
}

.page-hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}

.page-hero p {
  color: var(--slate-300);
  font-size: 1.15rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--gold-400);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--navy-950);
  color: var(--slate-400);
  padding-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-400);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-col-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--slate-300);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-link:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--slate-300);
  margin-bottom: 0.85rem;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--slate-500);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--slate-400);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .social-sidebar {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-ref-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-vessel-selector {
    align-items: flex-start;
  }
  .vessel-tab-list {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .who-we-are-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-center-grid {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
  }
  .photo-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-menu, .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .photo-services-grid {
    grid-template-columns: 1fr;
  }
  .stats-center-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-ref {
    padding: 4.5rem 0 3.5rem 0;
    min-height: auto;
  }
}

/* ==========================================================================
   EXPLICIT SVG ICON CONSTRAINTS (PREVENT BLOW-UP)
   ========================================================================== */
.service-icon-box {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  border-radius: var(--radius-md);
  background: rgba(10, 37, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon-box svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  stroke: currentColor;
}

.card-teal .service-icon-box { color: var(--teal-500); background: var(--teal-100); }
.card-green .service-icon-box { color: var(--green-600); background: var(--green-100); }
.card-gold .service-icon-box { color: var(--gold-600); background: var(--gold-100); }
.card-magenta .service-icon-box { color: var(--crimson-500); background: var(--crimson-100); }

/* Vision & Mission Icons */
.vm-icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-icon.gold {
  background: rgba(223, 155, 53, 0.15);
  color: var(--gold-500);
}

.vm-icon svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  stroke: currentColor;
}

/* Service Card Links & Checklist Icons */
.service-card-link svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.checklist-item svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  color: var(--teal-500);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Grids & Cards */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 1.5rem;
}

.service-card:hover .service-card-link {
  color: var(--crimson-500);
}

/* Vision / Mission Layout */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.vm-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
}

.vm-box-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.vm-box p {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* Values Grid */
.values-banner {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.values-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.value-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
}

/* Case Study Section */
.case-study-section {
  background: var(--navy-950);
  color: var(--white);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.cs-badge-highlight {
  display: inline-block;
  background: rgba(223, 155, 53, 0.15);
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(223, 155, 53, 0.3);
  margin-bottom: 1rem;
}

.case-study-content h2 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.case-study-content p {
  color: var(--slate-300);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.cs-metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
}

.cs-metric-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-400);
}

.cs-metric-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 0.25rem;
}

.case-study-card-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-950) 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2.5rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 780px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: var(--slate-300);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
  .services-grid-3 {
    grid-template-columns: 1fr;
  }
  .case-study-metrics {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 3rem 1.5rem;
  }
}