/*
Theme Name: Multi Medika Mandiri Theme
Theme URI: https://multimedikamandiri.co.id
Author: Antigravity AI & PT. Multi Medika Mandiri
Author URI: https://multimedikamandiri.co.id
Description: Luxury, Modern B2B Medical Website Theme for PT. Multi Medika Mandiri with Bauhaus 93 brand header, dynamic slider, authentic PDF product catalog, and RFQ form.
Version: 1.1.0
Text Domain: multimedika
*/

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

:root {
  --font-brand: "Bauhaus 93", "Trebuchet MS", "Arial Rounded MT Bold", sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --color-brand: #009fe3;
  --color-brand-dark: #0080b7;
  --color-brand-light: #eaf7fd;
  --color-brand-glow: rgba(0, 159, 227, 0.16);
  
  --color-navy: #091e36;
  --color-navy-dark: #051324;
  --color-navy-light: #16365c;
  
  --color-emerald: #0fa958;
  --color-emerald-light: #eafaf1;
  
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  
  --color-bg-light: #f8fafc;
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0;
  
  --shadow-subtle: 0 4px 20px -2px rgba(9, 30, 54, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(9, 30, 54, 0.07);
  --shadow-hover: 0 20px 40px -8px rgba(0, 159, 227, 0.16);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

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

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

a:hover {
  color: var(--color-brand-dark);
}

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

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

/* ===================================================
   TOP SLIM UTILITY BAR
   =================================================== */
.top-utility-bar {
  background: var(--color-navy-dark);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  font-weight: 500;
}

.top-bar-item i {
  color: var(--color-brand);
  font-size: 0.85rem;
}

.insta-link i {
  color: #e1306c !important;
}

.badge-kemenkes {
  background: rgba(15, 169, 88, 0.18);
  color: #34d399;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  border: 1px solid rgba(15, 169, 88, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===================================================
   SLEEK LUXURY HEADER
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 14px rgba(9, 30, 54, 0.04);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  width: 100%;
}

.site-header .container {
  max-width: 1440px;
  padding: 0 24px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  gap: 16px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-branding:hover .site-logo {
  transform: scale(1.04);
}

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

.brand-company-name {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  color: var(--color-brand) !important;
  line-height: 1.1;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 159, 227, 0.12);
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

.mobile-nav-bottom {
  display: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  display: inline-block;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links a i {
  display: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-brand);
  background: var(--color-brand-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header-rfq {
  padding: 8px 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-rfq-submit {
  width: 100%;
  padding: 14px 20px;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  box-shadow: 0 4px 18px rgba(0, 159, 227, 0.35);
  cursor: pointer;
}

.btn-brand {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 159, 227, 0.28);
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 159, 227, 0.38);
}

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

.btn-outline:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-light);
}

.btn-white {
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: var(--shadow-subtle);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  color: var(--color-brand);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-navy);
  cursor: pointer;
  padding: 6px;
}

/* ===================================================
   HERO INTERACTIVE SLIDER
   =================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: var(--color-navy-dark);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 1s ease;
  transform: scale(1.03);
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.05);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 19, 36, 0.92) 0%, rgba(9, 30, 54, 0.65) 55%, rgba(5, 19, 36, 0.3) 100%);
}

.slide-content-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-content {
  max-width: 700px;
  color: #ffffff;
  padding: 40px 0;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 159, 227, 0.2);
  border: 1px solid rgba(0, 159, 227, 0.4);
  color: #38bdf8;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.slide-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.slide-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 32px;
}

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

/* Slider Controls */
.slider-arrows {
  position: absolute;
  bottom: 36px;
  right: 5%;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.slider-arrow-btn:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  transform: scale(1.06);
}

.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
}

.slider-dot.active {
  width: 28px;
  background: var(--color-brand);
  box-shadow: 0 0 10px var(--color-brand);
}

/* ===================================================
   TRUST STATS BAR
   =================================================== */
.trust-bar-section {
  background: #ffffff;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 5;
  margin-top: -30px;
  border-radius: var(--radius-lg);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--color-border);
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 8px 16px;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-brand);
  font-family: var(--font-brand);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
}

