/* ============================================================
   Laklights Food Products – Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1a8a3c;
  --green-dark: #136b2e;
  --green-light:#e8f7ed;
  --gold:       #f5c518;
  --white:      #ffffff;
  --dark:       #1a1a1a;
  --grey:       #f4f4f4;
  --text:       #333333;
  --radius:     8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: url('../images/bg-main.jpg') center top / cover no-repeat fixed;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-badge {
  background: var(--green); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 4px;
  display: flex; flex-direction: column; align-items: center; line-height: 1.3;
}
.nav-logo-badge span { font-size: 0.55rem; font-weight: 400; opacity: 0.85; }
.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--white);
  font-size: 0.88rem; font-weight: 500;
  padding: 7px 14px; border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.nav-links a:hover { background: var(--green-light); color: var(--green); text-shadow: none; }
.nav-links a.active { background: var(--green); color: var(--white); text-shadow: none; }
nav.scrolled .nav-links a { color: var(--dark); text-shadow: none; }
nav.scrolled .nav-links a:hover { background: var(--green-light); color: var(--green); }
nav.scrolled .nav-links a.active { background: var(--green); color: var(--white); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.35s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
nav.scrolled .nav-toggle span { background: var(--dark); box-shadow: none; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO / SLIDER ── */
#home {
  position: relative; width: 100%; height: 100vh;
  min-height: 500px; overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }

#slide-1 video { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 800; color: var(--gold);
  text-shadow: 2px 3px 12px rgba(0,0,0,0.6);
  line-height: 1.1; margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92); margin-bottom: 36px;
  font-weight: 300; letter-spacing: 0.5px;
}
.btn-contact {
  display: inline-block;
  background: var(--green); color: var(--white);
  font-size: 1rem; font-weight: 600;
  padding: 14px 42px; border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.5px;
}
.btn-contact:hover { background: var(--green-dark); transform: translateY(-2px); }

#slide-2 { background: #000; }
#slide-2 img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.18);
  border: none; color: #fff; font-size: 1.8rem;
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.35); }
#arrow-prev { left: 20px; }
#arrow-next { right: 20px; }

.slider-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer; transition: background 0.3s, transform 0.2s;
  border: none;
}
.dot.active { background: var(--green); transform: scale(1.25); }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-label {
  display: inline-block;
  color: var(--green); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.2; margin-bottom: 20px;
}
.section-desc { max-width: 640px; color: #555; line-height: 1.8; font-size: 0.97rem; }
.divider {
  width: 52px; height: 4px; background: var(--green);
  border-radius: 2px; margin: 16px 0 28px;
}

/* ── ABOUT ── */
#about { position: relative; background: transparent; }
#about::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.40); }
#about .about-grid { position: relative; z-index: 1; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-images-col { display: flex; flex-direction: column; gap: 18px; }
.about-img-main {
  width: 100%; border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #f8f8f8;
}
.about-img-main img { width: 100%; display: block; object-fit: contain; }
.about-img-secondary {
  width: 100%; border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  background: #f0f4ff;
}
.about-img-secondary img { width: 100%; display: block; object-fit: contain; }
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--green);
  margin-bottom: 18px;
}
.about-text { font-size: 0.97rem; line-height: 1.8; color: #444; margin-bottom: 14px; }
.about-text-indent { padding-left: 20px; border-left: 3px solid var(--green-light); }
.stats-row { display: flex; gap: 30px; margin-top: 36px; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800; color: var(--green);
}
.stat-lbl { font-size: 0.78rem; color: #666; font-weight: 500; }

/* ── MISSION & VISION ── */
#mission-vision {
  position: relative; padding: 90px 5%;
  background: url('../images/mv-bg.jpg') center center / cover no-repeat fixed;
  overflow: hidden;
}
#mission-vision::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.40);
}
.mv-inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: stretch;
}
.mv-card {
  background: rgba(255,255,255,0.75);
  border: 2px solid var(--green);
  border-radius: 18px; padding: 40px 36px 36px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 40px rgba(26,138,60,0.10);
  transition: transform 0.25s, box-shadow 0.25s;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,138,60,0.18); }
