/* ============ Contact Page Specific Styles ============ */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #FFE5F1 0%, #E0F7FF 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '💌';
  position: absolute;
  font-size: 120px;
  opacity: 0.1;
  top: 20px;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.contact-hero::after {
  content: '✨';
  position: absolute;
  font-size: 100px;
  opacity: 0.1;
  bottom: 20px;
  right: 10%;
  animation: float 4s ease-in-out infinite;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.contact-hero-content h2 {
  font-size: 3em;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-hero-content p {
  font-size: 1.3em;
  color: var(--color-text);
  line-height: 1.6;
}

/* Main Contact Container */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Form Section */
.contact-form-section {
  animation: fadeInUp 1.2s ease-out;
}

.form-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-icon {
  font-size: 60px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.form-header h3 {
  font-size: 2em;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-header p {
  color: #666;
  font-size: 1em;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
  transition: transform 0.3s ease;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  font-size: 1em;
}

.label-icon {
  font-size: 1.2em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #E5E5E5;
  border-radius: 15px;
  font-size: 1em;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background-color: #F8F9FA;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: white;
  box-shadow: 0 5px 20px rgba(255, 145, 175, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 145, 175, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 145, 175, 0.4);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Social Section */
.social-section {
  animation: fadeInUp 1.4s ease-out;
}

.social-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.social-header {
  text-align: center;
  margin-bottom: 40px;
}

.social-icon {
  font-size: 60px;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.social-header h3 {
  font-size: 2em;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 700;
}

.social-header p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
  border-color: #1877F2;
  background: linear-gradient(135deg, #E7F3FF, #FFFFFF);
}

.social-link.instagram:hover {
  border-color: #E1306C;
  background: linear-gradient(135deg, #FFF0F5, #FFFFFF);
}

.social-link.phone:hover {
  border-color: #25D366;
  background: linear-gradient(135deg, #E8F8F0, #FFFFFF);
}

.social-link.whatsapp:hover {
  border-color: #25D366;
  background: linear-gradient(135deg, #E8F8F0, #FFFFFF);
}

.social-link-icon {
  flex-shrink: 0;
}

.social-link-icon svg {
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.social-link:hover .social-link-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.social-link-info h4 {
  font-size: 1.2em;
  color: var(--color-text);
  margin-bottom: 5px;
  font-weight: 700;
}

.social-link-info p {
  color: #666;
  font-size: 0.95em;
}

/* Additional Contact Info */
.contact-info-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 30px;
  border-top: 2px solid #F0F0F0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF8F0, #FFFFFF);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.info-icon {
  font-size: 2em;
  flex-shrink: 0;
}

.info-item h5 {
  font-size: 1.1em;
  color: var(--color-text);
  margin-bottom: 5px;
  font-weight: 700;
}

.info-item p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-hero-content h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 5%;
  }
  
  .contact-hero-content h2 {
    font-size: 2em;
  }
  
  .contact-hero-content p {
    font-size: 1.1em;
  }
  
  .form-card,
  .social-card {
    padding: 30px 25px;
  }
  
  .form-header h3,
  .social-header h3 {
    font-size: 1.6em;
  }
  
  .contact-info-extra {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .contact-hero::before,
  .contact-hero::after {
    font-size: 80px;
  }
  
  .contact-hero-content h2 {
    font-size: 1.6em;
  }
  
  .contact-hero-content p {
    font-size: 1em;
  }
  
  .form-card,
  .social-card {
    padding: 25px 20px;
  }
  
  .form-icon,
  .social-icon {
    font-size: 50px;
  }
  
  .social-link {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .submit-btn {
    padding: 15px 30px;
    font-size: 1em;
  }
}