/* ==========================================================================
   KOZAN MARINE - COMPLETE LIGHT & LUMINOUS MEDITERRANEAN DESIGN SYSTEM
   Spacious, Crisp, Luminous & Modern Luxury Marine Aesthetics
   ========================================================================== */

:root {
  /* Fresh & Luminous Color Palette (All-Light Architecture) */
  --bg-body: #fbfdff;
  --bg-page: #fbfdff;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-surface-soft: #f4f8fb;
  --bg-section-alt: #f3fafe;
  --bg-section-mist: #f0f8fd;

  /* Softened Navy Maritime Contrasts for an Airier Feel */
  --navy-deep: #0a3d63;
  --navy-dark: #0d4a78;
  --navy-light: #1567a8;
  --navy-muted: #2c4d70;

  /* Vibrant Marine Accents */
  --accent-cyan: #0284c7;
  --accent-cyan-light: #0ea5e9;
  --accent-cyan-glow: rgba(2, 132, 199, 0.16);
  --accent-blue: #1c75bc;
  --accent-navy: #144ea2;
  --accent-gold: #d97706;
  --accent-gold-light: #f59e0b;
  --accent-gold-glow: rgba(217, 119, 6, 0.18);
  --accent-emerald: #10b981;
  --accent-emerald-soft: rgba(16, 185, 129, 0.12);
  --accent-rose: #e11d48;
  --accent-rose-soft: rgba(225, 29, 72, 0.12);

  /* Clean, High-Contrast Typography (Brightened) */
  --text-heading: #0a3d63;
  --text-main: #42566e;
  --text-muted: #6b8098;
  --text-dim: #9db0c2;
  --text-pure: #ffffff;

  /* Borders & Multi-Stage Soft Shadows */
  --border-subtle: rgba(15, 44, 80, 0.08);
  --border-card: rgba(28, 117, 188, 0.14);
  --border-card-hover: rgba(2, 132, 199, 0.4);
  --border-glass: rgba(255, 255, 255, 0.95);
  --border-gold: rgba(217, 119, 6, 0.3);

  --shadow-sm: 0 4px 14px rgba(0, 44, 80, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 44, 80, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 48px rgba(0, 44, 80, 0.09), 0 4px 14px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 12px 35px rgba(2, 132, 199, 0.18);
  --shadow-gold-glow: 0 10px 30px rgba(217, 119, 6, 0.2);

  /* Layout & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   BASE RESETS & DEFAULTS
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* Custom Fresh Scrollbar */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #f4f8fb;
}

::-webkit-scrollbar-thumb {
  background: #d3dde8;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ==========================================================================
   TYPOGRAPHY & SECTION UTILITIES
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #0a3d63 0%, #1c75bc 50%, #38a8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.text-cyan {
  color: var(--accent-cyan);
}

.text-blue {
  color: var(--accent-blue);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem auto;
}

/* Pill Section Kicker */
.section-tag,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.22);
  color: var(--accent-cyan);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  color: var(--text-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1c75bc 0%, #38a8e8 100%);
  color: var(--text-pure);
  box-shadow: 0 8px 20px rgba(28, 117, 188, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0d4a78 0%, #1c75bc 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28, 117, 188, 0.35);
  color: var(--text-pure);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  100% {
    transform: scale(4) rotate(45deg);
    opacity: 0;
  }
}

.btn-outline {
  background: #ffffff;
  border-color: rgba(28, 117, 188, 0.25);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: rgba(2, 132, 199, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.btn-whatsapp:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
  color: #ffffff;
}

.btn-emergency-call {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
}

.btn-emergency-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.45);
  color: #ffffff;
}

