@font-face {
  font-family: "ExtraBold";
  src: url("../image/font/AlibabaPuHuiTi-2-95-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Regular";
  src: url("../image/font/AlibabaPuHuiTi-2-55-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Medium";
  src: url("../image/font/AlibabaPuHuiTi-2-65-Medium.otf") format("opentype");
}

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --accent-green: #2cd03d;
  --accent-green-dark: #22a82f;
  --accent-green-light: #4ade80;
  --text-white: #ffffff;
  --text-gray: #b6bbc3;
  --text-gray-dark: #6b7280;
  --border-color: #222222;
  --border-color-light: #333333;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--text-white);
  color: var(--text-gray);
  font-family: "Regular", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #00b1f3;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #16b6f0;
  color: #fff;
  /* border: 2px solid var(--accent-green); */
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  padding: 8px;
  display: flex;
  gap: 10px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 48px;
  height: calc(100% - 16px);
  background-color: #fff;
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease-in-out;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #16b6f0;
  font-size: 20px;
}

.btn-text {
  padding-right: 20px;
  font-family: "Medium";
}

.btn-primary:hover {
  color: #000;
  background-color: #16b6f0;
}

.btn-primary:hover::before {
  width: calc(100% - 16px);
  background-color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: #fff;
  border-bottom-color: #fff;
  padding: 14px 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
}

.logo {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: auto 0;
}

.navbar-toggler {
  display: none;
}

.nav-menu li a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #16b6f0;
  transition: width var(--transition-medium);
  border-radius: 1px;
}

.nav-menu li a:hover::after {
  width: 60%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding: 8px;
  background: linear-gradient(270deg, #050812 0%, #1f202a 100%);
}

.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.dropdown-menu a {
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  white-space: nowrap;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a::after {
  display: none !important;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  color: rgba(3, 182, 240, 1);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-badge::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: rgba(3, 182, 240, 1);
  order: 1;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.15;
  font-family: "ExtraBold";
}

.hero-section {
  min-height: 960px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: rgba(0, 0, 0, 1);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 100%;
  font-family: "ExtraBold";
}

.hero-title—2 {
  font-size: 54px;
}

.hero-subtitle {
  font-size: 35px;
  color: rgba(0, 0, 0, 1);
  line-height: 1.2;
  margin-bottom: 36px;
  max-width: 100%;
  font-family: "ExtraBold";
}

.hero-title .char,
.hero-subtitle .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(6px);
  animation: char-reveal 0.7s ease forwards;
}

.hero-title .word,
.hero-subtitle .word {
  display: inline-block;
  white-space: nowrap;
}

@keyframes char-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  font-size: 18px;
  color: rgba(44, 48, 55, 1);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 42px;
}