.stat-sub {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

/* Section Common */
.section {
  padding: 80px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-brand);
  background: var(--color-brand-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

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

/* ===================================================
   AUTHENTIC PRODUCT CARDS (Extracted from PDF)
   =================================================== */
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-item-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 159, 227, 0.3);
}

.product-img-wrap {
  width: 100%;
  height: 250px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  box-shadow: inset 0 -4px 12px rgba(0, 0, 0, 0.02);
}

.product-img-wrap::before {
  content: 'HD Studio';
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(9, 30, 54, 0.78);
  color: #38bdf8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
  border: 1px solid rgba(56, 189, 248, 0.3);
  text-transform: uppercase;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
}

.product-item-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

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

.product-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product-brand-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-brand);
  background: var(--color-brand-light);
  padding: 3px 8px;
  border-radius: 4px;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rfq-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--color-brand);
  color: #ffffff !important;
  transition: var(--transition);
}

.rfq-btn-sm:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
}

/* ===================================================
   PDF CATALOGUE SHOWCASE & DOWNLOAD
   =================================================== */
.catalogue-pdf-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.catalogue-pdf-banner h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.catalogue-pdf-banner p {
  color: #cbd5e1;
  font-size: 0.95rem;
  max-width: 650px;
}

/* ===================================================
   INSTAGRAM FEED SHOWCASE
   =================================================== */
.instagram-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid var(--color-border);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.insta-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: #ffffff;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: block;
}

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

.insta-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

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

.insta-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 30, 54, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.insta-card:hover .insta-hover-overlay {
  opacity: 1;
}

.insta-caption {
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--color-navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===================================================
   SMASH BALLOON LIVE INSTAGRAM FEED OVERRIDE
   =================================================== */
.live-instagram-feed-wrap #sb_instagram {
  padding: 0 !important;
  width: 100% !important;
  margin: 36px 0 0 0 !important;
}

.live-instagram-feed-wrap #sb_instagram #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  padding: 0 !important;
}

.live-instagram-feed-wrap #sb_instagram .sbi_item {
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-subtle) !important;
  background: #ffffff !important;
  border: 1px solid var(--color-border) !important;
  transition: var(--transition) !important;
  aspect-ratio: 1 / 1 !important;
}

.live-instagram-feed-wrap #sb_instagram .sbi_item:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-hover) !important;
}

.live-instagram-feed-wrap #sb_instagram .sbi_photo_wrap {
  width: 100% !important;
  height: 100% !important;
}

.live-instagram-feed-wrap #sb_instagram .sbi_photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 900px) {
  .live-instagram-feed-wrap #sb_instagram #sbi_images {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 480px) {
  .live-instagram-feed-wrap #sb_instagram #sbi_images {
    grid-template-columns: 1fr !important;
  }
}

/* ===================================================
   GOOGLE MAPS & RFQ SECTION
   =================================================== */
.contact-rfq-section {
  background: #ffffff;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

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

.rfq-card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.rfq-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-main);
  background: #f8fafc;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-brand);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--color-brand-glow);
}

