html {
  color-scheme: light;
}
/* ГЛАВНИ БОИ И ПРОМЕНЛИВИ */
:root {
  --bg-cream: #f4f1ea;
  --text-dark: #1a2a22;
  --accent-red: #d32f2f;
  --accent-green: #386641;
  --border-light: #dcd7cb;
  /* НОВИТЕ ФОНТОВИ */
  --font-heading: "DM Serif Display", serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ТИПОГРАФИЈА & ГЛОБАЛНИ СТИЛОВИ */
.section-title {
  font-family: var(--font-heading);
  font-size: 55px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.1;
}
.section-title i {
  font-style: italic;
}
.section-subtitle {
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: #555;
  font-size: 16px;
}
.view-more {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.view-more:hover {
  color: var(--accent-red);
  border-color: var(--accent-red);
}
.text-center {
  text-align: center;
}

/* ========================================= */
/* NAVIGACIJA (Krem pozadina sa animacijom)  */
/* ========================================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 17px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 241, 234, 0.95); /* Krem pozadina od samog početka */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Kada se skrola prema dolje (Smanjuje se i dobija sjenku, ali BOJA OSTAJE ISTA) */
header.scrolled {
  padding: 12px 50px;
  background: rgba(
    244,
    241,
    234,
    0.95
  ); /* СМЕНЕТО: Сега ја задржува истата крем боја */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Оставаме малку сенка за да се одвои од текстот кога скролаш */
  border-bottom: 1px solid var(--border-light);
}

/* LOGO (Tamno crveni) */
.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  transition: all 0.4s ease;
}
.logo span {
  color: var(--text-dark);
  font-size: 20px;
  transition: all 0.4s ease;
}

/* Smanjivanje loga pri skrolanju */
header.scrolled .logo {
  font-size: 22px;
}
header.scrolled .logo span {
  font-size: 16px;
}

/* MENI LINKOVI (Tamni) */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}
nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  padding-bottom: 5px;
}

/* Crvena linija ispod linkova na hover */
nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-red);
  transition: width 0.3s ease;
}
nav a:hover {
  color: var(--accent-red);
}
nav a:hover::after {
  width: 100%;
}

/* ========================================= */
/* БОИ КОГА Е СКРОЛНАТО (Се враќаат во нормала)*/
/* ========================================= */
header.scrolled .logo {
  color: var(--accent-red);
  font-size: 22px;
}
header.scrolled .logo span {
  color: var(--text-dark);
  font-size: 16px;
}
header.scrolled nav a {
  color: var(--text-dark);
}
header.scrolled nav a:hover {
  color: var(--accent-red);
}

/* КОПЧЕ */
.header-btn {
  background-color: var(--accent-red);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  border: 2px solid var(--accent-red);
}

/* Копче ховер на почеток (со бела рамка) */
.header-btn:hover {
  background-color: transparent;
  color: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

/* Копче ховер кога е скролнато (со црвена рамка) */
header.scrolled .header-btn:hover {
  color: var(--accent-red);
  border-color: var(--accent-red);
}

/* ХЕРО СЕКЦИЈА */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(26, 42, 34, 0.6), rgba(26, 42, 34, 0.6)),
    url("/Pictures/Gemini_Generated_Image_d3clvod3clvod3cl\ \(1\).png")
      center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: var(--bg-cream);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 70px;
  line-height: 1.1;
  font-weight: 500;
  max-width: 900px;
  margin-bottom: 20px;
}
.hero h1 i {
  font-style: italic;
  font-weight: 400;
}
.hero p {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
.btn-primary,
.btn-secondary {
  color: white;
  padding: 15px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background-color: var(--accent-red);
}
.btn-secondary {
  background-color: var(--accent-green);
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* СТАТИСТИКА (Оригинален светол дизајн) */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 80px 50px;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.stat-item h2 {
  font-size: 50px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.stat-item span {
  font-size: 20px;
  font-family: var(--font-body);
}
.stat-sub {
  font-size: 12px;
  color: #666;
  display: block;
}
.stat-item p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-top: 5px;
}

/* ПРОДУКТИ ГРИД (Бели картички со 3D ефект) */
.products-section {
  padding: 100px 50px;
}
/* ========================================= */
/* ГРИД ЗА ПРОИЗВОДИТЕ (Responsive 4-2-1)    */
/* ========================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* За компјутер: Сите 4 во 1 ред */
  gap: 30px;
  margin-top: 50px;
}

/* ЗА ТАБЛЕТИ (Екрани помали од 1024px) */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* За таблет: 2 колони (2 реда) */
  }
}

