/* ==========================================================================
   GWADAR FISH MEAL (SMC-PRIVATE) LIMITED
   Corporate Website Stylesheet - Realistic Oceanic Light Theme
   Branded after Gawadar logo.png & Company Profile
   ========================================================================== */

:root {
  /* Primary Oceanic Navy & Azure Palette (Derived from Logo) */
  --navy-dark: #040e1d;
  --navy-main: #071a38;
  --navy-light: #0f2c59;
  --navy-surface: #17386d;

  --ocean-cyan: #0ea5e9;
  --ocean-azure: #0284c7;
  --ocean-deep: #0369a1;
  --ocean-mist: #e0f2fe;
  --ocean-ice: #f0f7fb;

  /* Golden Amber & Ochre Accents (Fishmeal & Sunshine) */
  --gold-main: #c28b38;
  --gold-vibrant: #d97706;
  --gold-light: #f59e0b;
  --gold-subtle: #fef3c7;
  --gold-glow: rgba(217, 119, 6, 0.25);

  /* Light Theme Backgrounds & Surfaces */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-surface-elevated: #ffffff;

  --bg-glass-card: rgba(255, 255, 255, 0.92);
  --bg-gradient-hero: linear-gradient(175deg, #e8f3fa 0%, #f4f9fd 50%, #ffffff 100%);
  --bg-gradient-subtle: linear-gradient(180deg, #f0f7fb 0%, #ffffff 100%);
  --bg-gradient-navy: linear-gradient(135deg, #071a38 0%, #0d2852 100%);

  /* Typography Colors */
  --text-heading: #071a38;
  --text-body: #23344d;
  --text-muted: #53657f;
  --text-light: #7a8ba3;
  --text-on-dark: #ffffff;

  /* Borders & Dividers */
  --border-card: rgba(7, 26, 56, 0.08);
  --border-focus: #0ea5e9;
  --border-gold: rgba(194, 139, 56, 0.35);
  --border-ocean: rgba(2, 132, 199, 0.2);

  /* Realistic 3D Box Shadows */
  --shadow-sm: 0 2px 6px rgba(7, 26, 56, 0.04);
  --shadow-md: 0 10px 25px -4px rgba(7, 26, 56, 0.07), 0 4px 10px -2px rgba(7, 26, 56, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(7, 26, 56, 0.1), 0 8px 20px -4px rgba(7, 26, 56, 0.06);
  --shadow-3d: 0 25px 50px -12px rgba(7, 26, 56, 0.16), 0 0 0 1px rgba(7, 26, 56, 0.05);
  --shadow-3d-hover: 0 32px 60px -15px rgba(2, 132, 199, 0.22), 0 0 0 1.5px rgba(14, 165, 233, 0.3);
  --shadow-glow-gold: 0 10px 30px -5px rgba(217, 119, 6, 0.3);

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-heading);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-wide {
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-alt {
  background-color: var(--ocean-ice);
  background-image: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(194, 139, 56, 0.05) 0%, transparent 40%);
}

.section-navy {
  background: var(--bg-gradient-navy);
  color: var(--text-on-dark);
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: #ffffff;
}

.section-navy .text-muted {
  color: #a0b3cc;
}

/* ==========================================================================
   Header & Navigation (Professional Corporate Design)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(7, 26, 56, 0.08);
  box-shadow: 0 4px 20px rgba(7, 26, 56, 0.04);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(7, 26, 56, 0.08);
  border-bottom-color: rgba(2, 132, 199, 0.15);
}

.scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--ocean-azure), var(--ocean-cyan), var(--gold-vibrant));
  width: 0%;
  transition: width 0.1s linear;
  z-index: 1001;
}

.top-bar {
  background: var(--navy-dark);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.site-header.scrolled .top-bar {
  display: none;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  font-weight: 500;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.top-bar-contact a:hover {
  color: var(--ocean-cyan);
}

.top-bar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 28px;
  transition: height var(--transition-base);
}

.site-header.scrolled .navbar {
  height: 74px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 220px;
}

.header-logo-img {
  height: 68px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-spring), height var(--transition-base);
}

.site-header.scrolled .header-logo-img {
  height: 56px;
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.03);
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1e293b;
  padding: 8px 0;
  white-space: nowrap !important;
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--ocean-azure);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--ocean-azure);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

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

.nav-link.active {
  color: var(--ocean-azure);
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--ocean-azure), var(--gold-vibrant));
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
  min-width: 220px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ocean-azure) 0%, var(--navy-main) 100%);
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap !important;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.28);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.42);
  background: linear-gradient(135deg, var(--ocean-cyan) 0%, var(--navy-light) 100%);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy-main);
  cursor: pointer;
  padding: 8px;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
  transition: transform var(--transition-spring);
  text-decoration: none;
}

.footer-logo-card:hover {
  transform: translateY(-3px);
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

/* ==========================================================================
   Hero Banner Section (Professional Corporate Design)
   ========================================================================== */

.hero-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.6) 100%),
    url('../images/banner_home_fish.jpg') center center / cover no-repeat;
  color: #131212;
  overflow: hidden;
}

.hero-banner-overlay {
  display: none;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: #0a0a0a;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #080808;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-highlight-gold {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-banner-lead {
  font-size: 1.18rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--navy-main);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-banner-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-feature-item i {
  color: var(--ocean-cyan);
}

/* ==========================================================================
   Subpage Hero Banners (Bold, Attractive Marine Fish Photography)
   ========================================================================== */

.page-hero-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 165px;
  padding-bottom: 95px;
  color: #ffffff;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-banner::before {
  display: none;
}

