/* ===== CONTACT PARALLAX SECTION 2025 - PREMIUM BAIKAL ===== */

/* Parallax Contact Section */
.contact-parallax-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 80px 0;
  background: #000;
}

/* Parallax Background with Baikal */
.contact-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('../images/baikal.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  z-index: 1;
}

/* Dark Overlay */
.contact-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

/* Content Container */
.contact-parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Animated Badge */
.contact-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #06b6d4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeInUp 1s ease-out;
}

.contact-badge::before {
  content: '●';
  margin-right: 8px;
  color: #06b6d4;
  animation: pulse 2s infinite;
}

/* Main Title */
.contact-parallax-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 40px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Contact Links Container */
.contact-parallax-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Modern Contact Links */
.contact-parallax-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  padding: 16px 24px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-parallax-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-parallax-link:hover::before {
  left: 100%;
}

.contact-parallax-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Icons */
.contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 16px;
  color: #06b6d4;
}

/* Staggered Animation */
.contact-parallax-link:nth-child(1) {
  animation-delay: 0.4s;
}

.contact-parallax-link:nth-child(2) {
  animation-delay: 0.6s;
}

.contact-parallax-link:nth-child(3) {
  animation-delay: 0.8s;
}

/* Floating Particles */
.contact-parallax-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-parallax-section {
    min-height: 500px;
    margin: 60px 0;
  }

  .contact-parallax-bg {
    background-attachment: scroll;
  }

  .contact-parallax-content {
    padding: 40px 20px;
  }

  .contact-parallax-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact-parallax-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-parallax-section {
    min-height: 400px;
    margin: 40px 0;
  }

  .contact-parallax-content {
    padding: 30px 15px;
  }

  .contact-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* Smooth Parallax on Scroll */
@media (prefers-reduced-motion: no-preference) {
  .contact-parallax-bg {
    will-change: transform;
  }
}