.contact-info-card {
  background: var(--color-navy-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 159, 227, 0.2);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.info-detail h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.info-detail p, .info-detail a {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.info-detail a:hover {
  color: var(--color-brand);
}

.map-embed-wrapper {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================================
   FLOATING CONSULTATION BAR
   =================================================== */
.floating-cta-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #ffffff !important;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.floating-call-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.floating-call-btn:hover {
  background: var(--color-brand);
  transform: translateY(-2px);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: linear-gradient(180deg, #07192e 0%, #040e1a 100%);
  color: #94a3b8;
  padding: 65px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #009fe3, #38bdf8, #009fe3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr 1.35fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-brand .brand-company-name {
  font-size: 1.38rem;
  color: #009fe3 !important;
  font-weight: 900;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 18px 0;
  color: #94a3b8;
}

.footer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.trust-chip i {
  color: #38bdf8;
}

.footer-brand-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-footer-insta {
  background: rgba(225, 48, 108, 0.12);
  color: #f472b6 !important;
  border: 1px solid rgba(225, 48, 108, 0.35);
}

.btn-footer-insta:hover {
  background: #e1306c;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.35);
}

.btn-footer-map {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.btn-footer-map:hover {
  background: #009fe3;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 159, 227, 0.35);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: #009fe3;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.87rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.75rem;
  color: #009fe3;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  transform: translateX(3px);
  color: #38bdf8;
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #94a3b8;
}

.footer-contact-item .f-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #38bdf8;
  margin-top: 2px;
}

.footer-contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.86rem;
  margin-bottom: 2px;
}

.footer-highlight-link {
  color: #38bdf8 !important;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-highlight-link:hover {
  color: #7dd3fc !important;
  text-decoration: underline;
}

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

.footer-compliance-text {
  color: #64748b;
  font-size: 0.78rem;
  margin-top: 4px;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.82rem;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.back-to-top-btn:hover {
  color: #ffffff;
  border-color: #009fe3;
  background: rgba(0, 159, 227, 0.15);
  transform: translateY(-2px);
}

/* ===================================================
   LIGHTBOX MODAL FOR HD PRODUCT DETAIL
   =================================================== */
.medical-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 19, 36, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.medical-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.medical-lightbox-overlay.active .lightbox-container {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(9, 30, 54, 0.6);
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.lightbox-close-btn:hover {
  background: #ef4444;
  transform: rotate(90deg);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 480px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.lightbox-info-wrap {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.lightbox-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.lightbox-info-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===================================================
   FOOTER INSTAGRAM FEED THUMBNAILS (LUXURY DESIGN)
   =================================================== */
.footer-instagram-bar {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.footer-insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-insta-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-insta-badge-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.35);
}

.footer-insta-title {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.insta-handle-link {
  color: #38bdf8 !important;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.insta-handle-link:hover {
  text-decoration: underline;
  color: #7dd3fc !important;
}

.insta-verified-badge {
  color: #38bdf8;
  font-size: 0.95rem;
}

.footer-insta-subtitle {
  font-size: 0.84rem;
  color: #94a3b8;
  margin: 3px 0 0 0;
}

.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #e1306c, #fd1d1d);
  color: #ffffff !important;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.btn-insta-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.5);
  filter: brightness(1.08);
}

.footer-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.footer-insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px;
}

.footer-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-insta-item:hover img {
  transform: scale(1.12);
}

.footer-insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 21, 39, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(3px);
}

.footer-insta-overlay i {
  font-size: 1.5rem;
  color: #f472b6;
}

.footer-insta-overlay span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-insta-item:hover .footer-insta-overlay {
  opacity: 1;
}

/* Lightbox cursor pointer on product images */
.product-img-wrap {
  cursor: zoom-in;
}

.product-img-wrap::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0.85;
  transition: var(--transition);
}

.product-img-wrap:hover::after {
  background: var(--color-brand);
  color: #ffffff;
  transform: scale(1.1);
  opacity: 1;
}

/* ===================================================
   LAYOUT GRIDS (PAGE SPECIFIC & RESPONSIVE)
   =================================================== */
.legalitas-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.story-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.vision-card,
.mission-card {
  background: #ffffff;
  padding: 38px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 159, 227, 0.3);
}

.prinsipal-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}

