/* ===== BASE LAYOUT ===== */
.screen {
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.screen .TQ {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
}

.screen .main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ===== HEADER ===== */
.screen .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background-color: #ffffff;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  box-sizing: border-box;
}

.screen .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 43px;
}

.screen .header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.screen .header-logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.screen .header-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.screen .header-name {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 28px;
  white-space: nowrap;
}

.screen .header-name-en {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6a7282;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 15px;
  white-space: nowrap;
}

.screen .navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.screen .nav-btn {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #364153;
  font-size: 14px;
  line-height: 20px;
}

.screen .nav-btn.nav-active {
  color: #003399;
  font-weight: 700;
}

.screen .nav-icon {
  width: 14px;
  height: 14px;
}

.screen .nav-cta {
  all: unset;
  box-sizing: border-box;
  height: 36px;
  padding: 0 20px;
  background-color: #003399;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  width: 100%;
  padding: 80px 80px 56px;
  background-color: #002d62;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
  box-sizing: border-box;
}

.hero-heading {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}

.hero-subtitle {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(219, 234, 254, 0.7);
  font-size: 18px;
  line-height: 28px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px;
  width: 100%;
  box-sizing: border-box;
  align-items: start;
}

/* ===== CONTACT INFO (LEFT) ===== */
.contact-info {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  margin: 0;
}

.info-desc {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4a5565;
  font-size: 16px;
  line-height: 26px;
  margin: 24px 0 0;
}

/* Info Cards Grid */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.info-card {
  background-color: #f8fafc;
  border-radius: 24px;
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
}

.info-card-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.info-card-title {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
}

.info-card-text {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4a5565;
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
}

/* WeChat Card */
.wechat-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background-color: #003399;
  border-radius: 24px;
  margin-top: 24px;
}

.wechat-qr {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.wechat-info {
  display: flex;
  flex-direction: column;
}

.wechat-title {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
}

.wechat-desc {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(219, 234, 254, 0.7);
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
}

.wechat-btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #ffffff;
  border-radius: 10px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  margin-top: 12px;
  white-space: nowrap;
  width: fit-content;
}

/* ===== CONTACT FORM (RIGHT) ===== */
.contact-form-wrap {
  background-color: #ffffff;
  border-radius: 32px;
  border: 1px solid #f3f4f6;
  box-shadow: 0px 25px 50px -12px rgba(28, 57, 142, 0.1);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
}

