/* Contact Page Styles */
.contact {
  min-height: 100vh;
  padding: 2rem;
  padding-top: 8rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-saturate-color);
  margin-bottom: 1rem;
}

.contact-header .subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.contact-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.contact-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.contact-image:hover img {
  transform: scale(1.05);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  opacity: 0;
  animation: slideInRight 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

.info-section {
  background: white;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.info-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.info-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.info-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-saturate-color));
  border-radius: 2px;
}

.info-section a {
  text-decoration: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  background: rgba(161, 155, 139, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 0 -1.5rem;
}

.icon-wrapper {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-saturate-color));
  padding: 1rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  box-shadow: 0 8px 25px rgba(161, 155, 139, 0.2);
  transition: all 0.3s ease;
}

.icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-item:hover .icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(161, 155, 139, 0.3);
}

.item-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.item-content p {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.item-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Staff Section */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.staff-member {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(161, 155, 139, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(161, 155, 139, 0.1);
}

.staff-member:hover {
  background: rgba(161, 155, 139, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(161, 155, 139, 0.1);
}

.staff-avatar {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-saturate-color));
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  box-shadow: 0 8px 25px rgba(161, 155, 139, 0.2);
}

.staff-avatar svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.staff-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.staff-info p {
  font-size: 1rem;
  color: var(--primary-saturate-color);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.staff-info span {
  font-size: 0.9rem;
  color: #666;
}

/* Schedule Section */
.schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(161, 155, 139, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.schedule-item:hover {
  background: rgba(161, 155, 139, 0.1);
  transform: translateX(5px);
}

.schedule-item.closed {
  opacity: 0.6;
}

.schedule-item .day {
  font-weight: 600;
  color: var(--secondary-color);
}

.schedule-item .hours {
  color: var(--primary-saturate-color);
  font-weight: 500;
}

.schedule-item.closed .hours {
  color: #999;
}

/* CTA Section */
.cta-section {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  flex: 1;
  padding: 1.2rem 2rem;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-saturate-color));
  color: white;
}

.cta-button.secondary {
  background: white;
  color: var(--primary-saturate-color);
  border: 2px solid var(--primary-color);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(161, 155, 139, 0.3);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* Map Section */
.contact-map {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1s;
}

.contact-map h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-saturate-color));
  padding: 4rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.map-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-icon svg {
  width: 48px;
  height: 48px;
  fill: white;
}

.map-content p {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.map-content span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 1rem;
    padding-top: 6rem;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

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

  .info-section {
    padding: 2rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .contact-item:hover {
    margin: 0;
    padding: 1.5rem 0;
  }

  .staff-member {
    flex-direction: column;
    text-align: center;
  }

  .cta-section {
    flex-direction: column;
  }

  .schedule-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .map-placeholder {
    padding: 3rem 1.5rem;
  }
}