.mv-icon { font-size: 2.6rem; margin-bottom: 14px; display: block; text-align: center; }
.mv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 800;
  color: var(--green); text-align: center; margin-bottom: 22px;
}
.mv-text { font-size: 0.97rem; line-height: 1.9; color: #333; text-align: center; }

/* ── OBJECTIVES ── */
#objectives {
  position: relative; padding: 90px 5%;
  background: transparent; overflow: hidden;
}
#objectives::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.55);
}
.obj-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.obj-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--green); line-height: 1.2; margin-bottom: 48px;
}
.obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.obj-card {
  background: rgba(255,255,255,0.80);
  border: 2px solid var(--green-light);
  border-top: 4px solid var(--green);
  border-radius: 16px; padding: 36px 36px 40px;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 28px rgba(26,138,60,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}
.obj-card:hover { box-shadow: 0 14px 40px rgba(26,138,60,0.14); transform: translateY(-4px); }
.obj-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--green);
  margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 1.5px solid var(--green-light);
}
.obj-list { list-style: none; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.obj-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.97rem; color: #333; font-weight: 500; line-height: 1.5;
}
.obj-list li::before { content: '❧'; color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ── PRODUCTS ── */
#products {
  position: relative; padding: 80px 5%;
  background: url('../images/products-bg.jpg') center center / cover no-repeat fixed;
  overflow: hidden;
}
#products::before { content: ''; position: absolute; inset: 0; background: rgba(220,220,220,0.45); }
.prod-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.prod-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--green); text-align: center; margin-bottom: 40px;
}
.prod-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.prod-cell {
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px; aspect-ratio: 1 / 1;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.prod-cell:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,0.12); z-index: 2; position: relative; }
.prod-cell img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.prod-more-wrap { text-align: center; margin: 36px 0 20px; }
.btn-see-more {
  background: var(--dark); color: #fff; border: none;
  padding: 14px 48px; font-size: 0.95rem; font-weight: 600;
  border-radius: 6px; cursor: pointer; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.btn-see-more:hover { background: var(--green); transform: translateY(-2px); }
.prod-hidden { display: none; margin-top: 16px; }
.prod-hidden.show { display: grid; }

/* ── CAREERS ── */
#careers {
  position: relative; padding: 90px 5%;
  background: transparent; overflow: hidden;
}
#careers::before { content: ''; position: absolute; inset: 0; background: rgba(245,245,240,0.55); }
.careers-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.careers-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--green); text-align: center; margin-bottom: 50px;
}
.job-cards-grid { display: flex; gap: 32px; }
.job-posting {
  width: 340px; flex-shrink: 0; background: #fff;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.job-posting:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.job-poster-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: #f5f5e8; }
.job-posting-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.job-posting-meta { font-size: 0.78rem; color: #888; margin-bottom: 10px; font-style: italic; }
.job-posting-meta a { color: var(--green); text-decoration: underline; }
.job-posting-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--dark);
  text-decoration: none; font-style: italic; transition: color 0.2s;
}
.job-posting-title:hover { color: var(--green); }
.btn-read-more {
  display: inline-block; background: var(--green-dark); color: #fff;
  font-size: 0.82rem; font-weight: 600; padding: 9px 20px;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
  margin-top: auto; align-self: flex-start; margin-bottom: 16px;
}
.btn-read-more:hover { background: var(--green); }

