/* ==========================================================================
   BEK SUPPLIERS LTD - Modern Corporate Design System & Stylesheet
   Primary Palette: Corporate Deep Navy, Maritime Teal, Industrial Safety Amber
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --primary-navy: #0b132b;
  --primary-navy-light: #1c2541;
  --primary-navy-subtle: #2a385b;
  --maritime-teal: #00a896;
  --maritime-teal-hover: #0284c7;
  --maritime-teal-glow: rgba(0, 168, 150, 0.25);
  --industrial-amber: #f59e0b;
  --industrial-amber-dark: #d97706;
  --industrial-amber-glow: rgba(245, 158, 11, 0.25);
  
  /* Neutral Color Tokens */
  --bg-dark: #070d1e;
  --bg-surface-light: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border-light: #e2e8f0;
  --border-dark: #1e293b;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 19, 43, 0.1), 0 8px 10px -6px rgba(11, 19, 43, 0.05);
  --shadow-lg: 0 20px 35px -10px rgba(11, 19, 43, 0.15), 0 10px 15px -5px rgba(11, 19, 43, 0.08);
  --shadow-glow: 0 0 25px rgba(0, 168, 150, 0.3);
  --glass-bg: rgba(11, 19, 43, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-surface-light);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe, canvas, svg, object {
  max-width: 100%;
}

a {
  color: var(--maritime-teal);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--maritime-teal-hover);
}

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

ul {
  list-style: none;
}

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

h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-title-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 1.8rem;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(0, 168, 150, 0.1);
  color: var(--maritime-teal);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.sub-badge i {
  font-size: 0.9rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.6rem;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 3.25rem 0;
}

.section-padding-sm {
  padding: 2rem 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Top Utility Bar */
.top-bar {
  background-color: var(--primary-navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-info-item i {
  color: var(--industrial-amber);
}

.top-bar-info-item a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-info-item a:hover {
  color: var(--maritime-teal);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.location-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Main Navbar */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: rgba(7, 13, 30, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

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

.brand-logo-bg {
  background: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-fast);
}

.brand-logo:hover .brand-logo-bg {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.brand-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--maritime-teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--maritime-teal), var(--industrial-amber));
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--maritime-teal) 0%, #008073 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #008073 0%, #00665c 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4);
}

.btn-amber {
  background: linear-gradient(135deg, var(--industrial-amber) 0%, var(--industrial-amber-dark) 100%);
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
  background: linear-gradient(135deg, #e59200 0%, #c46900 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-outline-dark:hover {
  background: var(--primary-navy);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(7, 13, 30, 0.92) 0%, rgba(11, 19, 43, 0.88) 100%),
              url('../images/hero-maritime-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 3rem 0 3.5rem;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--maritime-teal-glow) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-highlight {
  background: linear-gradient(90deg, #00f2fe 0%, var(--maritime-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 620px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust-bar {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 168, 150, 0.15);
  border: 1px solid rgba(0, 168, 150, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maritime-teal);
  font-size: 1.2rem;
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
}

.hero-trust-text strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.hero-trust-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-preview {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hero-card-badge {
  background: var(--industrial-amber);
  color: var(--primary-navy);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.hero-card-title {
  color: #ffffff;
  font-size: 1.25rem;
}

.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--maritime-teal);
}

.hero-feature-item i {
  color: var(--industrial-amber);
  margin-top: 0.2rem;
}

.hero-feature-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Stats Counter Section
   ========================================================================== */

.stats-bar {
  background: var(--primary-navy);
  margin-top: -1.8rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  divide-x: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  padding: 1.5rem 1rem;
  text-align: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--industrial-amber);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Supply Divisions Grid (Services)
   ========================================================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 150, 0.4);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maritime-teal);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background: var(--maritime-teal);
  color: #ffffff;
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-navy);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;

}

.service-tag {
  background: var(--bg-surface-light);
  color: var(--primary-navy-subtle);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-weight: 600;
}

/* ==========================================================================
   Procurement Workflow Section
   ========================================================================== */

.workflow-section {
  background: var(--primary-navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.workflow-section .section-title-wrap h2 {
  color: #ffffff;
}

.workflow-section .section-description {
  color: rgba(255, 255, 255, 0.75);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
  position: relative;
}

.workflow-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition-fast);
}

.workflow-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--maritime-teal);
  transform: translateY(-5px);
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--industrial-amber);
  color: var(--primary-navy);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.workflow-step h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.workflow-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

/* ==========================================================================
   Portfolio / Clients Showcase
   ========================================================================== */

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.client-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.client-card-body {
  padding: 1.8rem;
}

