/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Chakra Petch', sans-serif;
  color: #1a2332;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --orange: #F97316;
  --orange-light: #FEF3E2;
  --orange-dark: #EA6500;
  --navy: #1E3A5F;
  --navy-light: #2D4F7C;
  --navy-dark: #12253E;
  --gray: #F8F9FA;
  --gray-2: #EEF0F3;
  --text: #1a2332;
  --text-muted: #6b7a90;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(30,58,95,0.10);
  --shadow-lg: 0 12px 48px rgba(30,58,95,0.15);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 14px;
  font-family: 'Chakra Petch', sans-serif;
}
.section-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title .accent { color: var(--orange); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 680px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,58,95,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; gap: 8px; margin-left: auto; }
.nav-links a {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { background: var(--orange-light); color: var(--orange-dark); }
.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: white;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  padding: 10px 20px; border-radius: 40px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-call:hover { background: var(--orange-dark); transform: translateY(-1px); }
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #2D4F7C 70%, #1a4a7a 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 720px;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: #FED7AA;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 40px;
  margin-bottom: 20px;
  font-family: 'Chakra Petch', sans-serif;
}
.hero-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--orange); }
.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-desc strong { color: #FED7AA; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem; font-weight: 600;
  padding: 14px 32px; border-radius: 40px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.45); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem; font-weight: 600;
  padding: 12px 32px; border-radius: 40px;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.stat { text-align: center; padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-family: 'Chakra Petch', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { transform: translateX(-50%) translateY(0);  opacity: 1; }
  60%      { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0;
  position: relative; z-index: 2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid var(--gray-2);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--gray); }
.fi-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.feature-item strong { display: block; font-family: 'Chakra Petch', sans-serif; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.feature-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ===== ABOUT ===== */
.about { background: var(--gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; min-height: 360px; }
.about-img-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.card-1 { width: 90%; top: 0; left: 0; padding: 0; overflow: hidden; }
.about-main-img { width: 100%; height: 260px; object-fit: cover; display: block; border-radius: var(--radius); }
.card-2 { bottom: -20px; right: 0; }
.building-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.badge-founded {
  background: var(--orange);
  color: white; border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}
.badge-founded span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; opacity: 0.85; }
.badge-founded strong { font-family: 'Chakra Petch', sans-serif; font-size: 2rem; font-weight: 800; }
.about-text .section-label { margin-bottom: 10px; }
.about-text .section-title { text-align: left; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 14px; }
.about-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--orange-light); color: var(--orange-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; margin-top: 1px;
}
.mission-box {
  background: var(--navy);
  color: white; border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}
.mission-box strong { color: var(--orange); display: block; margin-bottom: 8px; font-family: 'Chakra Petch', sans-serif; }
.mission-box p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9rem; line-height: 1.7; }

