/* Contact Page Specific Styles */

.contact-section {
  padding: 2rem 0 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Contact Card */
.contact-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid hsl(var(--accent) / 0.2);
}

/* Contact Form Section */
.contact-form-section {
  min-width: 0;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 3px hsl(var(--accent) / 0.1);
}

.form-control::placeholder {
  color: hsl(var(--muted-foreground));
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.btn-send-message {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.btn-send-message:hover {
  background: linear-gradient(135deg, #B8941F 0%, #9A7A1A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-send-message:active {
  transform: translateY(0);
}

.btn-send-message:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact Info Section */
.contact-info-section {
  min-width: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--accent) / 0.15), hsl(var(--accent) / 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  flex-shrink: 0;
  border: 1px solid hsl(var(--accent) / 0.2);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-text {
  flex: 1;
  min-width: 0;
}

.contact-text p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .contact-card {
    padding: 2rem;
  }
  
  .contact-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 1.5rem 0 3rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-item {
    gap: 1rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
}