/* Catalog Filter Bar */
.catalog-filter-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 76px;
  z-index: 99;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.catalog-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.cat-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #f8fafc;
  color: var(--color-navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.cat-filter-btn i {
  color: var(--color-brand);
  font-size: 0.9rem;
}

.cat-filter-btn:hover,
.cat-filter-btn:active {
  background: var(--color-brand);
  color: #ffffff !important;
  border-color: var(--color-brand);
  transform: translateY(-1px);
}

.cat-filter-btn:hover i,
.cat-filter-btn:active i {
  color: #ffffff;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS (DESKTOP, TABLET, MOBILE)
   =================================================== */
/* Medium Desktops & Laptops: 1041px to 1280px */
@media (min-width: 1041px) and (max-width: 1280px) {
  .site-header .container {
    padding: 0 16px;
  }
  .header-inner {
    gap: 10px;
    height: 70px;
  }
  .site-logo {
    height: 38px;
  }
  .brand-company-name {
    font-size: 1.12rem;
  }
  .brand-tagline {
    font-size: 0.56rem;
    letter-spacing: 0.4px;
  }
  .nav-links {
    gap: 1px;
  }
  .nav-links a {
    padding: 6px 8px;
    font-size: 0.82rem;
  }
  .btn-header-rfq {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1040px) {
  /* Top Utility Bar */
  .top-utility-bar {
    display: none;
  }

  /* Header & Mobile Navigation */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header-inner {
    height: 64px;
    gap: 8px;
    position: relative;
  }

  .site-branding {
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .site-logo {
    height: 38px;
    width: auto;
    flex-shrink: 0;
  }

  .brand-text-wrap {
    min-width: 0;
    overflow: hidden;
  }

  .brand-company-name {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    display: block;
  }

  .brand-tagline {
    font-size: 0.58rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    letter-spacing: 0.4px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  .btn-header-rfq {
    padding: 7px 10px;
    font-size: 0.82rem;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .btn-header-rfq span {
    display: none;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--color-navy);
    border: 1px solid #cbd5e1;
    font-size: 1.25rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
  }

  .mobile-menu-btn.active {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
  }

  /* Reliable Dropdown Drawer Mobile Menu */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 64px);
    padding: 16px 20px 40px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    z-index: 999999;
    border-top: 2px solid var(--color-brand);
  }

  .main-nav.is-open {
    display: flex !important;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    align-items: stretch;
  }

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

  .nav-links a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-navy);
    width: 100%;
    transition: var(--transition);
  }

  .nav-links a i {
    display: inline-block !important;
    width: 20px;
    text-align: center;
    color: var(--color-brand);
    font-size: 1.05rem;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: rgba(0, 159, 227, 0.08);
    color: var(--color-brand);
    border-color: rgba(0, 159, 227, 0.35);
    transform: translateX(4px);
  }

  .mobile-nav-bottom {
    display: block !important;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
  }

  .mobile-nav-motto {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    background: var(--color-brand-light);
    padding: 8px 12px;
    border-radius: 6px;
  }

  .mobile-nav-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25d366;
    color: #ffffff !important;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }

  /* Catalog Filter Bar on Mobile */
  .catalog-filter-bar {
    top: 68px;
    padding: 8px 0;
  }

  .catalog-filter-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .cat-filter-btn {
    flex-direction: column;
    padding: 8px 4px;
    font-size: 0.72rem;
    gap: 4px;
    text-align: center;
    border-radius: 6px;
  }

  .cat-filter-btn i {
    font-size: 0.95rem;
  }

  .cat-filter-btn span {
    font-size: 0.68rem;
    line-height: 1.2;
    white-space: normal;
  }

  /* Page Legalitas: Cart Legal Stacked Vertically */
  .legalitas-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
  }

  /* Tentang Kami: Image and Text Stacked Vertically */
  .story-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Tentang Kami: Visi Misi Stacked Vertically */
  .vision-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .vision-card,
  .mission-card {
    padding: 28px 22px;
  }

  /* Tentang Kami: Prinsipal Cards */
  .prinsipal-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* Floating WhatsApp Button on Mobile: ICON ONLY as requested */
  .floating-cta-bar {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .floating-wa-btn {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }

  .floating-wa-btn span {
    display: none !important;
  }

  .floating-call-btn {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  /* Hero Slider on Mobile */
  .hero-slider-section {
    height: 480px;
  }

  .slide-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .slide-desc {
    font-size: 0.92rem;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .slide-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .slide-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Trust Stats */
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 10px;
  }

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

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

  /* Product Cards on Mobile */
  .product-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-img-wrap {
    height: 230px;
  }

  /* Footer on Mobile */
  .site-footer {
    padding: 45px 0 24px 0;
  }

  .footer-instagram-bar {
    padding: 20px 16px;
    margin-bottom: 36px;
  }

  .footer-insta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-insta-follow {
    width: 100%;
    justify-content: center;
  }

  .footer-insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

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

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

  /* Lightbox Modal on Mobile */
  .lightbox-container {
    max-width: 95vw;
    margin: 10px;
  }

  .lightbox-info-wrap {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lightbox-info-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 60px;
    gap: 6px;
  }

  .site-logo {
    height: 34px;
  }

  .brand-company-name {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.52rem;
  }

  .btn-header-rfq {
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1.15rem;
  }

  .main-nav {
    max-height: calc(100vh - 60px);
    padding: 14px 14px 36px 14px;
  }

  .catalog-filter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .cat-filter-btn {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .prinsipal-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

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

@media (max-width: 360px) {
  .brand-company-name {
    font-size: 0.86rem;
  }

  .brand-tagline {
    display: none;
  }

  .btn-header-rfq {
    display: none;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}

/* ===================================================
   HOMEPAGE NEWS & REGULATIONS SECTION
   =================================================== */
.front-news-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

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

.front-post-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.front-post-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(0, 159, 227, 0.12);
  border-color: rgba(0, 159, 227, 0.35);
}

.front-post-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  background: #0f172a;
}

.front-post-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.front-post-card:hover .front-post-thumb-wrap img {
  transform: scale(1.07);
}

.front-post-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #009fe3;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.front-post-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.front-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 12px;
}

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

.front-post-meta i {
  color: #009fe3;
}

.front-post-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
  color: #0f172a;
}

.front-post-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.front-post-title a:hover {
  color: #009fe3;
}

.front-post-excerpt {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}

.front-post-action {
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.btn-post-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #009fe3;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-post-read i {
  transition: transform 0.25s ease;
}

.btn-post-read:hover {
  color: #0077aa;
}

.btn-post-read:hover i {
  transform: translateX(5px);
}

/* ===================================================
   BLOG ARCHIVE PAGE (.blog-archive-section)
   =================================================== */
.blog-archive-section {
  padding: 60px 0 90px;
  background: #f8fafc;
}

.blog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog-categories-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-cat-pill {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-cat-pill:hover,
.blog-cat-pill.active {
  background: #009fe3;
  border-color: #009fe3;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.25);
}

.blog-search-box {
  min-width: 280px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper i {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.search-input-wrapper input {
  width: 100%;
  padding: 10px 18px 10px 42px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.92rem;
  color: #1e293b;
  outline: none;
  transition: all 0.2s ease;
}

.search-input-wrapper input:focus {
  border-color: #009fe3;
  box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.15);
}

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

.post-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 159, 227, 0.12);
  border-color: rgba(0, 159, 227, 0.35);
}

.post-card-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  background: #0f172a;
}

