/* ==========================================================================
   JKPA PACKAGING & CONTAINERS - ALL MEDIA COMPATIBLE RESPONSIVE DESIGN SYSTEM
   Supports: 320px (Mobile) -> 768px (Tablet) -> 1024px (Laptop) -> 1440px (FHD) -> 2560px (2K/4K)
   Font System: Vazirmatn (Bold Headings) & Roboto (Regular Body)
   ========================================================================== */

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

:root {
  --color-primary-red: #F20519;
  --color-primary-green: #2E7D32;
  --color-accent-green: #4CAF50;
  --color-light-green: #E8F5E9;
  
  --color-dark: #1A1A1A;
  --color-muted: #666666;
  --color-border: #EEEEEE;
  --color-white: #FFFFFF;

  --color-beige-bg: #EFE9E0;
  --color-beige-card: #3A0F17;
  --color-beige-text: #F8F3EA;

  --font-heading: 'Vazirmatn', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.18);
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.14);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Section Scroll Offset for Sticky Header */
#home, #about, #products, #sample-section, #clients, #map-location, #plant {
  scroll-margin-top: 90px;
}

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

/* Fluid Typography Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseWave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 6px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.4);
  }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

/* Scroll-Triggered Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Header & Ultra-Glossy Glassmorphism Navigation Bar */
.site-header {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(238, 238, 238, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(24px) saturate(210%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(210%) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.header-single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.header-brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
}

.main-logo-img {
  height: clamp(44px, 4.5vw, 72px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.main-logo-img:hover {
  transform: scale(1.05);
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  list-style: none;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.85rem, 0.9vw + 0.1rem, 0.95rem);
  color: var(--color-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-red);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary-red);
  transform: translateY(-1px);
}

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

/* Sample Request Dropdown Container */
.sample-request-container {
  position: relative;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.sample-request-container:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu for Request Sample */
.sample-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  width: 270px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
  z-index: 1050;
}

.sample-request-container:hover .sample-dropdown-menu,
.sample-request-container:focus-within .sample-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sample-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-dark);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sample-dropdown-item:hover {
  background-color: #F8F9FC;
  transform: translateX(4px);
}

.sample-dropdown-item i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sample-dropdown-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-dark);
  line-height: 1.25;
}

.sample-dropdown-item span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.2;
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--transition-bounce);
}

.mobile-menu-btn:active {
  transform: scale(0.88);
}

/* Mobile Overlay backdrop */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-drawer-header, .mobile-drawer-footer {
  display: none;
}

/* Floating WhatsApp Quick Action Button for Desktop & Mobile */
.floating-wa-btn {
  display: flex;
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #25D366;
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s var(--transition-bounce), box-shadow 0.3s ease;
  animation: pulseWave 2.8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-wa-btn:hover {
  transform: scale(1.12);
}

.floating-wa-btn:active {
  transform: scale(0.92);
}

.floating-wa-tooltip {
  position: absolute;
  right: 70px;
  background: #111111;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Universal Poster Hero Carousel */
.hero-slider-section {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 700px;
  background-color: #F4F4F5;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-poster-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 0.8s ease;
}

/* Graceful Pappco-Style "WHY JKPA CONTENER COMPANY?" Section */
.about-brief-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
}

.why-jkpa-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.why-jkpa-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.08em;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.why-jkpa-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.04em;
  color: var(--color-muted);
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

.why-jkpa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: flex-start;
  text-align: center;
}

.why-jkpa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 0.75rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background-color 0.35s ease;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid transparent;
}

.why-jkpa-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  border-color: rgba(46, 125, 50, 0.2);
  background: #F9FCF9;
}

.why-jkpa-card:hover .why-jkpa-icon {
  transform: scale(1.18) rotate(4deg);
  color: var(--color-primary-red);
}

.why-jkpa-icon {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-primary-green);
  margin-bottom: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  height: clamp(50px, 6vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fssai-icon-img {
  height: clamp(42px, 5vw, 58px);
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-jkpa-card:hover .fssai-icon-img {
  transform: scale(1.18) rotate(3deg);
}

.why-jkpa-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  letter-spacing: 0.03em;
  color: var(--color-dark);
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 170px;
}

/* Simple OUR PRODUCTS Section */
.catalog-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background-color: #F9F9F9;
}

.section-title-block {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.section-title-block h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title-block p {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-muted);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/* Fluid 13-Product Grid Layout */
.product-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 2.25rem);
}

