@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;
}

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

body {
  background-color: #0B0B1E;
  color: #FFFFFF;
  font-family: "Poppins-Regular", "Poppins", sans-serif;
  margin: 0;
  overflow-x: hidden;
  min-height: 100dvh;
  background: linear-gradient(180deg, #1a0a2e 0%, #0b0b1e 100%);
}

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

.page-wrapper {
  position: relative;
  min-height: 100dvh;
}

.contact-hero {
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 160px 20px 60px;
  z-index: 1;
}
@media (max-width: 767px) {
  .contact-hero {
    padding: 140px 20px 0px;
    min-height: auto;
  }
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 28, 113, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-hero::before {
    width: 300px;
    height: 300px;
    top: 20px;
  }
}

/* Header */
.contact-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .contact-header {
    padding: 20px 0;
  }
}

.contact-header .header-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
}

.contact-header .btn-back {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-self: start;
}
.contact-header .btn-back:hover {
  opacity: 0.8;
}
.contact-header .btn-back:hover .back-circle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-header .btn-back .back-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .contact-header .btn-back .back-circle {
    width: 40px;
    height: 40px;
  }
}

.contact-header .btn-back .back-text {
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-header .btn-back .back-text {
    display: none;
  }
}

.contact-header .header-logo {
  grid-column: 2;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-header .header-logo {
    flex: 1;
  }
}

.contact-header .header-logo img {
  height: 44px;
  width: auto;
}
@media (max-width: 767px) {
  .contact-header .header-logo img {
    height: 32px;
  }
}

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

.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: 767px) {
  .contact-content .contact-title {
    font-size: 48px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .contact-content .contact-title {
    font-size: 32px;
    text-align: left;
  }
}

.contact-content .contact-subtitle {
  font-size: 18px;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact-content .contact-subtitle {
    font-size: 18px;
    padding: 0px;
    text-align: left;
  }
}

.contact-content .email-pill {
  background: #E21C71;
  color: #FFFFFF;
  padding: 20px 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 20px;
  transition: all 0.3s ease;
  width: auto;
  min-width: 320px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact-content .email-pill {
    padding: 12px;
    font-size: 12px;
    width: 90%;
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .contact-content .email-pill {
    padding: 12px;
    font-size: 16px;
    width: 100%;
    min-width: unset;
  }
}
.contact-content .email-pill:hover {
  transform: translateY(-3px);
  background: rgb(249.9622641509, 126.5377358491, 185.3113207547);
  box-shadow: 0 15px 50px rgba(249, 102, 172, 0.4);
}

.contact-content .email-pill .mail-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .contact-content .email-pill .mail-icon-circle {
    width: 28px;
    height: 28px;
  }
}

.email-pill:hover .mail-icon-circle {
  background: rgba(255, 255, 255, 0.25);
}

/* Animation Container */
.animation-container-contact {
  margin-top: 40px;
  position: relative;
  width: 311px;
  height: 294px;
  opacity: 0.6;
}
@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 Overrides for Contact Page */
.footer {
  padding: 100px 0 80px;
  background: transparent;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .footer {
    padding: 60px 0;
  }
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer-brand-col {
    gap: 32px;
  }
}

.footer-logo img {
  height: 48px;
  width: auto;
}
@media (max-width: 767px) {
  .footer-logo img {
    height: 38px;
  }
}

.footer-tagline {
  font-family: "Poppins-Bold", "Poppins", sans-serif;
  font-size: 38px;
  line-height: 1.1;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  max-width: 400px;
}
@media (max-width: 767px) {
  .footer-tagline {
    font-size: 32px;
  }
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer-links-col {
    align-items: flex-start;
    width: 100%;
    gap: 32px;
  }
}

.footer-socials {
  display: flex;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer-socials {
    gap: 24px;
  }
}

.social-link img {
  width: 28px;
  height: auto;
  transition: all 0.3s ease;
}
.social-link:hover img {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 60px;
  text-align: left;
}
@media (max-width: 767px) {
  .footer-nav {
    gap: 16px 20px;
    width: 100%;
  }
}
.footer-nav a {
  font-family: "Poppins-Semibold", "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.footer-nav a:hover {
  color: #F966AC;
}
@media (max-width: 767px) {
  .footer-nav a {
    font-size: 12px;
  }
}/*# sourceMappingURL=contact.css.map */