.btn-emergency-nav {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: var(--accent-rose);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-emergency-nav:hover {
  background: var(--accent-rose);
  color: #fff;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOPBAR & FLOATING GLASS NAVBAR (LIGHT & AIRY)
   ========================================================================== */

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.84rem;
  color: #475569;
  padding: 0.5rem 0;
  position: relative;
  z-index: 102;
}

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

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-divider {
  color: #cbd5e1;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.badge-online {
  color: #059669;
  font-weight: 700;
}

.emergency-top-link {
  color: #e11d48;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.emergency-top-link:hover {
  color: #be123c;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #475569;
  font-weight: 600;
}

.topbar-link:hover {
  color: var(--accent-cyan);
}

/* 15-Language Dropdown */
.lang-selector-dropdown {
  position: relative;
  z-index: 105;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--navy-deep);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-dropdown-trigger:hover,
.lang-selector-dropdown.active .lang-dropdown-trigger {
  background: #e2e8f0;
  border-color: var(--accent-cyan);
}

.lang-dropdown-trigger .active-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-dropdown-trigger .dropdown-arrow {
  font-size: 0.65rem;
  color: #64748b;
  transition: transform 0.2s ease;
}

.lang-selector-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  max-height: 380px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(28, 117, 188, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 45px rgba(0, 44, 80, 0.15);
  padding: 0.5rem;
  display: none;
  z-index: 120;
  scrollbar-width: thin;
}

.lang-selector-dropdown.active .lang-dropdown-menu {
  display: block;
  animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.86rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-option:hover {
  background: #f0f7fd;
  color: var(--navy-deep);
}

.lang-option.active {
  background: rgba(2, 132, 199, 0.12);
  color: var(--accent-cyan);
  font-weight: 700;
}

.lang-option-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-option-flag {
  font-size: 1.15rem;
}

.lang-option-code {
  font-size: 0.74rem;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--navy-deep);
  font-family: monospace;
  font-weight: 700;
}

/* FLOATING DETACHED NAVBAR */
.navbar {
  position: sticky;
  top: 10px;
  margin: 10px auto;
  max-width: 1320px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(28, 117, 188, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 44, 80, 0.06);
  z-index: 100;
  transition: var(--transition-normal);
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d4a78 0%, #1c75bc 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(0, 44, 80, 0.15);
}

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

.logo-title,
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--navy-deep);
  line-height: 1;
}

.logo-subtitle,
.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--accent-gold);
  margin-top: 3px;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-deep);
  position: relative;
  padding: 0.5rem 0.2rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-cyan);
}

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

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

.btn-rfq-trigger,
.btn-cart-toggle {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--navy-deep);
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-normal);
  position: relative;
}

.btn-rfq-trigger:hover,
.btn-cart-toggle:hover {
  background: rgba(2, 132, 199, 0.16);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-1px);
}

.rfq-badge,
.cart-badge {
  background: var(--accent-gold);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.menu-toggle,
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--navy-deep);
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (ALL-LIGHT, LUMINOUS & SPACIOUS)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 7rem 0;
  overflow: hidden;
  background-color: #f4fafe;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(245, 250, 255, 0.94) 0%, rgba(228, 244, 255, 0.90) 50%, rgba(255, 255, 255, 0.96) 100%),
    radial-gradient(circle at 50% 20%, rgba(2, 132, 199, 0.10) 0%, transparent 70%),
    url('images/hero_marine.jpg') center center / cover no-repeat;
  z-index: 1;
}

.ocean-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(2, 132, 199, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
}

.radar-sweep {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  border: 1.5px solid rgba(2, 132, 199, 0.45);
  box-shadow: 
    0 0 0 65px rgba(2, 132, 199, 0.06),
    0 0 0 130px rgba(2, 132, 199, 0.12),
    0 0 0 195px rgba(2, 132, 199, 0.06),
    0 0 0 260px rgba(2, 132, 199, 0.14),
    inset 0 0 100px rgba(2, 132, 199, 0.16);
  background: 
    radial-gradient(circle at center, rgba(2, 132, 199, 0.30) 0%, rgba(2, 132, 199, 0.12) 30%, transparent 70%),
    conic-gradient(from 0deg, transparent 0deg, transparent 250deg, rgba(2, 132, 199, 0.18) 290deg, rgba(14, 165, 233, 0.55) 356deg, rgba(217, 119, 6, 0.95) 360deg);
  animation: radarRotate 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.radar-sweep::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(2, 132, 199, 0.4) 0, rgba(2, 132, 199, 0.4) 6px, transparent 6px, transparent 12px);
  transform: translateY(-50%);
}

.radar-sweep::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: repeating-linear-gradient(180deg, rgba(2, 132, 199, 0.4) 0, rgba(2, 132, 199, 0.4) 6px, transparent 6px, transparent 12px);
  transform: translateX(-50%);
}

.radar-blip {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 14px var(--accent-gold), 0 0 24px rgba(217, 119, 6, 0.8);
  pointer-events: none;
  z-index: 2;
  animation: blipPulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.radar-blip::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  animation: pingRing 2s ease-out infinite;
}