/* Enhanced Edge-to-Edge Product Card */
.product-card-item {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid #EBEBEB;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-item:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border-color: rgba(242, 5, 25, 0.35);
}

.product-card-item:active {
  transform: translateY(-2px) scale(0.99);
}

/* Edge-to-Edge 4:3 Image Frame - No White Bars */
.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F4F4F6;
  padding: 0;
  display: block;
}

.product-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-card-content {
  padding: 1.25rem 1.1rem 1.35rem 1.1rem;
  text-align: center;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  border-top: 1px solid #F0F0F0;
  transition: background-color 0.3s ease;
}

.product-card-item:hover .product-card-content {
  background: #FFFFFF;
}

.product-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.975rem;
  color: var(--color-dark);
  line-height: 1.35;
  margin: 0 0 0.85rem 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.25s ease;
}

.product-card-item:hover .product-card-title {
  color: var(--color-primary-red);
}

/* Clean 'VIEW SPECS ->' Text Link (No Circular Box) */
.product-card-action-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.825rem;
  color: var(--color-muted);
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  margin-top: 0;
}

.card-arrow-icon {
  font-size: 0.85rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
}

.product-card-item:hover .product-card-action-link {
  color: var(--color-primary-red);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.product-card-item:hover .card-arrow-icon {
  transform: translateX(6px);
  color: var(--color-primary-red);
}

/* Clean 2-Column Split ORDER SAMPLE KIT Section */
.sample-kit-clean-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-border);
}

.sample-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sample-clean-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.sample-clean-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.925rem, 1.1vw, 1.05rem);
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sample-note-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666666;
  font-style: normal;
  margin-bottom: 1.75rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.sample-note-text i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}


.sample-clean-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sample-clean-btn {
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-btn {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.wa-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.email-btn {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.email-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.sample-right-img-box {
  width: 100%;
}

.sample-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: #F4F4F6;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.sample-kit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sample-img-frame:hover .sample-kit-img {
  transform: scale(1.05);
}

/* Compact Infinite Loop Marquee OUR TOP CLIENTS Section */
.clients-clean-section {
  padding: 1.75rem 0 2rem 0 !important;
  background-color: #F9FAFC;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.compact-title {
  margin-bottom: 1.15rem !important;
}

.compact-title h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
  margin-bottom: 0.2rem !important;
}

.compact-title p {
  font-size: 0.85rem !important;
}

.marquee-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeLoop 22s linear infinite;
  white-space: nowrap;
}

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

.free-client-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  color: var(--color-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  cursor: default;
}

.free-client-name:hover {
  color: var(--color-primary-red);
}

.client-dot-separator {
  color: var(--color-primary-red);
  font-size: 1.5rem;
  opacity: 0.75;
}

/* High-End Aesthetic Factory Plant Google Maps Navigation Section */
.factory-map-section {
  padding: clamp(3.5rem, 5vw, 5.5rem) 0;
  background-color: #F8F9FB;
  border-top: 1px solid var(--color-border);
}

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

.map-section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  letter-spacing: 0.05em;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.map-section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--color-muted);
}

.map-card-wrapper {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.07);
}

.google-map-iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
  pointer-events: none;
}

/* Glassmorphism Navigation Action Bar */
.map-action-bar {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(238, 238, 238, 0.9);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.map-address-info {
  text-align: right;
}

.map-address-info strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-dark);
  line-height: 1.3;
}

.map-address-info span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-muted);
}

.map-directions-btn {
  background: #111111;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.map-directions-btn:hover {
  background: var(--color-primary-red);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(242, 5, 25, 0.4);
}

/* Elegant 2-Column "Get in touch" Contact Us Section (Matching Reference Design) */
.get-in-touch-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background-color: #F8F9FA;
  border-top: 1px solid var(--color-border);
}

.get-in-touch-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: flex-start;
}

.get-in-touch-left {
  display: flex;
  flex-direction: column;
}

.touch-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--color-dark);
  margin-bottom: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.touch-info-group {
  margin-bottom: 1.75rem;
}

.touch-info-group label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #888888;
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 400;
}

.touch-email-link, .touch-phone-link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.touch-email-link:hover, .touch-phone-link:hover {
  color: var(--color-primary-red);
  transform: translateX(4px);
}

.touch-form {
  display: flex;
  flex-direction: column;
}

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

.touch-field-wrap {
  display: flex;
  flex-direction: column;
}

.touch-field-wrap label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.45rem;
}

