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

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

.sign-up-page {
  background-color: #ffffff;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}


.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 {
  text-align: center;
  padding: 80px 20px 40px;
}

.welcome-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #17253f;
  font-size: 50px;
  margin-bottom: 10px;
}

.welcome-subtitle {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #17253f;
  font-size: 30px;
}

/* =====================================================
   SIGNUP CONTAINER
   ===================================================== */
.signup-container {
  display: flex;
  margin: 40px 135px 60px;
  border-radius: 35px;
  overflow: hidden;
  background-color: #f4f4f4;
}

/* Promo Panel (Left) */
.promo-panel {
  flex: 0 0 50%;
  background-color: #02aed6;
  padding: 60px;
  display: flex;
  flex-direction: column;
  border-radius: 35px 0 0 35px;
  position: relative;
}

.promo-title {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 75px);
  line-height: 1;
  max-width: 503px;
  margin-bottom: 40px;
}

.promo-description {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  max-width: 503px;
  margin-top: 20px;
}

.promo-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 391px;
  padding: 25px 30px;
  background-color: #ffffff;
  border: none;
  border-radius: 70px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-plan-btn span {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #1a1a1a;
  font-size: clamp(18px, 2vw, 24px);
}

.pricing-plan-btn img {
  width: 22px;
  height: 18px;
}

.pricing-plan-btn:hover {
  background-color: #004aad;
}

.pricing-plan-btn:hover span {
  color: #ffffff;
}

.pricing-plan-btn:hover img {
  filter: brightness(0) invert(1);
}

.promo-note {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
  padding-left: 25px;
}

/* Signup Panel (Right) */
.signup-panel {
  flex: 0 0 50%;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
}

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

/* Form Styles */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #17253f;
  font-size: 16px;
}

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

.text-input,
.select-input {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 25px;
  height: 70px;
  background-color: #ffffff;
  border: 1px solid rgba(23, 37, 63, 0.15);
  border-radius: 100px;
  transition: border-color 0.3s ease;
}

.text-input:focus-within,
.select-input:focus-within {
  border-color: #17253f;
}

.input-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.text-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #17253f;
  font-size: 16px;
  background: transparent;
}

.text-input input::placeholder {
  color: rgba(23, 37, 63, 0.4);
}

.select-input {
  cursor: pointer;
  position: relative;
  border-color: #17253f;
  padding-left: 50px;
}

/* Custom select (overlays native select) */
.custom-select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2; /* above native select */
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 50px 0 55px; /* match icon spacing */
  border-radius: 100px;
  cursor: pointer;
}

.custom-select-text {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #17253f;
  font-size: 16px;
}

.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  z-index: 3000; /* above navbar etc. */
}

.custom-options.open { display: block; }

.custom-option {
  padding: 16px 20px;
  font-family: "Poppins", Helvetica;
  font-size: 14px;
  color: #212121;
  background: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-option:hover {
  background: #f0f0f0;
  color: #fdb21a;
}

.custom-option.selected {
  color: #fdb21a;
}

.select-text {
  flex: 1;
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #17253f;
  font-size: 16px;
}

.select-input .input-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.select-input .dropdown-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.account-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 50px 0 55px;
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #17253f;
  font-size: 16px;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.account-select option {
  font-family: "Poppins", Helvetica;
  font-size: 16px;
  padding: 10px;
}

.dropdown-arrow {
  width: 12px;
  height: 7px;
}

/* Terms Agreement */
.terms-agreement {
  margin-top: 5px;
}

.agree-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.agree-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid #212121;
  border-radius: 4px;
  cursor: pointer;
}

.agree-checkbox span {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #404040;
  font-size: 16px;
}

.agree-checkbox a {
  color: #404040;
  font-weight: 500;
  text-decoration: none;
}

.agree-checkbox a:hover {
  text-decoration: underline;
}

/* Create Button */
.create-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 70px;
  background-color: #004aad;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.create-btn span {
  font-family: "Neue Haas Grotesk Text Pro-75Bd", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
}

.create-btn img {
  width: 16px;
  height: 13px;
}

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

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: rgba(23, 37, 63, 0.2);
}

.divider-text {
  font-family: "Poppins", Helvetica;
  font-weight: 500;
  color: #17253f;
  font-size: 16px;
  padding: 0 10px;
}

/* Social Login */
.social-login {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 150px;
  height: 79px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.05);
}