.form-title {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

.form-label {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #364153;
  font-size: 14px;
  line-height: 20px;
}

.form-input {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 16px 20px;
  background-color: #f9fafb;
  border-radius: 16px;
  border: 2px solid transparent;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #0a0a0a;
  font-size: 16px;
  line-height: normal;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  display: block;
}

.form-input::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-input:focus {
  border-color: #003399;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background-color: #f9fafb;
  border-radius: 14px;
  cursor: pointer;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #003399;
}

.checkbox-label {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #364153;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

/* Textarea */
.form-textarea {
  box-sizing: border-box;
  width: 100%;
  height: 132px;
  padding: 16px 20px;
  background-color: #f9fafb;
  border-radius: 16px;
  border: 2px solid transparent;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #0a0a0a;
  font-size: 16px;
  line-height: 24px;
  resize: vertical;
  transition: border-color 0.2s;
  outline: none;
  display: block;
}

.form-textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-textarea:focus {
  border-color: #003399;
}

/* Submit Button */
.form-submit {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #003399;
  border-radius: 16px;
  box-shadow: 0px 8px 10px -6px rgba(28, 57, 142, 0.2), 0px 20px 25px -5px rgba(28, 57, 142, 0.2);
  cursor: pointer;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background-color: #002580;
}

.submit-icon {
  width: 20px;
  height: 20px;
}

.form-privacy {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #99a1af;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin: 0;
}

/* ===== FOOTER ===== */
.screen .footer {
  display: flex;
  flex-direction: column;
  padding: 80px 80px 0;
  background-color: #001a3d;
  gap: 48px;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  min-height: 244px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.footer-name {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 28px;
  white-space: nowrap;
}

.footer-name-en {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #8ec5ff;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 15px;
  white-space: nowrap;
}

.footer-brand-desc {
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(219, 234, 254, 0.6);
  font-size: 16px;
  line-height: 26px;
}

.footer-social {
  position: absolute;
  top: 177px;
  left: 0;
  width: 100%;
  height: auto;
}

.footer-social-wrap .footer-social {
  position: static;
  width: 36px;
  height: 36px;
  max-width: none;
}

.footer-links-col {
  position: relative;
  width: 100%;
  height: 244px;
}

.footer-newsletter-col {
  position: relative;
  width: 100%;
  height: 200px;
}

.footer-col-heading {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-col-title {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
}

.footer-col-bar {
  width: 32px;
  height: 4px;
  background-color: #003399;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
}

.footer-list li {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(219, 234, 254, 0.6);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  white-space: nowrap;
}

.footer-newsletter-desc {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(219, 234, 254, 0.6);
  font-size: 16px;
  line-height: 24px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 132px;
  left: 0;
  width: 100%;
  height: 50px;
  align-items: flex-start;
}

.footer-email-input {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.footer-subscribe-btn {
  all: unset;
  box-sizing: border-box;
  width: 64px;
  height: 50px;
  background-color: #003399;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 61px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(219, 234, 254, 0.4);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-bottom-links span {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: rgba(219, 234, 254, 0.4);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

/* ===== HAMBURGER BUTTON ===== */
.screen .hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.screen .hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #364153;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.screen .hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.screen .hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.screen .hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.screen .mobile-menu {
  display: none;
}

.screen .mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.screen .mobile-nav-item {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #364153;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s;
}

.screen .mobile-nav-item:hover {
  background-color: #f8fafc;
}

.screen .mobile-nav-active {
  color: #003399 !important;
  font-weight: 700 !important;
}

.screen .mobile-nav-cta {
  all: unset;
  box-sizing: border-box;
  display: block;
  margin: 16px 20px 8px;
  padding: 14px 20px;
  background-color: #003399;
  color: #ffffff;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .screen .header {
    padding: 0 24px;
  }

  .screen .navigation {
    gap: 14px;
  }

  .screen .nav-cta {
    padding: 0 14px;
  }

  .hero-banner {
    padding: 80px 40px 56px;
  }

  .contact-section {
    padding: 64px 40px;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 36px;
  }

  .screen .footer {
    padding: 60px 40px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid > *:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .footer-grid > *:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .footer-grid > *:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .footer-grid > *:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* Header */
  .screen .header {
    padding: 0 16px;
    height: 56px;
  }

  .screen .navigation {
    display: none;
  }

  .screen .hamburger-btn {
    display: flex;
  }

  .screen .mobile-menu {
    display: flex;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    padding: 8px 0 16px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    pointer-events: none;
  }

  .screen .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }

  /* Hero */
  .hero-banner {
    padding: 56px 20px 40px;
    margin-top: 56px;
  }

  .hero-heading {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-subtitle {
    font-size: 15px;
    white-space: normal;
  }

  /* Contact Section */
  .contact-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 40px;
  }

  /* Info Cards */
  .info-cards {
    gap: 16px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card-icon {
    width: 44px;
    height: 44px;
  }

  /* WeChat Card */
  .wechat-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }

  /* Form */
  .contact-form-wrap {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .screen .footer {
    padding: 60px 20px 0;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
  }

  .footer-logo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .footer-brand-desc {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .footer-social {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .footer-social-wrap .footer-social {
    width: 36px;
    height: 36px;
  }

  .footer-links-col {
    height: auto;
    min-height: 230px;
    padding-bottom: 48px;
  }

  .footer-newsletter-col {
    height: auto;
    min-height: 210px;
    padding-bottom: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copyright {
    white-space: normal;
  }

  .footer-list li {
    white-space: normal;
  }
}