/* ЗА ТЕЛЕФОНИ (Екрани помали од 600px) */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr; /* За телефон: 1 колона (4 реда еден под друг) */
  }
}

/* Кога ќе поминеш со глувчето, картичката се крева и зумира побрзо (0.4s) */
.product-card.active:hover {
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.4s ease !important;
}

.product-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 25px;
}

.product-card h3 {
  font-size: 26px;
  margin: 0 30px 10px 30px;
  font-weight: 500;
  font-family: var(--font-heading);
}
.product-card p {
  font-size: 15px;
  color: #555;
  margin: 0 30px 25px 30px;
  min-height: 45px;
}
.product-card .view-more {
  margin-left: 30px;
}

/* Дизајн за картичката */
.product-card {
  text-align: left;
  background-color: #f9f4ec;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  overflow: hidden;
  /* Транзиција само за картичката */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  padding-bottom: 30px;
}

/* Ефект на лебдење: Целата картичка се крева нагоре */
.product-card:hover {
  transform: translateY(-15px); /* Ја подигнува картичката */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Посилна, мека сенка */
}

/* Сликата сега останува мирна */
.product-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 25px;
}

/* Порамнување на текстот внатре во картичката */
.product-card h3 {
  font-size: 26px;
  margin: 0 30px 10px 30px;
  font-weight: 500;
  font-family: var(--font-heading);
}

.product-card p {
  font-size: 15px;
  color: #555;
  margin: 0 30px 25px 30px;
  min-height: 45px;
}

.product-card .view-more {
  margin-left: 30px;
}

/* МАПА СЕКЦИЈА */
.map-section {
  background-color: #111;
  color: var(--bg-cream);
  padding: 100px 50px;
  text-align: center;
}
.map-section .section-title {
  color: white;
}
.map-section .section-title i {
  color: var(--accent-red);
}
.map-section .section-subtitle {
  color: #aaa;
  max-width: 800px;
}
.map-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
.map-container img {
  width: 100%;
  opacity: 0.8;
  filter: grayscale(100%) contrast(1.2);
}

/* ПРОЦЕС НА РАБОТА */
.process-section {
  padding: 100px 50px;
  background-color: #e8e4d8;
  text-align: center;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto 0 auto;
  text-align: left;
}
.process-step {
  border-top: 2px solid var(--text-dark);
  padding-top: 20px;
}
.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.process-step p {
  font-size: 14px;
  color: #555;
}

/* СВЕЖИНА / КВАЛИТЕТ СЕКЦИЈА */
.quality-section {
  padding: 100px 50px;
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.quality-image {
  flex: 1;
}
.quality-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.quality-content {
  flex: 1;
}
.quality-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.q-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}
.q-num {
  font-size: 18px;
  font-weight: 600;
  color: #999;
}
.q-text h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}
.q-text p {
  font-size: 14px;
  color: #555;
}

/* ФАМИЛИЈА СЕКЦИЈА */
.family-section {
  padding: 100px 50px;
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 50px auto 0 auto;
  gap: 40px;
  text-align: left;
  align-items: center;
}
.family-grid h2 {
  font-size: 80px;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-dark);
}
.family-grid p {
  font-size: 18px;
  color: #444;
}

/* ========================================= */
/* FAQ СЕКЦИЈА (Мека Grid Анимација)         */
/* ========================================= */
.faq-section {
  padding: 100px 50px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq-section .section-subtitle {
  margin: 0 auto 50px auto;
  max-width: 600px;
  color: #555;
  line-height: 1.7;
}

/* Контејнерот добива горна и долна линија како на твојот пример */
.faq-container {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-item:last-child {
  border-bottom: none;
}

/* Копчето и текстот */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.faq-text {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-dark);
  transition: color 0.3s ease;
  line-height: 1.25;
  font-weight: 400;
}
.faq-question:hover .faq-text {
  color: var(--accent-red);
}

/* Модерното кругче со иконата (од твојот пример) */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  position: relative;
  transition: border-color 0.3s ease;
  margin-top: 4px;
}
.faq-question:hover .faq-icon {
  border-color: rgba(0, 0, 0, 0.4);
}

