/* =====================
   ABOUT BANNER
   ===================== */
.about-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner-bg { position: absolute; inset: 0; }
.banner-img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.54); }
.banner-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* =====================
   WHO WE ARE
   ===================== */
.who-we-are {
  padding: 72px 0;
  background: var(--green-pale);
}
.wwa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wwa-title {
  font-family: var(--font-display);
  font-size: 30px;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  padding-bottom: 14px;
  position: relative;
}
.wwa-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.wwa-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
  margin-top: 18px;
}
.wwa-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.wwa-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.wwa-img:hover img { transform: scale(1.04); }

/* =====================
   OUR MISSION
   ===================== */
.our-mission {
  padding: 72px 0;
  background: #fff;
}
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.mission-img {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mission-img > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}
.mission-stats {
  background: var(--green-pale);
  border-radius: 0 0 var(--radius) var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px 16px;
  gap: 8px;
}
.mstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-right: 1px solid rgba(74,158,92,0.15);
}
.mstat:last-child { border-right: none; }
.mstat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.mstat-plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  display: inline;
  margin-left: 2px;
}
.mstat-label {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
}

.mission-title {
  font-family: var(--font-display);
  font-size: 30px;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  padding-bottom: 14px;
  position: relative;
}
.mission-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.mission-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
  margin-top: 18px;
}

/* =====================
   OUR ADVANTAGES
   ===================== */
.advantages {
  padding: 72px 0;
  background: var(--green-pale);
}
.adv-header {
  text-align: center;
  margin-bottom: 52px;
}
.adv-line {
  width: 36px;
  height: 3px;
  background: var(--green);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.adv-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.adv-sub {
  font-size: 14px;
  color: var(--text-light);
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.adv-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.adv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: 50%;
}
.adv-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.adv-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.75;
}

/* =====================
   OUR FACTORY
   ===================== */
.our-factory {
  padding: 72px 0;
  background: #fff;
}
.factory-header {
  text-align: center;
  margin-bottom: 40px;
}
.factory-line {
  width: 36px;
  height: 3px;
  background: var(--green);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.factory-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}
.factory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.factory-img {
  border-radius: var(--radius);
  overflow: hidden;
  /*aspect-ratio: 4/3;*/
}
.factory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.factory-img:hover img { transform: scale(1.07); }

/* =====================
   CONTACT CTA
   ===================== */
.contact-cta {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.58); }
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.cta-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.cta-sub {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 4px;
}
.cta-sub2 {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 34px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: #fff;
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* =====================
   FLOAT CHAT
   ===================== */
.float-chat {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(74,158,92,0.45);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 200;
}
.float-chat:hover { background: var(--green-dark); transform: scale(1.08); }

/* =====================
   QUOTE MODAL
   ===================== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 10px;
  padding: 36px; width: 100%; max-width: 480px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}
.modal-backdrop.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: var(--text-muted); line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.modal-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea { width: 100%; border: 1px solid var(--border); border-radius: 4px; padding: 10px 12px; font-size: 13.5px; font-family: var(--font-body); color: var(--text); outline: none; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.modal-submit { width: 100%; background: var(--green); color: #fff; border: none; padding: 13px; border-radius: 4px; font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; font-family: var(--font-body); margin-top: 6px; transition: background 0.2s; }
.modal-submit:hover { background: var(--green-dark); }

/* =====================
   REVEAL ANIMATION BASE
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wwa-layout,
  .mission-layout { grid-template-columns: 1fr; gap: 32px; }
  .wwa-img { order: -1; }
  .adv-grid { grid-template-columns: 1fr; }
  .banner-title { font-size: 28px; }
  .cta-title { font-size: 28px; }
  .mission-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-stats { padding: 16px 8px; }
  .mstat-num { font-size: 22px; }
  .about-banner{height: 160px;}
}
