/* [project]/app/contact/page.module.css [app-client] (css) */
.page-module__j6Q3dW__container {
  background: #f8f9fc;
  min-height: 100vh;
}

.page-module__j6Q3dW__heroBanner {
  background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 40%, #512da8 70%, #311b92 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.page-module__j6Q3dW__heroOverlay {
  pointer-events: none;
  background: radial-gradient(circle at 20% 80%, #ffffff0f 0%, #0000 50%), radial-gradient(circle at 80% 20%, #ffc10714 0%, #0000 40%);
  position: absolute;
  inset: 0;
}

.page-module__j6Q3dW__heroContent {
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  animation: .6s ease-out page-module__j6Q3dW__fadeSlideDown;
  position: relative;
}

.page-module__j6Q3dW__heroTitle {
  color: #fff;
  text-shadow: 0 2px 12px #0003;
  margin: 0 0 .8rem;
  font-size: 3rem;
  font-weight: 800;
}

.page-module__j6Q3dW__heroDivider {
  background: linear-gradient(90deg, #ffc107, #ff9800);
  border-radius: 2.5px;
  width: 80px;
  height: 5px;
}

@keyframes page-module__j6Q3dW__fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-module__j6Q3dW__mainContent {
  z-index: 3;
  max-width: 1350px;
  margin: -3rem auto 0;
  padding: 0 2rem 4rem;
  position: relative;
}

.page-module__j6Q3dW__grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  display: grid;
}

.page-module__j6Q3dW__card {
  opacity: 0;
  background: #fff;
  border: 1px solid #0000000a;
  border-radius: 14px;
  animation: .6s ease-out forwards page-module__j6Q3dW__cardIn;
  overflow: hidden;
  transform: translateY(30px);
  box-shadow: 0 2px 12px #0000000d;
}

.page-module__j6Q3dW__animDelay1 {
  animation-delay: .1s;
}

.page-module__j6Q3dW__animDelay2 {
  animation-delay: .25s;
}

@keyframes page-module__j6Q3dW__cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-module__j6Q3dW__cardHeader {
  background: linear-gradient(135deg, #fafafe 0%, #f3f0fa 100%);
  border-bottom: 2px solid #f0edf5;
  align-items: center;
  gap: .8rem;
  padding: 1.5rem 2rem;
  display: flex;
}

.page-module__j6Q3dW__cardIcon {
  stroke: #7b1fa2;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.page-module__j6Q3dW__cardTitle {
  color: #1e293b;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.page-module__j6Q3dW__cardBody {
  padding: 1.8rem 2rem;
}

.page-module__j6Q3dW__contactList {
  flex-direction: column;
  gap: 0;
  display: flex;
}

.page-module__j6Q3dW__contactItem {
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  display: flex;
}

.page-module__j6Q3dW__contactDivider {
  background: #f0f0f5;
  height: 1px;
}

.page-module__j6Q3dW__iconCircle {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.page-module__j6Q3dW__contactText {
  flex-direction: column;
  gap: .1rem;
  display: flex;
}

.page-module__j6Q3dW__contactText p {
  color: #333;
  margin: 0;
  font-size: .93rem;
  line-height: 1.6;
}

.page-module__j6Q3dW__label {
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #7b1fa2;
  margin-bottom: .2rem;
  font-size: .78rem;
  font-weight: 700;
}

.page-module__j6Q3dW__highlight {
  font-weight: 700;
  color: #7b1fa2 !important;
  font-size: 1.05rem !important;
}

.page-module__j6Q3dW__emailLink {
  color: #1976d2;
  text-decoration: none;
  transition: color .2s;
}

.page-module__j6Q3dW__emailLink:hover {
  color: #7b1fa2;
  text-decoration: underline;
}

.page-module__j6Q3dW__mapCard {
  flex-direction: column;
  display: flex;
}

.page-module__j6Q3dW__mapContainer {
  flex: 1;
  min-height: 450px;
}

.page-module__j6Q3dW__mapContainer iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.page-module__j6Q3dW__mapLink {
  color: #fff;
  background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.page-module__j6Q3dW__mapLink:hover {
  opacity: .9;
}

@media (max-width: 768px) {
  .page-module__j6Q3dW__heroBanner {
    padding: 3rem 5%;
  }

  .page-module__j6Q3dW__heroTitle {
    font-size: 2rem;
  }

  .page-module__j6Q3dW__mainContent {
    padding: 0 1rem 3rem;
  }

  .page-module__j6Q3dW__grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=app_contact_page_module_e7937472.css.map*/