.touch-input, .touch-textarea {
  background: #F4F4F6;
  border: 1px solid #EBEBEF;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.touch-input::placeholder, .touch-textarea::placeholder {
  color: #AAAAAA;
}

.touch-input:focus, .touch-textarea:focus {
  background: #FFFFFF;
  border-color: var(--color-primary-red);
  box-shadow: 0 0 0 3px rgba(242, 5, 25, 0.12);
}

.touch-submit-btn {
  background: #111111;
  color: #FFFFFF;
  border: none;
  padding: 1.05rem;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background-color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.touch-submit-btn:hover {
  background: var(--color-primary-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242, 5, 25, 0.35);
}

.touch-submit-btn:active {
  transform: translateY(0);
}

/* OUR OTHER PRODUCTS Horizontal Slider Styling */
.other-products-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.other-products-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.25rem 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.other-products-track::-webkit-scrollbar {
  display: none;
}

.other-product-card {
  flex: 0 0 280px;
  min-width: 280px;
}

.slider-nav-arrow {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.slider-nav-arrow:hover {
  background: var(--color-primary-red);
  color: #FFFFFF;
  border-color: var(--color-primary-red);
  transform: scale(1.08);
}

.slider-nav-arrow:active {
  transform: scale(0.95);
}

/* Full-Page Product Detail View Animations */
.product-detail-view {
  background-color: #FAFAFB;
  min-height: 85vh;
  animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-catalog-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.back-catalog-btn:hover {
  background: var(--color-primary-red);
  color: var(--color-white);
  border-color: var(--color-primary-red);
  transform: translateX(-4px);
  box-shadow: 0 4px 14px rgba(242, 5, 25, 0.25);
}

.back-catalog-btn:active {
  transform: translateX(-1px);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: flex-start;
}

.showcase-img-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.showcase-img-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.showcase-main-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.showcase-main-img:hover {
  transform: scale(1.03);
}

/* Gallery Thumbnails */
.showcase-thumbnails-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.showcase-thumb-btn {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-white);
  padding: 2px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-thumb-btn:hover {
  border-color: var(--color-primary-red);
  transform: translateY(-2px);
}

.showcase-thumb-btn.active-thumb {
  border-color: var(--color-primary-red);
  box-shadow: 0 0 0 2px rgba(242, 5, 25, 0.25);
}

.showcase-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}


.showcase-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

@media (max-width: 1024px) {
  .showcase-pillars-row,
  .mobile-hide-pillars {
    display: none !important;
  }
}

.pillar-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.85rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-box:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-green);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.12);
}

.pillar-box i {
  color: var(--color-primary-green);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.pillar-box:hover i {
  transform: scale(1.2);
}

.pillar-box span {
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.2;
}

.detail-product-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--color-dark);
  margin: 0.35rem 0 1.5rem 0;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Specification Table */
.spec-table-container {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.spec-table-container:hover {
  box-shadow: var(--shadow-md);
}

.spec-table-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
}

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

.spec-table th, .spec-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}

.spec-table tr:hover th, .spec-table tr:hover td {
  background-color: #F8F9FC;
}

.spec-table tr:hover td {
  padding-left: 0.75rem;
}

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

.spec-table th {
  color: var(--color-muted);
  font-weight: 500;
  width: 40%;
}

.spec-table td {
  color: var(--color-dark);
}

.submit-inquiry-btn {
  width: 100%;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.submit-inquiry-btn:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.submit-inquiry-btn:active {
  transform: translateY(0) scale(0.97);
}

/* Luxury Beige Footer Card (Organized Column Layout) */
.beige-footer-section {
  background-color: var(--color-beige-bg);
  padding: 3.5rem 0 2.5rem 0;
}

.beige-footer-card {
  background-color: var(--color-beige-card);
  color: var(--color-beige-text);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem) 2.25rem clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

.beige-footer-brand-wrap {
  text-align: left;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.beige-footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 6.5vw, 5.8rem);
  color: var(--color-beige-text);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

.beige-footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(248, 243, 234, 0.22);
  margin-bottom: 2.25rem;
}