/* Плус и Минус направени со CSS за да се анимираат перфектно */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.faq-icon::before {
  width: 12px;
  height: 1.5px;
} /* Хоризонтална линија */
.faq-icon::after {
  width: 1.5px;
  height: 12px;
} /* Вертикална линија */

/* Активна состојба (Кликнато) */
.faq-item.active .faq-text {
  color: var(--accent-red);
}
.faq-item.active .faq-icon {
  border-color: var(--accent-red);
  color: var(--accent-red);
}
.faq-item.active .faq-icon::after {
  transform: rotate(90deg) scale(0);
  opacity: 0;
} /* Вертикалната линија исчезнува */
.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
} /* Хоризонталната се врти */

/* МАГИЈАТА НА АНИМАЦИЈАТА (Како на твојот пример) */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr; /* Висина 0 на почеток */
  opacity: 0;
  transition:
    grid-template-rows 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.5s ease;
}
.faq-item.active .faq-answer {
  grid-template-rows: 1fr; /* Целосна висина кога е отворено */
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0; /* ОВА ГАРАНТИРА ДЕКА НЕМА ДА ИСЧЕЗНЕ БАГИРАНО */
  overflow: hidden;
}
.faq-answer-inner p {
  padding-bottom: 28px;
  font-size: 15.5px;
  color: #555;
  line-height: 1.75;
  margin: 0;
  max-width: 700px;
}

/* ТЕМНА СЕКЦИЈА ЗА КОНТАКТ (CTA) */
.cta-section {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  text-align: center;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 55px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 25px;
}
.cta-section h2 i {
  font-style: italic;
  color: #a4bba8;
}
.cta-section p {
  font-size: 18px;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 40px;
  color: #dcd7cb;
}

/* ФУТЕР */
footer {
  background-color: var(--bg-cream);
  padding: 80px 50px 30px 50px;
  border-top: 1px solid var(--border-light);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 50px;
}
.footer-logo-col p {
  font-size: 14px;
  color: #555;
  margin-top: 20px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 25px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.footer-col ul li a:hover {
  color: var(--accent-red);
  padding-left: 5px;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #888;
}

/* CSS АНИМАЦИИ */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

/* РЕСПОНЗИВНОСТ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-section {
    flex-direction: column;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  nav ul {
    display: none;
  }
  .hero h1 {
    font-size: 45px;
  }
  .family-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    transform: translateY(20px);
  }
}
/* ========================================= */
/* СТИЛОВИ ЗА СТРАНАТА ЗА КОНТАКТ (ФОРМА)    */
/* ========================================= */

.contact-page {
  padding: 160px 20px 100px 20px;
  background-color: var(--bg-cream);
  display: flex;
  justify-content: center;
  min-height: 80vh;
}
.contact-box {
  background: white;
  padding: 50px;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.contact-box h1 {
  font-family: var(--font-heading);
  font-size: 45px;
  margin-bottom: 10px;
  color: var(--text-dark);
  text-align: center;
  font-weight: 500;
}
.contact-box > p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dcd7cb;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 15px;
  background-color: #faf9f6;
  color: var(--text-dark);
  outline: none;
  transition:
    border-color 0.3s,
    background-color 0.3s;
}
.form-control:focus {
  border-color: var(--accent-red);
  background-color: white;
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.submit-btn {
  width: 100%;
  font-size: 18px;
  padding: 18px;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-box {
    padding: 30px 20px;
  }
  .contact-box h1 {
    font-size: 35px;
  }
}
/* ========================================= */
/* WHAT MAKES US SPECIAL СЕКЦИЈА             */
/* ========================================= */
.special-section {
  padding: 100px 50px;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}
.special-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.special-content {
  flex: 1.2;
}
.special-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}
.special-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5px;
}
.special-text h3 {
  font-size: 22px;
  font-family: var(--font-heading);
  margin-bottom: 8px;
  color: var(--text-dark);
}
.special-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.special-image {
  flex: 1;
}
.special-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .special-container {
    flex-direction: column;
  }
  .special-content .section-title {
    text-align: center !important;
  }
}