.blip-1 { top: 22%; right: 24%; animation-delay: 0.5s; }
.blip-2 { top: 38%; right: 14%; animation-delay: 2.2s; }
.blip-3 { top: 15%; right: 36%; animation-delay: 1.4s; }

@keyframes blipPulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  30%, 60% { opacity: 1; transform: scale(1.3); filter: drop-shadow(0 0 10px #f59e0b); }
}

@keyframes pingRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes radarRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .radar-sweep {
    width: 480px;
    height: 480px;
    top: -50px;
    right: -100px;
    box-shadow: 
      0 0 0 45px rgba(2, 132, 199, 0.06),
      0 0 0 90px rgba(2, 132, 199, 0.10),
      0 0 0 135px rgba(2, 132, 199, 0.06),
      inset 0 0 60px rgba(2, 132, 199, 0.16);
  }
}

.gradient-glow {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 50%;
  height: 350px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

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

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--accent-cyan);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.08);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.16;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  font-weight: 800;
}

.hero-description {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: #556880;
  font-weight: 500;
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto 3rem auto;
}

/* Crisp White Hero Search Box */
.hero-search-wrapper {
  position: relative;
  max-width: 780px;
  margin: 0 auto 2rem auto;
}

.search-input-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid rgba(28, 117, 188, 0.22);
  border-radius: var(--radius-lg);
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
  box-shadow: 0 15px 45px rgba(0, 44, 80, 0.08);
  transition: var(--transition-normal);
}

.search-input-box:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 18px 50px rgba(2, 132, 199, 0.2);
}

.search-input-box .search-icon {
  color: var(--accent-cyan);
  font-size: 1.25rem;
  margin-right: 0.85rem;
}

.search-input-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--navy-deep);
  font-size: 1.1rem;
  font-weight: 500;
  outline: none;
}

.search-input-box input::placeholder {
  color: #94a3b8;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(28, 117, 188, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 44, 80, 0.15);
  z-index: 60;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  text-align: left;
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.35rem;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: var(--transition-fast);
}

.suggestion-item:hover {
  background: #f0f7fd;
}

.suggestion-item .item-code {
  font-family: monospace;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(2, 132, 199, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.suggestion-item .item-title {
  color: var(--navy-deep);
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: 0.85rem;
  flex: 1;
}

.suggestion-item .item-cat {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Quick Tags */
.hero-quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 4rem;
}

.quick-tag-label {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}

.tag-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--navy-deep);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: var(--transition-fast);
}

.tag-btn:hover {
  background: var(--accent-cyan);
  color: #ffffff;
  border-color: var(--accent-cyan);
  transform: translateY(-1px);
}

/* Floating White Hero Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(28, 117, 188, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 44, 80, 0.06);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.14);
  border-color: var(--accent-cyan);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA BANNER (AIRY LIGHT BLUE GRADIENT)
   ========================================================================== */

.cta-top-banner {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f7fd 100%);
  border-top: 1px solid rgba(2, 132, 199, 0.15);
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
  padding: 3rem 0;
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(0, 44, 80, 0.03);
}

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

.cta-text-box {
  max-width: 720px;
}

.cta-text-box h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
}

.cta-text-box p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-btn-box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   8 MAINTENANCE CATEGORIES SHOWCASE
   ========================================================================== */

.maintenance-section {
  background: var(--bg-body);
}

.maintenance-category-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.mcat-nav-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.mcat-nav-card:hover,
.mcat-nav-card.active {
  background: #ffffff;
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.12);
  transform: translateY(-3px);
}

.mcat-nav-icon {
  width: 48px;
  height: 48px;
  background: rgba(2, 132, 199, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.mcat-nav-card.active .mcat-nav-icon {
  background: var(--accent-cyan);
  color: #ffffff;
}

.mcat-nav-info h4 {
  font-size: 1.02rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}

.mcat-nav-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Active Category Showcase Card */
.maintenance-active-showcase {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

/* Showcase Top HD Banner */
.mcat-showcase-banner {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  margin-bottom: 2.5rem;
}

.mcat-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mcat-showcase-banner:hover .mcat-banner-bg {
  transform: scale(1.05);
}

.mcat-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.mcat-banner-content {
  max-width: 680px;
}

.mcat-banner-badge {
  display: inline-block;
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #b45309;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.mcat-banner-title {
  font-size: 2.25rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mcat-banner-tagline {
  color: #334155;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Specific Items Grid */
.mcat-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.35rem;
}

.mcat-item-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 44, 80, 0.03);
  transition: var(--transition-fast);
}

.mcat-item-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.1);
  transform: translateY(-2px);
}

