:root {
  --primary-color: #a094c8;
  --secondary-color: #2d5289;
  --text-color: #ffffff;
  --background-dark: #000000;
  --background-light: #1a1a1a;
  --accent-color: #f1ef7f;
  --transition: all 0.3s ease;
  --spark-color: #a094c882;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1,
h2 {
  font-size: 3rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
}

.styleUL {
  padding-left: 17px;
}

/* Header Styles */
header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.3s ease;
  height: 80px;
  padding: 10px;
}

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

header.hidden {
  transform: translateY(-100%);
}

/* Logo styles */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  height: 80px;
  padding: 10px 0;
}

.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

/* Header wrapper styles */
.header__wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.header__wrapper--second {
  margin: auto;
}

/* Burger menu styles */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger__line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Navigation styles */
.topMenuHeader {
  margin-left: auto;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.main-menu > li {
  margin: 0;
  padding: 0;
}

.main-menu > li > a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: block;
}

.main-menu > li:hover > a,
.main-menu > li.active > a {
  color: var(--primary-color);
}

/* Utility class */
.flex-c-sb {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .burger {
    display: block;
  }

  .topMenuHeader {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .topMenuHeader.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .main-menu {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: 100%;
    padding-top: 2rem;
  }

  .main-menu > li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .topMenuHeader.active .main-menu > li {
    opacity: 1;
    transform: translateY(0);
  }

  .main-menu > li > a {
    font-size: 1.4rem;
    padding: 1rem;
    display: block;
  }

  /* Burger animation */
  .burger.active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger__line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .logo {
    height: 60px;
  }

  .logo img {
    height: 100%;
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--background-light);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.service-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-details {
  list-style: none;
  margin-top: 1rem;
  text-align: left;
}

.service-details li {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.service-details li::before {
  content: "→";
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Products Section */
.products {
  padding: 6rem 0;
  background-color: var(--background-light);
  position: relative;
}

.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(111, 66, 193, 0.05) 45%,
    rgba(111, 66, 193, 0.05) 55%,
    transparent 55%
  );
  background-size: 20px 20px;
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Product Card Styles */
.product-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  padding-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  text-decoration: none;
}

.product-card h3 {
  color: var(--accent);
  margin: 0;
  padding: 20px 20px 10px;
  font-size: 1.5em;
  font-weight: 600;
}

.product-card p {
  color: var(--text-light);
  margin: 0;
  padding: 0 20px;
  font-size: 1em;
  line-height: 1.4;
  opacity: 0.9;
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}
/* Equipment Section */
.equipment {
  padding: 6rem 0;
  background-color: var(--background-light);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.equipment-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.equipment-card:hover {
  transform: translateY(-10px);
}

.equipment-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.equipment-card h3 {
  padding: 1rem;
  margin: 0;
}

.equipment-card p {
  padding: 0 1rem 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--background-light);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0;
}

.advantages {
  list-style: none;
  margin-top: 1rem;
}

.advantages li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.advantages li::before {
  content: "✓";
  color: var(--primary-color);
  margin-right: 1rem;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/9;
}

.about-image img,
.about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Contact Section */
.contacts {
  position: relative;
  min-height: 600px;
  padding: 0;
  overflow: hidden;
}

.contacts .container {
  position: relative;
  z-index: 2;
  padding: 4rem 20px;
}

.contacts .section-title {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.contact-grid {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.contact-info {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 15px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.3rem;
}

.contact-info a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--primary-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-details strong {
  color: var(--primary-color);
}

.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Map Container Styles */
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
  z-index: 10;
  cursor: pointer;
}

.map-container iframe {
  position: relative;
  z-index: 5;
}

/* При печати убрать оверлей */
@media print {
  .map-overlay {
    display: none;
  }

  .map-container iframe {
    pointer-events: auto !important;
  }
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  padding: 4rem 0 2rem;
}

.custom.container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 100px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-services {
  margin-top: 2rem;
}

.footer-services ul {
  list-style: none;
}

.footer-services li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Additional Utility Classes */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient 5s ease infinite;
}

/* Contact Form */
.contact-form {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(/images/form.png) center / cover no-repeat;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 45%,
      rgba(111, 66, 193, 0.1) 45%,
      rgba(111, 66, 193, 0.1) 55%,
      transparent 55%
    ),
    linear-gradient(
      -45deg,
      transparent 45%,
      rgba(111, 66, 193, 0.1) 45%,
      rgba(111, 66, 193, 0.1) 55%,
      transparent 55%
    );
  background-size: 30px 30px;
  animation: moveBackground 15s linear infinite;
  opacity: 0.5;
  z-index: 0;
}

@keyframes formAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

.form-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.form-text {
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.form-text p {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  opacity: 0.9;
  line-height: 1.8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(111, 66, 193, 0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  transform: translateY(-2.5rem) scale(0.9);
  color: var(--primary-color);
}

.animated-form {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(111, 66, 193, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: formAppear 0.8s ease-out forwards;
  position: relative;
  z-index: 1;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-text {
  color: var(--text-color);
}

.form-text p {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  opacity: 0.9;
  line-height: 1.8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(111, 66, 193, 0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  transform: translateY(-2.5rem) scale(0.9);
  color: var(--primary-color);
}

.animated-form .btn-primary {
  width: 100%;
  margin-top: 0;
  padding: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .animated-form {
    padding: 2rem;
  }

  .form-text {
    text-align: center;
  }
}

/* Remove gear animation */
.gear-icon {
  animation: none !important;
}

/* Button Styles */
.btn {
  display: inline-flex;
  margin: 18px 0;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-color);
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(111, 66, 193, 0.5);
}

.btn:active {
  transform: translateY(-2px) scale(0.98);
}

/* Form submit button specific styles */
.animated-form .btn-primary {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
  padding: 1.2rem;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 750px;
  overflow: hidden;
  margin-top: 80px;
  z-index: 1;
}

.hero-slider {
  height: 100%;
  position: relative;
  z-index: 2;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide:nth-child(1) {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.6)
    ),
    url("/images/h1.jpg");
}

.slide:nth-child(2) {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.6)
    ),
    url("/images/h2.jpg");
}

.slide:nth-child(3) {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.6)
    ),
    url("/images/h3.jpg");
}