@media (max-width: 1024px) {
  .special-container {
    flex-direction: column;
  }
  .special-content .section-title {
    text-align: center !important;
  }
}
/* ========================================= */
/* ABOUT US СТРАНА                           */
/* ========================================= */

/* 1. About Hero Section (Темна позадина) */
.about-hero {
  padding: 180px 20px 100px 20px;
  background-color: var(
    --text-dark
  ); /* Користиме темно кафена/зелена наместо зелената од видеото */
  color: var(--bg-cream);
  text-align: left;
  display: flex;
  justify-content: center;
}
.about-hero-content {
  max-width: 1000px;
  width: 100%;
}
.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--bg-cream);
  margin-bottom: 25px;
  font-weight: 500;
}
.about-hero p {
  font-size: 18px;
  color: #dcd7cb;
  line-height: 1.8;
  max-width: 800px;
}

/* 2. Story & Certifications Sections (50/50 Split) */
.story-section {
  padding: 100px 50px;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}
.story-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.story-content {
  flex: 1;
}
.story-content h2 {
  margin-bottom: 30px;
}
.story-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 20px 0;
}
.story-image {
  flex: 1;
}
.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Листа за Сертификати */
.cert-list {
  list-style: none;
  margin: 20px 0 30px 0;
}
.cert-list li {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-list li::before {
  content: "✔";
  color: var(--accent-red);
  font-weight: bold;
}

/* Респонзивност за мобилен */
@media (max-width: 992px) {
  .story-container {
    flex-direction: column-reverse;
  }
  .about-hero h1 {
    font-size: 45px;
  }
}
/* ========================================= */
/* ГАЛЕРИЈА СЕКЦИЈА                          */
/* ========================================= */
.gallery-section {
  padding: 180px 50px 100px 50px; /* 180px е горниот простор за да ја избегне навигацијата */
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* Кутијата за секоја слика */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3; /* Ги прави сите слики со иста пропорција */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Ефект на зумирање при ховер */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Темен прелив и текст што се појавува одоздола */
/* Темен прелив и текст што се појавува одоздола */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  text-align: left;
  transform: translateY(
    100%
  ); /* ОВА Е ТРИКОТ: Целосно го турка надвор од сликата на почеток */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
.gallery-overlay p {
  margin: 5px 0 0 0;
  font-size: 13px;
  opacity: 0.8;
}

/* Ефектот на појавување */
.gallery-item:hover .gallery-overlay {
  transform: translateY(0); /* Мазно се враќа на својата позиција */
}

/* Responsive за Галерија */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery-section {
    padding: 80px 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================= */
/* МАЛО ПРОЗОРЧЕ ЗА ГАЛЕРИЈА (Mini Modal)    */
/* ========================================= */
.gallery-item {
  cursor: pointer;
}

.mini-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Полупроѕирна темна позадина */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mini-modal.active {
  display: flex;
  opacity: 1;
}

/* Белата кутија во средина */
.mini-modal-content {
  background-color: #ffffff;
  width: 90%;
  max-width: 650px; /* Големина на малото прозорче */
  padding: 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.mini-modal.active .mini-modal-content {
  transform: translateY(0);
}

/* Иксот за затворање */
.mini-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.mini-modal-close:hover {
  color: var(--accent-red);
}

/* Насловот во прозорчето */
.mini-modal-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

/* Мрежата за 3те слики внатре */
.mini-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 слики во ред */
  gap: 15px;
}

.mini-modal-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* За мобилни телефони */
@media (max-width: 600px) {
  .mini-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mini-modal-grid img {
    height: 110px;
  }
  .mini-modal-content {
    padding: 20px;
  }
}
/* ========================================= */
/* ZOOM MODAL (Зголемена слика со стрелки)   */
/* ========================================= */
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 10000; /* Мора да е најгоре, над сите други прозорци */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92); /* Темна позадина за фокус */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-modal.active {
  display: flex;
  opacity: 1;
}

.zoom-img {
  max-width: 85%;
  max-height: 75vh; /* Таман големина - не премногу голема */
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.zoom-modal.active .zoom-img {
  transform: scale(1);
}

/* Икс за затворање на зумот */
.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}
.zoom-close:hover {
  color: var(--accent-red);
}

/* Копчиња за лево и десно */
.zoom-prev,
.zoom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.zoom-prev:hover,
.zoom-next:hover {
  background: var(--accent-red);
}

.zoom-prev {
  left: 25px;
}
.zoom-next {
  right: 25px;
}

/* За мобилен */
@media (max-width: 600px) {
  .zoom-prev {
    left: 10px;
  }
  .zoom-next {
    right: 10px;
  }
  .zoom-img {
    max-width: 95%;
  }
}
/* ========================================= */
/* TIMELINE PROCESS (ROUTE СЕКЦИЈА)          */
/* ========================================= */
.route-section {
  padding: 120px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.route-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
  position: relative;
}

/* 1. Линијата почнува од 12.5% (центарот на првата колона) и долга е 75% */
.route-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: var(--accent-red);
  opacity: 0.3;
  z-index: 1;
}

/* 2. Круговите се центрираат со margin: 0 auto */
.step-number {
  width: 70px;
  height: 70px;
  /* ОВДЕ Е ПОПРАВКАТА: Ја ставаме точната крем боја за да не биде проѕирно */
  background-color: #f4f1ea !important;

  border: 1.5px solid var(--accent-red);
  color: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 0 auto 25px auto;

  /* Ова создава илузија на празен простор (дупка) околу кругот */
  box-shadow: 0 0 0 15px #f4f1ea !important;

  /* Го ставаме кругот најгоре */
  position: relative !important;
  z-index: 5 !important;
}

.route-step {
  position: relative;
  z-index: 2;
}
.step-content {
  text-align: center;
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ЗА ТАБЛЕТ И МОБИЛЕН (Под 900px) */
@media (max-width: 900px) {
  .route-timeline {
    grid-template-columns: 1fr;
    gap: 40px; /* Празен простор меѓу чекорите */
    padding-left: 20px;
  }

  /* 1. Ја КРИЕМЕ старата долга линија бидејќи веќе не ни треба */
  .route-timeline::before {
    display: none;
  }

  .route-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative; /* Ова ѝ кажува на линијата од каде да почне */
  }

  /* 2. Цртаме мали линии за СЕКОЈ чекор посебно */
  .route-step::before {
    content: "";
    position: absolute;
    top: 70px; /* Почнува точно под кругот (кој е висок 70px) */
    left: 35px; /* Застанува на перфектна средина на кругот */
    width: 1px;
    bottom: -40px; /* Се протега надолу точно колку што е празниот простор (gap: 40px) до следниот чекор */
    background: var(--accent-red);
    opacity: 0.3;
  }

  /* 3. НАЈВАЖНОТО: На последниот чекор (04) линијата се брише! */
  .route-step:last-child::before {
    display: none;
  }

  .step-number {
    margin-bottom: 0;
    flex-shrink: 0;
    /* Ја тргнавме сенката (box-shadow) бидејќи со овој нов метод веќе не ни треба */
  }

  .step-content {
    padding-top: 15px;
    text-align: left;
  }
}
/* ========================================= */
/* ХАМБУРГЕР МЕНИ (БЕЗ ДА СЕ МЕНУВА PC)      */
/* ========================================= */

/* 1. ПОДЕСУВАЊА ЗА КОМПЈУТЕР (PC) */
.hamburger {
  display: none; /* Скриено на компјутер */
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.hamburger .bar {
  width: 30px;
  height: 3px;
  background-color: var(
    --accent-red
  ); /* Црвени цртички за да се гледаат јасно */
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.mobile-only-btn {
  display: none !important; /* Го криеме дуплираното копче на компјутер */
}

/* 2. ЗА ТАБЛЕТ И МОБИЛЕН (Под 1024px) */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .pc-only-btn {
    display: none !important;
  }

  /* МОБИЛНО КОПЧЕ СО АПСОЛУТНО ЦЕНТРИРАЊЕ */
  .mobile-only-btn {
    display: inline-block !important;
    margin-top: 30px !important;
    color: #ffffff !important;

    /* Блокираме сè што го влече лево */
    float: none !important;
    align-self: flex-start !important;

    /* НУКЛЕАРНАТА ОПЦИЈА: Го става точно на центар */
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  /* ЛИЗГАЧКО МЕНИ - Се спушта одгоре */
  nav#nav-menu {
    position: absolute;
    left: 0;
    top: -150vh; /* Го криеме многу високо над екранот */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; /* Ова го центрира целиот текст и копчето */
    width: 100%;
    height: 100vh;
    background-color: #ebe8df !important;
    padding-top: 50px;
    transition: top 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 1px solid var(--border-light);
    z-index: -1; /* Ова прави менито елегантно да излегува ОД ПОЗАДИ хедерот */
  }

  /* Кога ќе кликнеш, менито паѓа точно под хедерот */
  nav#nav-menu.active {
    top: 100%;
  }

  nav#nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
  }

  nav#nav-menu ul li a {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
  }

  /* Анимација: Хамбургерот се претвора во X */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