.mcat-item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.mcat-item-icon {
  color: var(--accent-gold);
  font-size: 1.25rem;
  width: 28px;
  text-align: center;
}

.mcat-item-titles {
  display: flex;
  flex-direction: column;
}

.mcat-item-en {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--navy-deep);
}

.mcat-item-tr {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-add-service-rfq {
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--accent-cyan);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-add-service-rfq:hover,
.btn-add-service-rfq.added {
  background: var(--accent-cyan);
  color: #ffffff;
  transform: scale(1.08);
}

/* ==========================================================================
   MARINE PAINTING & PROTECTIVE COATINGS SECTION
   ========================================================================== */

.coatings-section {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.coatings-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 4rem;
}

.coating-visual-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.coating-visual-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

.coating-img-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
}

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

.coating-visual-card:hover .coating-img-wrap img {
  transform: scale(1.06);
}

.coating-badge-float {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.coating-visual-info {
  padding: 2rem;
}

.coating-visual-info h4 {
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}

.coating-visual-info p {
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* System Layers */
.layers-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.layers-section-header h3 {
  font-size: 2rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.layers-section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.paint-layers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.paint-layer-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.paint-layer-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.layer-num-badge {
  width: 48px;
  height: 48px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.layer-info h4 {
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}

.layer-info p {
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Brands Box */
.paint-brands-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
}

.brands-box-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.brands-box-header h3 {
  font-size: 1.85rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.brands-box-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.brands-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.brand-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  transition: var(--transition-fast);
}

.brand-card:hover {
  background: #ffffff;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.brand-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.brand-link-icon {
  color: var(--accent-cyan);
  font-size: 0.95rem;
}

.brand-desc {
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.65;
}

.brand-disclaimer {
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.35rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

/* ==========================================================================
   COATING ADDITIVES & AUXILIARY PRODUCTS (ELEVATED LUXURY AESTHETICS)
   ========================================================================== */

.paint-additives-box {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 50px rgba(0, 44, 80, 0.07), 0 1px 3px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.paint-additives-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan), var(--navy-light));
}

.additives-box-header {
  margin-bottom: 3rem;
  text-align: center;
}

.additives-box-header h3,
.paint-additives-box > h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
}

.additives-box-header p,
.paint-additives-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.65;
}

.additives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.additive-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 160px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 44, 80, 0.05);
}

.additive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
  opacity: 0.4;
  transition: all 0.3s ease;
}

.additive-card:hover {
  background: #ffffff;
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.18);
}

.additive-card:hover::before {
  opacity: 1;
  width: 7px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-cyan));
}

.additive-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.additive-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(14, 165, 233, 0.04));
  border: 1px solid rgba(2, 132, 199, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
  transition: transform 0.3s ease;
}

.additive-card:hover .additive-icon-wrapper {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, var(--accent-cyan), var(--navy-dark));
  color: #ffffff;
  border-color: var(--accent-cyan);
}

.additive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.additive-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.additive-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.additive-use-box {
  background: #f8fafc;
  border: 1px solid rgba(15, 44, 80, 0.06);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-top: 0.25rem;
}

