/* ==========================================================================
   SYNERGYMED™ - Premium Medical Device Web Application Design System
   ========================================================================== */

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

:root {
  --primary-dark: #0b3b60;
  --primary-blue: #0047ab;
  --primary-navy: #003f9e;
  --accent-cyan: #00a8cc;
  --accent-hover: #008dae;
  --text-main: #2c3e50;
  --text-dark: #1e242e;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(11, 59, 96, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 59, 96, 0.1);
  --shadow-lg: 0 10px 30px rgba(11, 59, 96, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition-fast: all 0.25s ease-in-out;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-fast);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.site-logo-img {
  height: 38px;
  max-height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

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

/* Navigation Links */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 2px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--primary-blue);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-blue);
  border-radius: 2px;
}

/* Header Right Actions */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-lang-btn {
  background: transparent;
  border: none;
  font-size: 1.15rem;
  color: #334155;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-lang-btn:hover {
  color: var(--primary-blue);
  transform: scale(1.1);
}

.nav-contact-pill {
  border: 1.5px solid #64748b;
  background: transparent;
  color: #1e293b;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-contact-pill:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 71, 171, 0.25);
  transform: translateY(-1px);
}

/* Mobile Hamburger Toggle */
.mobile-menu-btn {
  display: none;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: #e2e8f0;
}

/* ==========================================================================
   PAGE VIEWS & MAIN CONTAINER
   ========================================================================== */
.main-content {
  min-height: 100vh;
  min-height: 100dvh;
}

.page-view {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.page-view.active {
  display: block;
}

/* Other Pages top spacing for fixed navbar */
#page-about,
#page-solutions,
#page-news,
#page-careers,
#page-contact {
  padding-top: 75px;
  padding-bottom: 50px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 36px 30px 36px;
}

/* ==========================================================================
   HOME PAGE HERO SECTION (Reference Design)
   ========================================================================== */
#page-home {
  width: 100%;
}

#page-home .hero-section {
  position: relative;
  margin: 0;
  padding: 95px 0 45px 0;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  background-color: #ffffff;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.75) 30%, rgba(255, 255, 255, 0.35) 52%, rgba(255, 255, 255, 0) 72%),
    url('assets/hero_bg_surgical.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Content Box */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-wrapper {
  max-width: 580px;
}

/* Hero Typography */
.hero-main-title {
  margin: 0 0 24px 0;
  line-height: 1;
}

.title-line {
  display: block;
}

.title-advance {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.8vw, 5.5rem);
  font-weight: 800;
  color: #1e242e;
  line-height: 0.92;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.title-solutions {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.8vw, 5.5rem);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 0.92;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.title-healthcare {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  color: #334155;
  line-height: 1.15;
  margin-top: 8px;
  letter-spacing: 0;
}

.hero-description {
  font-size: clamp(0.96rem, 1.12vw, 1.06rem);
  color: #334155;
  line-height: 1.68;
  font-weight: 400;
  margin-bottom: 34px;
  max-width: 470px;
}

.hero-description strong {
  color: #0f172a;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hero Pill Button */
.btn-hero-catalog {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 15px 36px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 63, 158, 0.28);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.btn-hero-catalog span {
  display: inline-block;
}

.btn-hero-catalog i {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.btn-hero-catalog:hover {
  background: #003080;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 63, 158, 0.38);
}

.btn-hero-catalog:hover i {
  transform: translateX(5px);
}

.btn-hero-catalog:active {
  transform: translateY(0);
}

/* General Buttons for other pages */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(11, 59, 96, 0.25);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 59, 96, 0.35);
  background: linear-gradient(135deg, var(--primary-blue) 0%, #154580 100%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
}

/* Home Business Unit Grid Cards */
.units-overview-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.unit-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.unit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.unit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition-fast);
}

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

.unit-card:hover::before {
  opacity: 1;
}

.unit-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-align: center;
}

.unit-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}

/* ==========================================================================
   ABOUT US PAGE (Matches Screenshot 2)
   ========================================================================== */
.about-section {
  padding: 10px 0 60px 0;
}

/* 5-Image Gallery Strip */
.gallery-carousel-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.gallery-item {
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  background-color: #0b1a30;
  border: 1px solid #e2e8f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  background: linear-gradient(0deg, rgba(11,59,96,0.92) 0%, transparent 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: center;
}

/* About Header */
.about-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 35px auto;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #eff6ff;
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid #bfdbfe;
}

.about-main-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-main-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT VISION & MISSION (Matches Slide 2)
   ========================================================================== */
.about-vm-section {
  margin-bottom: 45px;
}

.about-vm-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: stretch;
}

