/* 重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Mobile first - prevent horizontal scroll and whitespace */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
}

body {
  font-family: montserrat, 'LXGW WenKai''Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 80%;
  margin: 0 10%;
  padding: 0 10%;
}

/* 导航栏 */
/* 最外层容器 - 底部金色边框 */
.navbar-container {
  background: #e8e4e1;
  border-bottom: 1.5px solid rgb(171, 145, 120);
  width: 80%;
  margin: 0 10%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 为navbar两侧空白区域添加背景色 */
.navbar-container::before,
.navbar-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10vw;
  height: 120px;
  background: #e8e4e1;
  /* border-top: 1.5px solid rgb(171, 145, 120); */
  border-bottom: 1.5px solid rgb(171, 145, 120);
  z-index: -1;
}

.navbar-container::before {
  left: -10vw;
}

.navbar-container::after {
  right: -10vw;
}

/* 主导航区域 - 分左右两部分 */
.navbar {
  display: flex;
  height: 120px;
  width: 100%;
}

/* 左边logo区域 - 30% 去除底部边框避免与容器底部边框重叠 */
.logo-section {
  width: 30%;
  display: flex;
  align-items: center;
  /* justify-content: flex-start; */
  background: #e8e4e1;
  /* border-top: 1.5px solid rgb(171, 145, 120); */
  border-left: 1.5px solid rgb(171, 145, 120);
  border-right: 1.5px solid rgb(171, 145, 120);
  padding-left: 20px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a3d52;
  flex-direction: column;
}

