/* =====================================================
   SIGNUP DESIGNER PAGE - MODERN RESPONSIVE CSS
   ===================================================== */

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.signup-designer {
  background-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  padding: 0 135px;
}

/* Hero Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(180deg, rgba(237, 223, 223, 1) 0%, rgba(224, 249, 255, 1) 100%);
  z-index: 0;
}

/* =====================================================
   NAVBAR STYLES
   ===================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 114px;
  box-shadow: inset 0px 0px 10px #ffffff, 0px 0px 20px rgba(221, 221, 221, 0.25);
  backdrop-filter: blur(30px);
  /* border-radius: 114px; */
  /* box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08); */
  position: relative;
  z-index: 100;
}

.logo {
  width: 193px;
  height: 45px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #fdb21a;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown .down-arrow {
  width: 8px;
  height: 5px;
}

.nav-dropdown .dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  padding-top: 0px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: none;
  min-width: 200px;
  z-index: 1000;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown .dropdown-menu a {
  background-color: #ffffff;
  padding: 12px 20px;
  color: #212121;
  text-decoration: none;
  font-family: "Poppins", Helvetica;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown .dropdown-menu a:first-child {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-top: 15px;
  box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.08);
}

.nav-dropdown .dropdown-menu a:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-bottom: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-dropdown .dropdown-menu a:not(:first-child):not(:last-child) {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  display: flex !important;
}

.nav-dropdown .dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: #fdb21a;
  border-left-color: #fdb21a;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 30px;
  background-color: #fdb21a;
  border-radius: 70px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #004aad;
}

.nav-cta:hover .nav-cta-text {
  color: #ffffff;
}

.nav-cta:hover .nav-cta-arrow {
  filter: brightness(0) invert(1);
}

.nav-cta-text {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-cta-arrow {
  width: 14px;
  height: 13px;
  filter: brightness(0);
  transition: filter 0.3s ease;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #212121;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 20px 40px;
}

.breadcrumb {
  opacity: 0.5;
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 20px;
  margin-bottom: 35px;
}

.page-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 50px;
}

/* =====================================================
   INFO CARDS SECTION
   ===================================================== */
.info-cards {
  position: relative;
  z-index: 1;
  padding: 60px 135px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 5%;
}

.info-card {
  display: flex;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  min-height: 435px;
}

.pink-card {
  background-color: #fff6fb;
}

.green-card {
  background-color: #f0fdf8;
}

.card-content {
  flex: 1;
  padding: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.card-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 40px;
  line-height: 1.1;
}

.card-text {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #212121;
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.8;
}

.card-text strong {
  font-weight: 700;
}

.card-text a {
  color: #212121;
  text-decoration: none;
}

.card-text a:hover {
  text-decoration: underline;
}

.card-image-wrapper {
  width: 528px;
  height: 375px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px;
  flex-shrink: 0;
}

.pink-bg {
  background-color: #f7e0ed;
}

.green-bg {
  background-color: #dbf2e9;
}

.card-image {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* =====================================================
   FORM SECTION
   ===================================================== */
.form-section {
  background-color: #f4f4f4;
  padding: 100px 135px;
}

.form-container {
  display: flex;
  align-items: center;
  gap: 76px;
}

.form-intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.form-intro-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 40px;
  line-height: 1.1;
  width: 80%;
}

.notice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background-color: #ffa7a7;
  border-radius: 90px;
  max-width: fit-content;
}

.notice-badge p {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  color: #1a1a1a;
  font-size: 18px;
  opacity: 0.8;
}

.form-card {
  flex: 0 0 615px;
  background-color: #ffffff;
  border-radius: 35px;
  padding: 40px;
}

.form-card-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #252525;
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}

.designer-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  width: 100%;
}

.form-label {
  font-family: "Neue Haas Grotesk Text Pro-Regular", Helvetica;
  font-weight: 400;
  color: #252525;
  font-size: 16px;
  padding-left: 14px;
}

.form-label .required {
  color: #f22f2f;
}