.post-card-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumb-wrap img {
  transform: scale(1.07);
}

.post-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #009fe3;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

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

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 12px;
}

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

.post-card-meta i {
  color: #009fe3;
}

.post-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px;
  color: #0f172a;
}

.post-card-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card-title a:hover {
  color: #009fe3;
}

.post-card-excerpt {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}

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

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #009fe3;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-read-more i {
  transition: transform 0.25s ease;
}

.btn-read-more:hover {
  color: #0077aa;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

.blog-cta-box {
  margin-top: 60px;
  background: linear-gradient(135deg, #0f172a 0%, #0369a1 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  flex-wrap: wrap;
}

.blog-cta-content {
  max-width: 680px;
}

.blog-cta-content h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin: 12px 0;
}

.blog-cta-content p {
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* ===================================================
   SINGLE POST DETAIL STYLES (.single-post-*)
   =================================================== */
.single-post-hero {
  background: linear-gradient(135deg, #0b1329 0%, #0f172a 50%, #0284c7 100%);
  color: #ffffff;
  padding: 50px 0 65px;
  position: relative;
}

.single-post-header-content {
  max-width: 920px;
  margin-top: 20px;
}

.single-post-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 159, 227, 0.25);
  border: 1px solid rgba(0, 159, 227, 0.6);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.single-post-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 24px;
}

.single-post-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #009fe3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.4);
}

