/* Скрыть <br> только в адресе контактов */
[data-i18n="contact-address-value"] br {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
}

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

/* НАВИГАЦИЯ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    #0066cc 0%,
    #0052a3 25%,
    #003d7a 50%,
    #0052a3 75%,
    #0066cc 100%
  );
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-selector {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.username {
  font-weight: 500;
}

.logout-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.login-btn {
  background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo svg {
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  flex: 1;
  margin-left: 50px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #f093fb 50%, #667eea 100%);
  background-size: 200% 100%;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
  animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffff00;
}

/* ХЕДЕР */
.header {
  background: linear-gradient(
      135deg,
      rgba(0, 102, 204, 0.9) 0%,
      rgba(0, 82, 163, 0.9) 50%,
      rgba(0, 61, 122, 0.9) 100%
    ),
    linear-gradient(45deg, #0066cc 0%, #003d7a 50%, #0066cc 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0% 0%, 0% 0%;
  color: #fff;
  text-align: center;
  padding: 150px 20px 100px;
  margin-top: 70px;
  animation: slideInDown 0.8s ease-out, gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

.lightning-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.lightning {
  position: absolute;
  top: 0;
  height: 100%;
  width: 150px;
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.left-lightning {
  left: 5%;
  animation: lightningStrike 3s ease-in-out infinite;
}

.right-lightning {
  right: 5%;
  animation: lightningStrike 3.5s ease-in-out infinite;
}

@keyframes lightningStrike {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  10% {
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
  }
  15% {
    opacity: 0.2;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  20% {
    opacity: 0.9;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1));
  }
  25% {
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
}

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

.header-content {
  position: relative;
  z-index: 2;
}

.header-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
  background-color: #fff;
  color: #0066cc;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* О НАС */
.about {
  background-color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.about-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about h2 {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  background: linear-gradient(135deg, #e0f0ff 0%, #b3d9ff 100%);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 102, 204, 0.15);
  position: relative;
  cursor: pointer;
  overflow: visible;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #667eea 0%, #f093fb 50%, #667eea 100%);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.stat:hover::before {
  opacity: 1;
  animation: gradientBorder 3s linear infinite;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.stat:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  transform: translateY(-5px);
}

.stat h3 {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 10px;
}

.stat:hover h3 {
  color: #fff;
}

.stat p {
  font-size: 14px;
}

/* УСЛУГИ */
.services {
  background: linear-gradient(180deg, #f9fafb 0%, #e0f0ff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.services-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services h2 {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

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

.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e0f0ff;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(102, 126, 234, 0.1),
      transparent 60%
    );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #f093fb 50%, #667eea 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: none;
}

.service-card:hover {
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
  border-color: #0066cc;
}

.service-card:hover::before {
  opacity: 1;
  animation: lightningFlash 2s ease-in-out infinite;
}

.service-card:hover::after {
  opacity: 1;
  animation: gradientLine 3s linear infinite;
}

@keyframes lightningFlash {
  0%,
  100% {
    opacity: 0;
  }
  10%,
  15% {
    opacity: 1;
  }
  20%,
  100% {
    opacity: 0;
  }
}

@keyframes gradientLine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  animation: bounce 0.6s ease-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-card h3 {
  font-size: 20px;
  color: #0066cc;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ГАЛЕРЕЯ */
.gallery {
  background-color: #fff;
  padding: 80px 20px;
}

.gallery h2 {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  perspective: 1000px;
}

.gallery-image {
  height: 250px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: 2;
}

.gallery-overlay span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.gallery-image:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.gallery-image:hover img {
  transform: scale(1.1) brightness(0.7);
}

.gallery-image:hover .gallery-overlay {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.5) 0%,
    rgba(118, 75, 162, 0.5) 100%
  );
}

.gallery-image::before {
  display: none;
}

/* КОНТАКТЫ */
.contact {
  background: linear-gradient(180deg, #e0f0ff 0%, #f9fafb 100%);
  padding: 80px 20px;
}

.contact h2 {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #0066cc;
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.info-item h3 {
  color: #0066cc;
  margin-bottom: 10px;
  font-size: 18px;
}

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

/* ФУТЕР */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-section h4 {
  color: #0066cc;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #bbb;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #0066cc;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 14px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
  .nav-menu {
    gap: 15px;
    margin-left: 20px;
    font-size: 14px;
  }

  .header-content h1 {
    font-size: 32px;
  }

  .header-content p {
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .gallery-image {
    height: 200px;
  }

  .services h2,
  .gallery h2,
  .about h2,
  .contact h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: auto;
    flex-wrap: wrap;
    padding: 10px;
  }

  .nav-menu {
    display: none;
  }

  .header {
    padding: 100px 20px 60px;
    margin-top: 50px;
  }

  .header-content h1 {
    font-size: 24px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .about h2,
  .services h2,
  .gallery h2,
  .contact h2 {
    font-size: 22px;
  }
}

/* ПЛАВНЫЕ ПЕРЕХОДЫ */
html {
  scroll-behavior: smooth;
}

/* СЕКЦИИ ANIMATION */
section {
  animation: fadeInUp 0.8s ease-out;
}

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

/* АВТОРИЗАЦИЯ И РЕГИСТРАЦИЯ */
.auth-section {
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #764ba2 75%,
    #667eea 100%
  );
  background-size: 400% 400%;
  animation: gradientBackground 15s ease infinite;
  padding: 100px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.auth-container {
  max-width: 500px;
  width: 100%;
}

.auth-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: slideIn 0.6s ease-out;
}

.auth-card .auth-tabs {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

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

.auth-tabs {
  display: flex;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.auth-tab-btn {
  flex: 1;
  padding: 18px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}

.auth-tab-btn.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.2);
}

.auth-tab-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.auth-tab {
  display: none;
  padding: 40px;
  animation: fadeIn 0.5s ease-in;
}

.auth-tab.active {
  display: block;
}

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

.auth-tab h2 {
  color: #667eea;
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-input-group label {
  color: #333;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input {
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.auth-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.auth-input::placeholder {
  color: #999;
}

.auth-toggle {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 10px;
}

.auth-toggle input[type="radio"] {
  cursor: pointer;
  accent-color: #667eea;
  width: 18px;
  height: 18px;
}

.auth-toggle label {
  cursor: pointer;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.auth-button {
  padding: 16px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.auth-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.auth-button:active {
  transform: translateY(-1px);
}

.auth-footer {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 15px;
}

.auth-link {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.auth-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Modal Login Window */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

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

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

.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-content h2 {
  margin: 0 0 30px 0;
  color: #333;
  font-size: 24px;
  text-align: center;
  background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group input {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder {
  color: #999;
}

.submit-btn {
  padding: 12px 20px;
  background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Social Media Footer */
/* Social Media Footer */
.social-media {
  display: flex;
  gap: 25px;
  justify-content: center;
  padding: 30px 0;
  flex-wrap: wrap;
}

.social-media a {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-media a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  transition: left 0.6s ease;
}

.social-media a:nth-child(1) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-media a:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.social-media a:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.social-media a:nth-child(4) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.social-media a:nth-child(5) {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.social-media a:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-media a:hover::before {
  left: 100%;
}

.social-media svg {
  fill: currentColor;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}
