/* ==========================================================================
   PASUPUNATI GROUP - STYLESHEET
   High-Fidelity Modern Design System
   ========================================================================== */

@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;1,600&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #111111;
  --primary-hover: #27272a;
  --primary-light: #f4f4f5;
  --text-main: #18181b;
  --text-muted: #52525b;
  --text-light: #71717a;
  --text-white: #ffffff;
  
  --bg-main: #ffffff;
  --bg-alt: #f9fafb;
  --bg-dark: #000000;
  --bg-card: #ffffff;
  
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --border-dark: #27272a;
  
  --accent-gold: #f59e0b;
  --accent-blue: #0284c7;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 36px -4px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  --container-max: 1240px;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.text-lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary .btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-alt);
  border-color: var(--text-main);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: #f4f4f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text-main);
  padding: 0.25rem 0;
  border-bottom: 1.5px solid var(--text-main);
}

.btn-link:hover {
  color: #000;
  gap: 0.65rem;
}

.btn-link .btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-link:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

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

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 220px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--bg-alt);
  color: var(--text-main);
  padding-left: 1.45rem;
}

.dropdown-item.active {
  color: var(--text-main);
  font-weight: 600;
  background-color: #f4f4f5;
}

.dropdown-item .badge-phase {
  font-size: 0.7rem;
  font-weight: 600;
  background-color: #e4e4e7;
  color: #27272a;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text-main);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
  margin-top: 0.75rem;
  border-left: 2px solid var(--border-color);
}

.mobile-sub-link {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive Navbar */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  background: #ffffff;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.hero-lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-lead-text strong,
.hero-lead-text b {
  color: var(--text-main);
  font-weight: 700;
}

.hero-sub-block {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.5rem;
  padding-left: 0.25rem;
}

.hero-vertical-line {
  width: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-sub-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-sub-text strong,
.hero-sub-text b {
  color: var(--text-main);
  font-weight: 700;
}

.hero-actions {
  margin-top: 0.75rem;
}

/* Hero Media Card & Floating AI Agent Box */
.hero-media-wrapper {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #f4f4f5;
  aspect-ratio: 16 / 10;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-card:hover img {
  transform: scale(1.03);
}

/* Floating Ask AI Agent Widget */
.floating-ai-bar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.floating-ai-bar:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) translateY(-2px);
}

.ai-input-placeholder {
  flex: 1;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.ai-submit-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.ai-submit-btn:hover {
  background-color: #333333;
  transform: scale(1.05);
}

.ai-submit-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   EXPERTS / ABOUT SECTION (HOME)
   ========================================================================== */

.experts-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #ffffff;
}

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

.section-header-center h2 {
  margin-bottom: 0.75rem;
}

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

.experts-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.experts-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experts-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-gold);
}

.rating-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rating-badge span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-left: 0.25rem;
}

.experts-content h3 {
  font-size: 1.85rem;
  margin-top: -0.25rem;
}

.experts-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.experts-content p strong,
.experts-content p b {
  color: var(--text-main);
}

.experts-actions {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .experts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   CLIENT LOGOS MARQUEE
   ========================================================================== */

.clients-bar-section {
  padding: 3.25rem 0;
  background-color: #fafafa;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.client-logo-item {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  opacity: 0.95;
  transition: all var(--transition-normal);
}

.client-logo-item:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
}

.client-logo-item img {
  max-height: 60px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .clients-bar-section {
    padding: 2.25rem 0;
  }
  .clients-track {
    gap: 2.5rem;
  }
  .client-logo-item {
    height: 52px;
  }
  .client-logo-item img {
    max-height: 46px;
    max-width: 130px;
  }
}

/* ==========================================================================
   CUSTOMIZED SOLUTIONS CARDS (HOME)
   ========================================================================== */

.solutions-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}

.solutions-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.solutions-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.solution-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.solution-card-top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.solution-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.solution-icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.solution-card h3 {
  font-size: 1.35rem;
}

.solution-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .solutions-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   BLACK BANNER CTA
   ========================================================================== */

.black-banner-section {
  padding: 0 0 5rem 0;
}

