.footer-section {
  position: relative;
  padding: 55px 20px 35px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(246, 184, 23, 0.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.08),
      transparent 24%
    ),
    linear-gradient(135deg, #9b001b 0%, #c8102e 55%, #7d0015 100%);
  font-family: Arial, Helvetica, sans-serif;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 34px 34px;
}

.footer-section::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(246, 184, 23, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(6px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  color: #c8102e;
  background: #ffffff;
  border-color: #ffffff;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.footer-social a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social a[aria-label="Instagram"] .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-social a[aria-label="YouTube"] .youtube-play {
  fill: #ffffff;
}

.footer-social a[aria-label="YouTube"]:hover .youtube-play {
  fill: #c8102e;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .footer-section {
    padding: 45px 16px 28px;
  }

  .footer-logo {
    width: 165px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-social svg {
    width: 17px;
    height: 17px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}