.beige-footer-nav-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 2.5rem;
}

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

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: rgba(248, 243, 234, 0.55);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-links a {
  color: var(--color-beige-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 400;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

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

.footer-static-info {
  color: rgba(248, 243, 234, 0.75);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.beige-footer-copyright {
  font-size: 0.8rem;
  color: rgba(248, 243, 234, 0.45);
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(248, 243, 234, 0.15);
}

/* ==========================================================================
   MEDIA QUERIES (320px to 2560px Ultra-Wide)
   ========================================================================== */

/* 2K & 4K Ultra Wide Screens (1920px - 2560px+) */
@media (min-width: 1920px) {
  .container {
    max-width: 1800px;
  }
  .product-grid-container {
    grid-template-columns: repeat(5, 1fr);
  }
  .hero-slider-section {
    max-height: 850px;
  }
}

/* Laptops & Standard Desktop (1025px - 1440px) */
@media (max-width: 1440px) {
  .product-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Slide-Out Drawer & Mobile Navigation (<= 1024px) */
@media (max-width: 1024px) {
  .header-single-row {
    position: relative;
    justify-content: flex-end;
    padding: 0.75rem 1rem;
  }

  .header-brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0.35rem 0 !important;
    padding: 0 !important;
  }

  .main-logo-img {
    height: clamp(40px, 6.5vw, 50px) !important;
    max-height: 52px !important;
    max-width: calc(100% - 80px) !important;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.75rem;
  }

  .mobile-drawer-close-btn {
    background: #F4F4F5;
    border: none;
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: var(--transition-fast);
  }

  .mobile-drawer-close-btn:hover {
    background: var(--color-primary-red);
    color: #FFFFFF;
  }

  .nav-links-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 2rem 1.5rem;
    gap: 0.75rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-links-menu.mobile-active {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-dark);
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--color-border);
  }

  /* Mobile Request Sample Item in Drawer */
  .sample-request-container {
    width: 100%;
  }

  .sample-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    border: 1px solid var(--color-border);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

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

  .why-jkpa-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .sample-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .get-in-touch-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }

  .beige-footer-nav-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-pillars-row {
    display: none !important;
  }
}

/* Tablets (600px - 899px) */
@media (max-width: 899px) {
  .product-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-jkpa-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Display Polished Styling (< 600px) */
@media (max-width: 599px) {
  .container {
    padding: 0 1rem;
  }

  .header-single-row {
    padding: 0.75rem 1rem;
  }

  .main-logo-img {
    height: clamp(38px, 10vw, 46px) !important;
    max-height: 48px !important;
    max-width: calc(100vw - 90px) !important;
  }

  .floating-wa-btn {
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .floating-wa-tooltip {
    display: none;
  }

  /* Hero Slider on Mobile */
  .hero-slider-section {
    aspect-ratio: 1.8 / 1;
    max-height: none;
  }

  /* Compact & Elegant WHY JKPA Section on Mobile */
  .about-brief-section {
    padding: 2.25rem 0 2.5rem 0 !important;
  }

  .why-jkpa-header {
    margin-bottom: 1.5rem !important;
  }

  .why-jkpa-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.35rem !important;
  }

  .why-jkpa-subtitle {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    padding: 0 0.5rem;
  }

  .why-jkpa-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  .why-jkpa-card {
    background: #F9F9FB;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1rem 0.6rem !important;
  }

  /* 5th card spans full width on mobile for clean symmetry */
  .why-jkpa-card:nth-child(5) {
    grid-column: span 2;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .why-jkpa-icon {
    font-size: 1.8rem !important;
    height: 40px !important;
    margin-bottom: 0.4rem !important;
  }

  .why-jkpa-label {
    font-size: 0.725rem !important;
    max-width: 100% !important;
    line-height: 1.3 !important;
  }

  /* Catalog Section Mobile Polish */
  .catalog-section {
    padding: 2.5rem 0 !important;
  }

  .section-title-block {
    margin-bottom: 1.75rem !important;
  }

  .section-title-block h2 {
    font-size: 1.4rem !important;
  }

  .product-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }

  .product-card-content {
    padding: 0.75rem 0.5rem !important;
  }

  .product-card-title {
    font-size: 0.825rem !important;
  }

  .touch-form-row {
    grid-template-columns: 1fr !important;
  }

  .touch-heading {
    font-size: 2rem !important;
  }

  .other-product-card {
    flex: 0 0 220px !important;
    min-width: 220px !important;
  }

  .beige-footer-nav-matrix {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  .showcase-pillars-row {
    display: none !important;
  }

  .breadcrumb-bar {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.85rem;
  }

  .map-action-bar {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .map-address-info {
    text-align: left !important;
  }

  .map-directions-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ABOUT US SEPARATE PAGE STYLES & DYNAMIC ANIMATIONS
   ========================================================================== */
.about-page-main {
  background-color: var(--color-white);
  padding: 0 0 2rem 0;
  overflow: hidden;
}

/* 1. Dynamic Hero Banner Section (Clean Light Corporate Theme) */
.about-hero-section {
  position: relative;
  background: radial-gradient(circle at 50% 100%, rgba(242, 5, 25, 0.04) 0%, transparent 70%), linear-gradient(180deg, #F9F9FB 0%, #FFFFFF 100%);
  color: var(--color-dark);
  padding: 5rem 0 4.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

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

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(242, 5, 25, 0.06);
  color: var(--color-primary-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.8px;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(242, 5, 25, 0.22);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(242, 5, 25, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.about-hero-badge:hover {
  transform: translateY(-2px);
  background: rgba(242, 5, 25, 0.1);
  box-shadow: 0 4px 15px rgba(242, 5, 25, 0.15);
}

.about-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.15;
  max-width: 880px;
  margin: 0 auto 1.25rem auto;
  color: var(--color-dark);
  letter-spacing: -0.015em;
}

.about-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: #555555;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

/* 2. Overview Section with Image Card & Badge */
.about-overview-section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF9F6 100%);
}

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

.sub-section-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--color-primary-red);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.about-section-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  color: var(--color-dark);
  margin-bottom: 0.4rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.heading-line {
  width: 75px;
  height: 4px;
  background: var(--color-primary-red);
  margin-bottom: 1.75rem;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.about-overview-text:hover .heading-line {
  width: 110px;
}

.about-lead-p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.about-body-p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-features-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.25rem;
}

.feature-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--color-dark);
}

.feature-bullet-item i {
  color: var(--color-primary-red);
  font-size: 1.05rem;
}

.about-overview-image-box {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-image-card-frame {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  max-width: 640px;
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-card-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(242, 5, 25, 0.12);
  border-color: rgba(242, 5, 25, 0.3);
}

.about-showcase-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 0.85rem 1.25rem;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  backdrop-filter: blur(10px);
}

.about-img-badge i {
  font-size: 1.8rem;
  color: var(--color-primary-red);
}

.about-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
}

.about-img-badge span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #666666;
}