.slide-content {
  padding: 2rem;
  max-width: 800px;
  margin-left: 10%;
  position: relative;
  z-index: 3;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 3;
}

.prev-slide,
.next-slide {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  font-size: 24px;
  line-height: 1;
}

.prev-slide:hover,
.next-slide:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(111, 66, 193, 0.5);
}

.prev-slide:active,
.next-slide:active {
  transform: translateY(-1px) scale(0.95);
}

.slide-dots {
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

@media (max-width: 768px) {
  .hero {
    height: calc(100vh - 80px);
  }

  .slide-content {
    margin-left: 5%;
    padding: 1rem;
  }

  .slider-controls {
    bottom: 1rem;
  }
}

/* Opacity Classes */
.opacity-0 {
  opacity: 0;
}

/* Mobile Menu Animation */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--background-dark);
  padding: 2rem;
  animation: slideDown 0.3s ease forwards;
}

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

/* Header Scroll Animations */
.header.scroll-down {
  transform: translateY(-100%);
}

.header.scroll-up {
  transform: translateY(0);
}

/* Service Card Hover Effect */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  border-radius: 10px;
}

.service-card:hover::before {
  opacity: 0.1;
}

/* Button Hover Animation */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
}

.btn:hover::after {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

/* Image Hover Effect */
.product-image {
  overflow: hidden;
}

.product-image img {
  transition: transform 0.6s ease;
}

.product-image:hover img {
  transform: scale(1.1);
}

/* Section Reveal Animation */
.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Pulse Animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Text Gradient Animation */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  background-size: 200% 200%;
  animation: gradient 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Spark Effect */
.spark-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.spark {
  position: absolute;
  width: 2px;
  height: 2px;
  background: radial-gradient(
    circle at center,
    rgba(100, 200, 255, 1) 0%,
    rgba(100, 200, 255, 0.8) 30%,
    rgba(100, 200, 255, 0) 100%
  );
  border-radius: 50%;
  filter: blur(1px);
  animation: sparkle 2s infinite;
  box-shadow: 0 0 4px rgba(100, 200, 255, 1), 0 0 8px rgba(100, 200, 255, 0.8),
    0 0 12px rgba(100, 200, 255, 0.6);
}

@keyframes sparkle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translate(0, 0) scale(1.5);
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}


