/* ============================================================
   TOP JEANS LTD — style.css
   Color palette inspired by the TJL logo:
   Deep Navy #1B2A4A | Sky Blue #3A7BD5 | Warm Orange #E8722A
   Light Grey #F5F7FA | White #FFFFFF
   ============================================================ */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy:    #1B2A4A;
  --navy2:   #243358;
  --blue:    #3A7BD5;
  --blue2:   #2563b0;
  --orange:  #E8722A;
  --orange2: #c95e1a;
  --light:   #F5F7FA;
  --white:   #FFFFFF;
  --grey:    #6B7280;
  --dark:    #111827;
  --border:  #E1E7EF;
  --shadow:  0 4px 20px rgba(27,42,74,0.10);
  --shadow2: 0 8px 32px rgba(27,42,74,0.18);
  --radius:  6px;
  --transition: all 0.3s ease;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 66px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-brand img {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--orange); object-fit: cover;
}
.brand-text { line-height: 1.2; }
.brand-text .name {
  font-size: 17px; font-weight: 700; color: var(--white);
  letter-spacing: 0.5px;
}
.brand-text .tagline {
  font-size: 9px; color: #9DB4D5; text-transform: uppercase; letter-spacing: 1.5px;
}
.nav-links {
  display: flex; align-items: center; gap: 0;
}
.nav-links li a {
  display: flex; align-items: center; height: 66px;
  padding: 0 15px; font-size: 13px; font-weight: 500;
  color: #CBD5E8; transition: var(--transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white); border-bottom-color: var(--orange);
  background: rgba(255,255,255,0.04);
}
.nav-links li.career-btn a {
  background: var(--orange); color: var(--white);
  margin-left: 8px; padding: 0 20px;
  border-radius: var(--radius); height: 38px;
  border-bottom: none; font-weight: 600;
}
.nav-links li.career-btn a:hover { background: var(--orange2); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative; height: 560px; overflow: hidden; background: var(--navy);
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.50);
}
.slide-caption {
  position: absolute; bottom: 100px; left: 80px;
  max-width: 560px; z-index: 2;
}
.slide-caption .tag {
  display: inline-block; background: var(--orange);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.slide-caption h2 {
  font-size: 36px; font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.slide-caption p {
  font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 24px;
}
.btn-primary {
  display: inline-block; background: var(--orange); color: #fff;
  padding: 12px 28px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  padding: 12px 28px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.7); cursor: pointer;
  border-radius: var(--radius); transition: var(--transition); margin-left: 12px;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  background: rgba(0,0,0,0.35); border: none; color: #fff;
  width: 48px; height: 48px; font-size: 20px; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.slide-arrow:hover { background: var(--orange); }
.arrow-left { left: 24px; }
.arrow-right { right: 24px; }

.slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  transition: var(--transition); border: none;
}
.dot.active { background: var(--orange); transform: scale(1.3); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--light); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 32px; font-weight: 700; color: var(--navy);
  line-height: 1.25; margin-bottom: 14px;
}
.section-header p {
  font-size: 15px; color: var(--grey); max-width: 600px; margin: 0 auto;
}
.title-bar {
  width: 50px; height: 4px; background: var(--orange);
  border-radius: 2px; margin: 14px auto 0;
}
.title-bar-left {
  width: 50px; height: 4px; background: var(--orange);
  border-radius: 2px; margin: 14px 0 0;
}

/* ============================================================
   WELCOME / ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-text .label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.about-text h2 {
  font-size: 30px; font-weight: 700; color: var(--navy);
  margin-bottom: 20px; line-height: 1.3;
}
.about-text p {
  font-size: 14.5px; color: #4B5563; line-height: 1.8; margin-bottom: 16px;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.about-stat {
  background: var(--light); border-left: 4px solid var(--orange);
  padding: 16px 18px; border-radius: var(--radius);
}
.about-stat .num {
  font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1;
}
.about-stat .lbl { font-size: 12px; color: var(--grey); margin-top: 4px; }

.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; border-radius: 10px;
  box-shadow: var(--shadow2);
  object-fit: cover; height: 420px;
}
.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); color: #fff;
  padding: 20px 24px; border-radius: 8px;
  box-shadow: var(--shadow2); text-align: center;
}
.about-badge .big { font-size: 32px; font-weight: 800; color: var(--orange); }
.about-badge .small { font-size: 11px; color: #9DB4D5; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   THREE COLUMN STRENGTH
   ============================================================ */
