.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;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

.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 h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.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;
}

.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);
}

.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;
  }

  .map-container {
    height: 300px;
  }
}