.meta-author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: #ffffff;
}

.author-sub {
  font-size: 0.8rem;
  color: #94a3b8;
}

.meta-details-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.86rem;
  color: #cbd5e1;
  flex-wrap: wrap;
}

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

.meta-details-wrap i {
  color: #38bdf8;
}

/* Single Post Main Layout Grid */
.single-post-main {
  padding: 50px 0 90px;
  background: #f8fafc;
}

.single-post-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

.single-post-article-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.single-featured-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
  background: #0f172a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.single-featured-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.featured-image-caption {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Article Body Typography */
.article-body-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: #334155;
}

.article-body-content p {
  margin-bottom: 24px;
}

.article-body-content p.lead-paragraph {
  font-size: 1.2rem;
  line-height: 1.75;
  font-weight: 500;
  color: #1e293b;
  border-left: 4px solid #009fe3;
  padding-left: 18px;
  margin-bottom: 30px;
}

.article-body-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin: 40px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
}

.article-body-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin: 30px 0 14px;
}

.article-body-content blockquote {
  background: #f0f9ff;
  border-left: 5px solid #009fe3;
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 30px 0;
  color: #0369a1;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
}

.article-callout-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 32px 0;
}

.article-callout-box h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #166534;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-callout-box p {
  color: #15803d;
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.65;
}

.article-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.article-data-table th {
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: left;
  padding: 14px 18px;
}

.article-data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.94rem;
  color: #334155;
  background: #ffffff;
}

.article-data-table tr:nth-child(even) td {
  background: #f8fafc;
}

.article-body-content ul,
.article-body-content ol {
  margin: 18px 0 28px 24px;
}

.article-body-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Tags Wrap */
.article-tags-wrap {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: #475569;
}

.tags-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-chip {
  background: #f1f5f9;
  color: #0369a1;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
}

/* Share Bar */
.article-share-bar {
  margin-top: 28px;
  padding: 22px 24px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.share-title {
  font-weight: 700;
  font-size: 0.94rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-buttons-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  color: #ffffff;
}

.share-wa {
  background: #25d366;
}

.share-in {
  background: #0a66c2;
}

.share-fb {
  background: #1877f2;
}

.share-copy {
  background: #334155;
  color: #ffffff;
}

.btn-share:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Company Bio Box */
.company-author-box {
  margin-top: 36px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.author-box-logo img {
  width: 72px;
  height: auto;
  border-radius: 12px;
}

.author-box-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.author-box-text p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 16px;
}

.author-box-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-box-badges span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0369a1;
  background: #e0f2fe;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Sidebar Widgets */
.single-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 95px;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.widget-rfq-callout .widget-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.widget-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 159, 227, 0.1);
  color: #009fe3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.widget-rfq-callout h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.widget-rfq-callout p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

.widget-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 18px !important;
}

.sidebar-widget-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget-title i {
  color: #009fe3;
}

.related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-post-card {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: center;
  transition: transform 0.2s ease;
}

.related-post-card:hover {
  transform: translateX(4px);
}

.related-thumb {
  width: 76px;
  height: 60px;
  min-width: 76px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f172a;
}

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

.related-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.related-post-card:hover .related-info h5 {
  color: #009fe3;
}

