/* =========================
   CONTAINER GENERAL
========================= */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* =========================
   SECTION OVERLINE
========================= */
.section-overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(239,130,32,0.08);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.section-overline.centered {
  display: inline-block;
  margin: 0 auto 20px;
  text-align: center;
  width: auto;
}

/* =========================
   HERO
========================= */
.hero-manufacturing {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    radial-gradient(circle at 20% 30%, rgba(250,94,58,0.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(250,94,58,0.2), transparent 40%),
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url("../images/manufacturing-banner.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color:white;
  padding:160px 20px 100px;
}

.hero-content {
  max-width: 800px;
}

.hero-content .section-overline {
  background: rgba(239,130,32,0.15);
  border: 1px solid rgba(239,130,32,0.25);
  margin-bottom: 24px;
}

.hero-manufacturing h1 {
  font-size:56px;
  line-height:1.15;
  margin-bottom:18px;
}

.hero-manufacturing p {
  font-size:18px;
  color:#ccc;
  line-height:1.7;
  max-width:650px;
  margin:0 auto 32px;
}

.hero-manufacturing .btn-primary {
  display:inline-block;
  padding:14px 34px;
  font-weight:600;
  font-size:0.95rem;
}

.hero-stats {
  display:flex;
  justify-content:center;
  gap:50px;
  margin-top:50px;
  flex-wrap:wrap;
}

.hero-stat {
  text-align:center;
}

.hero-stat-value {
  display:block;
  font-size:2rem;
  font-weight:700;
  color:var(--primary);
  margin-bottom:4px;
}

.hero-stat-label {
  font-size:0.85rem;
  color:#aaa;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* =========================
   WAREHOUSE AUTOMATION SECTION
========================= */
.warehouse-automation-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.warehouse-automation-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.mfg-image-wrap {
    position: relative;
    display: inline-block;
    border-radius: 16px;
}

.mfg-image-wrap img {
    display: block;
    width: 100%;
    max-width: 550px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.mfg-image-glow {
    position: absolute;
    inset: -8px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(239,130,32,0.12), transparent 50%, rgba(239,130,32,0.06));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.mfg-image-wrap:hover .mfg-image-glow {
    opacity: 1;
}

.image-column {
    flex: 1 1 450px;
}

.text-column {
    flex: 1 1 450px;
}

.text-column h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #222;
    font-weight: 700;
}

.text-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.text-feature i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239,130,32,0.12), rgba(239,130,32,0.04));
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 2px;
}

.text-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary);
    font-weight: 600;
}

.text-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: justify;
}

.cta-button {
    margin-top: 25px;
}

.cta-button .btn-primary {
    padding: 14px 35px;
    background: linear-gradient(90deg, #f38e35, #EF8220);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .text-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .text-feature p {
        text-align: center;
    }
    .text-column h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    .image-column img {
        max-height: 400px;
    }
    .mfg-image-wrap img {
        max-width: 100%;
    }
}

/* =========================
   FAQ SECTION
========================= */
.faq-section {
    background-color: #f7f8fa;
    padding: 80px 0;
    text-align: center;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.faq-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    width: 100%;
    transition: all 0.35s ease;
    text-align: left;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: rgba(239,130,32,0.15);
}

.faq-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-top: 4px;
}

.faq-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    transition: all 0.35s ease;
}

.faq-card:hover .faq-num {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239,130,32,0.3);
}

.faq-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239,130,32,0.08);
    border-radius: 12px;
    transition: all 0.35s ease;
}

.faq-card:hover .faq-icon {
    background: linear-gradient(135deg, var(--primary), #d66b15);
}

.faq-icon i {
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.35s ease;
}

.faq-card:hover .faq-icon i {
    color: #fff;
}

.faq-content {
    flex: 1;
}

.faq-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: #222;
    font-weight: 600;
}

.faq-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .faq-left {
        flex-direction: row;
        gap: 12px;
    }
    .faq-title {
        font-size: 1.6rem;
    }
}

/* =========================
   RANGER SECTION
========================= */
.ranger-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.ranger-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 30px auto 0;
    text-align: left;
}

.ranger-img {
    flex: 1 1 420px;
    text-align: center;
}

.ranger-img .mfg-image-wrap img {
    max-width: 100%;
}

.ranger-img .mfg-image-glow {
    background: linear-gradient(135deg, rgba(239,130,32,0.15), transparent 50%);
}

.ranger-text {
    flex: 1 1 400px;
}

.ranger-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.ranger-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 900px) {
    .ranger-wrap {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    .ranger-text p {
        text-align: center;
    }
    .ranger-text h2 {
        font-size: 1.7rem;
    }
}

/* =========================
   VIDEO SECTION
========================= */
.video-section {
    background-color: #f7f8fa;
    padding: 80px 20px;
}

.split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
}

.video-text-wrap {
    flex: 1 1 450px;
}

.video-text-wrap .section-overline {
    margin-bottom: 16px;
}

.video-text-wrap .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.video-text-wrap p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

.video-text-wrap .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), #d66b15);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-text-wrap .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239,130,32,0.35);
}

.video-card-wrap {
    flex: 1 1 450px;
    max-width: 500px;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.play-button i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-left: 4px;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 30px rgba(239,130,32,0.3);
}

.video-card:hover .play-button i {
    color: #d66b15;
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .video-text-wrap {
        text-align: center;
        flex: 1 1 100%;
    }
    .video-text-wrap p {
        text-align: center;
    }
    .video-text-wrap .section-title {
        font-size: 1.7rem;
    }
    .video-card-wrap {
        flex: 1 1 100%;
        max-width: 90%;
    }
    .play-button {
        width: 70px;
        height: 70px;
    }
    .play-button i {
        font-size: 1.5rem;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1200px){
  .section {
    padding: 50px 20px;
  }
}

@media(max-width:900px){
  .hero-manufacturing h1 {
    font-size:36px;
  }
  .hero-manufacturing {
    padding:130px 20px 80px;
  }
  .hero-stats {
    gap:30px;
  }
  .hero-stat-value {
    font-size:1.6rem;
  }
  .grid-4, .flow-grid {
    gap:30px;
  }
  .brands-track {
    gap:25px;
  }
  .grid-4, .flow-grid {
    grid-template-columns:1fr;
  }
}

@media(max-width:480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}