/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
:root {
  color-scheme: dark;
}

/* Font Family */
:root {
  color-scheme: dark;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #050505;
  color: #f4f4f5;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.overline {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #80d497;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 3rem;
  font-weight: 800;
  text-transform: capitalize;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}

.btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: #80d497;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary .btn-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-primary:hover {
  background-color: #98dfab;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(128, 212, 151, 0.3);
          box-shadow: 0 10px 20px rgba(128, 212, 151, 0.3);
}
.btn-primary:hover .btn-icon {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(128, 212, 151, 0.5);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-outline:hover svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-delay: var(--d, 0s);
          transition-delay: var(--d, 0s);
}
.reveal.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes gridScan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

@keyframes gridScan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}
@-webkit-keyframes grid-drift {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@keyframes grid-drift {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar .navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .brand .brand-icon {
  height: 32px;
  width: auto;
}
.navbar .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #a1a1aa;
}
.navbar .nav-links a:hover {
  color: #f4f4f5;
}
.navbar .nav-links .btn-nav {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #f4f4f5;
}
.navbar .nav-links .btn-nav:hover {
  background: #fff;
  color: #000;
}
.navbar .hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.navbar .hamburger span {
  width: 25px;
  height: 2px;
  background: #f4f4f5;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {
  .navbar .nav-links {
    position: fixed;
    top: 80px;
    right: 0;
    height: calc(100vh - 80px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 10%;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 999;
    gap: 0;
  }
  .navbar .nav-links.nav-active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .navbar .nav-links li {
    opacity: 0;
    width: 80%;
    text-align: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar .nav-links li:last-child {
    border-bottom: none;
  }
  .navbar .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    width: 100%;
  }
  .navbar .nav-links .btn-nav {
    padding: 1rem 3rem;
    font-size: 1.2rem;
  }
  .navbar .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1001;
  }
  .navbar .hamburger.toggle span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
            transform: rotate(-45deg) translate(-5px, 5px);
  }
  .navbar .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar .hamburger.toggle span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
            transform: rotate(45deg) translate(-5px, -5px);
  }
  @-webkit-keyframes navLinkFade {
    from {
      opacity: 0;
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
  @keyframes navLinkFade {
    from {
      opacity: 0;
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
}
footer {
  padding: 6rem 0 3rem;
  background: #050505;
  position: relative;
  overflow: hidden;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .footer-divider {
  position: absolute;
  bottom: 100px;
  left: -10%;
  right: -10%;
  width: 120%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
  mask-image: radial-gradient(ellipse at 50% 100%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 75%);
  -webkit-animation: gridScan 20s linear infinite;
          animation: gridScan 20s linear infinite;
  pointer-events: none;
}
footer .footer-top {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 6rem;
}
footer .footer-brand-col {
  max-width: 300px;
}
footer .footer-brand-col .brand {
  display: inline-block;
  margin-bottom: 1.5rem;
}
footer .footer-brand-col .brand .brand-icon {
  height: 56px;
  width: auto;
}
footer .footer-brand-col .slogan {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}
footer .footer-links-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3rem, 8vw, 6rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .link-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
footer .link-group .footer-group-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
footer .link-group a {
  font-size: 0.9rem;
  color: #a1a1aa;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
footer .link-group a .social-icon {
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
footer .link-group a:hover {
  color: #f4f4f5;
}
footer .link-group a:hover .social-icon {
  opacity: 1;
}
footer .footer-bottom {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding-top: 3rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer .footer-bottom .footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-left .btn-signin {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.95rem;
  color: #a1a1aa;
  font-weight: 500;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-bottom .footer-bottom-left .btn-signin span {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
footer .footer-bottom .footer-bottom-left .btn-signin:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f4f4f5;
}
footer .footer-bottom .footer-bottom-left .btn-signin:hover span {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
footer .footer-bottom .footer-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.85rem;
  color: #a1a1aa;
}
footer .footer-bottom .footer-bottom-right a:hover {
  color: #f4f4f5;
}

@media (max-width: 1024px) {
  footer .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
}
.contact-page {
  padding-top: 80px;
}
.contact-page .contact-hero {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 10vh;
  text-align: center;
}
.contact-page .contact-hero .contact-grid-lines {
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 40%;
  z-index: 1;
  background-image: linear-gradient(rgba(128, 212, 151, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 212, 151, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(20%, black), color-stop(80%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(20%, black), color-stop(80%, black), to(transparent));
  mask-image: linear-gradient(to top, transparent 0%, black 20%, black 80%, transparent 100%);
  pointer-events: none;
  -webkit-animation: gridScan 20s linear infinite;
          animation: gridScan 20s linear infinite;
}
.contact-page .contact-hero .container {
  position: relative;
  z-index: 10;
}
.contact-page .contact-hero .hero-subtitle {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  letter-spacing: 0.3em;
  color: #80d497;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
  text-transform: uppercase;
}
.contact-page .contact-hero .hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: 0.1em;
}
.contact-page .contact-hero .hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-page .contact-section {
  padding-bottom: clamp(4rem, 10vw, 10rem);
  position: relative;
  z-index: 5;
}
.contact-page .contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.contact-page .contact-section .contact-form-container {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.contact-page .contact-section .contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top right, rgba(128, 212, 151, 0.15), transparent 70%);
  pointer-events: none;
}
.contact-page .contact-section .contact-form-container .form-group {
  margin-bottom: 2rem;
}
.contact-page .contact-section .contact-form-container .form-group label {
  display: block;
  font-size: 0.85rem;
  color: #a1a1aa;
  margin-bottom: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-page .contact-section .contact-form-container .form-group input, .contact-page .contact-section .contact-form-container .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.2rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-page .contact-section .contact-form-container .form-group input:focus, .contact-page .contact-section .contact-form-container .form-group textarea:focus {
  outline: none;
  border-color: rgba(128, 212, 151, 0.4);
  background: rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 0 0 20px rgba(128, 212, 151, 0.05);
          box-shadow: 0 0 20px rgba(128, 212, 151, 0.05);
}
.contact-page .contact-section .contact-form-container .form-group input::-webkit-input-placeholder, .contact-page .contact-section .contact-form-container .form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact-page .contact-section .contact-form-container .form-group input::-moz-placeholder, .contact-page .contact-section .contact-form-container .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact-page .contact-section .contact-form-container .form-group input:-ms-input-placeholder, .contact-page .contact-section .contact-form-container .form-group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact-page .contact-section .contact-form-container .form-group input::-ms-input-placeholder, .contact-page .contact-section .contact-form-container .form-group textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact-page .contact-section .contact-form-container .form-group input::placeholder, .contact-page .contact-section .contact-form-container .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact-page .contact-section .contact-form-container .form-group textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-page .contact-section .contact-form-container .btn-submit {
  width: 100%;
  padding: 1.2rem;
  background: #80d497;
  color: #050505;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}
.contact-page .contact-section .contact-form-container .btn-submit:hover {
  background: #98dfab;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.contact-page .contact-section .contact-form-container .btn-submit .btn-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.contact-page .contact-section .contact-form-container .btn-submit:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.contact-page .contact-section .contact-info-col .info-group {
  margin-bottom: 3.5rem;
}
.contact-page .contact-section .contact-info-col .info-group:last-child {
  margin-bottom: 0;
}
.contact-page .contact-section .contact-info-col .info-group .info-label {
  font-size: 0.75rem;
  color: #80d497;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-page .contact-section .contact-info-col .info-group .info-value {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
}
.contact-page .contact-section .contact-info-col .info-group .info-value a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-page .contact-section .contact-info-col .info-group .info-value a:hover {
  color: #80d497;
}
.contact-page .contact-section .contact-info-col .info-group .social-links-minimal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-page .contact-section .contact-info-col .info-group .social-links-minimal .social-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #a1a1aa;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}
.contact-page .contact-section .contact-info-col .info-group .social-links-minimal .social-item:hover {
  color: #fff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.contact-page .contact-section .contact-info-col .info-group .social-links-minimal .social-item .social-icon {
  color: #80d497;
}
.contact-page .newsletter-section {
  padding: clamp(4rem, 10vw, 10rem) 0;
  position: relative;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-page .newsletter-section .newsletter-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-page .newsletter-section .newsletter-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-page .newsletter-section .newsletter-content p {
  color: #a1a1aa;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.contact-page .newsletter-section .newsletter-content .newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.contact-page .newsletter-section .newsletter-content .newsletter-form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #fff;
}
.contact-page .newsletter-section .newsletter-content .newsletter-form input:focus {
  outline: none;
  border-color: rgba(128, 212, 151, 0.4);
}
.contact-page .newsletter-section .newsletter-content .newsletter-form .btn-subscribe {
  padding: 0 2rem;
  background: #fff;
  color: #050505;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-page .newsletter-section .newsletter-content .newsletter-form .btn-subscribe:hover {
  background: #a1a1aa;
}

.glow-bg {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(120px);
          filter: blur(120px);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(128, 212, 151, 0.1);
  top: 10%;
  right: -5%;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.08);
  bottom: 10%;
  left: -5%;
}

@media (max-width: 1024px) {
  .contact-page .contact-section {
    padding-bottom: clamp(4rem, 10vw, 10rem);
  }
  .contact-page .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-page .contact-section .contact-info-col {
    text-align: center;
    margin-top: 2rem;
  }
  .contact-page .contact-section .contact-info-col .info-group {
    margin-bottom: 3.5rem;
  }
  .contact-page .contact-section .contact-info-col .info-group .info-value {
    text-align: center;
    display: block;
  }
  .contact-page .contact-section .contact-info-col .info-group .social-links-minimal {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-page .newsletter-section {
    padding: clamp(4rem, 10vw, 10rem) 0;
  }
}
@media (max-width: 600px) {
  .contact-page .contact-hero {
    min-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .contact-page .contact-hero .hero-title {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }
  .contact-page .contact-hero .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .contact-page .contact-section .contact-form-container {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
  .contact-page .newsletter-section .newsletter-content p {
    margin-bottom: 2rem;
  }
  .contact-page .newsletter-section .newsletter-content .newsletter-form {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 1rem;
  }
  .contact-page .newsletter-section .newsletter-content .newsletter-form input {
    width: 100% !important;
    padding: 1.2rem 1.5rem !important;
    text-align: center;
    height: 60px;
  }
  .contact-page .newsletter-section .newsletter-content .newsletter-form .btn-subscribe {
    width: 100% !important;
    padding: 0 1.5rem !important;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@-webkit-keyframes toastSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(0.95);
            transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(0.95);
            transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes toastSlideOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(0.95);
            transform: translateY(24px) scale(0.95);
  }
}
@keyframes toastSlideOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(0.95);
            transform: translateY(24px) scale(0.95);
  }
}
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  min-width: 320px;
  max-width: 420px;
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(24px) scale(0.95);
          transform: translateY(24px) scale(0.95);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.35s ease, -webkit-transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast-notification.toast-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.toast-notification .toast-icon-success,
.toast-notification .toast-icon-error {
  display: none;
}
.toast-notification.toast-success {
  border-color: rgba(128, 212, 151, 0.25);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(128, 212, 151, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(128, 212, 151, 0.1);
}
.toast-notification.toast-success .toast-icon-success {
  display: block;
  color: #80d497;
}
.toast-notification.toast-success .toast-icon-wrap {
  background: rgba(128, 212, 151, 0.12);
}
.toast-notification.toast-success .toast-progress {
  background: #80d497;
}
.toast-notification.toast-error {
  border-color: rgba(239, 68, 68, 0.25);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(239, 68, 68, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(239, 68, 68, 0.1);
}
.toast-notification.toast-error .toast-icon-error {
  display: block;
  color: #ef4444;
}
.toast-notification.toast-error .toast-icon-wrap {
  background: rgba(239, 68, 68, 0.12);
}
.toast-notification.toast-error .toast-progress {
  background: #ef4444;
}
.toast-notification .toast-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
.toast-notification .toast-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.toast-notification .toast-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.toast-notification .toast-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.toast-notification .toast-message {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.toast-notification .toast-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.35);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.toast-notification .toast-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}
.toast-notification .toast-progress {
  height: 3px;
  border-radius: 0 0 16px 16px;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.05s linear;
  transition: -webkit-transform 0.05s linear;
  transition: transform 0.05s linear;
  transition: transform 0.05s linear, -webkit-transform 0.05s linear;
}

@media (max-width: 480px) {
  .toast-notification {
    min-width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 1rem;
  }
}