/* Contact Page Styles */

.contact-hero {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c9a961 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #e5e5e7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(44, 44, 46, 0.6) 0%, rgba(28, 28, 30, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 20px;
  padding: 40px;
  animation: fadeInRight 0.8s ease-out;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #c9a961;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #e5e5e7;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(28, 28, 30, 0.6);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 10px;
  color: #e5e5e7;
  font-size: 1rem;
  transition: all 0.3s ease;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a961;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
  color: #1c1c1e;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

/* Contact Info */
.contact-info {
  animation: fadeInLeft 0.8s ease-out;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #c9a961;
  margin-bottom: 30px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(44, 44, 46, 0.6) 0%, rgba(28, 28, 30, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(201, 169, 97, 0.5);
  transform: translateX(-5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: #1c1c1e;
}

.info-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c9a961;
  margin-bottom: 10px;
}

.info-content p {
  color: #a1a1a6;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* Social Links */
.social-links {
  background: linear-gradient(135deg, rgba(44, 44, 46, 0.6) 0%, rgba(28, 28, 30, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
}

.social-links h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c9a961;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(139, 115, 85, 0.2) 100%);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
  border-color: #c9a961;
  transform: translateY(-5px);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  color: #c9a961;
  transition: color 0.3s ease;
}

.social-icon:hover svg {
  color: #1c1c1e;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .contact-form-wrapper,
  .info-card {
    padding: 25px;
  }
}
