.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  animation: fadeIn 0.6s ease-out;
}

.header {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  margin: 40px 0;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-title span {
  background: var(--primary-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(209, 29, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info h1 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.2s ease;
}

.info-item a {
  text-decoration: none;
  color: var(--primary-color);
}

.info-item a:hover {
  color: var(--primary-hover-color);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.3s ease;
}

.info-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

.info-item p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.info-item i {
  font-size: 1.5rem;
  margin-right: .7rem;
}

.info-item i:hover {
  color: var(--primary-color-gradient);
}

.calendar-section {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(209, 29, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-section h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.calendar-section > p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.calendar {
  width: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  font-size: 1.15rem;
  color: var(--text-color);
  font-weight: 600;
}

.calendar-nav {
  display: flex;
  gap: 10px;
}

.calendar-nav button {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav button:hover {
  background: var(--primary-hover-color);
  transform: scale(1.05);
}

.calendar-nav button:active {
  transform: scale(0.95);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-days-wrapper {
  display: contents;
}

.calendar-day-header {
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 5px;
  font-size: 0.85rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid #f0f0f0;
  background: white;
}

.calendar-day:hover:not(.other-month) {
  background: #f8f8f8;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.calendar-day.other-month {
  color: #d0d0d0;
  cursor: default;
}

.calendar-day.today {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  border-color: var(--primary-color);
}

.calendar-day.closed {
  background: #ffebee;
  color: #c62828;
  position: relative;
  text-decoration: line-through;
  border-color: #ffcdd2;
  cursor: not-allowed;
}

.legend {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.legend-box {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.legend-box.today {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.legend-box.closed {
  background: #ffebee;
  border-color: #ffcdd2;
}

.map-section {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(209, 29, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-section h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.map-section > p {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.map-container:hover {
  border-color: var(--primary-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ! Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ! Responsive */
@media (max-width: 968px) {
  .top-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    margin-top: 40px;
  }

  .container {
    padding: 30px 15px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }

  .contact-info,
  .calendar-section,
  .map-section {
    padding: 25px;
  }

  .calendar-day {
    font-size: 0.85rem;
  }

  .calendar-day-header {
    font-size: 0.8rem;
    padding: 8px 3px;
  }

  .map-container {
    height: 300px;
  }
}