.vm-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 4px 20px rgba(11, 59, 96, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(11, 59, 96, 0.12);
  border-color: #cbd5e1;
}

.vm-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
}

.vm-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin: 0;
}

.vm-mission-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.vm-mission-points li {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.6;
  padding-left: 4px;
}


/* ==========================================================================
   ABOUT OUR VALUE SECTION (Matches Slide 1)
   ========================================================================== */
.about-values-section {
  margin-bottom: 45px;
}

.values-banner-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(0, 168, 204, 0.2) 0%, transparent 55%),
              radial-gradient(circle at 15% 85%, rgba(30, 86, 160, 0.28) 0%, transparent 50%),
              linear-gradient(135deg, #071e3d 0%, #0c345e 55%, #051830 100%);
  box-shadow: 0 20px 45px rgba(11, 59, 96, 0.22), 0 0 0 1px rgba(0, 168, 204, 0.25);
  color: #ffffff;
  padding: 38px 42px;
}

.values-banner-header {
  margin-bottom: 24px;
  text-align: left;
}

.values-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.values-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.value-item-row:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(4px);
}

.value-body {
  font-size: 0.94rem;
  line-height: 1.55;
  color: #e2e8f0;
}

.value-name {
  font-weight: 800;
  color: #ffffff;
  margin-right: 6px;
}

.value-desc {
  color: #cbd5e1;
}

/* 4 Quick Highlights Cards */
.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(11, 59, 96, 0.04);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition-fast);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #bfdbfe;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px auto;
}

.highlight-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
  text-align: center;
}

.highlight-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* Two-Column Story Narrative */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

.about-story-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: 0 2px 8px rgba(11, 59, 96, 0.04);
}

.story-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-card-title i {
  color: var(--primary-blue);
}

.story-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 14px;
}

.story-card-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.about-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-item i {
  color: #16a34a;
}

.about-units-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.unit-pill-btn {
  background-color: #f8fafc;
  color: var(--primary-dark);
  border: 1px solid #cbd5e1;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.unit-pill-btn i {
  color: var(--primary-blue);
}

.unit-pill-btn:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(30, 86, 160, 0.25);
}

.unit-pill-btn:hover i {
  color: #ffffff;
}

/* ==========================================================================
   PRODUCT CATALOG VIEW ("nanti banyak")
   ========================================================================== */
.product-catalog-section {
  padding: 20px 0 60px 0;
}

.catalog-header {
  text-align: center;
  margin-bottom: 28px;
}

.catalog-header .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.catalog-header .section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  width: 100%;
}

/* Filter Tabs */
.filter-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.filter-btn {
  background-color: #f1f5f9;
  color: var(--text-main);
  border: 1px solid #cbd5e1;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 3px 10px rgba(30, 86, 160, 0.3);
}

/* Catalog Search Bar */
.search-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 12px 20px 12px 44px;
  border: 1px solid #cbd5e1;
  border-radius: 25px;
  font-size: 0.92rem;
  outline: none;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-box input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.15);
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Extensibility Info Banner */
.extensibility-banner {
  background: #f0f9ff;
  border-left: 4px solid var(--accent-cyan);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #0369a1;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.product-card-img {
  height: 220px;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
}

.product-card-img img {
  max-width: 86%;
  max-height: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

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

.product-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 59, 96, 0.88);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

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