.black-banner-box {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.black-banner-text {
  max-width: 700px;
}

.black-banner-text h3 {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.5;
}

.black-banner-actions {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .black-banner-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
  }
  .black-banner-text h3 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   EXPLORE FEATURED WAREHOUSES
   ========================================================================== */

.featured-section {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

.warehouses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.warehouse-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.warehouse-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #d1d5db;
}

.warehouse-card-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background-color: #f4f4f5;
}

.warehouse-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.warehouse-card:hover .warehouse-card-img img {
  transform: scale(1.05);
}

.warehouse-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.warehouse-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--accent-gold);
}

.warehouse-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 1.25rem;
}

.warehouse-card-body h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.warehouse-card-body p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .warehouses-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   3-STEP PROCESS SECTION
   ========================================================================== */

.process-section {
  padding: 4rem 0;
  background-color: #fbfbfb;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.process-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.process-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: var(--text-main);
}

.process-step-pill {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   TESTIMONIALS: WHY THEY LOVE US
   ========================================================================== */

.testimonials-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: #f9fafb;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  background-color: #ffffff;
  border-color: #d1d5db;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e4e4e7;
  flex-shrink: 0;
}

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

.author-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.825rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUPPORT STRIP / FAQ STRIP
   ========================================================================== */

.support-strip-section {
  padding: 3.5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.support-strip-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
}

.support-strip-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.support-strip-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .support-strip-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background-color: #f9fafb;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.stat-box h4 {
  font-size: 1.1rem;
  color: var(--text-main);
}

.stat-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition-normal);
}

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

.team-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #f4f4f5;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 1.5rem;
}

.team-card-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.full-facility-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 3.5rem 0;
  max-height: 520px;
}

.full-facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   WAREHOUSE DETAIL PAGES (P1, P2, P3, P4)
   ========================================================================== */

.warehouse-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.meta-tag {
  background-color: #f3f4f6;
  color: var(--text-main);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin: 3.5rem 0;
}

.specs-table-card {
  background-color: #f9fafb;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.specs-table-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid #edf0f3;
  font-size: 0.95rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--text-main);
}

.spec-value {
  color: var(--text-muted);
  text-align: right;
}

.features-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: #16a34a;
  flex-shrink: 0;
}

.get-in-touch-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.get-in-touch-card h3 {
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .features-list-grid {
    grid-template-columns: 1fr;
  }
  .get-in-touch-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   CONTACT PAGE & FORMS
   ========================================================================== */

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background-color: #ffffff;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

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

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

.contact-info-box {
  background-color: #f9fafb;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 3.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: #000000;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOOTER (SIGNATURE BLACK PASUPUNATI FOOTER)
   ========================================================================== */

.site-footer {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 3rem;
  position: relative;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-brand p {
  color: #a1a1aa;
  font-size: 0.925rem;
  line-height: 1.65;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

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

.footer-links a {
  color: #a1a1aa;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #a1a1aa;
  font-size: 0.9rem;
}

.footer-huge-title {
  border-top: 1px solid #27272a;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  text-align: center;
}

.footer-huge-title img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  opacity: 0.95;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #1c1c1f;
  color: #71717a;
  font-size: 0.85rem;
}

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

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

.footer-bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   INTERACTIVE AI AGENT MODAL
   ========================================================================== */

.ai-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.ai-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ai-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.ai-modal-overlay.active .ai-modal-card {
  transform: translateY(0) scale(1);
}

.ai-modal-header {
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-modal-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.ai-modal-badge {
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.ai-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.ai-modal-close:hover {
  color: var(--text-main);
}

.ai-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ai-chat-bubble {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ai-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.user-avatar {
  background: #3b82f6;
}

.bubble-content {
  background: #f1f5f9;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-lg);
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 85%;
}

.bubble-content.user-msg {
  background: #111111;
  color: #ffffff;
}

.ai-quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.quick-prompt-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.825rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-prompt-btn:hover {
  background: #f1f5f9;
  border-color: var(--primary);
}

.ai-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
}

.ai-input-form {
  display: flex;
  gap: 0.5rem;
}

.ai-input-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  outline: none;
}

.ai-input-form input:focus {
  border-color: var(--primary);
}

.ai-input-form button {
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 990;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #111111;
  color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 4000;
  opacity: 0;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notice svg {
  width: 20px;
  height: 20px;
  color: #4ade80;
}