/* ========================================= */
/* НАМАЛУВАЊЕ НА ХЕДЕРОТ ЗА ТАБЛЕТ И МОБИЛЕН */
/* ========================================= */
@media (max-width: 1024px) {
  /* 1. Висина на хедерот кога си сосема најгоре */
  header {
    padding: 10px 20px !important;
  }

  /* 2. Висина на хедерот кога скролаш надолу */
  header.scrolled {
    padding: 6px 20px !important;
  }
}
/* ========================================= */
/* ФИНАЛНИ ПОПРАВКИ ЗА ФУТЕРОТ               */
/* ========================================= */

/* 1. Го правиме логото да изгледа како вистинско лого, а не како линк */
a.footer-logo {
  text-decoration: none !important; /* Ја брише грдата линија одоздола */
  font-family:
    var(--font-heading), serif !important; /* Го враќа убавиот фонт */
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--accent-red) !important; /* Црвена боја за SA-FRIC */
  display: inline-block;
  text-align: center;
  margin-bottom: 15px;
  margin-left: 30px;
}

a.footer-logo span {
  color: var(--text-dark) !important; /* Темна боја за FRUIT */
  display: block; /* Го става во нов ред */
}

/* 2. Го поправаме празниот простор (делиме на 4 колони наместо 5) */
.footer-container {
  display: grid !important;
  /* Ова ги распоредува: првата колона е малку поширока за текстот, другите се рамномерни */
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
  gap: 40px !important;
  max-width: 1200px !important;
  margin: 0 auto !important; /* Го центрира целиот блок на средина од екранот */
  width: 100% !important;
}