.related-date {
  font-size: 0.76rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.catalog-download-box {
  text-align: center;
  padding: 10px;
}

.catalog-download-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.catalog-download-box p {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0 0 16px;
  line-height: 1.5;
}

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ef4444;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  width: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.btn-download-pdf:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

/* ===================================================
   RESPONSIVE ADJUSTMENTS FOR BLOG & ARTICLES
   =================================================== */
@media (max-width: 992px) {
  .front-posts-grid,
  .posts-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .single-post-layout-grid {
    grid-template-columns: 1fr;
  }

  .single-post-sidebar {
    position: static;
  }

  .single-post-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 640px) {
  .front-posts-grid,
  .posts-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .single-post-article-card {
    padding: 22px;
    border-radius: 16px;
  }

  .single-post-title {
    font-size: 1.45rem;
  }

  .article-body-content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .article-body-content h2 {
    font-size: 1.35rem;
  }

  .article-body-content h3 {
    font-size: 1.18rem;
  }

  .article-share-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-box-badges {
    justify-content: center;
  }

  .blog-cta-box {
    padding: 28px 20px;
    text-align: center;
    flex-direction: column;
  }

  .blog-cta-action {
    width: 100%;
  }

  .blog-cta-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================
   COMPREHENSIVE MOBILE FORM & BUTTON REFINEMENTS
   Ensures no button, form, or card overflows horizontally
   =================================================== */

/* Universal form and button safety */
input, select, textarea, button {
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1040px) {
  /* Layout Grid: Always 1 column on tablet and mobile */
  .contact-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Form & Contact Cards */
  .rfq-card,
  .contact-info-card {
    padding: 28px 20px !important;
    border-radius: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .form-control {
    font-size: 0.92rem !important;
    padding: 11px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hero Slider Actions */
  .slide-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
  }

  .slide-actions .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 18px !important;
    font-size: 0.92rem !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Catalogue PDF Banner */
  .catalogue-pdf-banner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 28px 20px !important;
    gap: 20px !important;
    border-radius: 18px !important;
  }

  .catalogue-pdf-banner .btn {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Wide Homepage CTA Buttons */
  .instagram-section a.btn-outline,
  .front-news-section a.btn-brand,
  .product-category-grid + div a.btn-brand {
    width: 100% !important;
    max-width: 100% !important;
    padding: 13px 18px !important;
    font-size: 0.92rem !important;
    white-space: normal !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    line-height: 1.35 !important;
  }

  /* RFQ Submit Button */
  .btn-rfq-submit {
    width: 100% !important;
    font-size: 0.96rem !important;
    padding: 14px 16px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 600px) {
  .btn {
    padding: 10px 16px;
    font-size: 0.88rem;
    white-space: normal;
  }

  /* Prevent any horizontal overflow */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px !important;
  }

  .rfq-card,
  .contact-info-card {
    padding: 20px 14px !important;
    border-radius: 14px !important;
  }

  .rfq-card h3 {
    font-size: 1.25rem !important;
  }

  .btn-rfq-submit {
    font-size: 0.88rem !important;
    padding: 12px 12px !important;
  }

  .btn-rfq-submit i {
    font-size: 1.05rem !important;
  }

  .slide-title {
    font-size: 1.55rem !important;
    margin-bottom: 12px !important;
  }

  .slide-desc {
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    margin-bottom: 18px !important;
  }

  .product-card-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .product-card-footer .rfq-btn-sm {
    width: 100% !important;
    justify-content: center !important;
    padding: 9px 12px !important;
    font-size: 0.86rem !important;
    text-align: center !important;
  }

  .product-card-footer span {
    text-align: center !important;
  }

  .map-embed-wrapper iframe {
    height: 220px !important;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px !important;
  }

  .rfq-card,
  .contact-info-card {
    padding: 16px 10px !important;
  }

  .btn-rfq-submit {
    font-size: 0.82rem !important;
    padding: 11px 8px !important;
  }

  .btn-rfq-submit i {
    font-size: 0.95rem !important;
  }

  .btn {
    padding: 9px 10px !important;
    font-size: 0.82rem !important;
  }
}

/* ===================================================
   LEGALITAS & TENTANG KAMI CTA BANNERS
   =================================================== */
.legalitas-cta-box,
.tentang-trust-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #ffffff;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.tentang-trust-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: left;
  max-width: 100%;
}

.btn-legalitas-cta,
.btn-tentang-legalitas {
  font-size: 1.05rem;
  padding: 14px 32px;
}

@media (max-width: 860px) {
  .legalitas-cta-box,
  .tentang-trust-banner {
    padding: 28px 20px !important;
    border-radius: 18px !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .tentang-trust-action,
  .tentang-trust-action .btn,
  .btn-legalitas-cta,
  .btn-tentang-legalitas {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    font-size: 0.92rem !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   Single Product Detail Page Styles (SEO & Conversion Enhanced)
   ========================================================================== */
.single-product-hero {
  background: linear-gradient(135deg, #091e36 0%, #0d294a 100%);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.single-product-hero .hero-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.single-product-hero .hero-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.single-product-hero .hero-breadcrumb a:hover {
  color: #009fe3;
}

.single-product-hero .hero-breadcrumb i {
  font-size: 0.72rem;
  color: #64748b;
}

.single-product-hero .hero-breadcrumb .active-crumb {
  color: #38bdf8;
  font-weight: 600;
}

.single-product-main-section {
  padding: 50px 0 80px;
  background: #f8fafc;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Gallery Card */
.product-main-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(9, 30, 54, 0.06);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.product-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border: 1px solid #e2e8f0;
}

.product-detail-img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-img-wrapper:hover .product-detail-img {
  transform: scale(1.04);
}

.zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(9, 30, 54, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  pointer-events: none;
}

.product-floating-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #009fe3;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-item i {
  font-size: 1.25rem;
  color: #009fe3;
}

.trust-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.2;
}

/* Right Info Column */
.product-meta-header {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.prod-brand-tag {
  background: #091e36;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prod-category-tag {
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.product-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #091e36;
  line-height: 1.25;
  margin-bottom: 18px;
}

.product-kemenkes-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.kemenkes-banner-icon {
  font-size: 1.5rem;
  color: #16a34a;
}

.kemenkes-banner-text strong {
  display: block;
  font-size: 0.92rem;
  color: #15803d;
}

.kemenkes-banner-text span {
  font-size: 0.82rem;
  color: #475569;
}

/* Specs Table */
.product-specs-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 22px;
  margin-bottom: 24px;
}

.specs-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #091e36;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-card-title i {
  color: #009fe3;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs-table th,
.product-specs-table td {
  padding: 10px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid #f1f5f9;
}

.product-specs-table th {
  width: 38%;
  color: #64748b;
  font-weight: 600;
  text-align: left;
}

.product-specs-table td {
  color: #1e293b;
}

.legal-badge-pill {
  background: #e6f7ff;
  color: #0070ba;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid #bce2f7;
}

/* Description Wrap */
.product-description-wrap {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 22px;
  margin-bottom: 28px;
}

.desc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #091e36;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desc-title i {
  color: #009fe3;
}

.desc-content p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 10px;
}

/* Action Buttons */
.product-actions-wrap {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-product-rfq {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 26px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3) !important;
  transition: all 0.25s ease !important;
}

.btn-product-rfq:hover {
  background: #20ba5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4) !important;
}

.btn-back-catalog {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #475569 !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 14px 22px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.btn-back-catalog:hover {
  border-color: #009fe3 !important;
  color: #009fe3 !important;
}

.procurement-guidance-card {
  background: #eff6ff;
  border: 1px dashed #93c5fd;
  border-radius: 14px;
  padding: 16px 20px;
}

.procurement-guidance-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.procurement-guidance-card p {
  font-size: 0.82rem;
  color: #3b82f6;
  margin: 0;
  line-height: 1.5;
}

/* Related Products */
.related-products-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

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

.related-product-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(9, 30, 54, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(9, 30, 54, 0.08);
}

.related-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  height: 190px;
  padding: 14px;
}

.related-img-link img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}

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

.related-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: #009fe3;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.related-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.related-title a {
  color: #091e36;
  text-decoration: none;
}

.related-title a:hover {
  color: #009fe3;
}

.btn-detail-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #009fe3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-detail-link:hover {
  gap: 10px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(9, 30, 54, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: zoomModal 0.3s;
}

@keyframes zoomModal {
  from {transform: scale(0.85); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.lightbox-close:hover {
  color: #009fe3;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #cbd5e1;
  padding: 16px 0;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive Single Product */
@media (max-width: 992px) {
  .single-product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-main-card {
    position: static;
  }

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

@media (max-width: 600px) {
  .product-main-title {
    font-size: 1.5rem;
  }

  .product-actions-wrap {
    flex-direction: column;
  }

  .btn-product-rfq,
  .btn-back-catalog {
    width: 100% !important;
    justify-content: center !important;
  }

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