.page-hero-banner.banner-about {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/banner_about_fish.jpg');
}

.page-hero-banner.banner-products {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/banner_products_fish.jpg');
}

.page-hero-banner.banner-facility {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/banner_facility_fish.jpg');
}

.page-hero-banner.banner-contact {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/banner_contact_fish.jpg');
}

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

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: #e0f2fe;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.page-hero-title,
h1.page-hero-title {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff !important;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.page-hero-lead,
p.page-hero-lead {
  font-size: 1.18rem;
  color: #f8fafc !important;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto 34px auto;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.page-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: #f8fafc;
  backdrop-filter: blur(8px);
}

.page-hero-badge i {
  color: var(--gold-light);
}

.breadcrumb-nav,
.breadcrumb {
  display: none !important;
}

/* Classic Hero Sections (Subpages or Split) */
.hero-main {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 90px;
  background: var(--bg-gradient-hero);
  overflow: hidden;
}

.hero-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 660px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: var(--radius-full);
  color: var(--ocean-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-tag .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-vibrant);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(217, 119, 6, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
  }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.14;
  color: var(--navy-main);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title .text-gradient-ocean {
  background: linear-gradient(135deg, var(--ocean-azure) 0%, var(--navy-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-vibrant) 0%, var(--gold-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ocean-azure) 0%, var(--navy-main) 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2, 132, 199, 0.42);
  background: linear-gradient(135deg, var(--ocean-cyan) 0%, var(--navy-light) 100%);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--navy-main);
  border-color: rgba(7, 26, 56, 0.15);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--ocean-azure);
  color: var(--ocean-azure);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-vibrant) 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.45);
  color: #ffffff;
}

/* 3D Realistic Showcase Visual */
.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-card-3d {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform-style: preserve-3d;
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.hero-card-3d:hover {
  box-shadow: var(--shadow-3d-hover);
}

.hero-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-badge-float {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transform: translateZ(30px);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--ocean-azure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-text strong {
  display: block;
  font-size: 0.96rem;
  color: var(--navy-main);
  font-weight: 700;
}

.badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Page Banner Hero (For subpages) */
.page-hero {
  position: relative;
  padding-top: 170px;
  padding-bottom: 70px;
  background: var(--bg-gradient-hero);
  border-bottom: 1px solid rgba(7, 26, 56, 0.06);
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy-main);
}

.page-hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--ocean-azure);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Stats Bar & Metric Counters
   ========================================================================== */

.stats-bar-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}

.stats-card-wrap {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 34px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(7, 26, 56, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(7, 26, 56, 0.08);
  padding-right: 20px;
}

.stat-box:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--ocean-mist);
  color: var(--ocean-azure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform var(--transition-spring);
}

.stat-box:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--ocean-azure);
  color: #ffffff;
}

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

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-main);
  line-height: 1.1;
}

