.contact-page {
  position: relative;
  background: linear-gradient(180deg, #000000 0%, #533E31 100%);
  background-repeat: no-repeat;
  padding: 5rem 0;
  /* py-20 */
  color: #fff;
  /* Social icons (reusing contact-section styles) */
}
.contact-page__top-line {
  position: absolute;
  left: 0;
  right: 0;
  transform: none;
  height: 70px;
  width: 70vw;
}
.contact-page__main {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  padding: 8rem 1rem;
  /* py-32 px-4 */
}
@media (min-width: 768px) {
  .contact-page__main {
    padding-left: 0;
    /* Reserve space on the right for the decorative hexagon so it doesn't overlap text */
    padding-right: clamp(300px, 35vw, 640px);
  }
}
@media (max-width: 767px) {
  .contact-page__main {
    flex-direction: column;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.contact-page__content {
  position: relative;
  z-index: 1;
  /* keep content above decor if they touch */
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* space-y-8 */
}
.contact-page__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .contact-page__title {
    font-size: 34px;
    margin-top: 2rem;
  }
}
.contact-page__lead {
  font-size: 32px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .contact-page__lead {
    font-size: 22px;
  }
}
.contact-page__text {
  /* default paragraph */
  font-size: 20px;
  line-height: 1.6;
}
.contact-page__list-block {
  padding-top: 2rem;
  padding-left: 2rem;
  /* pl-8 */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* space-y-6 */
}
.contact-page__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-page__list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-page__list-icon {
  color: #9c826f;
  display: inline-flex;
}
.contact-page__list-text {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
}
.contact-page__decor {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: 0;
  /* place behind */
  display: none;
}
@media (min-width: 768px) {
  .contact-page__decor {
    display: block;
  }
}
.contact-page__decor-hex {
  width: 612px;
  height: 590px;
  position: relative;
  background: url("/imgs/bemutatkozas/bemutatkozas_hex.png") no-repeat left center;
  background-size: contain;
  z-index: 1;
  /* behind content */
}
.contact-page__decor-small {
  position: absolute;
  bottom: 60px;
  left: -100px;
  z-index: 0;
}
.contact-page__social {
  display: flex;
  gap: 1rem;
}

/* Reuse the existing hex icon look if contact-section styles not loaded on this page */
.contact-page__social .contact-section__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 54px;
  position: relative;
  transition: transform 0.35s ease, filter 0.35s ease;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.contact-page__social .contact-section__social-link::before,
.contact-page__social .contact-section__social-link::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: inherit;
  -webkit-clip-path: inherit;
  pointer-events: none;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.contact-page__social .contact-section__social-link::before {
  background: linear-gradient(135deg, #7C6A62 0%, #EAB58F 55%, #4D3325 100%);
  z-index: 1;
}

.contact-page__social .contact-section__social-link::after {
  inset: 3px;
  background: #3a2918;
  z-index: 0;
}

.contact-page__social .contact-section__social-link:hover {
  transform: translateY(-4px) scale(1.04);
}

.contact-page__social .contact-section__social-link:hover::after {
  background: linear-gradient(145deg, #302212 0%, #4a301f 55%, #422a1a 100%);
}

.contact-page__social .contact-section__social-link:hover::before {
  background: linear-gradient(135deg, #EAB58F 0%, #7C6A62 55%, #4D3325 100%);
}

.contact-page__social .contact-section__social-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 5;
  display: block;
}