.client-badge {
  display: inline-block;
  background: rgba(0, 168, 150, 0.1);
  color: var(--maritime-teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.client-card-title {
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.client-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.client-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--primary-navy-subtle);
  font-weight: 600;
}

.client-location i {
  color: var(--industrial-amber);
}

/* Location Tags Bar */
.location-seo-bar {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  border: 1px solid var(--border-light);
  margin-top: 0;
  text-align: center;
}

.location-tags-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.town-tag {
  background: var(--bg-surface-light);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.town-tag i {
  color: var(--maritime-teal);
}

/* ==========================================================================
   Contact Form & Anti-Bot Verification
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);

}

.contact-info-card h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 168, 150, 0.2);
  border: 1px solid var(--maritime-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maritime-teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-detail-text p, .contact-detail-text a {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-surface-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--maritime-teal);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Anti-Bot Verification Challenge Box */
.captcha-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(0, 168, 150, 0.08) 100%);
  border: 1.5px dashed var(--industrial-amber);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.captcha-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.captcha-label i {
  color: var(--industrial-amber-dark);
}

.captcha-input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.captcha-question {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  user-select: none;
}

/* Honeypot Trap (Hidden from humans) */
.hp-field {
  display: none !important;
  visibility: hidden !important;
}

.alert-box {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--maritime-teal);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--maritime-teal);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Quick Quote Modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 13, 30, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--bg-card);
  width: 90%;
  max-width: 620px;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-surface-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.about-card {
  padding: 2.5rem;
}

.text-center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6, p, a, span, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Utility Responsive Grid Classes */
.grid-responsive-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-responsive-1fr-2fr {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.grid-responsive-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

/* ==========================================================================
   REAL PROJECT PHOTOS — HOMEPAGE SECTIONS
   ========================================================================== */

/* --- Hero Photo Mosaic (right side of hero) --- */
.hero-photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.hero-mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-mosaic-cell {
  overflow: hidden;
  position: relative;
}
.hero-mosaic-cell:first-child {
  grid-column: 1 / 3;
  height: 210px;
}
.hero-mosaic-cell:hover .hero-mosaic-img {
  transform: scale(1.06);
}
.hero-mosaic-cell:first-child {
  grid-column: 1 / 3;
}
.hero-mosaic-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(7,13,30,0.82);
  color: #02C39A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Projects in Action Strip --- */
.projects-strip-section {
  padding: 72px 0 60px;
  background: var(--primary-navy);
  overflow: hidden;
}
.projects-strip-section .section-title-wrap h2 {
  color: #ffffff;
}
.projects-strip-section .section-description {
  color: rgba(255,255,255,0.7);
}
.projects-strip-section .sub-badge {
  background: rgba(0,168,150,0.18);
  color: #02C39A;
  border: 1px solid rgba(0,168,150,0.3);
}

.projects-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.proj-strip-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.proj-strip-card:nth-child(3) {
  height: 260px;
  margin-top: -10px;
}
.proj-strip-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.proj-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.proj-strip-card:hover img {
  transform: scale(1.08);
}
.proj-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,13,30,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.proj-strip-card:hover .proj-strip-overlay {
  opacity: 1;
}
.proj-strip-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.35s ease;
}
.proj-strip-badge {
  display: inline-block;
  font-size: 0.65rem;
  color: #02C39A;
  background: rgba(0,168,150,0.2);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proj-strip-card:hover .proj-strip-label {
  opacity: 1;
  transform: translateY(0);
}

/* --- Full-Width Banner Photo --- */
.photo-banner-section {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.photo-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 8s ease;
}
.photo-banner-section:hover .photo-banner-img {
  transform: scale(1.04);
}
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,13,30,0.85) 0%,
    rgba(0,168,150,0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-banner-content {
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 760px;
}
.photo-banner-content .sub-badge {
  background: rgba(0,168,150,0.25);
  color: #02C39A;
  border: 1px solid rgba(0,168,150,0.4);
  margin: 0 auto 16px;
  display: inline-flex;
}
.photo-banner-content h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.25;
}
.photo-banner-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.65;
}
.photo-banner-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.photo-banner-stat {
  text-align: center;
}
.photo-banner-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}
.photo-banner-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 1024px) {
  .projects-photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects-photo-strip .proj-strip-card:nth-child(n+4) {
    display: none;
  }
  .hero-photo-mosaic {
    display: none;
  }
}
@media (max-width: 640px) {
  .projects-photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-photo-strip .proj-strip-card:nth-child(n+3) {
    display: none;
  }
  .photo-banner-section {
    height: 320px;
  }
}