.stat-number .unit {
  font-size: 1.3rem;
  color: var(--gold-vibrant);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   Image 2 Executive Corporate Overview Showcase
   ========================================================================== */

.overview-showcase-wrap {
  background: linear-gradient(145deg, #edf5fc 0%, #f6faff 50%, #ffffff 100%);
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 28px;
  padding: 56px 54px;
  box-shadow: 0 16px 45px -10px rgba(7, 26, 56, 0.06);
  position: relative;
  overflow: hidden;
}

.overview-showcase-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(194, 139, 56, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.overview-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-full);
  color: var(--ocean-azure);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.overview-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--navy-main);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.overview-lead-text {
  font-size: 1.05rem;
  color: #4b5d78;
  line-height: 1.72;
  margin-bottom: 30px;
  font-weight: 450;
}

.overview-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-navy-pill {
  background: #071a38;
  color: #ffffff !important;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(7, 26, 56, 0.18);
}

.btn-navy-pill:hover {
  background: var(--ocean-azure);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.btn-outline-pill {
  background: #ffffff;
  color: #071a38;
  border: 1.5px solid rgba(7, 26, 56, 0.16);
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-outline-pill:hover {
  border-color: var(--ocean-azure);
  color: var(--ocean-azure);
  background: #ffffff;
  transform: translateY(-2px);
}

.overview-badges-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.overview-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  background: rgba(7, 26, 56, 0.05);
  border: 1px solid rgba(7, 26, 56, 0.09);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.overview-badge-item i {
  color: var(--ocean-azure);
}

/* Right Side Image 2 Card */
.overview-preview-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 45px rgba(7, 26, 56, 0.08);
  padding: 12px;
  position: relative;
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.overview-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(2, 132, 199, 0.16);
}

.overview-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.overview-card-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(7, 26, 56, 0.12);
  border: 1px solid rgba(7, 26, 56, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.overview-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean-azure);
  display: block;
  margin-bottom: 3px;
}

.overview-card-heading {
  font-size: 1.15rem;
  color: var(--navy-main);
  font-weight: 700;
  margin: 0;
}

.overview-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--ocean-azure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-vibrant);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-main);
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   3D Realistic Cards & Interactive Grids
   ========================================================================== */

.card-3d {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-spring), box-shadow var(--transition-base), border-color var(--transition-base);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.card-3d:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(2, 132, 199, 0.3);
}

/* ==========================================================================
   Product Tier Cards (Senior B2B Corporate Architecture)
   ========================================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tier-pro-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 56, 0.09);
  box-shadow: 0 10px 30px rgba(7, 26, 56, 0.05);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.tier-pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -10px rgba(2, 132, 199, 0.16);
  border-color: rgba(2, 132, 199, 0.3);
}

.tier-pro-card.featured {
  border: 1.5px solid rgba(217, 119, 6, 0.35);
  box-shadow: 0 14px 36px -6px rgba(217, 119, 6, 0.15);
}

.tier-pro-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-vibrant));
  z-index: 5;
}

.tier-img-frame {
  margin: 12px 12px 0 12px;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--ocean-ice);
}

.tier-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tier-pro-card:hover .tier-img-frame img {
  transform: scale(1.06);
}

.badge-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.badge-chip.gold {
  background: #ffffff;
  color: var(--gold-vibrant);
  border: 1px solid rgba(217, 119, 6, 0.25);
}

.badge-chip.blue {
  background: #ffffff;
  color: var(--ocean-deep);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.badge-chip.green {
  background: #ffffff;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.chip-protein {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 26, 56, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

.chip-protein strong {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 800;
}

.tier-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tier-header-wrap {
  margin-bottom: 18px;
}

.tier-grade-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-main);
  margin-bottom: 6px;
}

.tier-target-text {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  min-height: 42px;
}

.tier-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #f1f7fc;
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 18px;
}

.tier-spec-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(7, 26, 56, 0.06);
  box-shadow: 0 1px 3px rgba(7, 26, 56, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tier-spec-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(7, 26, 56, 0.06);
}

.tier-spec-box .spec-lbl {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  line-height: 1.15;
}

.tier-spec-box .spec-val {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-main);
  line-height: 1.2;
}

.tier-spec-box.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #e8f4fc 100%);
  border: 1.5px solid var(--ocean-azure);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
}

.tier-spec-box.highlight .spec-lbl {
  color: var(--ocean-deep);
  font-weight: 800;
}

.tier-spec-box.highlight .spec-val {
  color: var(--ocean-azure);
  font-size: 1.05rem;
  font-weight: 800;
}

.tier-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  padding: 10px 4px 18px 4px;
  border-bottom: 1px solid rgba(7, 26, 56, 0.06);
  margin-bottom: 20px;
}

.tier-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tier-card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.tier-card-btn.primary {
  background: linear-gradient(135deg, var(--ocean-azure) 0%, var(--navy-main) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.tier-card-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.35);
  background: linear-gradient(135deg, var(--ocean-cyan) 0%, var(--navy-light) 100%);
  color: #ffffff;
}

.tier-card-btn.outline {
  background: #ffffff;
  color: var(--navy-main);
  border: 1.5px solid rgba(7, 26, 56, 0.14);
}

.tier-card-btn.outline:hover {
  border-color: var(--ocean-azure);
  color: var(--ocean-azure);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7, 26, 56, 0.08);
}

.grades-cta-strip {
  margin-top: 45px;
  background: #ffffff;
  border: 1px solid rgba(7, 26, 56, 0.08);
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(7, 26, 56, 0.04);
}

.grades-cta-strip-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.grades-cta-strip-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy-main);
}

.grades-cta-strip-text span {
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   Interactive 7-Step Process Flow
   ========================================================================== */

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.process-step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-spring);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-card::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ocean-azure);
  color: #ffffff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.process-step-card:last-child::after {
  display: none;
}

