/* contact-styles.css - Styles for the Contact Us page */

/* Page Layout */
.contact-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-us h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #4e3b6a;
  position: relative;
}

.contact-us h1:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #f78fb3, #b197fc);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Contact Content Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 30px;
}

/* Contact Info Section */
.contact-info {
  background: linear-gradient(135deg, #fcf2f7 0%, #f8f2ff 100%);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-image: url('../images/cat-silhouette.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  transform: rotate(15deg);
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  color: #555;
}

.contact-details li i {
  color: #f78fb3;
  margin-right: 15px;
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

/* Social Media Links */
.social-links {
  margin-top: 30px;
}

.social-links h3 {
  font-size: 1.2rem;
  color: #4e3b6a;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: #4e3b6a;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a.facebook:hover {
  background: #3b5998;
  color: white;
}

.social-icons a.twitter:hover {
  background: #1da1f2;
  color: white;
}

.social-icons a.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-icons a.pinterest:hover {
  background: #bd081c;
  color: white;
}

/* Map Section */
.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form Section */
.contact-form {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  font-size: 1.8rem;
  color: #4e3b6a;
  margin-bottom: 25px;
}

.success-message, .error-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.success-message {
  background-color: #e6f4ea;
  color: #0d6832;
  border-left: 4px solid #0d6832;
}

.error-message {
  background-color: #fae0e0;
  color: #c62828;
  border-left: 4px solid #c62828;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #b197fc;
  box-shadow: 0 0 0 3px rgba(177, 151, 252, 0.2);
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group .input-hint {
  font-size: 0.85rem;
  color: #888;
  margin-top: 5px;
}

.form-group.required label::after {
  content: "*";
  color: #f25c54;
  margin-left: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, #f78fb3, #b197fc);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(177, 151, 252, 0.3);
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(177, 151, 252, 0.4);
}

/* Business Hours */
.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  font-size: 1.2rem;
  color: #4e3b6a;
  margin-bottom: 15px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 8px 0;
  color: #555;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-us h1 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-info, .contact-form {
    padding: 30px 20px;
  }
}

/* Animation Effects */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Paw Print Background */
.paw-background {
  position: relative;
  overflow: hidden;
}

.paw-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/paw-pattern.png');
  background-size: 300px;
  opacity: 0.03;
  z-index: -1;
}