
/* Warehouse Management Software Page */
:root {
  --aad-navy: #061729;
  --aad-blue: #243c6d;
  --aad-red: #d13d2f;
  --aad-orange: #f26b38;
  --aad-light: #f7f9fc;
  --aad-text: #333;
}

body {
  background: #fff;
}

.warehouse-page {
  overflow: hidden;
}

.warehouse-hero {
  min-height: 92vh;
  height: auto;
  padding: 150px 6% 80px;
  background: url('warehouse-management-dashboard.png') center / cover no-repeat;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 50px;
  align-items: center;
}

.warehouse-hero .hero-content {
  max-width: 760px;
}

.warehouse-hero .hero-content h1 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.warehouse-hero .hero-content p {
  max-width: 650px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.86);
}

.warehouse-hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.warehouse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.warehouse-btn.primary {
  color: #fff;
  background: linear-gradient(45deg, #b63434, #061729);
  box-shadow: 0 16px 35px rgba(209, 61, 47, .32);
}

.warehouse-btn.secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.warehouse-btn:hover {
  transform: translateY(-3px);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-row i {
  color: var(--aad-orange);
}

.warehouse-hero-visual {
  position: relative;
}

.warehouse-hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 38px;
  background: radial-gradient(circle at 20% 20%, rgba(242,107,56,.30), transparent 32%), radial-gradient(circle at 80% 80%, rgba(255,255,255,.16), transparent 36%);
  filter: blur(3px);
}

.warehouse-hero-visual img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.warehouse-section {
  padding: 80px 6%;
}

.warehouse-section.alt {
  background: var(--aad-light);
}

.warehouse-container {
  margin: 0 auto;
}

.warehouse-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aad-red);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin-bottom: 12px;
}

.warehouse-title {
  color: var(--aad-navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.18;
  margin: 0 0 16px;
  text-align: left;
}

.warehouse-lead {
  color: #555;
  line-height: 1.75;
  font-size: 1.03rem;
  max-width: 860px;
}

.section-rule {
  width: 96px;
  height: 4px;
  border: 0;
  border-radius: 4px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, var(--aad-red), var(--aad-navy));
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.module-card {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(6, 23, 41, .08);
}

.module-card h3 {
  color: var(--aad-navy);
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.module-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.module-card li {
  display: flex;
  gap: 11px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
}

.module-card li i {
  color: var(--aad-red);
  margin-top: 4px;
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.feature-card,
.benefit-card {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 24px;
  padding: 26px;
  min-height: 225px;
  box-shadow: 0 15px 38px rgba(6, 23, 41, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover,
.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(6, 23, 41, .12);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(209,61,47,.12), rgba(36,60,109,.10));
  color: var(--aad-red);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.feature-card h3,
.benefit-card h3,
.process-step h3 {
  color: var(--aad-navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p,
.benefit-card p,
.process-step p {
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.management-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  margin-top: 35px;
}

.management-tabs {
  background: var(--aad-navy);
  border-radius: 24px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.warehouse-tab {
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.warehouse-tab:hover,
.warehouse-tab.active {
  background: linear-gradient(135deg, var(--aad-red), var(--aad-orange));
  transform: translateX(4px);
}

.management-panel {
  display: none;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 15px 38px rgba(6, 23, 41, .07);
}

.management-panel.active {
  display: block;
}

.management-panel h3 {
  color: var(--aad-navy);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.management-panel p {
  color: #555;
  line-height: 1.75;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 35px;
  counter-reset: process;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 24px;
  padding: 64px 22px 24px;
  box-shadow: 0 15px 38px rgba(6, 23, 41, .07);
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: 20px;
  left: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aad-red), var(--aad-orange));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}


.faq-wrap {
  margin-top: 34px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(6, 23, 41, .06);
}

.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  color: var(--aad-navy);
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-question i {
  color: var(--aad-red);
  transition: transform .25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

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

.warehouse-cta {
  position: relative;
  padding: 85px 6%;
  background: linear-gradient(115deg, rgba(6,23,41,.96), rgba(36,60,109,.92)), url('warehouse-management-dashboard.png') center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.warehouse-cta h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 15px;
}

.warehouse-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

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

@media (max-width: 1100px) {
  .warehouse-hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }
  .warehouse-hero-visual {
    max-width: 760px;
  }
  .feature-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .management-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .warehouse-section {
    padding: 55px 6%;
  }
  .warehouse-hero {
    min-height: auto;
    padding: 120px 6% 55px;
  }
  .feature-grid,
  .benefit-grid,
  .process-list {
    grid-template-columns: 1fr;
  }
  .management-tabs {
    border-radius: 20px;
  }
  .warehouse-tab:hover,
  .warehouse-tab.active {
    transform: none;
  }
  .warehouse-hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .warehouse-btn {
    width: 100%;
  }
}

/* Professional Creative Warehouse Process Section */
.wh-process-pro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f8fafd 0%, #ffffff 48%, #f3f6fb 100%);
}

.wh-process-pro-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(36, 60, 109, 0.08);
}

.wh-process-pro-section::after {
  content: "";
  position: absolute;
  bottom: -170px;
  left: -120px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(209, 61, 47, 0.08);
}

.wh-process-pro-section .warehouse-container {
  position: relative;
  z-index: 2;
}

.wh-process-pro-header {
  max-width: 980px;
}

.wh-process-pro-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 36px;
  margin-top: 48px;
  align-items: start;
}

.wh-process-intro-card {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #061729, #243c6d);
  color: #fff;
  box-shadow: 0 24px 60px rgba(6, 23, 41, 0.18);
  overflow: hidden;
}

.wh-process-intro-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.wh-intro-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d13d2f, #f26b38);
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.wh-process-intro-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #fff;
}

.wh-process-intro-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 24px;
}

.wh-intro-points {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.wh-intro-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.95rem;
}

.wh-intro-points i {
  color: #ff8a6d;
}

.wh-process-pro-steps {
  position: relative;
  display: grid;
  gap: 20px;
}

.wh-process-pro-steps::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, #d13d2f, #f26b38, rgba(36, 60, 109, 0.15));
}

.wh-process-pro-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 0;
}