.process-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3d-hover);
  border-color: var(--ocean-cyan);
}

.process-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-main);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(7, 26, 56, 0.2);
}

.process-step-card:hover .process-step-num {
  background: var(--gold-vibrant);
}

.process-step-img {
  width: 100%;
  height: 95px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 12px;
}

.process-step-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Why Gwadar & Strategic Location (5 Advantages)
   ========================================================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-card {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.advantage-card:hover {
  transform: translateX(8px);
  border-color: var(--ocean-azure);
  box-shadow: var(--shadow-md);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--ocean-mist);
  color: var(--ocean-azure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.advantage-card:hover .advantage-icon {
  background: var(--ocean-azure);
  color: #ffffff;
}

.advantage-content h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--navy-main);
}

.advantage-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Dual Office Showcase */
.dual-location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.location-box {
  padding: 34px 30px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-spring);
}

.location-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3d-hover);
}

.location-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ocean-azure), var(--ocean-cyan));
}

.location-box.karachi::before {
  background: linear-gradient(90deg, var(--gold-vibrant), var(--gold-light));
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.location-box.gwadar .location-badge {
  background: var(--ocean-mist);
  color: var(--ocean-deep);
}

.location-box.karachi .location-badge {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

.location-title {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--navy-main);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.94rem;
  color: var(--text-body);
}

.location-detail i {
  color: var(--ocean-azure);
  margin-top: 4px;
}

/* ==========================================================================
   Interactive Specification Matrix
   ========================================================================== */

.spec-table-wrap {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
  overflow-x: auto;
  margin-top: 30px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.spec-table th {
  background: var(--navy-main);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.spec-table th.highlight {
  background: linear-gradient(135deg, #0d2852, #16427e);
  color: var(--gold-light);
  border-left: 2px solid var(--gold-vibrant);
  border-right: 2px solid var(--gold-vibrant);
}

.spec-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(7, 26, 56, 0.06);
  font-size: 0.96rem;
  color: var(--text-body);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover td {
  background: rgba(2, 132, 199, 0.03);
}

.spec-table td.param-name {
  font-weight: 700;
  color: var(--navy-main);
  background: #fafbfc;
}

.spec-table td.val-highlight {
  font-weight: 700;
  color: var(--ocean-deep);
  background: rgba(14, 165, 233, 0.05);
}

/* ==========================================================================
   Feed Protein Calculator Component
   ========================================================================== */

.calc-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.calc-form-group {
  margin-bottom: 24px;
}

.calc-label {
  display: block;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.calc-select,
.calc-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(7, 26, 56, 0.14);
  background: #ffffff;
  color: var(--navy-main);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.calc-select:focus,
.calc-input:focus {
  outline: none;
  border-color: var(--ocean-azure);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.calc-result-box {
  background: var(--bg-gradient-navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.calc-result-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.calc-result-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.calc-result-value {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
}

.calc-result-note {
  font-size: 0.88rem;
  color: #b0c4de;
  line-height: 1.5;
}

/* ==========================================================================
   SECP Certificate Section & Modal
   ========================================================================== */

.secp-banner {
  background: linear-gradient(135deg, #f8fafc 0%, #edf5fc 100%);
  border: 1.5px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cert-preview-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  cursor: pointer;
  border: 4px solid #ffffff;
  transition: all var(--transition-spring);
}

.cert-preview-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-3d-hover);
}

.cert-preview-card img {
  width: 100%;
  height: auto;
  display: block;
}

.cert-overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 56, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.cert-preview-card:hover .cert-overlay-btn {
  opacity: 1;
}

.cert-overlay-btn span {
  background: #ffffff;
  color: var(--navy-main);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 14, 29, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

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

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  padding: 24px;
  transform: scale(0.95);
  transition: transform var(--transition-spring);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7, 26, 56, 0.1);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--navy-main);
  color: #ffffff;
}

/* ==========================================================================
   Forms & Contact Elements
   ========================================================================== */

.rfq-form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  padding: 44px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(7, 26, 56, 0.12);
  background: #ffffff;
  color: var(--navy-main);
  font-size: 0.96rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--ocean-azure);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

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

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

.site-footer {
  background: var(--navy-dark);
  color: #d1dfed;
  padding-top: 90px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #8fa5c2;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 18px;
  margin-bottom: 24px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background: var(--gold-vibrant);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #8fa5c2;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--ocean-cyan);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #8fa5c2;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--ocean-cyan);
  margin-top: 4px;
  font-size: 1rem;
}

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

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all var(--transition-spring);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-ripple 2s infinite;
}

@keyframes wa-ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* ==========================================================================
   Responsive Modular Component Classes
   ========================================================================== */

/* Process Flow Step Cards (facility.html) */
.process-flow-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-flow-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.process-flow-content {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Facility Highlights 6-grid (facility.html) */
.facility-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Product Application Cards (products.html) */
.product-app-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
}

.product-app-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.product-app-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Vision & Mission Grid (about.html) */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 50px;
}

/* 5 Core Values Grid (about.html) */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* 4 Contact Tiles Grid (contact.html) */
.contact-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Partner Pillars 3-Grid (index.html) */
.partner-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Table Scroll Hint Pill */
.table-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 14px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean-deep);
  text-align: center;
}