.form-input {
  width: 100%;
  height: 59px;
  background-color: #f4f4f4;
  border: none;
  border-radius: 12px;
  padding: 0 27px;
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #252525;
  font-size: 17px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.form-input::placeholder {
  color: #252525;
  opacity: 0.5;
}

.form-input:focus {
  box-shadow: 0 0 0 2px #004aad;
}

.submit-btn {
  width: 100%;
  height: 59px;
  background-color: #004aad;
  border: none;
  border-radius: 124px;
  font-family: "Poppins", Helvetica;
  font-weight: 800;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background-color: #003580;
}

/* =====================================================
   FOOTER SECTION - Identical to index.html
   ===================================================== */
.footer-section {
  position: relative;
  width: 100%;
  height: 820px;
}

.group-8 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 820px;
  background-image: url(https://c.animaapp.com/mkdwyav2nIAReK/img/rectangle-17.png);
  background-size: 100% 100%;
}

.rectangle-10 {
  position: absolute;
  top: 647px;
  left: 0;
  width: 100%;
  height: 173px;
  background-color: #ffffffd9;
  box-shadow: inset 0px 0px 20px #ffffff;
}

.frame-25 {
  display: flex;
  flex-direction: column;
  width: 803px;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 139px;
  left: calc(50% - 401px);
}

.talk-to-us {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 75px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.you-have-questions {
  position: relative;
  align-self: stretch;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.frame-26 {
  position: absolute;
  top: 370px;
  left: 0;
  width: 100%;
  height: 283px;
  display: flex;
  overflow: hidden;
}

.text-wrapper-20 {
  width: 100%;
  height: 326px;
  opacity: 0.15;
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 495px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  position: absolute;
  bottom: 55px;
}

.frame-27 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 700px;
  padding: 0 7%;
}

.ADLEE-LOGO-2 {
  position: relative;
  width: 305px;
  height: 71.19px;
  object-fit: cover;
}

.element-adlee-all {
  position: relative;
  width: fit-content;
  font-family: "Neue Haas Grotesk Text Pro-65Md", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Large Desktop */
@media screen and (max-width: 1520px) {
  .text-wrapper-20 {
      height: 285px;
      font-size: 435px;
  }
}

@media screen and (max-width: 1400px) {
  .hero-section {
    padding: 0 60px;
  }
  
  .info-cards {
    padding: 60px 60px;
  }
  
  .form-section {
    padding: 80px 60px;
  }
  .text-wrapper-20 {
    height: 260px;
    font-size: 400px;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .info-card {
    /* flex-direction: column; */
  }
  
  .green-card {
    /* flex-direction: column-reverse; */
  }
  
  .card-content {
    padding: 50px;
  }
  
  .card-image-wrapper {
    width: 40%;
    height: 300px;
  }
  
  .form-container {
    /* flex-direction: column; */
    gap: 50px;
  }
  
  .form-card {
    flex: none;
    width: 100%;
    max-width: 615px;
  }

  .form-intro-title {
    font-size: 30px;
  }

  .notice-badge p {
    font-size: 14px;
  }
  
  .frame-27 {
    width: 90%;
    left: 5%;
  }
  
  .text-wrapper-20 {
    font-size: 355px;
    height: 225px;
  }
}

/* Tablet */
@media screen and (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }

  .hero-bg {
    position: absolute;
    height: 250px;
  }
  
  .hero-section {
    padding: 0 20px;
  }
  
  .navbar {
    margin-top: 20px;
    padding: 15px 20px;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 60vh;
    width: 300px;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 25px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .page-header {
    padding: 50px 20px 30px;
  }
  
  .page-title {
    font-size: 40px;
  }
  
  .info-cards {
    padding: 40px 20px;
  }
  
  .card-content {
    padding: 40px 30px;
  }
  
  .card-title {
    font-size: 32px;
  }
  
  .card-text {
    font-size: 18px;
  }
  
  .form-section {
    padding: 60px 20px;
  }
  
  .form-intro-title {
    font-size: 32px;
  }
  
  /* Footer Tablet */
  .footer-section {
    height: auto;
    min-height: 680px;
  }
  
  .group-8 {
    height: auto;
    min-height: 680px;
  }
  
  .frame-25 {
    width: 100%;
    left: 0;
    padding: 0 20px;
    top: 100px;
  }
  
  .talk-to-us {
    font-size: 48px;
  }
  
  .you-have-questions {
    font-size: 18px;
  }
  
  .frame-26 {
    top: 350px;
    height: 200px;
  }
  
  .text-wrapper-20 {
    font-size: 270px;
    height: 180px;
  }
  
  .rectangle-10 {
    top: 520px;
    height: 160px;
  }
  
  .frame-27 {
    top: 580px;
    width: 90%;
    left: 5%;
  }
  
  .ADLEE-LOGO-2 {
    width: 200px;
    height: auto;
  }
  
  .element-adlee-all {
    font-size: 18px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .page-header {
    padding: 40px 20px 20px;
  }
  .hero-bg {
      position: absolute;
      height: 230px;
  }
  
  .breadcrumb {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .page-title {
    font-size: 32px;
  }
  
  .card-content {
    padding: 30px 20px;
    gap: 25px;
  }
  
  .card-title {
    font-size: 28px;
  }
  
  .card-text {
    font-size: 16px;
  }
  
  .card-image-wrapper {
    width: calc(100% - 40px);
    height: 250px;
    margin: 20px;
  }

    .info-card {
        flex-direction: column;
    }
    .form-container {
        flex-direction: column;
        gap: 50px;
    }

  
  .form-section {
    padding: 50px 20px;
  }
  
  .form-intro-title {
    font-size: 28px;
    text-align: center;
    margin: auto;
  }
  
  .notice-badge {
    padding: 15px 20px;
    margin: auto;
  }
  
  .notice-badge p {
    font-size: 14px;
  }
  
  .form-card {
    padding: 30px 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 18px;
  }
  
  .form-input {
    height: 55px;
  }
  
  .submit-btn {
    height: 55px;
  }
  
  /* Footer Mobile */
  .talk-to-us {
    font-size: 36px;
  }
  
  .you-have-questions {
    font-size: 14px;
  }
  
  .text-wrapper-20 {
    font-size: 125px;
    height: 100px;
  }
  
  .frame-27 {
    flex-direction: column;
    gap: 20px;
    top: 560px;
  }
  
  .ADLEE-LOGO-2 {
    width: 180px;
  }
  
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .hero-bg {
    position: absolute;
    height: 200px;
  }
  .nav-links {
    width: 250px;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .card-title {
    font-size: 24px;
  }
  
  .card-text {
    font-size: 14px;
  }
  
  .form-intro-title {
    font-size: 24px;
  }

  .form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-card-title {
    font-size: 22px;
  }
  
  .talk-to-us {
    font-size: 28px;
  }
  
  .you-have-questions {
    font-size: 12px;
  }
  
  .text-wrapper-20 {
      font-size: 120px;
      height: 110px;
  }
}

@media screen and (max-width: 400px) {
    .text-wrapper-20 {
        font-size: 115px;
        height: 85px;
    }
}