.additive-use {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Coating CTA Card (Light) */
.coating-cta-card {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  color: var(--navy-deep);
}

.coating-cta-content {
  max-width: 700px;
}

.coating-cta-content h3 {
  font-size: 1.85rem;
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
}

.coating-cta-content p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

.coating-cta-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   OUR PROJECTS / CASE STUDIES
   ========================================================================== */

.projects-section {
  background: var(--bg-body);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.25rem;
}

.project-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

.project-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.project-card:hover .project-img-box img {
  transform: scale(1.08);
}

.project-cat-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(28, 117, 188, 0.2);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.project-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-client-loc {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.project-title {
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin-bottom: 1.15rem;
  line-height: 1.35;
}

.project-scope-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.project-scope-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.project-scope-list li i {
  color: var(--accent-emerald);
  font-size: 0.85rem;
}

/* ==========================================================================
   24/7 EMERGENCY ASSISTANCE BANNER (LIGHT & FRESH ROSE)
   ========================================================================== */

.emergency-section {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border-top: 1px solid #fecdd3;
  border-bottom: 1px solid #fecdd3;
  padding: 4.5rem 0;
  color: #881337;
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.emergency-icon-box {
  width: 76px;
  height: 76px;
  background: #e11d48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
  flex-shrink: 0;
}

.emergency-text-box {
  max-width: 680px;
}

.emergency-badge {
  background: #ffe4e6;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

.emergency-text-box h2 {
  font-size: 2.25rem;
  color: #881337;
  margin-bottom: 0.6rem;
}

.emergency-text-box p {
  font-size: 1.1rem;
  color: #9f1239;
  line-height: 1.65;
}

.emergency-cta-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   SHIP SUPPLY & IMPA CATALOG SECTION
   ========================================================================== */

.catalog-section {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 2.5rem;
}

.catalog-sidebar {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  height: fit-content;
  max-height: 850px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow-sm);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.sidebar-header h3 {
  font-size: 1.2rem;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.sidebar-header .badge {
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.sidebar-search input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  color: var(--navy-deep);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 1.15rem;
  outline: none;
}

.sidebar-search input:focus {
  border-color: var(--accent-cyan);
  background: #ffffff;
}

.category-list {
  overflow-y: auto;
  flex: 1;
  padding-right: 0.4rem;
}

.category-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 3px;
}

.category-nav-item:hover {
  background: #f0f7fd;
  color: var(--navy-deep);
}

.category-nav-item.active {
  background: rgba(2, 132, 199, 0.12);
  color: var(--accent-cyan);
  font-weight: 700;
}

.category-nav-item .cat-code-badge {
  font-family: monospace;
  font-weight: 700;
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

.category-nav-item .cat-count-pill {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Main Products Area */
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.search-box-inline {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.7rem 1.2rem;
  flex: 1;
  min-width: 280px;
  box-shadow: var(--shadow-sm);
}

.search-box-inline i {
  color: var(--accent-cyan);
  margin-right: 0.85rem;
}

.search-box-inline input {
  background: transparent;
  border: none;
  color: var(--navy-deep);
  font-weight: 500;
  outline: none;
  width: 100%;
}

.clear-search-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
}

.clear-search-btn:hover {
  color: var(--navy-deep);
}

.catalog-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.active-filters-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.active-filter-pill {
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.active-filter-pill button {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.product-img-box {
  position: relative;
  height: 190px;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.06);
}

.impa-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(0, 44, 80, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.product-info {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat-name {
  font-size: 0.78rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.45;
  margin-bottom: 1.35rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: flex;
  gap: 0.6rem;
}

.btn-add-rfq {
  flex: 1;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--accent-cyan);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
}

.btn-add-rfq:hover,
.btn-add-rfq.added {
  background: var(--accent-cyan);
  color: #ffffff;
}

.btn-quick-view {
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  color: var(--navy-deep);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-quick-view:hover {
  color: var(--accent-cyan);
  background: #ffffff;
}

/* ==========================================================================
   PORT NETWORK SECTION
   ========================================================================== */

.ports-section {
  background: var(--bg-body);
}

.ports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.75rem;
}

.port-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.port-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.port-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.port-icon {
  width: 52px;
  height: 52px;
  background: rgba(217, 119, 6, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.4rem;
}

.port-type-badge {
  background: rgba(2, 132, 199, 0.09);
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.port-name {
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
}

.port-lead-time {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-emerald);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.port-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.port-srv-tag {
  background: #f1f5f9;
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Ports Logistics & Supply Boat Showcase Banner */
.ports-logistics-banner {
  margin-top: 3.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.ports-logistics-banner:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

.logistics-img-box {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.logistics-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ports-logistics-banner:hover .logistics-img {
  transform: scale(1.05);
}

.logistics-badge-float {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.logistics-text-box {
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logistics-text-box h3 {
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logistics-text-box h3 i {
  color: var(--accent-cyan);
}

.logistics-text-box p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.logistics-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.logistics-quick-stats span {
  background: #f0f7fd;
  border: 1px solid rgba(2, 132, 199, 0.15);
  color: var(--navy-deep);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logistics-quick-stats span i {
  color: var(--accent-emerald);
}

/* ==========================================================================
   RFQ BUILDER SECTION
   ========================================================================== */

.rfq-section {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.rfq-card-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}

.rfq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
}

.rfq-title {
  font-size: 2.35rem;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.rfq-desc {
  color: var(--text-main);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.rfq-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.benefit-item {
  display: flex;
  gap: 1.15rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* RFQ Form */
.rfq-form-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.rfq-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
}

.rfq-form-header h3 {
  font-size: 1.25rem;
  color: var(--navy-deep);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--navy-deep);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.rfq-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   ABOUT & WORKSHOP SECTION
   ========================================================================== */

.about-section {
  background: var(--bg-body);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.4rem;
  color: var(--navy-deep);
  margin-bottom: 1.25rem;
}

.about-lead {
  font-size: 1.12rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--accent-cyan);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.12rem;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(2, 132, 199, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-card-info h4 {
  font-size: 1.12rem;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.contact-card-info p,
.contact-card-info a {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card-info a:hover {
  color: var(--accent-cyan);
}

/* ==========================================================================
   INFINITE PARTNER & BRAND LOGO MARQUEE (TWO COUNTER-SCROLLING ROWS)
   ========================================================================== */

.logo-marquee-section {
  background: linear-gradient(180deg, #f4fafe 0%, #fbfdff 100%);
  border-top: 1px solid rgba(2, 132, 199, 0.12);
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.logo-marquee-section::before,
.logo-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.logo-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #f4fafe 0%, transparent 100%);
}

.logo-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #f4fafe 0%, transparent 100%);
}

.marquee-header {
  text-align: center;
  margin-bottom: 2rem;
}

.marquee-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.track-left {
  animation: scrollLeft 32s linear infinite;
}

.track-right {
  animation: scrollRight 34s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-logo-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  cursor: pointer;
}

.marquee-logo-card i {
  font-size: 1.4rem;
}

.marquee-logo-card span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-deep);
  letter-spacing: 0.8px;
}

.marquee-logo-card small {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-surface-soft);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 0.25rem;
}

.marquee-logo-card:hover {
  background: rgba(2, 132, 199, 0.06);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.class-card {
  border-color: var(--border-gold);
}

.class-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold-glow);
}

@media (max-width: 768px) {
  .marquee-logo-card {
    padding: 0.7rem 1.1rem;
    gap: 0.6rem;
  }

  .marquee-logo-card span {
    font-size: 0.92rem;
  }

  .marquee-logo-card i {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   FOOTER (ELEGANT LIGHT & CRISP ARCHITECTURE)
   ========================================================================== */

.footer {
  background: #ffffff;
  color: #475569;
  padding: 5.5rem 0 2.5rem 0;
  border-top: 1px solid #e2e8f0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo .brand-name {
  color: var(--navy-deep);
}

.footer-desc {
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 1.25rem 0 1.75rem 0;
}

.certifications-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cert-badge {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-title {
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 1.35rem;
  font-weight: 700;
}

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

.footer-links a {
  color: #64748b;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.92rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-list i {
  color: var(--accent-cyan);
  margin-top: 4px;
}

.footer-contact-list a {
  color: #475569;
}

.footer-contact-list a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: var(--navy-deep);
}

/* ==========================================================================
   FLOATING ACTIONS & RFQ DRAWER
   ========================================================================== */

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 28px rgba(0, 44, 80, 0.18);
  cursor: pointer;
  position: relative;
  transition: var(--transition-normal);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: #10b981;
  color: #fff;
}

.float-rfq,
.float-call {
  background: var(--navy-deep);
  color: #fff;
  border: 2px solid #ffffff;
}

.float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-gold);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: #ffffff;
  border: 1px solid var(--border-card);
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: 0 6px 18px rgba(0, 44, 80, 0.12);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* RFQ Drawer */
.drawer-overlay,
.rfq-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 44, 80, 0.4);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.drawer-overlay.active,
.rfq-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.rfq-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  width: 100%;
  max-width: 520px;
  height: 100%;
  background: #ffffff;
  border-left: 1px solid var(--border-card);
  box-shadow: -15px 0 50px rgba(0, 44, 80, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.rfq-drawer.active {
  right: 0;
}

.drawer-header {
  padding: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
}

.drawer-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.25rem;
  color: var(--navy-deep);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}

.drawer-close-btn:hover {
  color: var(--navy-deep);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
}

.drawer-item-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1.15rem;
  display: flex;
  gap: 1rem;
}

.drawer-item-info {
  flex: 1;
}

.drawer-item-code {
  font-family: monospace;
  font-weight: 800;
  color: var(--accent-cyan);
  font-size: 0.82rem;
}

.drawer-item-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0.25rem 0 0.85rem 0;
  line-height: 1.35;
}

.drawer-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--navy-deep);
  width: 30px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.qty-input {
  width: 48px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--navy-deep);
  text-align: center;
  border-radius: 4px;
  padding: 4px 0;
  font-weight: 600;
}

.drawer-item-remove {
  background: transparent;
  border: none;
  color: var(--accent-rose);
  cursor: pointer;
  font-size: 1rem;
}

.drawer-footer {
  padding: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  background: #f8fafc;
}

.drawer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.btn-clear-cart {
  background: transparent;
  border: none;
  color: var(--accent-rose);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 44, 80, 0.45);
  backdrop-filter: blur(8px);
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

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

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 70px rgba(0, 44, 80, 0.18);
  z-index: 1011;
  padding: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal.active {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  color: var(--navy-deep);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 9999;
}

.toast {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: var(--navy-deep);
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 44, 80, 0.12);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.94rem;
  font-weight: 700;
  animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE STYLES
/* ==========================================================================
   PWA & MOBILE APP SHELL ARCHITECTURE
   ========================================================================== */

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(64px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(2, 132, 199, 0.15);
  box-shadow: 0 -4px 25px rgba(0, 44, 80, 0.08);
  z-index: 9990;
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  cursor: pointer;
  background: transparent;
  border: none;
}

.mobile-bottom-item i {
  font-size: 1.25rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-bottom-item:active {
  transform: scale(0.92);
}

.mobile-bottom-item.active {
  color: var(--accent-cyan);
}

.mobile-bottom-item.active i {
  transform: translateY(-2px);
  color: var(--accent-cyan);
}

.mobile-bottom-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-cyan-light));
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
}

.mobile-bottom-item.emergency-tab {
  color: #d97706;
}

.mobile-bottom-item.emergency-tab i {
  color: #f59e0b;
}

/* Badge for Cart on Mobile Bottom Bar */
.mobile-nav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.35);
  transform: scale(1);
  transition: transform 0.2s ease;
}

.mobile-nav-badge:empty,
.mobile-nav-badge[data-count="0"] {
  display: none;
}

/* PWA Custom In-App Install Prompt Banner */
.pwa-install-banner {
  position: fixed;
  bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8fd 100%);
  border: 1px solid rgba(2, 132, 199, 0.28);
  border-radius: 18px;
  padding: 0.85rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  box-shadow: 0 16px 40px rgba(0, 44, 80, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  z-index: 9995;
  animation: slideUpBanner 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pwa-banner-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.pwa-banner-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
  flex-shrink: 0;
  object-fit: cover;
}

.pwa-banner-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pwa-banner-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pwa-banner-subtitle {
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-pwa-install {
  background: linear-gradient(135deg, var(--accent-cyan), var(--navy-dark));
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-pwa-install:hover,
.btn-pwa-install:active {
  transform: scale(1.04);
}

.btn-pwa-dismiss {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  padding: 0.4rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* iOS Safari "Add to Home Screen" Instruction Modal */
.ios-install-sheet {
  position: fixed;
  bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  left: 16px;
  right: 16px;
  max-width: 440px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.3);
  border-radius: 18px;
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 20px 50px rgba(0, 44, 80, 0.2);
  z-index: 9996;
  text-align: center;
  animation: slideUpBanner 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ios-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ios-sheet-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ios-sheet-desc {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
  text-align: left;
}

.ios-sheet-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--bg-surface-soft);
  padding: 0.75rem;
  border-radius: 12px;
  text-align: left;
  font-size: 0.82rem;
  color: var(--navy-deep);
}

.ios-sheet-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ios-sheet-step i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Network Online/Offline Floating Status Pill */
.network-status-pill {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(10, 61, 99, 0.95);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.network-status-pill.show {
  transform: translateX(-50%) translateY(0);
}

.network-status-pill.offline {
  background: rgba(225, 29, 72, 0.95);
}

.network-status-pill.online {
  background: rgba(16, 185, 129, 0.95);
}

/* ==========================================================================
   RESPONSIVE & MOBILE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .catalog-layout,
  .coatings-overview-grid {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
    max-height: 400px;
  }

  .maintenance-category-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .rfq-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .mcat-banner-overlay {
    padding: 2rem;
  }
}

@media (max-width: 768px) {

  /* Safe Area Bottom Padding for Native-like App Shell */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Show Bottom App Bar */
  .mobile-bottom-nav {
    display: flex;
  }

  .hide-mobile {
    display: none !important;
  }

  /* Header & Navigation Adjustments */
  .navbar {
    margin: 6px 10px;
    border-radius: var(--radius-md);
    padding: 0.6rem 0;
  }

  .navbar-inner {
    padding: 0 1rem;
  }

  .brand-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .brand-logo .logo-title {
    font-size: 1.15rem;
  }

  .brand-logo .logo-subtitle {
    font-size: 0.55rem;
  }

  .menu-toggle,
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-surface-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--navy-deep);
    font-size: 1.2rem;
    cursor: pointer;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  #btn-header-quote {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background: #ffffff;
    border-bottom: 1px solid var(--border-card);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 44, 80, 0.18);
    z-index: 9991;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-surface-soft);
  }

  /* Hero Section Mobile Polish */
  .hero-section {
    padding: 3rem 0 3.5rem 0;
  }

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

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-search-wrapper {
    margin-bottom: 1.5rem;
  }

  .search-input-box {
    padding: 0.4rem;
    flex-direction: row;
    gap: 0.4rem;
  }

  .search-input-box input {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .search-input-box .btn {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  .hero-quick-tags {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.4rem;
  }

  .hero-quick-tags::-webkit-scrollbar {
    display: none;
  }

  .tag-btn {
    flex: 0 0 auto;
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Horizontal Swipeable Maintenance Categories Carousel on Mobile */
  .maintenance-category-nav {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 0.65rem !important;
    padding: 0.5rem 0.25rem 1rem 0.25rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .maintenance-category-nav::-webkit-scrollbar {
    display: none;
  }

  .mcat-nav-btn {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
    white-space: nowrap !important;
    padding: 0.65rem 1.1rem !important;
    font-size: 0.85rem !important;
    border-radius: var(--radius-full) !important;
  }

  .mcat-showcase-banner {
    height: auto;
    min-height: 280px;
  }

  .mcat-banner-overlay {
    position: static;
    background: #ffffff;
    padding: 1.35rem;
  }

  .mcat-banner-bg {
    height: 160px;
  }

  .mcat-items-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mcat-item-card {
    padding: 1rem;
  }

  /* Coatings Mobile Swiper */
  .coatings-brand-selector {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .coatings-brand-selector::-webkit-scrollbar {
    display: none;
  }

  .brand-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  .paint-specs-grid,
  .coating-layers-stepper {
    grid-template-columns: 1fr;
  }

  /* Quotation Basket Drawer as Mobile Bottom-Sheet */
  .rfq-drawer {
    width: 100% !important;
    max-width: 100% !important;
    bottom: 0;
    top: auto;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -10px 40px rgba(0, 44, 80, 0.25);
  }

  .rfq-drawer.active {
    transform: translateY(0);
  }

  /* RFQ Form & Grids */
  .form-row,
  .rfq-form-actions {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Floating WhatsApp / Action Button Repositioned above Bottom Nav */
  .floating-actions {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    right: 1rem;
    gap: 0.65rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .toast-container {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    left: 1rem;
    right: 1rem;
  }

  .toast {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.15rem;
  }

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

  .section-header {
    margin-bottom: 2.5rem;
  }

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

/* ==========================================================================
   RTL SUPPORT (ARABIC)
   ========================================================================== */

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .topbar-inner,
[dir="rtl"] .navbar-inner,
[dir="rtl"] .footer-inner,
[dir="rtl"] .form-row,
[dir="rtl"] .rfq-grid,
[dir="rtl"] .about-grid,
[dir="rtl"] .contact-grid {
  direction: rtl;
}

[dir="rtl"] .topbar-left,
[dir="rtl"] .topbar-right,
[dir="rtl"] .nav-actions,
[dir="rtl"] .brand-logo,
[dir="rtl"] .certifications-row,
[dir="rtl"] .logistics-quick-stats {
  direction: rtl;
}

[dir="rtl"] .lang-dropdown-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section-header {
  text-align: center;
}

[dir="rtl"] .mcat-item-card {
  direction: rtl;
}

[dir="rtl"] .mcat-item-left {
  flex-direction: row;
}

[dir="rtl"] .feature-card,
[dir="rtl"] .contact-info-card,
[dir="rtl"] .benefit-item {
  direction: rtl;
}

[dir="rtl"] .feature-card:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .search-box-inline i {
  margin-right: 0;
  margin-left: 0.85rem;
}

[dir="rtl"] .pwa-banner-left {
  direction: rtl;
}

[dir="rtl"] .pwa-install-banner {
  direction: rtl;
}

[dir="rtl"] .ios-sheet-steps {
  direction: rtl;
  text-align: right;
}