.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.product-subtitle {
  font-size: 0.82rem;
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-specs-list {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.product-specs-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.product-card-footer {
  display: flex;
  gap: 10px;
}

.btn-card-inquire {
  flex: 1;
  background-color: var(--primary-blue);
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.btn-card-inquire:hover {
  background-color: var(--primary-dark);
}

.btn-card-details {
  background-color: #f1f5f9;
  color: var(--primary-dark);
  border: 1px solid #cbd5e1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-card-details:hover {
  background-color: #e2e8f0;
}

/* ==========================================================================
   NEWS & EVENT VIEW
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.news-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-body {
  padding: 24px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 8px;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* ==========================================================================
   E-BROCHURE VIEW
   ========================================================================== */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.brochure-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.brochure-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brochure-icon {
  font-size: 3rem;
  color: #e11d48;
  margin-bottom: 15px;
}

/* ==========================================================================
   CONTACT US VIEW
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 35px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 86, 160, 0.15);
}

/* ==========================================================================
   FOOTER & CONNECT CHANNELS
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #071526 0%, #030a14 100%);
  color: #e2e8f0;
  border-top: 1px solid rgba(0, 168, 204, 0.25);
  padding: 55px 0 25px 0;
  margin-top: 0;
}

.footer-main-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1fr 1.45fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col-brand {
  padding-right: 10px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-brand-logo-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.98);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.footer-brand-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

.footer-brand-desc strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-top: 6px;
  font-style: normal;
}

.footer-brand-address i {
  color: #00a8cc;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px 0;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2.5px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav-list li a {
  color: #94a3b8;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-list li a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-nav-list li a i {
  font-size: 0.75rem;
  color: #00a8cc;
}

.footer-connect-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  margin: 0 0 14px 0;
  line-height: 1.45;
}

.footer-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-channel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-channel-card .channel-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.25s ease;
}

.footer-channel-card .channel-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.footer-channel-card .channel-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #94a3b8;
}

.footer-channel-card .channel-handle {
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Individual Channel Hover States */
.footer-channel-card.channel-ig:hover {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.45);
  transform: translateY(-2px);
}
.footer-channel-card.channel-ig:hover .channel-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(220, 39, 67, 0.4);
}

.footer-channel-card.channel-linkedin:hover {
  background: rgba(10, 102, 194, 0.14);
  border-color: rgba(10, 102, 194, 0.45);
  transform: translateY(-2px);
}
.footer-channel-card.channel-linkedin:hover .channel-icon {
  background: #0a66c2;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(10, 102, 194, 0.4);
}

.footer-channel-card.channel-email:hover {
  background: rgba(0, 168, 204, 0.14);
  border-color: rgba(0, 168, 204, 0.45);
  transform: translateY(-2px);
}
.footer-channel-card.channel-email:hover .channel-icon {
  background: #00a8cc;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 168, 204, 0.4);
}

.footer-channel-card.channel-phone:hover {
  background: rgba(30, 86, 160, 0.18);
  border-color: rgba(0, 225, 255, 0.45);
  transform: translateY(-2px);
}
.footer-channel-card.channel-phone:hover .channel-icon {
  background: linear-gradient(135deg, #1e56a0, #00a8cc);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 168, 204, 0.4);
}

/* Footer Bottom Strip */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-copy strong {
  color: #94a3b8;
}

.footer-bottom-tagline {
  color: #00a8cc;
  font-weight: 600;
  padding-right: 220px;
}

/* Floating Actions (Bottom Right) */
.floating-widgets {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-float-wa {
  width: 44px;
  height: 44px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.btn-float-wa:hover {
  transform: translateY(-3px);
  background-color: #1da851;
}

.btn-float-top {
  width: 44px;
  height: 44px;
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.btn-float-top:hover {
  transform: translateY(-3px);
  background-color: #1d4ed8;
}

.btn-float-chat {
  height: 44px;
  padding: 0 18px;
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.btn-float-chat:hover {
  transform: translateY(-3px);
  background-color: #1d4ed8;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 26, 48, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease-out;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ==========================================================================
   CAREERS SECTION (Join Our Team)
   ========================================================================== */
.careers-hero {
  background: linear-gradient(135deg, #0b3b60 0%, #1e56a0 100%);
  border-radius: 18px;
  padding: 40px 36px;
  color: #ffffff;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(11, 59, 96, 0.12);
}



.careers-hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #ffffff;
}

.careers-hero-sub {
  font-size: 0.98rem;
  color: #e2e8f0;
  max-width: 720px;
  line-height: 1.65;
  margin: 0;
}

.careers-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.careers-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career-filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.career-filter-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: #f8fafc;
}

.career-filter-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 86, 160, 0.25);
}

.job-count-badge {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 700;
}

.career-filter-btn.active .job-count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.careers-open-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.careers-open-label span {
  color: var(--primary-blue);
  font-weight: 800;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(11, 59, 96, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 59, 96, 0.08);
  border-color: #cbd5e1;
}



.job-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 6px 0;
}

.job-location {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px 0;
}

.job-location i {
  color: var(--primary-blue);
  font-size: 0.85rem;
}

.job-details-block {
  margin-bottom: 16px;
}

.job-section-heading {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-dark);
  margin: 0 0 8px 0;
}

.job-points {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-points li {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
}

.job-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), #154580);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(30, 86, 160, 0.2);
}

.btn-apply:hover {
  background: linear-gradient(135deg, #154580, #0b3b60);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(30, 86, 160, 0.3);
}

.btn-apply-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: none;
}

.btn-apply-outline:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.jobs-empty {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  color: #64748b;
  margin-bottom: 40px;
}

.jobs-empty i {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 12px;
  display: block;
}

.careers-cta-banner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.careers-cta-text {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
  margin: 0;
  max-width: 650px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile & Tablet Optimization)
   ========================================================================== */

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile, Tablet & Desktop Optimization)
   ========================================================================== */