/* 3. Го средуваме да изгледа убаво и на телефон (едно под друго) */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr !important; /* Ги реди во една колона */
    text-align: center;
  }

  .contact-icons li {
    justify-content: center; /* Ги центрира иконите на телефон */
  }
  a.footer-logo {
    margin-left: 0;
  }
}
/* ========================================= */
/* СОЦИЈАЛНИ ИКОНИ ВО ФУТЕР (ВЕРТИКАЛНО)     */
/* ========================================= */
.social-icons {
  display: flex;
  flex-direction: column; /* Ова е магичниот збор што ги реди една под друга */
  align-items: flex-start; /* Ги порамнува убаво на левата страна */
  gap: 18px; /* Празен простор меѓу нив */
  margin-top: 15px;
}

.social-icons a {
  color: var(--text-dark);
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Ефектот кога ќе поминеш со глувчето (HOVER) */
.social-icons a:hover {
  color: var(--accent-red); /* Светат во твојата црвена боја */
  transform: translateX(8px); /* Елегантно се лизгаат малку кон десно */
}
/* Контрола само за иконите */
.social-icons a i {
  font-size: 28px;
  width: 40px;
  text-align: center; /* Центрирањето внатре во нивната кутија ги реди перфектно една под друга */

  /* ОВА Е МАГИЈАТА: Забранува иконата да се стесни дури и ако текстот е предолг! */
  flex-shrink: 0;
}

/* Ова е НОВО: Контрола за самиот текст (особено за долгата адреса) */
.social-icons a span {
  text-align: left; /* Гарантира дека вториот ред ќе почне точно под првиот */
  line-height: 1.4; /* Дава убав празен простор меѓу двата реда на адресата */
  font-size: 18px;
}

/* За да се центрираат иконите на мобилен телефон */
@media (max-width: 900px) {
  .social-icons {
    align-items: left; /* Ги става на средина кога си на телефон */
  }
}
/* Контрола само за иконите (ЗГОЛЕМЕНИ) */
.social-icons a i {
  font-size: 32px; /* Ги правиме иконите значително поголеми (текстот е 16px) */
  width: 45px; /* Ја зголемуваме и широчината за сите да останат подредени како под конец */
  text-align: left;
}
/* --- СТИЛОВИ ЗА ПРОДУКТ МОДАЛИТЕ --- */
.product-modal {
  display: none; /* Скриено по дифолт */
  position: fixed;
  z-index: 2000; /* Да биде над се друго */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65); /* Темна позадина зад картичката */
  align-items: center;
  justify-content: center;
}

