@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
    color: #ffffff;
    padding-top: 10px;
  }

  h1 {
    text-transform: uppercase;
  }

  .span1 {
    font-weight: 400;
  }

  main {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    margin: 0 auto;
    width: 100%;
  }

  /* Contact Hero Section */
  .contact-hero {
    width: 100%;
    background-color: #000000;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(50vh - 88px);
    opacity: 1;
  }

  .contact-hero__container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: center;
  }

  .contact-hero__content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
  }

  .contact-hero__eyebrow {
    font-size: 14px;
    color: #b3b3b3;
    margin-bottom: 6px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .contact-hero__eyebrow.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-hero__title {
    font-size: clamp(26px, 3vw, 50px);
    font-weight: 700;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .contact-hero__title.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-hero__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .contact-hero__paragraph {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .contact-hero__paragraph.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-hero__branding {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .contact-hero__logo-wrapper {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .contact-hero__logo-wrapper.is-visible {
    opacity: 1;
    transform: scale(1);
  }

  .contact-hero__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Tablet Responsive Styles */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .contact-hero {
      padding: 80px 35px;
      min-height: auto;
    }

    .contact-hero__container {
      flex-direction: column;
      gap: 60px;
    }

    .contact-hero__content {
      flex: 1;
      width: 100%;
      gap: 25px;
    }

    .contact-hero__eyebrow {
      font-size: 15px;
    }

    .contact-hero__title {
      font-size: clamp(36px, 6vw, 60px);
    }

    .contact-hero__paragraph {
      font-size: 17px;
      line-height: 1.75;
    }

    .contact-hero__text {
      gap: 20px;
    }

    .contact-hero__branding {
      flex: 1;
      width: 100%;
      gap: 20px;
    }

    .contact-hero__logo-wrapper {
      max-width: 180px;
    }

    .contact-hero__chinese-text {
      font-size: clamp(26px, 4vw, 38px);
    }

    .contact-hero__brand-text {
      font-size: 15px;
    }
  }

  /* Mobile Responsive Styles */
  @media screen and (max-width: 767px) {
    .contact-hero {
      padding: 60px 25px;
      min-height: auto;
    }

    .contact-hero__container {
      flex-direction: column;
      gap: 50px;
    }

    .contact-hero__content {
      flex: 1;
      width: 100%;
      gap: 20px;
    }

    .contact-hero__eyebrow {
      font-size: 14px;
    }

    .contact-hero__title {
      font-size: clamp(32px, 8vw, 48px);
    }

    .contact-hero__paragraph {
      font-size: 14px;
      line-height: 1.7;
    }

    .contact-hero__text {
      gap: 18px;
    }

    .contact-hero__branding {
      flex: 1;
      width: 100%;
      gap: 18px;
    }

    .contact-hero__logo-wrapper {
      max-width: 160px;
    }

    .contact-hero__chinese-text {
      font-size: clamp(24px, 6vw, 32px);
    }

    .contact-hero__brand-text {
      font-size: 14px;
    }
  }

  /* Small Mobile Devices */
  @media screen and (max-width: 480px) {
    .contact-hero {
      padding: 50px 25px;
      margin-top: 50px;
    }

    .contact-hero__container {
      gap: 40px;
    }

    .contact-hero__content {
      gap: 0px;
    }

    .contact-hero__eyebrow {
      font-size: 14px;
    }

    .contact-hero__title {
      font-size: clamp(28px, 7vw, 40px);
    }

    .contact-hero__paragraph {
      font-size: 14px;
      line-height: 1.65;
      padding-top: 10px;
    }

    .contact-hero__text {
      gap: 16px;
    }

    .contact-hero__branding {
      gap: 16px;
    }

    .contact-hero__logo-wrapper {
      max-width: 300px;
    }
  }

  /* Locations Section */
  .locations {
    width: 100%;
    background-color: #131313;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease-out;
  }

  .locations.is-visible {
    opacity: 1;
  }

  .locations__container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .locations__title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .locations__title.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .location-card {
    background-color: #131313;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease;
  }

  .location-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .location-card.is-visible:hover {
    transform: translateY(-4px);
  }

  .location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .location-card__image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
  }

  .location-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .location-card:hover .location-card__image {
    transform: scale(1.05);
  }

  .location-card__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }

  .location-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
  }

  .location-card__address {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .location-card__address p {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
  }

  .location-card__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .location-card__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
  }

  .location-card__contact-item i {
    font-size: 14px;
    color: #ffffff;
    width: 20px;
    text-align: center;
  }

  .location-card__button {
    width: 100%;
    padding: 12px 20px;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
  }

  .location-card__button:hover {
    background-color: #000000;
    color: #ffffff;
  }

  .location-card__button i {
    font-size: 14px;
  }
  .location-card__button a {
    text-decoration: none;
    color: #000000;
  }
  .location-card__button a:hover {
    color: #ffffff;
  }

  /* Tablet Responsive Styles for Locations */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .locations {
      padding: 60px 35px;
    }

    .locations__container {
      gap: 50px;
    }

    .locations__title {
      font-size: clamp(28px, 5vw, 42px);
    }

    .locations__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .location-card__image-wrapper {
      height: 220px;
    }

    .location-card__content {
      padding: 25px;
      gap: 18px;
    }

    .location-card__title {
      font-size: 17px;
    }

    .location-card__address p {
      font-size: 13px;
    }

    .location-card__contact-item {
      font-size: 13px;
    }

    .location-card__button {
      padding: 11px 18px;
      font-size: 13px;
    }
  }

  /* Mobile Responsive Styles for Locations */
  @media screen and (max-width: 767px) {
    .locations {
      padding: 50px 25px;
    }

    .locations__container {
      gap: 40px;
    }

    .locations__title {
      font-size: clamp(24px, 6vw, 36px);
    }

    .locations__grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .location-card__image-wrapper {
      height: 200px;
    }

    .location-card__content {
      padding: 24px;
      gap: 16px;
    }

    .location-card__title {
      font-size: 14px;
    }

    .location-card__address p {
      font-size: 13px;
    }

    .location-card__contact-item {
      font-size: 13px;
    }

    .location-card__button {
      padding: 12px 20px;
      font-size: 13px;
    }
  }

  /* Small Mobile Devices for Locations */
  @media screen and (max-width: 480px) {
    .locations {
      padding: 40px 25px;
    }

    .locations__container {
      gap: 35px;
    }

    .locations__title {
      font-size: clamp(24px, 5vw, 32px);
    }

    .locations__grid {
      gap: 25px;
    }

    .location-card__image-wrapper {
      height: 180px;
    }

    .location-card__content {
      padding: 20px;
      gap: 14px;
    }

    .location-card__title {
      font-size: 15px;
    }

    .location-card__address p {
      font-size: 12px;
    }

    .location-card__contact-item {
      font-size: 12px;
    }

    .location-card__button {
      padding: 11px 18px;
      font-size: 12px;
    }
  }

  /* Contact Form Section */
  .contact-form {
    width: 100%;
    background-color: #000000;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease-out;
  }

  .contact-form.is-visible {
    opacity: 1;
  }

  .contact-form__container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .contact-form__title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .contact-form__title.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-form__description {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .contact-form__description.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .contact-form__form.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-form__label {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
  }

  .contact-form__input,
  .contact-form__textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .contact-form__input:focus,
  .contact-form__textarea:focus {
    border-color: #0066ff;
  }

  .contact-form__input::placeholder,
  .contact-form__textarea::placeholder {
    color: #999999;
  }

  .contact-form__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
  }

  .contact-form__submit {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 14px 32px;
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: "Poppins", sans-serif;
  }

  .contact-form__submit:hover {
    background-color: #ffffff;
    color: #000000;
  }

  .contact-form__submit:active {
    transform: scale(0.98);
  }

  .contact-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .contact-form__message {
    display: none;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
  }

  .contact-form__message--success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
  }

  .contact-form__message--error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Tablet Responsive Styles for Contact Form */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .contact-form {
      padding: 80px 35px;
    }

    .contact-form__container {
      gap: 35px;
    }

    .contact-form__title {
      font-size: clamp(28px, 5vw, 42px);
    }

    .contact-form__description {
      font-size: 15px;
    }

    .contact-form__form {
      gap: 25px;
    }

    .contact-form__field {
      gap: 8px;
    }

    .contact-form__label {
      font-size: 13px;
    }

    .contact-form__input,
    .contact-form__textarea {
      padding: 13px 16px;
      font-size: 15px;
    }

    .contact-form__textarea {
      min-height: 110px;
    }

    .contact-form__submit {
      padding: 13px 30px;
      font-size: 13px;
    }
  }

  /* Mobile Responsive Styles for Contact Form */
  @media screen and (max-width: 767px) {
    .contact-form {
      padding: 60px 25px;
    }

    .contact-form__container {
      gap: 30px;
    }

    .contact-form__title {
      font-size: clamp(24px, 6vw, 36px);
    }

    .contact-form__description {
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-form__form {
      gap: 22px;
    }

    .contact-form__field {
      gap: 8px;
    }

    .contact-form__label {
      font-size: 13px;
    }

    .contact-form__input,
    .contact-form__textarea {
      padding: 12px 16px;
      font-size: 14px;
    }

    .contact-form__textarea {
      min-height: 100px;
    }

    .contact-form__submit {
      width: 100%;
      max-width: none;
      padding: 12px 28px;
      font-size: 13px;
    }
  }

  /* Small Mobile Devices for Contact Form */
  @media screen and (max-width: 480px) {
    .contact-form {
      padding: 50px 25px;
    }

    .contact-form__container {
      gap: 25px;
    }

    .contact-form__title {
      font-size: clamp(22px, 5vw, 32px);
    }

    .contact-form__description {
      font-size: 13px;
    }

    .contact-form__form {
      gap: 20px;
    }

    .contact-form__field {
      gap: 6px;
    }

    .contact-form__label {
      font-size: 12px;
    }

    .contact-form__input,
    .contact-form__textarea {
      padding: 11px 14px;
      font-size: 13px;
      border-radius: 6px;
    }

    .contact-form__textarea {
      min-height: 90px;
    }

    .contact-form__submit {
      padding: 11px 24px;
      font-size: 12px;
    }
  }