/* Section 1: Banner Video */
.banner-video { position: relative; width: 100vw; min-height: 400px; overflow: hidden; background: #111; display: flex; align-items: center; justify-content: center; }
.banner-bg-video { width: 100%; height: auto; min-height: 400px; object-fit: contain; display: block; }
.banner-overlay { position: absolute; top: 0; left: 0; width: 100vw; height: 100%; display: flex; align-items: flex-start; justify-content: flex-start; pointer-events: none; }
.banner-text-group { margin-left: 30px; margin-top: 30px; color: #fff; max-width: 700px; z-index: 2; text-align: left; }
.banner-subtitle { font-size: 1.2rem; margin-bottom: 1.2em; font-weight: 500; letter-spacing: 0.05em; text-shadow: 0 2px 8px #000; }
.banner-title { font-size: 3rem; font-weight: bold; margin-bottom: 0.7em; letter-spacing: 0.05em; text-shadow: 0 2px 8px #000; }
.banner-desc { font-size: 1.1rem; margin-bottom: 0.7em; line-height: 1.6; text-shadow: 0 2px 8px #000; }

/* Section 2: Features */
.section2 { background: #fff; padding: 4em 0; text-align: center; }
.section-title.green { color: #008040; font-weight: bold;font-weight: 900; }
.section2-subtitle { font-size: 24px; font-weight: 600; margin-bottom: 0.5em; color: #333; }
.section2-desc { color: #333; margin-bottom: 2em; }
.features-list { display: flex; justify-content: center; gap: 2em; flex-wrap: wrap; }
.feature-item { display: flex; flex-direction: column; align-items: center; max-width: 320px; }
.feature-item img { width: 100%; max-width: 320px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.07); margin-bottom: 0.7em; }
.feature-caption { font-weight: 600; font-size: 1rem; }

/* Section 3: Modes */
.section3 { background: #fafbfc; padding: 4em 0; text-align: center; }
.section3-subtitle { text-align: center; font-size: 24px; font-weight: 600; margin-bottom: 1em; color: #333; }
.modes-list { display: flex; justify-content: center; gap: 2em; flex-wrap: wrap; margin-bottom: 2.5em; }
.mode-item { display: flex; flex-direction: column; align-items: center; max-width: 250px; }
.mode-item img { width: 100%; max-width: 250px; border-radius: 10px; margin-bottom: 0.5em; }
.mode-caption { font-size: 0.98rem; font-weight: 500; text-align: center; }
.modes-bottom { display: flex; justify-content: center; align-items: flex-start; gap: 10em; flex-wrap: wrap; }
.modes-bottom-left, .modes-bottom-center { display: flex; flex-direction: column; align-items: center; }
.modes-bottom-left img, .modes-bottom-center img { max-width: 100%; border-radius: 10px; margin-bottom: 0.5em; }
.robot-labels { display: flex; flex-direction: column; gap: 0.2em; font-size: 0.95rem; color: #333; }
.modes-bottom-right { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 1em; min-width: 180px; margin-top: 10%; }
.mode-buttons { display: flex; flex-direction: column; gap: 1em; }
.mode-btn { display: block; background: #222; color: #fff; padding: 0.9em 1.5em; border-radius: 24px; text-decoration: none; font-weight: bold; font-size: 1rem; transition: background 0.2s; text-align: left; }
.mode-btn:hover { background: #008040; }

/* Section 4: Specs */
.section4 { background: #fff; padding: 4em 0; text-align: center;}
.specs-flex { display: flex; gap: 0em; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.specs-table-wrap { min-width: 320px; width: 586px; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 1em; }
.specs-table th, .specs-table td { border: 1px solid #222; padding: 0.6em 0.6em; text-align: left; font-size: 16px; }
.specs-table th { font-weight: bold; width: 29%; }
.specs-table td { background: #fff; color: #222; }
.specs-img-wrap { min-width: 220px; max-width: 466px; }
.specs-img-wrap img { width: 100%; margin-top: 5%; }

.specs-form {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0;
  margin: 0 auto 2em auto;
  box-sizing: border-box;
  max-width: 500px;
}
.specs-form-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 0;
  min-height: 48px;
}
.specs-form-row:last-child {
  border-bottom: none;
}
.specs-form-row label {
  flex: 0 0 40%;
  padding: 12px 16px;
  font-weight: 600;
  color: #222;
  background: #f8f8f8;
  border-right: 1px solid #eee;
  font-size: 1rem;
  text-align: left;
}
.specs-form-row input[type="text"] {
  flex: 1 1 60%;
  border: none;
  background: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  color: #222;
  outline: none;
}
.specs-form-row input[type="text"]:focus {
  background: #f0f8ff;
}
@media (max-width: 900px) {
  .specs-form { max-width: 100%; }
  .specs-form-row label, .specs-form-row input[type="text"] { font-size: 0.95rem; padding: 10px 8px; }
}
@media (max-width: 600px) {
  .specs-form-row { flex-direction: column; align-items: stretch; }
  .specs-form-row label, .specs-form-row input[type="text"] { width: 100%; border-right: none; border-bottom: 1px solid #eee; text-align: left; }
  .specs-form-row input[type="text"] { border-bottom: none; }
}

/* Section 5: Demo */
.section5 { background: #f8f8f8; padding: 4em 0; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
  .banner-video { min-height: 300px; }
  .banner-bg-video { min-height: 300px; }
  .banner-title { font-size: 1.5rem; }
  .banner-text-group { margin-left: 30px; margin-top: 30px; max-width: 95vw; }
  .features-list, .modes-list, .specs-flex, .modes-bottom { flex-direction: column; gap: 1.5em; align-items: center; }
  .specs-img-wrap, .specs-table-wrap { max-width: 100%; min-width: 0; }
}
@media (max-width: 600px) {
  .banner-video { min-height: 250px; }
  .banner-bg-video { min-height: 250px; }
  .banner-title { font-size: 1.1rem; }
  .banner-subtitle { font-size: 0.95rem; }
  .banner-desc { font-size: 0.9rem; }
  .banner-text-group { margin-left: 30px; margin-top: 30px; max-width: 98vw; }
  .section1, .section2, .section3, .section4, .section5, .features-section, .modes-section, .specs-section {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }
  .section-title { 
    font-size: 24px; 
    margin-bottom: 25px;
  }
  .features-list, .modes-list, .specs-flex, .modes-bottom { gap: 1em; }
  .feature-item img, .mode-item img, .modes-bottom-left img, .modes-bottom-center img, .specs-img-wrap img { max-width: 100vw; }
} 

/*custom*/
.btn-not-common .btn-pudu {
    width: 290px;
    height: 60px;
    padding: 19px 0 0 23px;
    color: #fff;
    font-size: 16px;
    cursor: default;
}

/* Section Title Centered */
.section-title {
  position: relative;
  padding: 0 0 25px;
  margin: 0 0 40px;
  color: #0C7947;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  font-weight: 900;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 50px;
  border-bottom: 2px solid #0C7947;
}
.btn-not-common .btn.arrow::after {
  display: none;
}

.btn-pudu-contact {
  width: 290px;
  height: 60px;
  padding: 19px 0 0 0; 
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
}
.section2 .container,
.section3 .container,
.section4 .container,
.section5 .container {
 /*max-width: 1200px;*/
  margin: 0 auto;
}

/* Section Full Width + Padding */
.section1, .section2, .section3, .section4, .section5, .features-section, .modes-section, .specs-section {
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 4em 60px;
}

/* Xen kẽ background section */
.section1, .section3, .specs-section {
  background: #fff;
}
.section2, .section4, .features-section.bg-alt, .modes-section.bg-alt {
  background: #f6f6f6;
}

/* Responsive padding */
@media (max-width: 900px) {
  .section1, .section2, .section3, .section4, .section5, .features-section, .modes-section, .specs-section {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .section-title {
    margin-bottom: 30px;
    font-size: 28px;
  }
}

/* Banner Details Below Video */
.banner-details-below {
  width: 100vw;
  /*background: linear-gradient(90deg, #e8fff3 0%, #f8f8f8 100%);*/
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0 20px 0;
  margin-bottom: 0;
}
.banner-details-inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  max-width: 1100px;
  width: 95vw;
  justify-content: center;
  flex-wrap: wrap;
}
.banner-detail-row {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(12,121,71,0.10), 0 1.5px 6px rgba(44,200,112,0.07);
  padding: 32px 28px 24px 28px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 6px solid #0C7947;
}
.banner-detail-row:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(12,121,71,0.18), 0 2px 8px rgba(44,200,112,0.10);
}
.banner-detail-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0C7947;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.banner-detail-desc {
  font-size: 1.05rem;
  color: #222;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .banner-details-inner {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .banner-detail-row {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    padding: 22px 12px 18px 16px;
  }
}
@media (max-width: 600px) {
  .banner-details-below {
    padding: 18px 0 8px 0;
  }
  .banner-detail-title {
    font-size: 1.05rem;
  }
  .banner-detail-desc {
    font-size: 0.98rem;
  }
}

/* Hero Row (PUDU T300 Intro) */
.pudu-hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100vw;
  max-width: 100%;
  padding: 60px 0 40px 0;
  background: #fff;
  box-sizing: border-box;
  gap: 40px;
  border-bottom: 2px solid #e0e0e0;
}
.pudu-hero-left {
  flex: 1 1 480px;
  padding-left: 5vw;
  min-width: 320px;
}
.pudu-hero-title {
  color: #0C7947;
  font-size: 2.3rem;
  font-weight: 900;
  text-align: left;
  margin-bottom: 18px;
  position: relative;
  letter-spacing: 0.04em;
}
.pudu-hero-title::after {
  content: '';
  display: block;
  width: 60px;
  border-bottom: 3px solid #0C7947;
  margin-top: 10px;
}
.pudu-hero-desc {
  color: #222;
  font-size: 16px;
  line-height: 2.0;
  text-align: left;
  font-weight: 400;
  margin-top: 18px;
  letter-spacing: 0.01em;
}
.pudu-hero-right {
  flex: 1 1 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 320px;
  /*max-width: 520px;*/
  padding-right: 5vw;
}
.pudu-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .pudu-hero-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px 0 20px 0;
  }
  .pudu-hero-left, .pudu-hero-right {
    padding: 0 18px;
    max-width: 98vw;
  }
  .pudu-hero-img {
    max-width: 260px;
    margin: 0 auto;
  }
  .pudu-hero-title {
    font-size: 1.5rem;
  }
  .pudu-hero-title::after {
    width: 40px;
    border-bottom-width: 2px;
  }
  .pudu-hero-desc {
    font-size: 16px;
  }
}

/* Section 1: Hero Row (PUDU T300 Intro) */
.section1 {
  background: #fff;
}
.section1 .container {
  /**max-width: 1200px;*/
  margin: 0 auto;
}
.pudu-hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
}
.pudu-hero-left {
  flex: 1 1 70%;
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pudu-hero-right {
  flex: 1 1 40%;
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pudu-hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.pudu-hero-desc, .pudu-feature-list {
  font-size: 16px;
  color: #222;
  line-height: 2.0;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.pudu-feature-list {
  list-style: disc inside;
  padding-left: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pudu-feature-list li {
  font-size: 16px;
  color: #222;
  padding: 4px 0;
  background: none;
}



@media (max-width: 900px) {
  .pudu-hero-content {
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }
  .pudu-hero-left, .pudu-hero-right {
    min-width: 0;
    width: 100%;
  }
  .pudu-hero-img {
    max-width: 98vw;
    min-width: 0;
  }
  .pudu-hero-desc {
    font-size: 16px;
  }
}

/* Specs Table Style for Section 3 - border bottom only, no outer border */
.specs-table {
  width: 100%;
  font-size: 16px;
  color: #222;
  margin: 0 auto;
  background: #fff;
  min-width: 340px;
  max-width: 930px;
  border: none;
  border-spacing: 0;
}
.specs-table th, .specs-table td {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 18px;
  text-align: left;
  font-weight: 400;
  background: none;
}
.specs-table th {
  font-weight: 700;
  width: 38%;
  background: none;
}
.specs-table tr:last-child th, .specs-table tr:last-child td {
  border-bottom: none;
}
.specs-table tr {
  height: 48px;
}
@media (max-width: 950px) {
  .specs-table {
    min-width: 0;
    max-width: 100vw;
  }
}

.section3.specs-section {
  background: #fff;
}
.section3 .container {
  width: 100%;
  margin: 0 auto;
}
.section3 .pudu-hero-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
}
.section3 .pudu-hero-left, .section3 .pudu-hero-right {
  min-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section3 .pudu-hero-img {
  width: 100%;
  height: auto;
  max-width: 520px;
  min-width: 320px;
  display: block;
}
@media (max-width: 900px) {
  .section3 .pudu-hero-content {
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }
  .section3 .pudu-hero-left, .section3 .pudu-hero-right {
    min-width: 0;
    width: 100%;
  }
  .section3 .pudu-hero-img {
    max-width: 98vw;
    min-width: 0;
  }
  .specs-table {
    min-width: 0;
    max-width: 100vw;
  }
}

/* Section 4: Modes Grid - update gap, subtitle, no border-radius */
.section4-subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  margin-top: 18px;
}
.modes-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}
.mode-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  background: none;
  position: relative;
}
.mode-img-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.mode-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  background: #181818;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: block;
}
.mode-caption-top {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  text-shadow: 0 2px 8px #000;
  pointer-events: none;
  padding-left: 9px;
}
.mode-caption-bottom {
  font-size: 15px;
  color: #222;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 1200px) {
  .modes-grid {
    gap: 24px;
  }
  .mode-col, .mode-img-wrap, .mode-img {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 900px) {
  .modes-grid {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }
  .mode-col, .mode-img-wrap, .mode-img {
    width: 44vw;
    max-width: 220px;
    height: 44vw;
    max-height: 220px;
  }
}
@media (max-width: 600px) {
  .modes-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .mode-col, .mode-img-wrap, .mode-img {
    width: 90vw;
    max-width: 220px;
    height: 90vw;
    max-height: 220px;
  }
}

/* Section 5: Features - 2 column rows */
.section5.features-section {
  background: #fff;
}
.section5 .container {
  width: 100%;
  margin: 0 auto;
}
.section5-subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
  margin-top: 18px;
}
.section5-desc {
  text-align: center;
  font-size: 16px;
  color: #222;
  margin-bottom: 38px;
}
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.feature-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 48px;
  width: 100%;
}
.feature-img-wrap {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-img {
  width: 420px;
  height: auto;
  object-fit: cover;
  display: block;
}
.feature-text {
  flex: 1 1 0;
  font-size: 16px;
  color: #222;
  line-height: 2.0;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 1060px;
}
@media (max-width: 1200px) {
  .feature-img-wrap {
    flex: 0 0 280px;
  }
  .feature-img {
    width: 280px;
  }
  .feature-row {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .feature-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-img-wrap, .feature-img {
    width: 100%;
  }
  .feature-text {
    max-width: 98vw;
  }
}

/* Responsive text cho tiếng Việt */
@media (max-width: 768px) {
  [lang="vi"] .pudu-hero-desc,
  .lang-vi .pudu-hero-desc {
    word-break: break-word;
    line-height: 1.8;
  }
  
  [lang="vi"] .pudu-hero-desc br,
  .lang-vi .pudu-hero-desc br {
    display: none;
  }
  
  [lang="vi"] .feature-text,
  .lang-vi .feature-text {
    word-break: break-word;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  [lang="vi"] .pudu-hero-desc,
  .lang-vi .pudu-hero-desc {
    font-size: 14px;
    line-height: 1.9;
  }
  
  [lang="vi"] .feature-text,
  .lang-vi .feature-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* Feature Image Container với Text Overlay cho Section 5 */
.feature-img-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.feature-img-overlay {
  position: absolute;
  bottom: 3px;
  left: 3px;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  z-index: 2;
  white-space: nowrap;
  text-align: left;
}

/* Responsive cho feature overlay */
@media (max-width: 900px) {
  .feature-img-overlay {
    font-size: 12px;
    padding: 6px 10px;
    bottom: 2px;
    left: 2px;
  }
}

@media (max-width: 600px) {
  .feature-img-overlay {
    font-size: 11px;
    padding: 5px 8px;
    bottom: 2px;
    left: 2px;
    white-space: normal;
    max-width: 90%;
  }
}