/* ── JOB MODAL ── */
.job-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.55); overflow-y: auto;
}
.job-modal-overlay.open { display: block; }
.job-modal {
  background: #fff; min-height: 100vh; max-width: 900px;
  margin: 0 auto; position: relative; box-shadow: 0 0 60px rgba(0,0,0,0.3);
}
.jm-breadcrumb {
  background: #1a1a1a; color: #fff; padding: 13px 28px;
  font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.jm-breadcrumb a { color: #fff; text-decoration: underline; }
.jm-breadcrumb .sep { color: #f5c518; }
.jm-breadcrumb .jm-cur { color: #ccc; }
.jm-close { margin-left: auto; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.jm-banner {
  position: relative;
  background: url('../images/about-products.jpg') center/cover no-repeat;
  padding: 36px 28px; display: flex; align-items: center; justify-content: center;
}
.jm-banner::before { content: ''; position: absolute; inset: 0; background: rgba(200,200,200,0.70); }
.jm-banner h2 { position: relative; z-index: 1; font-size: 1.6rem; font-weight: 400; color: #031801; letter-spacing: 0.5px; }
.jm-date { display: inline-block; background: #ddd; color: #555; font-size: 0.78rem; padding: 4px 14px; border-radius: 4px; margin: 22px 28px 0; }
.jm-meta {
  padding: 10px 28px 16px; font-size: 0.8rem; color: #666;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  border-bottom: 2px solid #eee;
}
.jm-meta a { color: var(--green); text-decoration: underline; font-weight: 600; }
.jm-body { padding: 28px 28px 0; }
.jm-body h1 { font-size: 2rem; font-weight: 700; color: #111; margin-bottom: 8px; font-family: inherit; }
.jm-rule { width: 44px; height: 3px; background: #aaa; margin-bottom: 22px; }
.jm-poster-wrap { margin-bottom: 28px; }
.jm-poster { width: 420px; max-width: 100%; display: block; box-shadow: 0 2px 12px rgba(0,0,0,0.10); }
.jm-content { background: #fffff0; padding: 28px 28px 24px; margin-bottom: 0; }
.jm-jobtitle { font-size: 2.2rem; font-weight: 900; color: var(--green); margin-bottom: 4px; font-family: Arial, sans-serif; }
.jm-req-label { color: #c0392b; font-weight: 700; font-size: 1rem; text-decoration: underline; margin-bottom: 14px; display: block; }
.jm-req-intro { font-weight: 700; font-size: 0.88rem; color: #111; margin-bottom: 16px; line-height: 1.6; }
.jm-should { font-size: 0.84rem; color: #444; margin-bottom: 10px; margin-left: 10px; }
.jm-content ul { list-style: none; padding: 0; margin: 0 0 0 10px; }
.jm-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: #333; margin-bottom: 7px; line-height: 1.5; }
.jm-content ul li::before { content: '■'; color: var(--green); font-size: 0.55rem; flex-shrink: 0; margin-top: 5px; }
.jm-pdf-bar { background: #f0f0f0; border-top: 1px solid #ccc; padding: 14px 28px; display: flex; align-items: center; gap: 16px; }
.jm-pdf-link { font-size: 0.85rem; color: var(--green); text-decoration: underline; cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
.jm-download-btn { background: #1a1a1a; color: #fff; border: none; padding: 9px 28px; border-radius: 20px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.2s; display: inline-block; text-decoration: none; }
.jm-download-btn:hover { background: var(--green); }
@media print {
  body > *:not(#pdf-print-area) { display: none !important; }
  #pdf-print-area { display: block !important; position: fixed; inset: 0; z-index: 9999; background: #fff; }
  #pdf-print-area img { width: 100%; height: auto; display: block; }
}

/* ── GALLERY ── */
#gallery { background: #1c3c1c; position: relative; }
#gallery .section-label { color: var(--gold); }
#gallery .section-title { color: var(--white); }
#gallery .divider { background: var(--gold); }
#gallery .section-desc { color: rgba(255,255,255,0.75); text-align: center; margin: 0 auto 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 36px; }
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 8px;
  cursor: pointer; transition: transform 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25); background: #1a3a1a;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); z-index: 9999;
  align-items: center; justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.gallery-lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2.4rem; cursor: pointer; background: none; border: none; line-height: 1; }

/* ── CONTACT ── */
#contact { background: transparent; position: relative; color: #222; }
#contact::before { content: ''; position: absolute; inset: 0; background: rgba(235,235,228,0.45); }
#contact > div { position: relative; z-index: 1; }
.contact-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.contact-form-wrap h2 { font-size: 2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 24px; }
.form-alert { padding: 10px 14px; border-radius: 6px; background: #f2f2f2; font-size: 0.85rem; margin-bottom: 10px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  background: #fff; border: 1px solid #ddd; color: #333;
  padding: 13px 16px; border-radius: 4px; font-size: 0.88rem;
  font-family: inherit; outline: none;
  transition: border-color 0.2s; width: 60%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { min-height: 140px; resize: vertical; width: 100%; }
.btn-send {
  background: #1a1a1a; color: #fff; border: none;
  padding: 14px 36px; border-radius: 4px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  letter-spacing: 0.5px; transition: background 0.2s;
  align-self: center; margin-top: 6px;
}
.btn-send:hover { background: var(--green-dark); }
.contact-info-wrap h2 { font-size: 1.6rem; font-weight: 700; color: #1a1a1a; margin-bottom: 36px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.contact-info-card { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-info-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(26,138,60,0.13); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--green); }
.contact-info-card h4 { font-size: 1rem; font-weight: 700; color: #1a1a1a; }
.contact-info-card p { font-size: 0.82rem; color: #555; line-height: 1.7; text-align: center; }
.contact-info-card p a { color: var(--green); text-decoration: none; }
.contact-hotline { color: var(--green) !important; font-weight: 600; }

/* ── FOOTER ── */
footer {
  position: relative;
  background: url('../images/footer-bg.jpg') center/cover no-repeat;
  color: #fff; text-align: center; padding: 60px 5% 0; overflow: hidden;
}
footer::before { content: ''; position: absolute; inset: 0; background: rgba(10,30,10,0.72); }
footer > * { position: relative; z-index: 1; }
.footer-logo { margin-bottom: 32px; }
.footer-logo img { height: 110px; width: auto; }
.footer-tagline { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 10px; letter-spacing: 0.3px; }
.footer-phone { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 32px; letter-spacing: 1px; }
.footer-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: #333;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover { background: var(--green); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 16px 0; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: var(--green); text-decoration: none; }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, transform 0.3s; z-index: 999;
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-images-col { flex-direction: row; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-top { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form input { width: 100%; }
}
@media (max-width: 700px) {
  .mv-inner { grid-template-columns: 1fr; }
  .mv-card { padding: 30px 24px; }
}
@media (max-width: 680px) {
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; width: 100%;
    background: #fff; padding: 16px 5% 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px;
  }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 10px 14px; color: var(--dark); text-shadow: none; }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.35); }
  nav.scrolled .nav-toggle span { background: var(--dark); box-shadow: none; }
  .nav-toggle.open span { background: var(--dark); box-shadow: none; }
  .stats-row { flex-wrap: wrap; gap: 18px; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .obj-grid { grid-template-columns: 1fr; }
  .obj-card { padding: 28px 24px 32px; }
  .job-cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  section { padding: 60px 4%; }
  .slider-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
}