/* Laptop & Small Desktop (993px to 1200px) */
@media (max-width: 1200px) {
  .section-container {
    padding: 16px 20px 30px 20px;
  }

  .hero-slider-wrapper {
    max-width: 420px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 28px;
  }

  .footer-bottom-tagline {
    padding-right: 140px;
  }
}

/* Tablet Devices (769px to 992px) */
@media (max-width: 992px) {
  .section-container {
    padding: 14px 18px 28px 18px;
  }

  /* Hero Tablet */
  .hero-grid {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .hero-slider-wrapper {
    max-width: 440px;
    margin: 0 auto;
  }

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

  .hero-title {
    font-size: 2.3rem;
  }

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

  /* 9 Business Units Tablet */
  .unit-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* About Page Tablet */
  .gallery-carousel-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .about-vm-cards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .values-banner-card {
    padding: 30px 24px;
  }

  .about-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Solutions / Product Catalog Tablet */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* News & Events Tablet */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Careers Tablet */
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Contact Tablet */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Footer Tablet */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-bottom-tagline {
    padding-right: 0;
  }
}

/* Mobile Devices (Smartphones <= 768px) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    overflow-x: hidden;
  }

  /* Header & Navigation Mobile */
  .site-header {
    padding: 4px 0;
  }

  .header-container {
    padding: 8px 16px;
    flex-wrap: wrap;
    position: relative;
  }

  .site-logo-img {
    height: 30px;
    max-height: 32px;
  }

  .header-right-actions {
    gap: 10px;
  }

  .nav-contact-pill {
    padding: 5px 14px;
    font-size: 0.72rem;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    border-radius: 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-fast);
  }

  .mobile-menu-btn:active {
    background: #e2e8f0;
    transform: scale(0.95);
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 12px 35px rgba(11, 59, 96, 0.14);
    animation: fadeIn 0.22s ease-out;
  }

  .main-nav.mobile-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    justify-content: flex-start;
    min-height: 48px;
  }

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

  .nav-link.active {
    background-color: #ebf5ff;
    color: var(--primary-blue);
    font-weight: 700;
  }

  .section-container {
    padding: 14px 16px 30px 16px;
  }

  /* Other Pages top spacing for fixed navbar on Mobile */
  /* Other Pages top spacing for fixed navbar on Mobile */
  #page-about,
  #page-solutions,
  #page-news,
  #page-careers,
  #page-contact {
    padding-top: 65px;
    padding-bottom: 35px;
  }

  /* Hero Mobile */
  #page-home {
    width: 100%;
  }

  #page-home .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
    margin: 0;
    padding: 75px 16px 35px 16px;
    background-image: 
      linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.82) 60%, rgba(255, 255, 255, 0.55) 100%),
      url('assets/hero_bg_surgical.jpg');
    background-position: center right;
    background-size: cover;
  }

  .hero-content-wrapper {
    max-width: 100%;
    text-align: left;
  }

  .title-advance, .title-solutions {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .title-healthcare {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    margin-top: 4px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.62;
    margin: 20px 0 28px 0;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-hero-catalog {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.84rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.94rem;
    min-height: 48px;
    border-radius: 10px;
  }

  /* 9 Business Units Mobile */
  .units-overview-section {
    padding: 35px 0;
  }

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

  .section-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .unit-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .unit-card {
    padding: 18px 16px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .unit-card-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
  }

  .unit-card-desc {
    font-size: 0.86rem;
    line-height: 1.5;
    text-align: center;
    width: 100%;
  }

  /* About Page Mobile */
  .about-section {
    padding: 10px 0 35px 0;
  }

  .about-main-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  .about-main-subtitle {
    font-size: 0.88rem;
  }

  .about-vm-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vm-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .vm-heading {
    font-size: 1.2rem;
  }

  .values-banner-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .values-title {
    font-size: 1.6rem;
  }

  .value-item-row {
    padding: 10px 12px;
    gap: 10px;
  }

  .value-body {
    font-size: 0.88rem;
  }

  .about-highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .highlight-card {
    padding: 18px 16px;
  }

  .about-story-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .story-card-title {
    font-size: 1.18rem;
  }

  .story-card-text {
    font-size: 0.88rem;
  }

  .unit-pill-btn {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  /* Solutions / Product Catalog Mobile (Horizontal Swipe Pills) */
  .product-catalog-section {
    padding: 15px 0 40px 0;
  }

  .catalog-header .section-title {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  .catalog-controls {
    gap: 12px;
    margin-bottom: 22px;
    width: 100%;
  }

  .filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 8px;
    padding: 4px 4px 10px 4px;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 8px 16px;
    min-height: 40px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .search-box {
    width: 100%;
    max-width: 100%;
  }

  .search-box input {
    padding: 12px 16px 12px 42px;
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    border-radius: 25px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card-img {
    height: 195px;
  }

  .product-card-body {
    padding: 16px;
  }

  .product-title {
    font-size: 1.15rem;
  }

  .product-card-footer {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .btn-card-inquire {
    flex: 1;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.86rem;
    justify-content: center;
    border-radius: 8px;
  }

  .btn-card-details {
    min-height: 44px;
    width: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  /* News & Events Mobile */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card {
    border-radius: 12px;
  }

  .news-card-img {
    height: 230px;
    max-height: 230px;
  }

  .news-card-img img {
    height: 100%;
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    object-position: center center;
  }

  .news-card-body {
    padding: 16px 14px;
  }

  .news-meta-row {
    gap: 6px 10px;
    margin-bottom: 10px;
  }

  .news-tag {
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  .news-date {
    font-size: 0.76rem;
  }

  .news-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .news-content p {
    font-size: 0.88rem;
    line-height: 1.62;
    margin-bottom: 12px;
  }

  /* Careers Mobile */
  .careers-hero {
    padding: 24px 16px;
    border-radius: 14px;
    margin-bottom: 20px;
    text-align: center;
  }

  .careers-hero-title {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
  }

  .careers-hero-sub {
    font-size: 0.88rem;
  }

  .careers-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }

  .careers-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 8px;
    padding: 2px 2px 8px 2px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .careers-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .career-filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 8px 16px;
    min-height: 38px;
    border-radius: 20px;
  }

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

  .job-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .job-title {
    font-size: 1.18rem;
  }

  .btn-apply {
    width: 100%;
    min-height: 46px;
    font-size: 0.94rem;
    justify-content: center;
    border-radius: 8px;
  }

  .careers-cta-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px 16px;
    gap: 14px;
    border-radius: 14px;
  }

  /* Contact Page Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form, .contact-info-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    padding: 12px 14px;
    border-radius: 8px;
  }

  .contact-form .btn-primary {
    width: 100%;
    min-height: 48px;
    font-size: 0.95rem;
    justify-content: center;
    border-radius: 8px;
  }

  /* Footer & Floating Actions Mobile */
  .site-footer {
    padding: 40px 0 20px 0;
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }

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

  .footer-bottom-tagline {
    padding-right: 0;
    font-size: 0.78rem;
  }

  .floating-widgets {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    right: 12px;
    gap: 8px;
    z-index: 999;
  }

  .btn-float-wa, .btn-float-top {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .btn-float-chat {
    height: 42px;
    padding: 0 14px;
    font-size: 0.82rem;
    gap: 6px;
  }

  /* Modals Mobile */
  .modal-overlay {
    padding: 12px;
  }

  .modal-card {
    max-width: 100%;
    width: 100%;
    padding: 22px 16px;
    max-height: 88vh;
    border-radius: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-card input,
  .modal-card select,
  .modal-card textarea {
    font-size: 16px !important;
  }

  .modal-form-row-2col {
    grid-template-columns: 1fr !important;
  }
}

/* Extra Small Phones & Foldables (<= 480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .header-container {
    padding: 6px 12px;
  }

  .site-logo-img {
    height: 26px;
    max-height: 28px;
  }

  .section-container {
    padding: 10px 12px 24px 12px;
  }

  .title-advance, .title-solutions {
    font-size: clamp(2.2rem, 11.5vw, 3rem);
  }

  .title-healthcare {
    font-size: clamp(1.7rem, 8.5vw, 2.2rem);
  }

  .btn-hero-catalog {
    font-size: 0.8rem;
    padding: 13px 18px;
  }

  /* About */
  .vm-card {
    padding: 16px 14px;
  }

  .value-item-row {
    padding: 10px 12px;
  }

  /* Catalog */
  .product-card-img {
    height: 180px;
  }

  /* Footer */
  .site-footer {
    padding: 35px 0 16px 0;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-col-title {
    font-size: 0.95rem;
  }

  .footer-channel-card {
    padding: 10px 12px;
  }

  .channel-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  /* Floating widgets on very small screens */
  .floating-widgets {
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    right: 10px;
    gap: 6px;
  }

  .btn-float-chat {
    display: inline-flex;
    height: 38px;
    padding: 0 10px;
    font-size: 0.76rem;
    gap: 4px;
  }

  /* Contact */
  .contact-form, .contact-info-card {
    padding: 18px 14px;
  }

  /* News */
  .news-card-img {
    height: 190px;
    max-height: 190px;
  }

  .news-card-body {
    padding: 14px 12px;
  }
}