/* Mobile Drawer Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 14, 29, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Nav Drawer Items */
.mobile-nav-cta {
  display: none;
  width: 100%;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 26, 56, 0.08);
}

.mobile-nav-cta .nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--ocean-azure) 0%, var(--navy-main) 100%);
  color: #ffffff !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  text-decoration: none;
}

.mobile-nav-contact {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 26, 56, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mobile-nav-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-main);
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-contact a:hover {
  color: var(--ocean-azure);
}

body.no-scroll {
  overflow: hidden !important;
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints
   ========================================================================== */

/* Breakpoint 1: Laptops & Tablets Landscape (<= 1100px) */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-step-card:nth-child(4)::after {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
    gap: 36px;
  }
}

/* Breakpoint 2: Tablet Portrait & Small Laptops (<= 1024px) */
/* Activate Mobile Header to prevent logo/link overlapping */
@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }

  .navbar {
    height: 74px;
    padding: 0 20px;
  }

  .brand-logo {
    min-width: auto;
  }

  .header-logo-img {
    height: 52px;
  }

  .nav-right {
    min-width: auto;
  }

  .nav-right .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--ocean-ice);
    color: var(--navy-main);
  }

  /* Fixed Sliding Mobile Drawer */
  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 30px 24px;
    border-bottom: 1px solid rgba(7, 26, 56, 0.1);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    z-index: 999;
    gap: 0;
  }

  .nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    color: var(--navy-main);
    border-bottom: 1px solid rgba(7, 26, 56, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--ocean-ice);
    color: var(--ocean-azure);
    padding-left: 20px;
  }

  .mobile-nav-cta {
    display: block;
  }

  .mobile-nav-contact {
    display: flex;
  }

  /* Hero Banner Scaled Down */
  .hero-banner,
  .page-hero-banner {
    padding-top: 130px;
    padding-bottom: 75px;
    min-height: auto;
  }

  .hero-banner-title,
  .page-hero-title,
  .hero-title {
    font-size: 2.75rem;
  }

  /* Grids Collapsing from 2 to 1 */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-showcase-wrap {
    padding: 40px 32px;
  }

  .overview-card-img {
    height: 340px;
  }

  .location-grid,
  .secp-banner,
  .calc-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dual-location-cards {
    grid-template-columns: 1fr;
  }

  .partner-pillars-grid {
    grid-template-columns: 1fr;
  }

  .core-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Breakpoint 3: Tablets Portrait & Phablets (<= 820px) */
