/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #0b4d3b 0%, #e86f3e 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.contact-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px 0;
  opacity: 0.9;
}

.contact-desc {
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 30px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0b4d3b;
  box-shadow: 0 0 0 3px rgba(11, 77, 59, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
}

.form-note {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.form-message {
  padding: 16px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 20px;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Contact Info */
.contact-info-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 30px 0;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0b4d3b 0%, #e86f3e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.contact-details p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.contact-details a {
  color: #0b4d3b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #e86f3e;
}

/* Social Section */
.social-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
}

.social-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 20px 0;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link.whatsapp {
  background: #e7f5e7;
  color: #25d366;
}

.social-link.whatsapp:hover {
  background: #25d366;
  color: white;
}

.social-link.facebook {
  background: #eff6ff;
  color: #1877f2;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.instagram {
  background: #fdf2f8;
  color: #e1306c;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

/* Properties Section */
.contact-properties-section {
  padding: 80px 0;
  background: white;
}

.contact-properties-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.contact-properties-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-hero-content h1 {
    font-size: 36px;
  }
  
  .contact-subtitle {
    font-size: 20px;
  }
  
  .contact-desc {
    font-size: 16px;
  }
  
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container,
  .contact-info-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-info-item {
    padding: 16px;
  }
  
  .social-links {
    flex-direction: column;
  }
  
  .social-link {
    justify-content: center;
  }
  
  .contact-properties-section {
    padding: 60px 0;
  }
  
  .contact-properties-section .section-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .contact-properties-section .section-header h2 {
    font-size: 28px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 28px;
  }
  
  .contact-subtitle {
    font-size: 18px;
  }
  
  .contact-form-container,
  .contact-info-container {
    padding: 24px 16px;
  }
  
  .contact-form-container h2,
  .contact-info-container h2 {
    font-size: 24px;
  }
}