.hero-bg {
  background-image: url("../image/contact/BG_2.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center right; /* 图片居中 */
  background-repeat: no-repeat;
}

.global-bg {
  background-image: url("../image/contact/BG_1.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center right; /* 图片居中 */
  background-repeat: no-repeat;
}

.about-content {
  padding-right: 40px;
}

.contact-badge {
  color: #03b6f0;
}

.contact-badge::before {
  background: #03b6f0;
}

.contact-badge-2 {
  color: #333;
}

.contact-badge-2::before {
  background: #333;
}

.contact-title {
  color: #101819;
}

.contact-section-desc {
  color: #101819;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
}

.cta-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #fff;
  color: #16b6f0;
  border: #fff;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-button::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 48px;
  height: calc(100% - 16px);
  background-color: #16b6f0;
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease-in-out;
}

.cta-button:hover {
  color: #fff;
  background-color: #fff;
}

.cta-button:hover::before {
  width: calc(100% - 16px);
  background-color: #16b6f0;
}

.cta-icon {
  width: 48px;
  height: 48px;
  background: #16b6f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  line-height: 1;
}

.cta-text {
  padding-right: 20px;
  font-family: "Medium";
}

.cta-subtext {
  font-size: 16px;
  color: #060912;
  font-weight: 300;
  margin: 0;
}

.contact-bg {
  background-image: url("../image/contact/BG_3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.features-grid {
  margin-bottom: 2px;
}

.bottom-features-grid {
  margin-top: 120px;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 10px;
  padding: 30px 18px;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.19);
  border-color: rgba(22, 182, 240, 0.3);
}

.feature-card:hover svg {
  animation: shakeX 0.5s ease-in-out;
}

@keyframes shakeX {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.feature-card h4 {
  color: rgba(0, 0, 0, 1);
  font-size: 22px;
  font-family: "Medium";
}

.feature-card p {
  color: rgba(52, 68, 50, 1);
  font-size: 14px;
}

.card-top {
  border-radius: 99px;
  background-color: #f8f8f8;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
}

.footer-top {
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .logo {
  height: 48px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h5 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 16px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  font-size: 16px;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: #03b6f0;
}

.footer-email {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 24px;
}

/* 订阅表单 */
.footer-subscribe {
  display: flex;
  align-items: center;
  background: #2a2d34;
  border-radius: 999px;
  padding: 4px;
  max-width: 300px;
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  padding: 12px 20px;
  font-size: 16px;
}

.subscribe-input::placeholder {
  color: var(--text-gray-dark);
}

.subscribe-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #03b6f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

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

.footer-left {
  margin-top: 0;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.footer-right {
  margin-left: 60px;
}

.footer-right-top {
  margin-bottom: 34px;
  display: flex;
  justify-content: flex-start;
  gap: 109px;
}

/* 底部栏 */
.footer-bottom {
  margin-top: 0;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 16px;
  color: var(--text-white);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 16px;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: #03b6f0;
}

.svg-draw-path {
  animation: svg-draw 2s ease-in-out forwards;
}

@keyframes svg-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* ========== Contact Form Section ========== */

.contact-form-wrapper {
  padding: 40px;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 10px;
}

.offices-wrapper {
  /* padding: 40px; */
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 10px;
}

.offices-content {
  padding: 20px;
}

.form-title,
.offices-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: "ExtraBold";
}

.form-desc,
.offices-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  max-width: 480px;
}

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

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

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

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(208, 215, 223, 1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-gray-dark);
  font-size: 15px;
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00b1f3;
  background: rgba(0, 177, 243, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 177, 243, 0.08);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .custom-select:required:invalid {
  color: #888888;
}

.form-group .custom-select option[value=""][disabled] {
  color: #888888;
  display: none;
}

.form-group .custom-select option:first-child {
  color: #888888;
}

/* Select with clear button */
.select-with-clear {
  position: relative;
  display: flex;
  align-items: center;
}

.select-with-clear .custom-select {
  width: 100%;
  padding-right: 40px;
}

.select-with-clear .clear-btn {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: none;
  background: #e5e7eb;
  border-radius: 50%;
  color: #666;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 2;
}

.select-with-clear .clear-btn:hover {
  background: #d1d5db;
  color: #333;
}

.select-with-clear.has-value .clear-btn {
  opacity: 1;
  visibility: visible;
}

.feature-card p a {
  color: inherit; /* 继承父文字颜色 */
  text-decoration: none; /* 去掉下划线 */
}
.feature-card p a:hover {
  text-decoration: underline; /* hover时出现下划线提升点击感知 */
  cursor: pointer;
}

/* Map */
.map-container {
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: 0;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f7f9fb;
}

.office-card {
  padding: 20px 15px;
  border-right: 1px solid #eee;
  background-color: #f7f9fb;
  transition: all 0.3s ease;
}
/* 最后一个卡片去掉右边框 */
.office-card:last-child {
  border-right: none;
}

.office-card:hover {
  background-color: #fff;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.office-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  font-family: "ExtraBold";
}

.address {
  margin: 0 0 20px 0;
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00a0e4; /* 你品牌的蓝色 */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}
.directions-btn:hover {
  gap: 12px;
}
.directions-btn span {
  font-size: 18px;
}

/* 手机端适配 */
@media (max-width: 768px) {
  .office-cards {
    grid-template-columns: 1fr;
  }
  .office-card {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .office-card:last-child {
    border-bottom: none;
  }
}

/* Collection Notice */
.collection-notice {
  margin-top: 48px;
  padding: 20px 24px;
  background: #f7f9fb;
  border-radius: 10px;
}

.collection-notice p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  margin: 0;
}

.collection-notice a {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.collection-notice a:hover {
  color: var(--accent-green-light);
}

.collection-title {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-bottom: 1tpx;
  line-height: 1.15;
  font-family: "ExtraBold";
}

.email-section {
  text-align: center;
}
.email-title {
  color: #000;
  font-weight: 800;
  font-family: "ExtraBold";
}

/* Email cards fix: force single row + equal height */
.email-section .row {
  align-items: stretch;
}

.email-section .col-lg {
  display: flex;
  min-width: 0;
}

.email-section .feature-card {
  height: 100%;
  width: 100%;
  word-break: break-all;
  overflow-wrap: break-word;
}

@media (max-width: 991px) {
  .global-bg {
    background-image:
      linear-gradient(270deg, rgba(255, 255, 255, 0) 0.47%, #f5f6fa 71.68%),
      url("../image/mobile/BG_1.jpg");
    background-size:
      cover,
      100% auto;
    background-position: center, bottom;
    min-height: 680px;
  }
  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 18px;
  }

  .contact-form-wrapper {
    padding: 32px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .office-card {
    padding: 24px 20px;
  }

  .map-container iframe {
    height: 280px;
  }

  .collection-title {
    font-size: 20px;
  }

  .collection-notice {
    padding: 20px;
  }

  .navbar {
    padding: 14px 16px;
  }

  .navbar.scrolled {
    padding: 14px 16px;
    background: #fff;
    border-bottom-color: transparent;
  }

  .navbar .container {
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-top: 1px solid #e5e7eb;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #000;
  }

  .nav-menu li a::after {
    display: none;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
  }

  .navbar-toggler-icon {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -6px;
  }

  .navbar-toggler-icon::after {
    top: 6px;
  }

  .navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .section-desc {
    font-size: 14px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .section-badge {
    font-size: 14px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px;
    font-family: "ExtraBold";
    font-weight: 800;
  }

  .hero-content {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .hero-buttons {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .btn {
    font-size: 14px;
  }

  .btn-text {
    padding: 0 6px;
    font-weight: 500;
  }

  .features-grid .feature-card {
    padding: 20px;
  }

  .features-grid .row {
    row-gap: 16px;
  }

  .platform-footer {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 10px;
  }

  .platform-footer::before {
    border-radius: 20px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-top {
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 0;
  }

  .footer-bottom::before {
    left: 0;
    right: 0;
  }

  .footer-right {
    margin-left: 0;
  }

  .footer-right-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-left {
    border-right: none;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-subscribe {
    max-width: 100%;
  }

  .cta-wrapper {
    margin-top: 30px;
    align-items: flex-start;
  }

  .cta-subtext {
    text-align: center;
  }

  .bottom-features-grid {
    margin-top: 30px;
  }

  .form-title,
  .offices-title {
    font-size: 28px;
    font-weight: 800;
  }

  .form-desc,
  .offices-desc {
    font-size: 14px;
  }

  .collection-notice p {
    font-size: 14px;
  }

  .contact-form .form-group:nth-of-type(1),
  .contact-form .form-group:nth-of-type(3) {
    margin-bottom: 20px;
  }

  .row.align-items-start {
    gap: 30px;
  }

  .hero-bg {
    background-position: center;
    min-height: 680px;
  }
}
