@charset "UTF-8";
@font-face {
  font-family: "Poppins-Light";
  src: url("../assets/fonts/poppins-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../assets/fonts/poppins-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../assets/fonts/poppins-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Semibold";
  src: url("../assets/fonts/poppins-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../assets/fonts/poppins-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Brushlie-demo";
  src: url("../assets/fonts/brushlie-demo.otf") format("opentype");
  font-display: block;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
}

html {
  font-family: "Poppins-Regular", "Poppins", sans-serif;
}

body {
  background-color: #0C0C1F;
  color: #FFFFFF;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  margin: 0;
  overflow-x: hidden;
  min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-weight: 700;
}

.page-wrapper {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.page-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--contact-header-offset);
  background: linear-gradient(to bottom, transparent 45%, #0C0C1F 100%), url("../assets/form-vector.svg") center top/cover no-repeat, #0C0C1F;
  z-index: 8;
  pointer-events: none;
}

/* ── Header ───────────────────────────────────────── */
body {
  --contact-header-offset: 124px;
}
@media (max-width: 1023px) {
  body {
    --contact-header-offset: 110px;
  }
}
@media (max-width: 767px) {
  body {
    --contact-header-offset: 80px;
  }
}

.form-vector-top {
  display: none;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 80px;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
}
@media (max-width: 1023px) {
  .top-nav {
    padding: 32px 40px;
  }
}
@media (max-width: 767px) {
  .top-nav {
    padding: 20px;
  }
}
.top-nav .nav-left {
  display: flex;
  justify-content: flex-start;
}
.top-nav .nav-right {
  display: flex;
  justify-content: flex-end;
}
.top-nav .back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.top-nav .back-btn:hover {
  opacity: 1;
  transform: translateX(-4px);
}
.top-nav .back-btn:hover .back-icon {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .top-nav .back-btn span {
    display: none;
  }
}
.top-nav .back-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .top-nav .back-icon {
    width: 40px;
    height: 40px;
  }
}
.top-nav .back-to-home {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1rem;
}
.top-nav .spree-logo {
  display: flex;
  justify-content: center;
}
.top-nav .spree-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(249, 102, 172, 0.2));
}
@media (max-width: 1023px) {
  .top-nav .spree-logo img {
    height: 38px;
  }
}
@media (max-width: 767px) {
  .top-nav .spree-logo img {
    height: 32px;
  }
}

/* ── Hero / Content ───────────────────────────────── */
.contact-hero {
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--contact-header-offset) + 40px) 40px 60px;
  z-index: 1;
}
@media (max-width: 1023px) {
  .contact-hero {
    padding: calc(var(--contact-header-offset) + 32px) 40px 40px;
  }
}
@media (max-width: 767px) {
  .contact-hero {
    padding: calc(var(--contact-header-offset) + 24px) 20px 40px;
    min-height: auto;
  }
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 102, 172, 0.15) 0%, transparent 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .contact-hero::before {
    width: 400px;
    height: 400px;
  }
}

.contact-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  gap: 16px;
}
@media (max-width: 767px) {
  .contact-content {
    gap: 20px;
  }
}

.contact-content .contact-title {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 60px;
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 1023px) {
  .contact-content .contact-title {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .contact-content .contact-title {
    font-size: 48px;
  }
}
@media (max-width: 440px) {
  .contact-content .contact-title {
    font-size: 32px;
  }
}

.contact-content .contact-subtitle {
  font-size: 20px;
  opacity: 0.6;
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}
@media (max-width: 767px) {
  .contact-content .contact-subtitle {
    font-size: 16px;
  }
}

.contact-content .email-pill {
  background: #E21C71;
  border: 1px solid #E21C71;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #FFFFFF;
  padding: 24px 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 24px;
  transition: all 0.3s ease;
  width: auto;
  min-width: 400px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.contact-content .email-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
@media (max-width: 1023px) {
  .contact-content .email-pill {
    padding: 20px 48px;
    font-size: 20px;
    min-width: 360px;
  }
}
@media (max-width: 767px) {
  .contact-content .email-pill {
    padding: 18px 30px;
    font-size: 18px;
    width: 100%;
    min-width: unset;
    margin-top: 24px;
  }
}
.contact-content .email-pill:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 102, 172, 0.4);
  background: rgba(249, 102, 172, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 102, 172, 0.2);
}
.contact-content .email-pill:hover::after {
  transform: translateX(100%);
}
.contact-content .email-pill:hover .mail-icon-circle {
  background: #F966AC;
  transform: scale(1.1);
}

.contact-content .email-pill .mail-icon-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-content .email-pill .mail-icon-circle img {
  width: 32px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* ── Animation ────────────────────────────────────── */
.animation-container-contact {
  margin-top: 40px;
  position: relative;
  width: 311px;
  height: 294px;
  opacity: 0.6;
}
@media (max-width: 1023px) {
  .animation-container-contact {
    transform: scale(0.85);
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .animation-container-contact {
    margin-top: 10px;
    transform: scale(0.7);
    transform-origin: center;
  }
}

.animation-container-contact svg {
  width: 100%;
  height: 100%;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: transparent;
  width: 100%;
}

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