.strength-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.strength-card {
  background: var(--white); border-radius: 8px;
  box-shadow: var(--shadow); overflow: hidden;
  border-top: 4px solid var(--blue);
  transition: var(--transition);
}
.strength-card:nth-child(2) { border-top-color: var(--orange); }
.strength-card:nth-child(3) { border-top-color: var(--navy); }
.strength-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.strength-head {
  background: var(--navy); color: var(--white);
  padding: 16px 22px; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; text-align: center;
}
.strength-card:nth-child(2) .strength-head { background: var(--orange); }
.strength-card li {
  padding: 10px 22px; font-size: 13px; color: #374151;
  border-bottom: 1px solid var(--border); text-align: center;
}
.strength-card li:last-child { border-bottom: none; }

/* ============================================================
   INDUSTRIES / ENTITIES
   ============================================================ */
.industries-bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative; overflow: hidden;
}
.industries-bg::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.industries-bg .section-header h2,
.industries-bg .section-header .label { color: var(--white); }
.industries-bg .section-header p { color: rgba(255,255,255,0.65); }

.industry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--orange);
  padding: 28px 24px; border-radius: 8px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition);
}
.industry-card:hover {
  background: rgba(232,114,42,0.12);
  transform: translateY(-3px);
}
.ind-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(232,114,42,0.2);
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px;
}
.industry-card h4 {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.industry-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--orange);
  padding: 44px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center;
}
.stat-box { padding: 0 10px; }
.stat-box h3 {
  font-size: 42px; font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: 6px;
}
.stat-box p {
  font-size: 12px; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
}
.stat-box .divider {
  width: 30px; height: 2px; background: rgba(255,255,255,0.4);
  margin: 8px auto 0; border-radius: 1px;
}

/* ============================================================
   INSIDE FACTORY TABS
   ============================================================ */
.factory-tabs {
  display: flex; gap: 0; margin-bottom: 36px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tab-btn {
  background: none; border: none; padding: 14px 26px;
  font-size: 14px; font-weight: 600; color: var(--grey);
  cursor: pointer; transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px; white-space: nowrap;
}
.tab-btn:hover { color: var(--blue); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--orange); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.factory-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.factory-img-wrap {
  overflow: hidden; border-radius: 8px;
  aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow);
}
.factory-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.factory-img-wrap:hover img { transform: scale(1.07); }
.factory-img-wrap.wide {
  grid-column: span 2;
}

/* ============================================================
   WASHING SECTION
   ============================================================ */
.washing-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.washing-info h3 {
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 18px;
}
.washing-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.spec-item {
  background: var(--light); padding: 14px 16px;
  border-left: 3px solid var(--blue); border-radius: var(--radius);
}
.spec-item .spec-val {
  font-size: 18px; font-weight: 800; color: var(--navy);
}
.spec-item .spec-key {
  font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px;
}
.washing-list li {
  padding: 7px 0; font-size: 13.5px; color: #374151;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
}
.washing-list li::before {
  content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0;
}
.washing-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.washing-gallery .wash-img {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.washing-gallery .wash-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.washing-gallery .wash-img:hover img { transform: scale(1.08); }

/* ============================================================
   MANAGEMENT
   ============================================================ */
.mgmt-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.mgmt-card {
  background: var(--white); border-radius: 10px;
  box-shadow: var(--shadow); text-align: center;
  padding: 32px 18px 24px;
  transition: var(--transition);
  border-bottom: 3px solid var(--border);
}
.mgmt-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow2);
  border-bottom-color: var(--orange);
}
.mgmt-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 16px;
  border: 3px solid var(--light);
}
.mgmt-card h4 {
  font-size: 14px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}
.mgmt-card .role {
  font-size: 11.5px; color: var(--orange); text-transform: uppercase;
  letter-spacing: 0.8px; font-weight: 600;
}

/* ============================================================
   BUYERS
   ============================================================ */
.buyers-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.buyer-badge {
  background: var(--white); border: 2px solid var(--border);
  padding: 12px 26px; font-size: 14px; font-weight: 700;
  color: var(--navy); border-radius: var(--radius);
  transition: var(--transition); letter-spacing: 0.5px;
}
.buyer-badge:hover {
  border-color: var(--orange); color: var(--orange);
  box-shadow: 0 4px 12px rgba(232,114,42,0.15);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 72px 0 60px; }
