/* =============================================
   Private Conciergerie - Premium Animations
   ============================================= */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced service cards */
.service-card {
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

.service-card:active {
  transform: translateY(-6px) scale(1.01) !important;
}

.service-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  color: rgba(255, 255, 255, 0.6) !important;
  transform: scale(1.02) translateY(-1px);
}

.service-title {
  transition: all 0.3s ease;
}

.service-card:hover .service-title {
  color: #ffffff;
}

/* Enhanced destination tags */
.destination-tag {
  cursor: default;
}

.destination-tag:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Enhanced navigation links */
.nav-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover {
  transform: translateY(-2px) !important;
}

/* Enhanced section titles */
.section-title {
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3));
  transform: translateY(-50%);
  animation: lineGrowLeft 2s ease-in-out infinite;
}

.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.3));
  transform: translateY(-50%);
  animation: lineGrowRight 2s ease-in-out infinite;
}

@keyframes lineGrowLeft {
  0%, 100% {
    opacity: 0.3;
    width: 40px;
  }
  50% {
    opacity: 0.6;
    width: 60px;
  }
}

@keyframes lineGrowRight {
  0%, 100% {
    opacity: 0.3;
    width: 40px;
  }
  50% {
    opacity: 0.6;
    width: 60px;
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Parallax hover effect */
.parallax-hover {
  transition: transform 0.3s ease;
}

.parallax-hover:hover {
  transform: translateZ(20px);
}

/* Glowing effect */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
}

.glow-effect {
  animation: glow 3s ease-in-out infinite;
}

/* Contact items animation */
.contact-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
  border-left-color: rgba(255, 255, 255, 0.3);
}

.contact-info-link:hover {
  color: #d0d0d0 !important;
}

/* Founder section hover */
.founder-image-wrapper {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.founder-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.founder-image-wrapper:hover::after {
  opacity: 1;
}

.founder-image-wrapper:hover {
  transform: scale(1.02);
}

.founder-image-wrapper img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Quote text animation */
.quote-text {
  position: relative;
  display: inline-block;
}

.quote-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-50%);
  animation: underlineGrow 3s ease-in-out infinite;
}

@keyframes underlineGrow {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

/* Arrow bounce animation */
.arrow {
  animation: arrowBounce 2s ease-in-out infinite;
}

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

/* Loading shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Stagger animation for grids */
.services-grid > *,
.transfer-grid > * {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.services-grid > *:nth-child(1) { animation-delay: 0.1s; }
.services-grid > *:nth-child(2) { animation-delay: 0.2s; }
.services-grid > *:nth-child(3) { animation-delay: 0.3s; }
.services-grid > *:nth-child(4) { animation-delay: 0.4s; }
.services-grid > *:nth-child(5) { animation-delay: 0.5s; }
.services-grid > *:nth-child(6) { animation-delay: 0.6s; }

/* Pulse effect for language buttons */
.lang-btn:hover {
  animation: pulse 0.5s ease;
}

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

/* Smooth transitions for all interactive elements */
a, button, input, textarea {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll reveal animation class */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Transfer items hover */
.transfer-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.transfer-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.03);
}

.transfer-item::before {
  transition: all 0.4s ease;
}

.transfer-item:hover::before {
  width: 3px !important;
  background: rgba(255, 255, 255, 0.3) !important;
}

/* Responsive animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