/* ===== WHY ===== */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover { background: white; border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-icon.orange { background: var(--orange-light); color: var(--orange); }
.why-icon.blue { background: #EFF6FF; color: #2563EB; }
.why-icon.green { background: #F0FDF4; color: #16A34A; }
.why-icon.purple { background: #F5F3FF; color: #7C3AED; }
.why-card h3 { font-family: 'Chakra Petch', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== PRODUCTS ===== */
.products { background: var(--gray); }
.tab-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.tab-btn {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  padding: 10px 22px; border-radius: 40px;
  border: 2px solid var(--gray-2);
  background: white; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--navy); border-color: var(--navy); color: white;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.product-card.hidden { display: none; }
.product-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.fryer-img  { background: linear-gradient(135deg, #FFF7ED 0%, #FEE2D5 100%); }
.fryer2-img { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); }
.fryer3-img { background: linear-gradient(135deg, #F0FDF4 0%, #D1FAE5 100%); }
.fryer4-img { background: linear-gradient(135deg, #FDF4FF 0%, #FAE8FF 100%); }
.fryer5-img { background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%); }
.mixer-img  { background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%); }
.mixer2-img { background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%); }
.oil-img    { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); }
.oil2-img   { background: linear-gradient(135deg, #FAFAF9 0%, #F5F5F4 100%); }
.other-img  { background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%); }
.other2-img { background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%); }
.prod-icon-wrap { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.prod-svg { width: 120px; height: 90px; }
.product-img img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 12px; box-sizing: border-box; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: white;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}
.product-body { padding: 20px; }
.product-tag {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  color: var(--orange-dark); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.product-body h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
  line-height: 1.4;
}
.product-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.product-models { display: flex; flex-wrap: wrap; gap: 6px; }
.product-models span {
  background: var(--gray-2);
  color: var(--navy);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 4px;
}

/* ===== FOOD GALLERY ===== */
.gallery { background: var(--navy); }
.gallery .section-label { background: rgba(249,115,22,0.25); color: #FED7AA; }
.gallery .section-title { color: white; }
.gallery .section-title .accent { color: var(--orange); }
.gallery .section-desc { color: rgba(255,255,255,0.7); }
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 12px;
  border-radius: var(--radius); overflow: hidden;
}
.food-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--navy-light);
  cursor: pointer;
}
.food-item:first-child { grid-column: span 2; }
.food-item:nth-child(5) { grid-column: span 2; }
.food-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.food-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 14px;
}
.food-overlay span {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  color: white; text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
/* Food item background colors simulate food imagery */
.fi-1 { background: linear-gradient(135deg, #92400E, #78350F); }
.fi-2 { background: linear-gradient(135deg, #B45309, #92400E); }
.fi-3 { background: linear-gradient(135deg, #4D7C0F, #365314); }
.fi-4 { background: linear-gradient(135deg, #D97706, #92400E); }
.fi-5 { background: linear-gradient(135deg, #D97706, #B45309); }
.fi-6 { background: linear-gradient(135deg, #EA580C, #C2410C); }
.fi-7 { background: linear-gradient(135deg, #CA8A04, #92400E); }
.fi-8 { background: linear-gradient(135deg, #9A3412, #7C2D12); }
.food-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.food-item:hover img { transform: scale(1.1); }

/* ===== TECH ===== */
.tech { background: var(--gray); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tech-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--orange);
}
.tech-icon svg { width: 28px; height: 28px; }
.tech-card h4 { font-family: 'Chakra Petch', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tech-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 72px 0;
}
.stats-inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center;
}
.big-stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.big-num {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900; color: white; line-height: 1;
  display: block; margin-bottom: 8px;
}
.big-stat span:last-child { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.stats-text blockquote {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.15rem; font-weight: 500;
  color: white; line-height: 1.7;
  padding-left: 20px;
  border-left: 4px solid rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.stats-row { display: flex; gap: 40px; }
.stats-row div strong { display: block; font-family: 'Chakra Petch', sans-serif; font-size: 1.5rem; font-weight: 800; color: white; }
.stats-row div span { color: rgba(255,255,255,0.7); }
.stats-row div p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 4px; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon.line-icon { background: #DFF5E6; color: #06C755; }
.ci-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-family: 'Chakra Petch', sans-serif; font-size: 0.88rem; color: var(--navy); margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.contact-item a { color: var(--orange-dark); }
.contact-item a:hover { text-decoration: underline; }
.contact-item .btn-direction,
.contact-item .btn-direction:hover { color: #ffffff; text-decoration: none; }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; font-family: 'Chakra Petch', sans-serif;
  transition: var(--transition);
}
.social-btn.tiktok { background: #1a1a1a; color: white; }
.social-btn.facebook { background: #1877F2; color: white; }
.social-btn:hover { transform: translateX(4px); }
.contact-form-wrap {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius-sm);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.92rem; color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem; font-weight: 700;
  padding: 14px;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.35); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-status { font-size: 0.88rem; font-family: 'Chakra Petch', sans-serif; padding: 10px 14px; border-radius: var(--radius-sm); margin-bottom: 12px; display: none; }
.form-status.success { display: block; background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.form-status.error   { display: block; background: #FFF1F2; color: #BE123C; border: 1px solid #FECDD3; }

/* ===== MAP ===== */
.map-wrap { position: relative; margin-top: 48px; border-radius: var(--radius); overflow: hidden; }
.map-iframe { display: block; width: 100%; height: 360px; border: 0; }
.btn-direction {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  background: var(--orange); color: #ffffff;
  font-family: 'Chakra Petch', sans-serif; font-size: 0.82rem; font-weight: 600;
  padding: 7px 16px; border-radius: 20px;
  text-decoration: none; transition: var(--transition);
}
.btn-direction:hover { background: var(--orange-dark); transform: translateY(-1px); }
.map-direction-btn {
  position: absolute; bottom: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  font-family: 'Chakra Petch', sans-serif; font-size: 0.9rem; font-weight: 700;
  padding: 10px 20px; border-radius: 24px;
  text-decoration: none; box-shadow: 0 4px 16px rgba(249,115,22,0.45);
  transition: var(--transition);
}
.map-direction-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(249,115,22,0.5); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 80px; width: auto; display: block; }
.footer-brand > p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col h4 { font-family: 'Chakra Petch', sans-serif; font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ===== FLOAT CTA ===== */
.float-cta {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 200;
}
.float-line, .float-phone {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.float-line { background: #06C755; color: white; }
.float-phone { background: var(--orange); color: white; }
.float-line:hover, .float-phone:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow); gap: 4px; }
  .nav-links.open { display: flex; }
  .btn-call { display: none; }
  .burger { display: flex; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--gray-2); }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .food-item:first-child { grid-column: span 1; }
  .food-item:nth-child(5) { grid-column: span 1; }
  .tech-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .contact-form-wrap { padding: 24px; }
}