.contact-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 50px; align-items: start;
}
.map-circle-wrap {
  display: flex; align-items: center; justify-content: center;
}
.map-embed {
  width: 260px; height: 260px; border-radius: 50%;
  overflow: hidden; border: 6px solid var(--light);
  box-shadow: var(--shadow2);
}
.map-embed iframe { width: 100%; height: 100%; border: none; pointer-events: none; }

.contact-col h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange); display: inline-block;
}
.contact-info-item {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: 14px; color: #374151; align-items: flex-start;
}
.contact-info-item .icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }

.contact-person { margin-bottom: 20px; }
.contact-person h4 {
  font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px;
}
.contact-person .pos { font-size: 13px; color: var(--grey); margin-bottom: 6px; }
.contact-person .email {
  font-size: 12.5px; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
}

.merch-title {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 24px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.merch-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.merch-person {
  background: var(--light); padding: 18px 16px;
  border-radius: 8px; border-left: 3px solid var(--blue);
  transition: var(--transition);
}
.merch-person:hover { border-left-color: var(--orange); background: #fff; box-shadow: var(--shadow); }
.merch-person h4 { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.merch-person .pos { font-size: 12px; color: var(--grey); margin-bottom: 8px; }
.merch-person .email { font-size: 12px; color: var(--blue); display: flex; align-items: center; gap: 5px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark); color: #9CA3AF;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  width: 56px; height: 56px; border-radius: 50%;
  margin-bottom: 14px; border: 2px solid var(--orange); object-fit: cover;
}
.footer-brand .fname {
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.footer-brand .fsub {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; }

.footer-col h4 {
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col li { margin-bottom: 10px; }
.footer-col li a {
  font-size: 13px; color: #9CA3AF; transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col li a::before { content: '›'; color: var(--orange); }

.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: 13px; align-items: flex-start;
}
.footer-contact-item .fi { flex-shrink: 0; color: var(--orange); margin-top: 2px; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
}
.footer-bottom span { color: #6B7280; }
.footer-bottom a { color: var(--orange); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh; object-fit: contain;
  border-radius: 4px; box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lb-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: #fff;
  font-size: 38px; cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.lb-close:hover { color: var(--orange); transform: scale(1.1); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 28px; padding: 12px 18px; cursor: pointer;
  transition: var(--transition); border-radius: 4px;
}
.lb-prev:hover, .lb-next:hover { background: var(--orange); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 44px; height: 44px; background: var(--orange); color: #fff;
  border: none; border-radius: 50%; font-size: 20px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,114,42,0.4);
  display: none; align-items: center; justify-content: center;
  transition: var(--transition);
}
#backToTop.show { display: flex; }
#backToTop:hover { background: var(--orange2); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .mgmt-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { max-height: 600px; }
  .nav-links li a {
    height: auto; padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid transparent;
  }
  .nav-links li a.active, .nav-links li a:hover {
    border-left-color: var(--orange); border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links li.career-btn a {
    margin: 10px 24px; border-radius: var(--radius); height: auto; padding: 12px 20px;
  }
  #navbar { position: relative; }
  .about-grid, .washing-layout { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 300px; }
  .about-badge { display: none; }
  .strength-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
  .factory-img-wrap.wide { grid-column: span 1; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-top { grid-template-columns: 1fr; }
  .map-circle-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mgmt-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-caption { left: 28px; bottom: 80px; }
  .slide-caption h2 { font-size: 26px; }
  .hero { height: 440px; }
}

@media (max-width: 600px) {
  .hero { height: 360px; }
  .slide-caption { left: 20px; max-width: 90vw; }
  .slide-caption h2 { font-size: 20px; }
  .slide-caption p { display: none; }
  .section { padding: 50px 0; }
  .industry-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .washing-specs { grid-template-columns: 1fr 1fr; }
  .washing-gallery { grid-template-columns: repeat(2, 1fr); }
  .mgmt-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .buyers-grid { gap: 8px; }
  .buyer-badge { padding: 10px 16px; font-size: 13px; }
  .section-header h2 { font-size: 24px; }
  .factory-grid { grid-template-columns: 1fr; }
  .stat-box h3 { font-size: 32px; }
}
