/* =============================================
   PETSHOP - stylesContact.css
   Contact page specific styles
   ============================================= */

/* HERO */
.contact-hero {
  background: linear-gradient(135deg, #fff8f4, #e8f5e9);
  padding: 7rem 2rem 3.5rem;
  text-align: center;
}

/* CHANNELS */
.channels-section { padding: 3.5rem 2rem; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.channel-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.channel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--orange); }

.channel-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.channel-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.channel-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }

.channel-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}

.channel-btn.whatsapp { background: #25D366; color: white; }
.channel-btn.whatsapp:hover { background: #128C7E; }
.channel-btn.phone { background: var(--orange); color: white; }
.channel-btn.phone:hover { background: var(--orange-dark); }
.channel-btn.email { background: #FF4E50; color: white; }
.channel-btn.email:hover { background: #d93635; }
.channel-btn.visit { background: var(--green); color: white; }
.channel-btn.visit:hover { background: var(--green-dark); }

/* CONTACT MAIN */
.contact-main { padding: 4rem 2rem 5rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-header { margin-bottom: 2rem; }

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

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 800; font-size: 0.85rem; color: var(--text-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--gray);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,145,77,0.12);
}

.form-group textarea { resize: vertical; }

.form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
}
.form-check input { accent-color: var(--orange); width: 18px; height: 18px; cursor: pointer; }

/* INFO PANEL */
.contact-info-panel { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.info-card:hover { transform: translateX(4px); }

.info-icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  background: rgba(255,145,77,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.info-card h4 { font-weight: 800; font-size: 0.9rem; margin-bottom: 0.25rem; }
.info-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }

.hours-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hours-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1rem; }

.hours-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.day-range { font-weight: 700; font-size: 0.88rem; color: var(--text-mid); }
.hours-val { font-weight: 800; font-size: 0.88rem; }
.hours-val.open { color: var(--green); }
.hours-val.partial { color: var(--orange); }
.hours-val.closed { color: #e53e3e; }

.emergency-note {
  background: rgba(255,145,77,0.08);
  border-left: 3px solid var(--orange);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.social-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.social-card h4 { font-weight: 800; font-size: 0.9rem; margin-bottom: 1rem; }
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }

.social-link-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link-btn.instagram { background: rgba(228,64,95,0.08); color: #e4405f; }
.social-link-btn.instagram:hover { background: #e4405f; color: white; }
.social-link-btn.facebook { background: rgba(66,103,178,0.08); color: #4267b2; }
.social-link-btn.facebook:hover { background: #4267b2; color: white; }
.social-link-btn.youtube { background: rgba(255,0,0,0.08); color: #ff0000; }
.social-link-btn.youtube:hover { background: #ff0000; color: white; }

/* SCHEDULE SECTION */
.sched-section { padding: 5rem 2rem; }

.quick-schedule {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.quick-schedule-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: end;
}

.qs-step { position: relative; }

.qs-num {
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  transform: translate(-8px, -8px);
  margin-top: -1rem;
  
}

.qs-step .form-group { margin-top: 4px; }

.qs-action { display: flex; align-items: flex-end; }
.qs-action .btn-primary { white-space: nowrap; padding: 0.75rem 1.25rem; font-size: 0.9rem; }

/* MAP */
.map-section { height: 380px; }

.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF914D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-overlay-content {
  text-align: center;
  z-index: 1;
  background: white;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.map-pin { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
.map-overlay-content h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.4rem; }
.map-overlay-content p { color: var(--text-mid); font-size: 0.9rem; }

/* FAQ */
.faq-section { padding: 5rem 2rem; }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }

.faq-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p { color: var(--text-mid); line-height: 1.75; font-size: 0.95rem; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { max-width: 700px; }
}

@media (max-width: 900px) {
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-schedule-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .channels-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .quick-schedule-form { grid-template-columns: 1fr; }
  .qs-action .btn-primary { width: 100%; justify-content: center; }
}