/* 3. Our Core Pillars Section */
.about-pillars-section {
  padding: 5.5rem 0;
  background-color: #F8F8FA;
  border-bottom: 1px solid var(--color-border);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid transparent;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.about-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-top-color: var(--color-primary-red);
  border-color: rgba(242, 5, 25, 0.25);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(242, 5, 25, 0.08);
  color: var(--color-primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.about-pillar-card:hover .pillar-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--color-primary-red);
  color: #FFFFFF;
}

.about-pillar-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 0.85rem;
}

.about-pillar-card p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: #555555;
  line-height: 1.65;
}

/* 4. Stats & Highlights Section */
.about-stats-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.about-stat-item {
  padding: 2rem 1.25rem;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(242, 5, 25, 0.1);
  border-color: rgba(242, 5, 25, 0.3);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem auto;
  border-radius: 50%;
  background: rgba(242, 5, 25, 0.07);
  color: var(--color-primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--color-primary-red);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--color-dark);
}

@media (max-width: 992px) {
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-img-badge {
    bottom: -10px;
    right: 10px;
  }

  .about-features-bullets {
    grid-template-columns: 1fr;
  }
}

/* Our Partners Section Styling */
.group-partners-section {
  padding: 5rem 0;
  background-color: #FAFAFA;
  border-bottom: 1px solid var(--color-border);
}

.partners-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.partners-tag-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary-red);
  display: block;
  margin-bottom: 0.4rem;
}

.partners-main-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  color: #2D256B;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
}

.partners-red-line {
  width: 120px;
  height: 4px;
  background: var(--color-primary-red);
  margin: 0.6rem auto 0 auto;
  border-radius: 2px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
}

.partner-card {
  flex: 0 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(242, 5, 25, 0.3);
}

.partner-img-box {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #F1F5F9;
  border: 1px solid var(--color-border);
  position: relative;
}

.partner-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 4px;
  display: block;
  transition: transform 0.4s ease;
}

.partner-card:hover .partner-img-box img {
  transform: scale(1.04);
}

.partner-role-tag {
  display: inline-block;
  align-self: center;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  background: rgba(242, 5, 25, 0.08);
  border: 1px solid rgba(242, 5, 25, 0.2);
  color: var(--color-primary-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.partner-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  text-align: center;
}

.partner-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}