.google-btn {
  background-color: #ffffff;
  border: 1px solid rgba(42, 42, 42, 0.2);
}

.google-btn img {
  width: 30px;
  height: 30px;
}

.facebook-btn {
  background-color: #1877f2;
}

.facebook-btn img {
  width: 35px;
  height: 35px;
}

.apple-btn {
  background-color: #000000;
}

.apple-icon {
  width: 27px;
  height: 34px;
  background-image: url(https://c.animaapp.com/mke0e5uqbuTLj3/img/vector.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Login Link */
.login-link {
  margin-bottom: 40px;

  text-align: center;
  margin-top: 25px;
  font-family: "Poppins", Helvetica;
  font-size: 16px;
}

.login-link .muted {
  color: rgba(33, 33, 33, 0.4);
}

.login-link a {
  color: #212121;
  font-weight: 500;
  text-decoration: none;
  margin-left: 5px;
}

.login-link a:hover {
  text-decoration: underline;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  margin-top: 60px;
  padding-top: 40px;

  margin-top: auto;
  background-color: #EFF6FF;
  padding: 50px 135px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  width: 305px;
  height: auto;
  object-fit: contain;
}

.footer-copyright {
  font-family: "Neue Haas Grotesk Text Pro-65Md", Helvetica;
  font-weight: 500;
  color: #212121;
  font-size: 24px;
}

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

/* Large Desktop */
@media screen and (max-width: 1400px) {
  .navbar {
    margin: 30px 60px 0;
  }
  
  .signup-container {
    margin: 40px 60px 60px;
  }
  
  .footer {
    padding: 50px 60px;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .promo-panel {
    padding: 40px;
  }
  
  .signup-panel {
    padding: 40px;
  }
  
  .social-btn {
    width: 120px;
    height: 65px;
  }
}

/* Tablet */
@media screen and (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }
  
  .navbar {
    margin: 20px 20px 0;
    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;
  }
  
  /* Mobile dropdown alignment under trigger */
  /* .nav-dropdown .dropdown-menu {
    left: 0;
    right: auto;
    transform: none;
  } */

  .nav-cta {
    display: none;
  }
  
  .page-header {
    padding: 60px 20px 30px;
  }
  
  .welcome-title {
    font-size: 40px;
  }
  
  .welcome-subtitle {
    font-size: 24px;
  }
  
  .signup-container {
    flex-direction: column;
    margin: 30px 20px 40px;
  }
  
  .promo-panel {
    flex: none;
    border-radius: 35px 35px 0 0;
    padding: 40px 30px;
    min-height: 350px;
  }
  
  .signup-panel {
    flex: none;
    padding: 40px 30px;
  }
  
  .footer {
    padding: 40px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-logo {
    width: 250px;
  }
  
  .footer-copyright {
    font-size: 18px;
    font-weight: 600;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .page-header {
    padding: 40px 20px 20px;
  }
  
  .welcome-title {
    font-size: 32px;
  }
  
  .welcome-subtitle {
    font-size: 20px;
  }
  
  .promo-panel {
    padding: 30px 20px;
    min-height: 300px;
  }
  
  .promo-title {
    font-size: 36px;
  }
  
  .promo-description {
    font-size: 16px;
    margin-top: 0px;
  }
  
  .pricing-plan-btn {
    padding: 20px 25px;
  }
  
  .pricing-plan-btn span {
    font-size: 18px;
  }
  
  .signup-panel {
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 24px;
  }
  
  .text-input,
  .select-input {
    height: 60px;
    padding: 0 20px;
  }
  
  .create-btn {
    height: 60px;
  }
  
  .social-btn {
    width: 100px;
    height: 55px;
  }
  
  .google-btn img {
    width: 24px;
    height: 24px;
  }
  
  .facebook-btn img {
    width: 28px;
    height: 28px;
  }
  
  .apple-icon {
    width: 22px;
    height: 28px;
  }
  
  .agree-checkbox span {
    font-size: 14px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .nav-links {
    width: 250px;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .welcome-title {
    font-size: 28px;
  }
  
  .welcome-subtitle {
    font-size: 18px;
  }
  
  .promo-title {
    font-size: 28px;
  }
  
  .social-login {
    flex-wrap: wrap;
  }
  
  .social-btn {
    width: 80px;
    height: 50px;
  }
  
  .footer-logo {
    width: 200px;
  }
  
  .promo-note {
    font-size: 12px;
  }
  
  .login-link {
    font-size: 10px;
  }
}
