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

:root {
  --bg-dark: #121212;
  --bg-darker: #1e1e1e;
  --accent-neon: #39ff14;
  --accent-hover: #2ecc71;
  --text-light: #cfcfcf;
  --transition-speed: 0.3s;
  --font-family: "Roboto", sans-serif;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #39ff14;
  color: #121212;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-family);
  line-height: 1.6;
}

.site-header {
  background-color: var(--bg-darker);
  border-bottom: 3px solid var(--accent-neon);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 1s ease-out;
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.site-nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.1rem;
  position: relative;
  transition: color var(--transition-speed) ease;
}

.site-nav ul li a:hover {
  color: var(--accent-neon);
}

.site-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--accent-neon);
  transition: width var(--transition-speed) ease;
}

.site-nav ul li a:hover::after {
  width: 100%;
}

.logo img {
  height: 50px;
  filter: drop-shadow(0 0 5px var(--accent-neon));
  animation: neonPulse 2s infinite alternate;
}

.content-section {
  width: 100%;
  height: calc(100vh - 80px);
}

.content-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--bg-darker);
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(57, 255, 20, 0.5);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 1s ease-out;
}

.cookies-div p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookies-div button {
  background-color: var(--accent-neon);
  color: var(--bg-dark);
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

.cookies-div button:hover {
  background-color: var(--accent-hover);
}

.site-footer {
  background-color: var(--bg-darker);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 3px solid var(--accent-neon);
  animation: slideUp 1s ease-out;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-hours,
.footer-contact,
.footer-logo {
  flex: 1 1 300px;
}

.footer-hours h3,
.footer-contact h3 {
  color: var(--accent-neon);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-hours p,
.footer-contact p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px var(--accent-neon));
}

.footer-logo p {
  color: var(--accent-neon);
  font-size: 1rem;
}

.footer-links {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover {
  color: var(--accent-neon);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neonPulse {
  from {
    filter: drop-shadow(0 0 5px var(--accent-neon));
  }
  to {
    filter: drop-shadow(0 0 20px var(--accent-neon));
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #cfcfcf;
  animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-neon);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  background-color: var(--accent-neon);
  color: var(--bg-dark);
  padding: 12px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-hover);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.company-details-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
  color: #e0e0e0;
}

.company-details-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.company-history h2 {
  font-size: 2.8rem;
  color: #39ff14;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.timeline-item {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  opacity: 0;
  animation: fadeInLeft 0.8s forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.9s;
}
.timeline-item:nth-child(4) {
  animation-delay: 1.2s;
}

.timeline-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #39ff14;
}

.timeline-item p {
  font-size: 1rem;
  line-height: 1.5;
}

.company-values h3 {
  font-size: 2rem;
  color: #39ff14;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.company-values ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.company-values ul li {
  background-color: #2a2a2a;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1rem;
  color: #e0e0e0;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.company-values ul li:nth-child(1) {
  animation-delay: 0.3s;
}
.company-values ul li:nth-child(2) {
  animation-delay: 0.5s;
}
.company-values ul li:nth-child(3) {
  animation-delay: 0.7s;
}
.company-values ul li:nth-child(4) {
  animation-delay: 0.9s;
}

.company-mission h3 {
  font-size: 2rem;
  color: #39ff14;
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 1s;
}

.company-mission p {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 1.2s;
}

.production-details-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
  color: #e0e0e0;
}

.production-details-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.production-details-section h2 {
  font-size: 2.8rem;
  color: #39ff14;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.production-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.production-step {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  opacity: 0;
  animation: fadeInRight 0.8s forwards;
}

.production-step:nth-child(1) {
  animation-delay: 0.3s;
}
.production-step:nth-child(2) {
  animation-delay: 0.6s;
}
.production-step:nth-child(3) {
  animation-delay: 0.9s;
}

.production-step img {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px #39ff14;
}

.step-text {
  flex: 1;
}

.step-text h3 {
  font-size: 1.8rem;
  color: #39ff14;
  margin-bottom: 10px;
}

.step-text p {
  font-size: 1rem;
  line-height: 1.5;
}

.production-summary {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 1s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.product-advantages {
  background-color: #1a1a1a;
  color: #cfcfcf;
  padding: 80px 20px;
}

.product-advantages .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.product-description h2 {
  font-size: 2.8rem;
  color: #39ff14;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.product-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.advantages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.advantage-item {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  width: calc(25% - 30px);
  min-width: 250px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.advantage-item:nth-child(1) {
  animation-delay: 0.3s;
}
.advantage-item:nth-child(2) {
  animation-delay: 0.5s;
}
.advantage-item:nth-child(3) {
  animation-delay: 0.7s;
}
.advantage-item:nth-child(4) {
  animation-delay: 0.9s;
}

.advantage-item img {
  width: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.advantage-item:hover img {
  transform: scale(1.1);
}

.advantage-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #39ff14;
}

.advantage-item p {
  font-size: 1rem;
  line-height: 1.5;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .advantages-list {
    flex-direction: column;
  }
  .advantage-item {
    width: 100%;
  }
}

.parallax-section {
  background-image: url("../assets/images/slider2.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.parallax-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.parallax-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  animation: fadeIn 1.5s ease-out;
}

.parallax-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #39ff14;
}

.parallax-content p {
  font-size: 1.5rem;
  text-shadow: 0 0 8px #39ff14;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.satisfied-consumers {
  background: linear-gradient(135deg, #121212, #1e1e1e);
  padding: 80px 20px;
  color: #cfcfcf;
  overflow: hidden;
}

.satisfied-consumers .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.satisfied-consumers h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #39ff14;
  animation: fadeInDown 1s ease-out;
}

.consumer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.consumer-item {
  background-color: #222;
  padding: 15px;
  border-radius: 10px;
  width: calc(25% - 30px);
  min-width: 200px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  transition: transform 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.consumer-item:nth-child(1) {
  animation-delay: 0.3s;
}
.consumer-item:nth-child(2) {
  animation-delay: 0.5s;
}
.consumer-item:nth-child(3) {
  animation-delay: 0.7s;
}
.consumer-item:nth-child(4) {
  animation-delay: 0.9s;
}

.consumer-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.consumer-item:hover img {
  transform: scale(1.05);
}

.consumer-item p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #39ff14;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .consumer-grid {
    flex-direction: column;
  }
  .consumer-item {
    width: 100%;
  }
}

.contact-form-section {
  background: linear-gradient(135deg, #121212, #1e1e1e);
  color: #cfcfcf;
  padding: 80px 20px;
}

.contact-form-section .container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #39ff14;
  animation: fadeInDown 1s ease-out;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5s;
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  background-color: #222;
  color: #cfcfcf;
  font-size: 1rem;
  outline: none;
  transition: background-color 0.3s ease;
}

.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus {
  background-color: #333;
}

.contact-form-section .btn-submit {
  padding: 15px;
  background-color: #39ff14;
  color: #121212;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-section .btn-submit:hover {
  background-color: #2ecc71;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