.logo-text {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-subtext {
  font-size: 12px;
  letter-spacing: 4px;
  margin-top: 3px;
  font-weight: 600;
}

.logo img{
  width: 120px;
  border-radius: 5px;
}

/* 右边ul区域 - 70% */
.right-section {
  width: 70%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 右边上部空白区域 - 40% */
.top-empty-area {
  height: 40%;
  background: #e8e4e1;
  position: relative;
}

/* PAYMENT PORTAL 放在右上空白区域 */
.payment-portal {
  position: absolute;
  top: 10px;
  right: 20px;
  text-decoration: none;
  color: #8b7a6b;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
}

/* 右边下部展示区域 - 60% */
.bottom-display-area {
  height: 60%;
  display: flex;
  width: 100%;
}

/* 左边li区域 - 85% 去除底部和左边框避免重叠 */
.nav-items-section {
  width: 85%;
  border-top: 1.5px solid rgb(171, 145, 120);
  border-right: 1.5px solid rgb(171, 145, 120);
  background: #e8e4e1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
  margin-right: 20px;
  font-family: 'montserrat', sans-serif;
}

.nav-item {
  text-decoration: none;
  color: #1a3d52;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  transition: opacity 0.3s ease;
  padding-left: 15px;
}

.nav-item::before {
  content: '○';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  transition: all 0.3s ease;
}

.nav-item:hover::before {
  content: '●';
}

.nav-item:hover {
  opacity: 0.9;
}

/* 右边空div区域 - 15% 去掉左边框和底部边框避免重叠 */
.right-empty-section {
  width: 15%;
  border-top: 1.5px solid rgb(171, 145, 120);
  border-right: 1.5px solid rgb(171, 145, 120);
  background: #e8e4e1;
  font-family: 'playfair display', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ENQUIRE 按钮放在右边空区域 */
.enquire-btn {
  background: transparent;
  border: none;
  color: #1a3d52;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 8px 16px;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.enquire-btn:hover {
  opacity: 0.7;
}

@media (max-width: 1366px) {
  .nav-items {
    gap: 25px;
  }
  
  .nav-items-section {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 36px;
  }

  .logo-subtext {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .nav-items {
    gap: 20px;
  }
  
  .nav-items-section {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 32px;
  }

  .logo-subtext {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .navbar {
    height: 100px;
  }
  
  .nav-item {
    font-size: 16px;
  }
  
  .logo-text {
    font-size: 30px;
  }
  
  .logo-subtext {
    font-size: 11px;
  }
}



/* Hero区域 - 使用第二个图片（浅灰色纹理背景） */
.hero {
  min-height: 65vh;
  background-image: url(src/hero-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  /* background-size: cover; */
  /* background: radial-gradient(
      circle at 20% 80%,
      rgba(200, 200, 200, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(180, 180, 180, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(190, 190, 190, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); */
  /* background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%; */
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  border-bottom: 1.5px solid rgb(171, 145, 120);
  /* border-top: 1.5px solid rgb(171, 145, 120); */
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  bottom: 0;
  border-left: 1.5px solid rgb(171, 145, 120);
  border-right: 1.5px solid rgb(171, 145, 120);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(256, 256, 256, 0.3);
  /* background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.02) 2px,
      rgba(0, 0, 0, 0.02) 4px
    ); */
  /* opacity: 0.8; */
  z-index: 1;
}

.hero-container {
  max-width: 80%;
  margin: 0 10%;
  padding: 0 10%;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-top {
  height: 75%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-bottom {
  height: 25%;
  position: relative;
  border-top: 1.5px solid rgb(171, 145, 120);
  padding-top: 30px;
}

.hero-title {
  font-size: 78px;
  font-weight:400;
  color: rgb(0,38,59);
  margin-bottom: 10px;
  font-family: 'playfair display', serif;
  font-style: italic;
  position: absolute;
  bottom: 25px;
  left: 25px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: rgb(0,38,59);
  margin-bottom: 30px;
}

.hero-description p {
  width: 65%;
  font-size: 14px;
  color: rgb(0,38,59);
  margin-bottom: 15px;
  line-height: 1.6;
  letter-spacing: 1px;
  font-family: 'montserrat', sans-serif;
}

.main-logo {
  margin-bottom: 60px;
}

.main-logo img{
  width: 400px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: white;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
              0 10px 20px rgba(0, 0, 0, 0.2),
              inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.main-logo-text {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.main-logo-subtext {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.section-container {
  background-image: url(src/bg-png.png);
  /* background-position: contain; */
  /* background-repeat: ; */
}

/* 所有其他section - 使用第一个图片（同心圆图案背景） */
.services,
.about,
.insights,
.quote {
  position: relative;
  /* background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%); */
  background-size: contain;
  /* background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%; */
}

.services::after,
.about::after,
.insights::after,
.quote::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  bottom: 0;
  border-left: 1.5px solid rgb(171, 145, 120);
  border-right: 1.5px solid rgb(171, 145, 120);
  pointer-events: none;
  z-index: 1;
}

.services::before,
.about::before,
.insights::before,
.quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 0, 0, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(0, 0, 0, 0.015) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.01) 0%, transparent 60%); */
  background-size: 400px 400px, 600px 600px, 300px 300px, 500px 500px;
  background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%;
  z-index: 1;
  opacity: 0.6;
}

.services .container,
.about .container,
.insights .container,
.quote .container {
  position: relative;
  z-index: 2;
}

.services {
  padding: 80px 0;
}

.about {
  padding: 80px 0;
  border-bottom: 1.5px solid rgb(171, 145, 120);
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  color: rgb(171,145,120);;
  margin-bottom: 60px;
  text-align: left;
  /* letter-spacing: 4px; */
  position: relative;
  display: inline-block;
  font-family: 'montserrat', sans-serif;
}

.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 250px;
  width: 40vw;
  height: 1.5px;
  background: rgb(171, 145, 120);
  transform: translateY(-50%);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  /* font-family: 'montserrat', sans-serif; */
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-image img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: flex-start; */
}

.service-content h3 {
  font-size: 30px;
  font-weight: 400;
  color: rgb(0,38,59);;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -1px;
  font-family: 'montserrat', serif;
  /* font-style: italic; */
}

.service-content p {
  font-size: 16px;
  color: rgb(0,38,59);;
  margin-bottom: 25px;
  line-height: 1.6;
  /* letter-spacing: 2px; */
  font-family: 'montserrat', sans-serif;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #666;
}

/* 引用 */
.quote {
  padding: 60px 0;
}

.quote-text {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgb(171,145,120);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 2px;
}

/* 洞察资讯 */
.insights {
  padding: 80px 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 1366px) {
  .insights-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 1200px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.insight-card {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.insight-card img {
  width: 100%;
  height: auto;
  
  object-fit: contain;
}

.card-content {
  padding: 20px;
  font-family: 'montserrat', sans-serif;
}

.card-category {
  font-size: 16px;
  font-weight: 700;
  color:  rgb(171, 145, 120);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgb(0,38,59);
  margin-top: 10px;
  line-height: 1.4;
}

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

/* 页脚 */
.footer {
  background: #5F5F5F;
  padding: 60px 0 20px;
  position: relative;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: calc(100% - 60px);
  border-left: 1.5px solid rgb(171, 145, 120);
  border-right: 1.5px solid rgb(171, 145, 120);
  pointer-events: none;
  z-index: 1;
}


.footer .container {
  position: relative;
  z-index: 2;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.9);
}

.subscribe-form button {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subscribe-form button:hover {
  background: #1a1a1a;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
  font-family: 'montserrat', sans-serif;
}

.footer-logo-circle {
  width: 90px;
  height: 90px;
  /* background: #1a1a1a; */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.footer-logo-subtext {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 600;
  color: rgb(0,38,59);;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column img {
  width: 250px;
  height: auto;
}

.footer-column:first-child img {
  width: 300px;
  height: auto;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #1a1a1a;
}

.footer-column p {
  color: rgb(0,38,59);;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
}



.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #1a1a1a;
  color: white;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 12px;
  color: #999;
}

.footer-bottom-left {
  text-align: left;
}

.footer-bottom-center {
  text-align: center;
}

.footer-bottom-right {
  text-align: right;
}

/* 响应式设计 */
@media (max-width: 1440px) {
  .hero-title {
    font-size: 60px;
  }

  .main-logo img {
    width: 280px;
    height: 280px;
  }

  .hero-description p {
    font-size: 14px;
  }

  .logo-text {
    font-size: 38px;
  }

  .logo-subtext {
    font-size: 13px;
  }
}

@media (max-width: 1366px) {
  .hero-title {
    font-size: 56px;
  }

  .main-logo img {
    width: 260px;
    height: 260px;
  }

  .hero-description p {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .nav-items {
    gap: 12px;
  }

  .nav-item {
    font-size: 14px;
  }

  .hero-title {
    font-size: 52px;
  }

  .main-logo img {
    width: 240px;
    height: 240px;
  }

  .hero-description p {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .nav-items {
    gap: 12px;
  }

  .nav-item {
    font-size: 14px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    height: auto;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 48px;
    position: static;
    margin-bottom: 20px;
  }

  .main-logo img {
    width: 220px;
    height: 220px;
  }

  .hero-bottom {
    height: auto;
    padding: 20px 0;
  }

  .hero-description p {
    width: 100%;
    font-size: 12px;
  }

  /* iPad Pro footer fix */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-column:first-child {
    display: none;
  }

  /* iPad Pro about section fix */
  .about .service-item {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about .service-image {
    order: 1;
  }

  .about .service-content {
    order: 2;
  }

  .about .service-image img {
    width: 300px;
    height: 200px;
    margin: 0 auto;
  }

  .about .service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about .service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
}

@media (max-width: 900px) {
  .nav-items {
    gap: 10px;
  }

  .nav-item {
    font-size: 12px;
  }

  .hero-title {
    font-size: 42px;
  }

  .main-logo img {
    width: 200px;
    height: 200px;
  }

  .hero-description p {
    font-size: 11px;
  }

  /* Footer fix for smaller screens */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-column:first-child {
    display: none;
  }

  /* About section fix for smaller screens */
  .about .service-item {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about .service-image {
    order: 1;
  }

  .about .service-content {
    order: 2;
  }

  .about .service-image img {
    width: 250px;
    height: 180px;
    margin: 0 auto;
  }

  .about .service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .about .service-content p {
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 820px) {
  /* iPad Air specific fixes */
  .navbar-container {
    height: 100px;
  }

  .navbar {
    height: 100px;
  }

  .navbar-container::before,
  .navbar-container::after {
    height: 100px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-subtext {
    font-size: 8px;
  }

  .nav-items {
    gap: 10px;
  }

  .nav-item {
    font-size: 10px;
  }

  .enquire-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  /* Service section - show smaller images */
  .service-item {
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
  }

  .service-image {
    order: 1;
  }

  .service-content {
    order: 2;
  }

  .service-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .service-content p {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  /* Footer fix */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-column:first-child {
    display: none;
  }

  /* About section fix */
  .about .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .about .service-image {
    display: none;
  }

  .about .service-content {
    order: 1;
  }

  .about .service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .about .service-content p {
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 0px;
  }
}

@media (max-width: 800px) {
  .hero-title {
    font-size: 38px;
  }

  .main-logo img {
    width: 180px;
    height: 180px;
  }

  .hero-description p {
    font-size: 10px;
  }

  /* Footer fix for smaller screens */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-column:first-child {
    display: none;
  }

  /* About section fix for smaller screens */
  .about .service-item {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .about .service-image {
    order: 1;
  }

  .about .service-content {
    order: 2;
  }

  .about .service-image img {
    width: 200px;
    height: 150px;
    margin: 0 auto;
  }

  .about .service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .about .service-content p {
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 0px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    height: auto;
    padding: 20px 0;
  }

  .hero-title {
    font-size: 36px;
    position: static;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .main-logo img {
    width: 180px;
    height: 180px;
  }

  .hero-bottom {
    height: auto;
    padding: 10px 0;
  }

  .hero-description p {
    width: 100%;
    font-size: 12px;
    line-height: 1.4;
  }

  .logo-text {
    font-size: 28px;
  }

  .logo-subtext {
    font-size: 10px;
  }

  /* Navbar fixes for smaller screens */
  .navbar-container {
    height: 100px;
  }

  .navbar {
    height: 100px;
  }

  .navbar-container::before,
  .navbar-container::after {
    height: 100px;
  }

  .nav-items {
    gap: 12px;
  }

  .nav-item {
    font-size: 13px;
  }

  .enquire-btn {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Service section - show smaller images */
  .service-item {
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    align-items: center;
  }

  .service-image {
    order: 1;
  }

  .service-content {
    order: 2;
  }

  .service-image img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  .service-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: 0px;
  }

  /* About section - hide images, show only text */
  .about .service-item {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .about .service-image {
    display: none;
  }

  .about .service-content {
    order: 1;
  }

  .about .service-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .about .service-content p {
    font-size: 11px;
    margin-bottom: 12px;
    letter-spacing: 0px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-items {
    display: none;
  }

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

  /* 确保在小屏幕上内容不超出边框 */
  .container,
  .hero-container,
  .footer .container {
    max-width: 90%;
    margin: 0 5%;
  }

  .navbar-container {
    width: 90%;
    margin: 0 5%;
  }

  .hero::after,
  .services::after,
  .about::after,
  .insights::after,
  .quote::after,
  .footer::after {
    left: 5%;
    right: 5%;
  }
}

@media (max-width: 600px) {
  /* Service section for very small screens */
  .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .service-image {
    order: 1;
  }

  .service-content {
    order: 2;
  }

  .service-image img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }

  .service-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-content p {
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 0px;
  }
}

@media (max-width: 430px) {
  /* Mobile specific fixes - remove all whitespace */
  * {
    box-sizing: border-box;
  }

  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .container,
  .hero-container,
  .footer .container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Force all sections to full width */
  .hero,
  .services,
  .about,
  .insights,
  .quote,
  .footer {
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .navbar-container {
    width: 100% !important;
    margin: 0 !important;
    height: 80px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .navbar {
    height: 80px;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .navbar-container::before,
  .navbar-container::after {
    display: none !important;
  }

  .logo-section {
    width: auto;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .right-section {
    display: none;
  }

  .logo-text {
    font-size: 24px;
    text-align: center;
  }

  .logo-subtext {
    font-size: 10px;
    text-align: center;
  }

  /* Remove all golden borders */
  .hero::after,
  .services::after,
  .about::after,
  .insights::after,
  .quote::after,
  .footer::after {
    display: none !important;
  }

  /* Service section - full width images */
  .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .service-image {
    order: 1;
  }

  .service-content {
    order: 2;
  }

  .service-image img {
    width: 100% !important;
    max-width: none !important;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .service-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 0px;
  }

  /* About section - full width images */
  .about .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .about .service-image {
    order: 1;
  }

  .about .service-content {
    order: 2;
  }

  .about .service-image img {
    width: 100% !important;
    max-width: none !important;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .about .service-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about .service-content p {
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 0px;
  }

  /* Footer adjustments */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-column:first-child {
    display: none;
  }

  /* Hero section adjustments */
  .hero {
    min-height: 60vh;
  }

  .hero-top {
    padding: 20px 0;
    gap: 20px;
  }

  .hero-title {
    font-size: 32px;
    position: static;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .main-logo img {
    width: 200px;
    height: 200px;
  }

  .hero-bottom {
    padding: 15px 0;
  }

  .hero-description p {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }

  /* Section padding adjustments */
  .services,
  .about,
  .insights,
  .quote {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero-top {
    padding: 15px 0;
    gap: 15px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: 0px;
    line-height: 1.1;
  }

  .main-logo img {
    width: 140px;
    height: 140px;
  }

  .hero-bottom {
    padding: 8px 0;
  }

  .hero-description p {
    font-size: 11px;
    line-height: 1.3;
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-subtext {
    font-size: 9px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input {
    min-width: auto;
  }
}

@media (max-width: 375px) {
  /* iPhone SE and smaller screens */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .container,
  .hero-container,
  .footer .container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .navbar-container {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .navbar {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .logo-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero,
  .services,
  .about,
  .insights,
  .quote,
  .footer {
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .navbar-container {
    width: 100% !important;
    margin: 0 !important;
  }

  .hero {
    min-height: 50vh;
  }

  .hero-top {
    padding: 10px 0;
    gap: 10px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 1.0;
    margin-bottom: 5px;
  }

  .main-logo img {
    width: 120px;
    height: 120px;
  }

  .hero-bottom {
    padding: 5px 0;
  }

  .hero-description p {
    font-size: 10px;
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 50vh;
  }

  .hero-top {
    padding: 10px 0;
    gap: 10px;
  }

  .hero-title {
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 1.0;
    margin-bottom: 5px;
  }

  .main-logo img {
    width: 120px;
    height: 120px;
  }

  .hero-bottom {
    padding: 5px 0;
  }

  .hero-description p {
    font-size: 10px;
    line-height: 1.2;
  }
}

@media (max-width: 320px) {
  /* Very small screens - force full width */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .container,
  .hero-container,
  .footer .container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .navbar-container {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .navbar {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .logo-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero,
  .services,
  .about,
  .insights,
  .quote,
  .footer {
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .navbar-container {
    width: 100% !important;
    margin: 0 !important;
  }

  .hero {
    min-height: 45vh;
  }

  .hero-top {
    padding: 8px 0;
    gap: 8px;
  }

  .hero-title {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 0.9;
    margin-bottom: 3px;
  }

  .main-logo img {
    width: 100px;
    height: 100px;
  }

  .hero-bottom {
    padding: 3px 0;
  }

  .hero-description p {
    font-size: 9px;
    line-height: 1.1;
  }
}