.product-modal-content {
  background-color: #faf8f2; /* Крем боја слична на твојот сајт */
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 750px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #d32f2f; /* Црвена боја при ховер */
}

.modal-title {
  color: #d32f2f; /* Црвен наслов како на сликата */
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal-images {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}

.modal-images img {
  width: 32%; /* 3 слики делат 100% простор */
  aspect-ratio: 1 / 1; /* Ги прави сликите совршени коцки */
  object-fit: cover; /* Спречува сликата да се развлече */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* За мобилен телефон сликите да одат една под друга */
@media (max-width: 600px) {
  .modal-images {
    flex-direction: column;
    align-items: center;
  }
  .modal-images img {
    width: 90%;
  }
}
/* Врти го редоследот (текст па слика) само на мобилни уреди */
@media (max-width: 900px) {
  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .social-icons {
    display: flex;
    flex-direction: column;
    width: fit-content; /* Ова прави блокот да биде широк само колку што е текстот */
    margin: 0 auto; /* Ова го центрира целиот блок на средината од екранот */
  }

  .social-icons a {
    justify-content: flex-start; /* Ги задржува иконите и текстот совршено порамнети внатре во блокот */
    margin-bottom: 15px;
  }
}
/* --- СТИЛОВИ САМО ЗА МОБИЛЕН ТЕЛЕФОН --- */
@media screen and (max-width: 768px) {
  /* 1. Средување на банерот */
  .hero {
    padding-top: 50px; /* Го спушта целиот банер надолу за да не се лепи за менито */
  }

  .hero p {
    font-size: 16px; /* Ги намалува буквите на параграфот */
    line-height: 1.5; /* Дава простор меѓу редовите за полесно читање */
    margin-bottom: 25px; /* Дава простор под текстот пред копчето */
  }

  /* 2. Средување на прозорчето (модалот) за да не се сече текстот */
  .product-modal-content {
    max-height: 85vh; /* Не дозволува прозорчето да биде поголемо од екранот */
    overflow-y: auto; /* Додава опција за скролање внатре во прозорчето */
    padding: 20px; /* Додава малку празен простор од страните */
  }

  /* 3. Средување на 3-те слики во прозорчето */
  .modal-images {
    display: flex;
    flex-direction: row; /* Ги реди сликите една до друга (во еден ред) */
    gap: 8px; /* Остава мал простор помеѓу нив */
    margin-bottom: 15px;
  }

  .modal-images img {
    flex: 1; /* Овозможува сите 3 слики да делат ист простор подеднакво */
    height: 70px; /* Ги прави сликите пониски за да има место за текстот */
    object-fit: cover; /* Не дозволува сликите да се развлечат или сплескаат */
    border-radius: 6px; /* Малку ги заоблува аглите на сликите (опционално) */
  }

  .modal-text {
    font-size: 15px; /* Го намалува малку текстот внатре во прозорчето */
  }
}
