/* Final palm photo page specific styles */
.final-palm-photo-form {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.final-palm-photo-form h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

.final-palm-photo-form p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.animated-hand-container {
  margin: 2rem auto;
  text-align: center;
  max-width: 150px;
}

.palm-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.camera-container {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

#palm-camera {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 10px;
  background: #000;
  object-fit: cover;
}

.photo-options {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.photo-btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #16786c, #4a9c8f);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 120, 108, 0.3);
  min-width: 140px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.photo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 120, 108, 0.4);
}

.photo-btn:active {
  transform: translateY(0);
}

.photo-help {
  font-size: 0.8rem;
  color: #cccccc;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.continue-btn {
  width: 100%;
  max-width: 200px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #16786c, #4a9c8f);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 120, 108, 0.3);
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 120, 108, 0.4);
}

.continue-btn:active {
  transform: translateY(0);
}

.continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Animated astrological lines */
.astrological-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.astrological-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #16786c, transparent);
  height: 2px;
  animation: moveLine 3s linear infinite;
}

.astrological-line:nth-child(1) {
  top: 20%;
  width: 60%;
  animation-delay: 0s;
}

.astrological-line:nth-child(2) {
  top: 40%;
  width: 80%;
  animation-delay: 1s;
}

.astrological-line:nth-child(3) {
  top: 60%;
  width: 70%;
  animation-delay: 2s;
}

.astrological-line:nth-child(4) {
  top: 80%;
  width: 50%;
  animation-delay: 0.5s;
}

@keyframes moveLine {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Testimonials section */
.testimonials {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}

.testimonial {
  display: none;
  text-align: center;
  color: #ffffff;
}

.testimonial.active {
  display: block;
}

.testimonial-email {
  font-size: 1.1rem;
  font-weight: 600;
  color: #16786c;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #cccccc;
  font-style: italic;
}

.testimonial-single{
  margin-top:1rem;
  text-align:center;
  color:#ffffff;
  font-size:0.9rem;
}
.testimonial-email{font-weight:600;color:#16786c;margin-right:0.3rem;}

/* Mobile responsive */
@media (max-width: 768px) {
  .final-palm-photo-form {
    padding: 1.5rem 1rem;
  }
  
  .final-palm-photo-form h1 {
    font-size: 1.5rem;
  }
  
  #palm-camera {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .final-palm-photo-form h1 {
    font-size: 1.3rem;
  }
  
  #palm-camera {
    height: 200px;
  }
}

/* Desktop enhancements */
@media (min-width: 1024px) {
  .final-palm-photo-form {
    padding: 3rem 1rem;
  }
  
  .final-palm-photo-form h1 {
    font-size: 2.2rem;
  }
  
  #palm-camera {
    height: 400px;
  }
  
  .continue-btn {
    max-width: 250px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
} 