/* Enhanced Section Background */
.products,
.about {
  position: relative;
  overflow: hidden;
}

.products::before,
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(100, 200, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(100, 200, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
  animation: backgroundPulse 4s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Breadcrumbs Styles */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  margin: 100px 0 20px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(75, 66, 205, 0.1);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome/Safari */
.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.breadcrumb li a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb .divider {
  margin: 0 0.5rem;
  color: var(--primary-color);
  opacity: 0.7;
  flex-shrink: 0;
}

.breadcrumb .divider img {
  width: 8px;
  height: auto;
  opacity: 0.5;
}

.breadcrumb li.active {
  color: var(--primary-color);
}

.breadcrumb .icon-location {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Mobile Styles for Breadcrumbs */
@media (max-width: 768px) {
  .breadcrumb {
    margin: 80px 0 15px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .breadcrumb .divider {
    margin: 0 0.3rem;
  }

  .breadcrumb .divider img {
    width: 6px;
  }
}

/* Enhanced Card Hover Effects */
.service-card,
.product-card,
.equipment-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before,
.product-card::before,
.equipment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(100, 200, 255, 0.1) 0%,
    rgba(100, 200, 255, 0.05) 30%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before,
.product-card:hover::before,
.equipment-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.product-card:hover,
.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(100, 200, 255, 0.2);
}

.item-page {
  padding: 38px 0;
}

.item-page .contact-grid {
  justify-content: center;
}

/* Product Details Page Styles */
.product-details {
  padding: 80px 0;
  background: var(--bg-dark);
  min-height: 100vh;
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.product-text {
  color: var(--text-light);
}

.product-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  margin: 20px 0;
  padding-left: 20px;
}

.product-features li {
  margin-bottom: 10px;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.product-features li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1.5em;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.image-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .product-content {
    grid-template-columns: 1fr;
  }

  .product-images {
    order: -1;
  }

  .main-image {
    height: 300px;
  }

  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-gallery img {
    height: 100px;
  }
}

/* Price Tables */
.price-table-container {
  margin: 40px 0;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  color: var(--text-light);
}

.price-table th {
  background: var(--spark-color);
  color: var(--text-light);
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.price-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table tr:hover {
  background: rgba(111, 66, 193, 0.1);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-section {
  margin-bottom: 60px;
}

.price-section h2 {
  margin-bottom: 20px;
  text-align: center;
}

.price-description {
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 800px;
  opacity: 0.9;
}

.price-note {
  background: rgba(111, 66, 193, 0.1);
  border: 1px solid rgba(111, 66, 193, 0.2);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  color: var(--text-light);
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .price-table-container {
    padding: 10px;
    margin: 20px 0;
    overflow-x: auto;
  }

  .price-table th,
  .price-table td {
    padding: 10px;
    font-size: 0.9em;
  }
}

/* Base Mobile Styles */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Contacts Page Styles */
.contacts-page {
  padding: 6rem 0;
  background-color: var(--background-light);
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}

.contacts-page h1 {
  text-align: center;
  margin-bottom: 3rem;
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contacts-info {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block:last-child {
  margin-bottom: 0;
}

.contact-block h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-block p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact-block i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-block a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-block a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.contacts-map {
  height: 100%;
  min-height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Works Page Styles */
.works-page {
  padding: 6rem 0;
  background-color: var(--background-light);
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}

.works-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.works-description {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Information Section Styles */
.info-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.info-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.info-description h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.info-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info-card-content {
  padding: 20px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .info-section {
    padding: 40px 0;
  }

  .info-description h2 {
    font-size: 28px;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .info-card img {
    height: 180px;
  }

  .info-card-content {
    padding: 15px;
  }
}

/* Articles Section Styles */
.articles-section {
  padding: 6rem 0;
  background-color: var(--background-light);
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}

.articles-description {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.8;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 0.5rem;
}

.article-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(111, 66, 193, 0.4);
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-content {
  padding: 2rem;
}

.article-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.article-content p {
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-content .btn {
  width: 100%;
  margin: 0;
}

/* Mobile Styles for Articles */
@media (max-width: 768px) {
  .articles-section {
    padding: 4rem 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .article-image {
    height: 200px;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-content h3 {
    font-size: 1.3rem;
  }
}

/* Products Gallery Page Styles */
.products-gallery-page {
  padding: 6rem 0;
  background-color: var(--background-light);
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}

.products-gallery-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.products-description {
  color: var(--text-color);
  line-height: 1.8;
}

.products-description p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0.5rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(111, 66, 193, 0.4);
}

.gallery-item-inner {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
  padding: 2rem 1.5rem;
  color: var(--text-color);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Mobile Styles for Gallery */
@media (max-width: 768px) {
  .products-gallery-page {
    padding: 4rem 0;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .overlay {
    transform: translateY(0);
    padding: 1.5rem 1rem;
  }

  .overlay h3 {
    font-size: 1.1rem;
  }

  .overlay p {
    font-size: 0.8rem;
  }
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 2.5rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(75, 66, 205, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.modal-description {
  text-align: center;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-form .form-group {
  position: relative;
  margin: 0;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
}

.modal-form textarea {
  min-height: 100px;
  resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(111, 66, 193, 0.1);
}

.modal-form label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  pointer-events: none;
}

.modal-form input:focus + label,
.modal-form textarea:focus + label,
.modal-form input:not(:placeholder-shown) + label,
.modal-form textarea:not(:placeholder-shown) + label {
  transform: translateY(-2.5rem) scale(0.9);
  color: var(--primary-color);
}

.modal-form .btn {
  margin-top: 1rem;
}

/* Mobile Styles for Modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 2rem;
    width: 95%;
  }

  .modal h2 {
    font-size: 1.5rem;
  }

  .modal-form input,
  .modal-form textarea {
    font-size: 16px; /* Prevents zoom on mobile */
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    145deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 50%;
  color: var(--text-color);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Mobile styles for scroll to top button */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}


/* Mobile Styles for Contacts Page */
@media (max-width: 768px) {
  .contacts-page {
    padding: 4rem 0;
  }

  .contacts-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contacts-info {
    padding: 1.5rem;
  }

  .contacts-map {
    min-height: 400px;
  }

  .contact-block h3 {
    font-size: 1.3rem;
  }

  .social-links {
    justify-content: center;
  }
}


/* Mobile Responsive */
@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 10px 0;
  }

  .logo img {
    max-width: 150px;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
  }

  .slide {
    padding: 60px 0;
  }

  .slide-content {
    max-width: 100%;
    margin: 0;
  }

  .slide-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Products & Equipment Sections */
  .products,
  .equipment {
    padding: 3rem 0;
  }

  .products-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .product-card,
  .equipment-card {
    margin: 0;
  }

  /* About Section */
  .about {
    padding: 3rem 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .split-layout {
    display: flex;
    flex-direction: column;
  }

  /* Contact Form */
  .contact-form {
    padding: 3rem 0;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-group {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 2rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  /* Buttons */
  .btn {
    width: 100%;
    text-align: center;
  }

  /* Contact Section */
  .contacts {
    min-height: 500px;
  }

  .contact-info {
    margin: 1rem;
    padding: 2rem;
    max-width: calc(100% - 2rem);
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .contact-info li {
    margin-bottom: 1rem;
  }

  /* Navigation Dots */
  .slide-dots {
    bottom: 1rem;
  }

  .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  /* Slider Navigation */
  .prev-slide,
  .next-slide {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}