.wh-step-number {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #d13d2f;
  border: 1px solid #e6edf5;
  box-shadow: 0 14px 34px rgba(6, 23, 41, 0.1);
  font-size: 1.2rem;
  font-weight: 900;
}

.wh-step-content {
  position: relative;
  padding: 26px 28px 26px 86px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e6edf5;
  box-shadow: 0 18px 45px rgba(6, 23, 41, 0.07);
  transition: 0.28s ease;
  overflow: hidden;
}

.wh-step-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #d13d2f, #f26b38);
  opacity: 0;
  transition: 0.28s ease;
}

.wh-process-pro-card:hover .wh-step-content {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(6, 23, 41, 0.12);
  border-color: rgba(209, 61, 47, 0.22);
}

.wh-process-pro-card:hover .wh-step-content::before {
  opacity: 1;
}

.wh-step-content .wh-step-icon {
  position: absolute;
  left: 24px;
  top: 27px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(209, 61, 47, 0.09);
  color: #d13d2f;
  font-size: 1.15rem;
}

.wh-step-content h3 {
  margin: 0 0 8px;
  color: #061729;
  font-size: 1.18rem;
  font-weight: 900;
}

.wh-step-content p {
  margin: 0;
  color: #5d6674;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 1050px) {
  .wh-process-pro-layout {
    grid-template-columns: 1fr;
  }

  .wh-process-intro-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 650px) {
  .wh-process-pro-layout {
    margin-top: 34px;
  }

  .wh-process-intro-card {
    padding: 26px;
    border-radius: 22px;
  }

  .wh-process-pro-steps::before {
    display: none;
  }

  .wh-process-pro-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wh-step-number {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .wh-step-content {
    padding: 24px;
  }

  .wh-step-content .wh-step-icon {
    position: static;
    margin-bottom: 16px;
  }
}