@media (max-width: 820px) {
  .hero-title,
  .hero-banner-title,
  .page-hero-title {
    font-size: 2.35rem;
  }

  .hero-banner-lead,
  .page-hero-lead {
    font-size: 1.05rem;
  }

  .hero-banner-features {
    gap: 14px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-app-card {
    grid-template-columns: 1fr;
  }

  .product-app-img {
    height: 220px;
  }

  .product-app-content {
    padding: 26px 22px;
  }

  .process-flow-card {
    grid-template-columns: 1fr;
  }

  .process-flow-img {
    height: 210px;
  }

  .process-flow-content {
    padding: 24px 20px;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .process-step-card::after {
    display: none;
  }

  .stats-card-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(7, 26, 56, 0.08);
    padding-bottom: 16px;
    padding-right: 0;
  }

  .stat-box:nth-child(3),
  .stat-box:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .table-scroll-hint {
    display: inline-flex;
  }

  .calc-card {
    padding: 28px 22px;
  }
}

/* Breakpoint 4: Standard Mobile (<= 640px) */
@media (max-width: 640px) {
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.98rem;
  }

  .hero-title,
  .hero-banner-title,
  .page-hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .overview-title {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .overview-showcase-wrap {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .overview-card-img {
    height: 250px;
  }

  .overview-card-float {
    position: static;
    margin-top: 14px;
    box-shadow: none;
    border: 1px solid rgba(7, 26, 56, 0.08);
    padding: 14px 16px;
  }

  .overview-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-navy-pill,
  .btn-outline-pill {
    width: 100%;
    justify-content: center;
  }

  .facility-highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .rfq-form-card {
    padding: 24px 18px;
  }

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

  .core-values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .grades-cta-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
  }

  .grades-cta-strip > div:last-child {
    flex-direction: column;
    width: 100%;
  }

  .grades-cta-strip .btn {
    width: 100%;
    justify-content: center;
  }

  .calc-result-value {
    font-size: 2.8rem;
  }
}

/* Breakpoint 5: Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
  .container,
  .container-wide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar {
    padding: 0 14px;
  }

  .header-logo-img {
    height: 46px;
    max-width: 240px;
  }

  .hero-banner,
  .page-hero-banner {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-title,
  .hero-banner-title,
  .page-hero-title {
    font-size: 1.85rem;
  }

  .hero-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-banner-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero-banner-features {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-feature-item {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .page-hero-badge {
    width: 100%;
    justify-content: center;
  }

  .stats-card-wrap {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(7, 26, 56, 0.08);
    padding-bottom: 14px;
  }

  .stat-box:nth-child(3) {
    border-bottom: 1px solid rgba(7, 26, 56, 0.08);
    padding-bottom: 14px;
  }

  .stat-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
    bottom: 20px;
    right: 20px;
  }

  .modal-content {
    padding: 18px;
    max-height: 85vh;
  }

  .calc-card {
    padding: 18px 14px;
  }

  .calc-result-box {
    padding: 24px 18px;
  }

  .calc-result-value {
    font-size: 2.4rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 12px 14px;
    font-size: 0.86rem;
  }

  .tier-target-text {
    min-height: auto;
    margin-bottom: 12px;
  }

  .tier-spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .tier-spec-box {
    padding: 8px 10px;
    border-radius: 9px;
  }

  .tier-spec-box .spec-lbl {
    font-size: 0.67rem;
    letter-spacing: 0.03em;
  }

  .tier-spec-box .spec-val {
    font-size: 0.92rem;
  }

  .tier-spec-box.highlight .spec-val {
    font-size: 0.98rem;
  }
}