/* FULLHOUSE Contact Page Specific Styles */

/* Enhanced Contact Form Styles */
.contact-section {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.05), rgba(0, 255, 255, 0.05));
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(34, 34, 34, 0.95);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.1);
  padding: 50px;
  border: 2px solid rgba(0, 191, 255, 0.1);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(0, 191, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00bfff;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
  opacity: 0.8;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2300bfff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 50px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #ccc;
  cursor: pointer;
  line-height: 1.5;
}

.terms-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  accent-color: #00bfff;
  cursor: pointer;
}

.terms-check a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.terms-check a:hover {
  color: #00ffff;
  text-decoration: underline;
}

/* Luxury Button Styles */
.btn-luxury {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #00bfff 0%, #00ffff 100%);
  border: none;
  border-radius: 15px;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00ffff 0%, #00bfff 100%);
  transition: left 0.3s ease;
  z-index: 1;
}

.btn-luxury:hover::before {
  left: 0;
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 191, 255, 0.4);
}

.btn-luxury:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
}

.btn-luxury span {
  position: relative;
  z-index: 2;
}

/* Button Loading State */
.btn-luxury.loading {
  background: linear-gradient(135deg, #666 0%, #888 100%);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-luxury.loading::after {
  content: '💎';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  animation: diamondSpin 1s linear infinite;
  z-index: 3;
}

@keyframes diamondSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced FAQ Styles */
.faq-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 191, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.05), rgba(0, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.15);
  border-color: #00bfff;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question::before {
  content: '💎';
  font-size: 1.2rem;
  opacity: 0.8;
}

.faq-answer {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

/* FAQ Accordion Animation */
.faq-item.active {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(0, 255, 255, 0.1));
  border-color: #00bfff;
}

.faq-item.active .faq-question::before {
  content: '💎';
  animation: diamondGlow 1s ease-in-out infinite alternate;
}

/* Enhanced Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.95), rgba(26, 26, 26, 0.95));
  margin: 10% auto;
  padding: 40px 50px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.2);
  position: relative;
  border: 2px solid rgba(0, 191, 255, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.modal-content h3 {
  color: #00bfff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-content p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1rem;
}

.close {
  color: #00bfff;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 191, 255, 0.1);
}

.close:hover {
  color: #00ffff;
  background: rgba(0, 191, 255, 0.2);
  transform: scale(1.1);
}

/* Error Message Styles */
.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 6px;
  border-left: 3px solid #ff6b6b;
  animation: errorShake 0.5s ease-in-out;
}

/* Animations */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes diamondGlow {
  0% { filter: drop-shadow(0 0 5px rgba(0, 191, 255, 0.5)); }
  100% { filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.8)); }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 1rem 4rem;
  }
  
  .form-container {
    padding: 30px 20px;
    margin: 0 1rem;
  }
  
  .btn-luxury {
    padding: 16px 25px;
    font-size: 1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-item {
    padding: 2rem;
  }
  
  .modal-content {
    margin: 20% auto;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 25px 15px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .btn-luxury {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    font-size: 0.95rem;
  }
} 