/* 头部整体布局 */
header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw; /* 使用视窗宽度作为单位，随屏幕大小变化自动调整 */
  border-bottom: 2px solid #eee;
  gap: 2px;
}
/* 左侧布局 */
.header-logo img{
  max-width: 200px; /* logo 最大宽度（可根据设计调整） */
  width: 100%; /* 占满父容器宽度，随屏幕缩放 */
  height: auto; /* 保持图片比例，避免拉伸 */
  min-width: 0px; /* logo 最小宽度，防止过小 */
}
/* 右侧布局 */
.header-contact{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0; /* 使用视窗宽度作为单位，随屏幕大小变化自动调整 */
}
/* 仅新增翻译相关样式，不影响原有样式 */
.translate-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 15px; /* 与其他导航项保持间距 */
}
.translate-button {
    background: transparent;
    border: none;
    color:inherit; /* 继承导航栏文字颜色 */
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
.translate-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 5px 0;
    display: none;
}
.translate-dropdown.show {
    display: block;
}
.translate-option {
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.translate-option:hover {
    background-color: #f5f5f5;
}
.translate-option.active {
    background-color: #f0f7ff;
    color: #0066cc;
}
/* 确保导航项垂直对齐 */
.main-nav li {
    display: inline-block; /* 确保翻译按钮与其他项在同一行 */
    vertical-align: middle;
}
.language-selector {
  position: relative; /* 为下拉列表的绝对定位做容器 */

}
.language-list {
  position: absolute;
  top: 100%;
  left: 0;
  display: none; /* 默认隐藏 */
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 0;
  margin: 0;
  list-style: none;
}
.language-list li a {
  display: block;
  padding: 6px 16px;
  color: #333;
  text-decoration: none;
}
.language-list li a:hover {
  background: #f5f5f5;
}
/* 触发显示下拉列表的样式 */
.language-selector.active .language-list {
  display: block;
}
/* 电话图标 + 文字 的容器：横向排列 */
.header-phone{
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding-right: 2vw;
}
.all-phone {
  display: flex;
  flex-direction: row; /* 文字纵向排列（号码在上，邮箱在下） */
  gap: 2px; /* 号码与邮箱的垂直间距 */
  align-items: flex-end;
}
.header-phone img{
  max-width: 30px; /* logo 最大宽度（可根据设计调整） */
  width: 100%; /* 占满父容器宽度，随屏幕缩放 */
  height: auto; /* 保持图片比例，避免拉伸 */
  min-width: 0px; /* logo 最小宽度，防止过小 */
}
.phone-number{
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
  margin: 1px;
  line-height: 1.2;
}
.email{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(73, 73, 73);
  margin: 0;
}
/* 导航栏 */
nav{
  background-color: #00adef;
  padding: 1px;
  position: sticky;
  top: 0;
  z-index: 999;
}
nav ul{
  display: flex;
  justify-content: space-around;
  list-style-type:none;
  padding: 10px;  
  margin:0 80px;
}
nav li{
  display: inline-block;
  text-align: center;
}
nav a{
  color: white;
  text-decoration: none;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}
nav a:hover {
  color: #f0f0f0; /*  hover 时稍浅的白色 */
  text-decoration: underline; /* 下划线提示 */
  transform: translateY(-5px); /* 轻微上移效果 */
}
/* 中间团队区域 */
.middle-section {
  width: 100%;
  height: auto;           /* 占满整个屏幕高度 */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 垂直居中 */
  text-align: center;
  aspect-ratio: 16 / 7; 
  margin: 0;
}
.top-text {
  position: absolute;    /* 文字浮在图片上 */
  top: 10%;              /* 垂直居中 */
  left: 50%;             /* 水平居中 */
  transform: translate(-50%, -50%); /* 精确居中 */
  color: white;
  font-family: Georgia, 'Times New Roman', Times, serif
}
.top-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  margin: 0;
}
.top-text h1 span {
  text-decoration: solid underline #00adef;
}
.top-text p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}
/* 团队下面的蓝色长条 */
.middle-long {
  background-color: #00adef;
  padding: 0px;
  color: white;
  padding: 60px;
  text-align: left;
}
.middle-long h2 {
  font-family: 'Times New Roman', Times, serif;
  margin-top: 0;
  font-size: 45px;
  margin-bottom: 3px;
  margin-left: 15%;
  margin-right: 15%;
}
.middle-long p {
  margin-top: 5px;
  font-size: 18px;
  margin-left: 15%;
  margin-right: 15%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
/* 房产区域上面的title */
.featured-properties {
  max-width: 1200px;
  margin: 0 auto;
}
.property {
  text-align: center;
  margin-bottom: 40px;
}
.property h1 {
  margin-top: 20px;
  font-size: 70px;
  color: #333;
  font-family: "Cinzel";
}
.property p {
  margin-top: 5px;
  font-size: 15px;
  color: #c0c0c0;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* 房产名片的信息 */
.property-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.property-card {
  width: calc(33.33% - 20px);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.property-image:hover img {
  transform: scale(1.05);
}
.label {
  position: absolute;
  top: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1; /* 确保标签在箭头之上 */
}
.featured {
  left: 10px;
  background-color: #00adef;
  color: #ffffff;
}
.for-sale {
  right: 10px;
  background-color: #333;
  color: #fff;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0; /* 默认隐藏箭头 */
  transition: opacity 0.3s ease, transform 0.3s ease; /* 平滑过渡效果 */
  z-index: 1;
}
/* 鼠标悬停在图片上时显示箭头 */
.property-image:hover .arrow {
  opacity: 1;
}
/* 箭头悬停效果 */
.arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}
.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 10px;
}
.sale-type {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  z-index: 1;
}
/* 房产卡片图片下的文字信息 */
.property-info {
  padding: 20px;
}
.property-address {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #00adef;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  text-decoration: none;
}
.property-location {
  font-size: 14px;
  color: #9e9d9d;
  padding-bottom: 20px;
  margin-top: 10px;
}
.property-details {
  display: flex;
  margin-bottom: 15px;
  margin-top: 18px;
}
.number-icons {
  display: flex;
  flex-direction:row;
  align-items: center;
  justify-content: flex-start; 
  margin-right: 30px;
}
.detail-item {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  border-right: 1px solid #ccc;
}
.detail-item:last-child {
  border-right: none; /* 去掉最后一个元素的竖线 */
}
.detail-item span {
  display: block;
}
.detail-label {
  font-size: 12px;
  color: #999;
}
.detail-value {
  font-size: 16px;
  font-weight: bold;
}
.agent-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-top: 30px;
  font-family: Arial, Helvetica, sans-serif;
}
.agent-name a {
  color: #001f49;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}
.property-address a {
  color: #00adef;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}
.property-address a:hover {
  color: #001f49;
}
.agent-name a:hover{
  text-decoration: none;
  color: #00adef;
}
.view-all:hover {
  text-decoration: none;
  background-color: #001f49;
}
.view-all {
  color: #ffffff;
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 10px;
  background-color: #00adef;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
}
/* 为什么选择我们 */
.why-choose-section {
  background-color: #f9f9f9;
  text-align: center;
  width: 99vw; /* 使用视窗宽度确保占满全屏 */
  margin-left: calc(-50vw + 50%); /* 抵消父容器可能的居中 margin */
  padding: 0 0;
  box-sizing: border-box; /* 确保内边距不影响整体宽度 */
}
.why-choose-container {
  max-width: 1200px; /* 根据需要设置最大宽度 */
  margin: 0 auto; /* 内容区居中 */
  padding: 0 15px; /* 内容区左右留白 */
}
.why-choose-header {
  margin-bottom: 40px;
}
.why-choose-title {
  font-size: 4.2rem;
  color: #001f49;
  margin-bottom: 15px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.why-choose-desc {
  color: #666;
  margin: 0 auto;
}
.stat-circle {
color: #00adef;
}
.mb-20 {
  margin: 30px;
}
.text-2xl {
  color: #00adef;
}
.bg-gradient-to-r {
  background-color: #000000;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 0 15px;

}
.feature-card {
  background: rgb(255, 0, 0);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 3.2em;
  color: #00adef;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000000;
}
.feature-desc {
  color: #666;
  line-height: 1.6;
}
 @layer utilities {
            .text-shadow {
                text-shadow: 0 2px 4px rgba(255, 0, 0, 0.1);
            }
            .stat-circle {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .stat-circle::before {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                border-radius: 50%;
                background: rgba(15, 82, 186, 0.1);
                z-index: -1;
            }
            .floating {
                animation: float 6s ease-in-out infinite;
            }
            @keyframes float {
                0% { transform: translateY(0px); }
                50% { transform: translateY(-15px); }
                100% { transform: translateY(0px); }
            }
        }
/* 用户评价 */
/* 评价卡片基础样式 */
.review-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
}
.revirew-section {
  padding-top: 0px;
}
/* 图片样式与动画 */
.review-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.review-card:hover .review-img {
    transform: scale(1.05);
}
/* 评分徽章固定显示 */
.review-rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255,255,255,0.9);
    color: #ffaa00;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
/* 文字内容容器 - 默认隐藏在右侧 */
.review-text {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 75%;
    background-color: rgba(255,255,255,0.85);
    padding: 25px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-sizing: border-box;
    z-index: 1;
    overflow-y: auto;
}
/* 悬停时文字滑入 */
.review-card:hover .review-text {
    transform: translateX(0);
}
/* 文字内容样式优化 */
.review-property {
    margin-top: 40px; /* 为评分徽章留出空间 */
}
.review-comment {
    line-height: 1.6;
}
.bg-realty-blue {
  background-color: #00adef;
}
.bg-realty-blue:hover {
  background-color: #001f49;
}
/* 响应式调整 */
@media (max-width: 1024px) {
    .review-text {
        width: 85%;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .review-img {
        height: 250px;
    }
    
    .review-text {
        width: 100%;
        padding: 18px;
    }
}
@media (max-width: 480px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-img {
        height: 220px;
    }
    
    .review-text {
        padding: 15px;
    }
    
    .review-title {
        font-size: 1.8rem;
    }
}



/* selling部分-------------------------------------- */
/* 基础样式设置 */
.property-photo{
    max-width: 80%; /* 相对于父容器的最大宽度 */
    margin: 30px auto; /* 水平居中 */
    border: 3px solid #e0e0e0; /* 边框样式 */
    border-radius: 12px; /* 圆角效果，数值越大越圆滑 */
    overflow: hidden; /* 确保照片边角也会被圆角裁剪 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    
 }
    /* 房产展示区域 */
.property-showcase {
    text-align: center;
    margin-bottom: 40px;
}
.property-showcase h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.property-showcase img {
    width: 100%;
    max-width: 600px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 平台图标区域 */
.platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}
.platforms img {
    height: 35px;
    object-fit: contain;
    vertical-align: middle;
}

/* 底部文字区域 */
.bottom-text {
    font-size: 0.95em;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 50px;
}

/* 容器样式：固定每行6列，两排行数 */
.platforms {
  display: grid;
  /* 关键：固定6列，每列宽度平均分配 */
  grid-template-columns: repeat(6, 1fr);
  /* 固定两排，每行高度统一（可按需调整，如100px） */
  grid-template-rows: repeat(2, 100px);
  /* 图片之间的间距（水平和垂直间距，可调整） */
  gap: 1.2rem;
  /* 容器内边距，避免图片贴边 */
  padding: 1.5rem;
  /* 容器水平居中（可选，根据页面布局调整） */
  margin: 0 auto;
  /* 限制容器最大宽度，避免在大屏幕上图片过宽 */
  max-width: 1600px;
  /* 确保容器宽度足够放下6列（避免小屏幕挤在一起） */
  min-width: 900px; /* 可根据实际图片尺寸调整 */
}

/* 图片样式：保证大小一致、不拉伸 */
.platforms img {
  width: 100%; /* 宽度充满列容器 */
  height: 100%; /* 高度充满行容器 */
  object-fit: contain; /* 保持图片比例，完整显示在容器内（不拉伸、不裁剪） */
  display: block; /* 清除图片默认inline间隙 */
}
/* 可选：hover 放大效果 */
.platforms img:hover {
  transform: scale(1.05);
}
.bottom-text {
    text-align: left;
}
 @layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .text-shadow {
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            .bg-blur {
                backdrop-filter: blur(8px);
            }
            .animate-float {
                animation: float 6s ease-in-out infinite;
            }
            @keyframes float {
                0% { transform: translateY(0px); }
                50% { transform: translateY(-15px); }
                100% { transform: translateY(0px); }
            }
        }
.hidden {
    display: none !important; /* 确保元素被完全隐藏 */
  }

    /* Triangle clipping paths for card pointers */
    .clip-triangle-right {
      clip-path: polygon(0 0, 100% 50%, 0 100%);
    }
    .clip-triangle-left {
      clip-path: polygon(100% 0, 0 50%, 100% 100%);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .timeline-line {
        left: 2rem;
      }
      .timeline-dot {
        left: 2rem;
      }
      .card-left, .card-right {
        margin-left: 4rem;
        margin-right: 0;
        max-width: none;
        left: 0;
        right: auto;
      }
      /* .card-left {
        @apply before:clip-triangle-left before:left-0 before:right-auto;
      }
      .card-right {
        @apply before:clip-triangle-left before:left-0 before:right-auto;
      } */
      .card-left::before, .card-right::before {
        clip-path: polygon(100% 0, 0 50%, 100% 100%);
      }
    }




/* video部分------------------------------------------------ */
.vlog {
  max-width: 1200px;
  margin: 0 auto;
}
.vlog {
  text-align: center;
  margin-bottom: 40px;
}
.vlog h1 {
  margin-top: 70px;
  font-size: 50px;
  color: #333;
  font-family: "Cinzel";

}
.vlog p {
  font-size: 15px;
  color: #c0c0c0;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 30px
}
        .video-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 0;
        }

        .video-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.25s ease;
            cursor: pointer;
            border: 1px solid #ebebeb;
        }

        .video-card:hover {
            transform: translateY(-3px);
            border-color: #d0d0d0;
        }

        .video-thumbnail {
            position: relative;
            padding-bottom: 56.25%;
            background: #000;
            overflow: hidden;
        }

        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.75);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
            backdrop-filter: blur(5px);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 16px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            margin-left: 4px;
        }

        .video-card:hover .play-button {
            transform: translate(-50%, -50%) scale(1.15);
            background: rgba(255, 0, 0, 0.9);
        }

        .video-title {
            padding: 14px 16px;
            font-size: 0.95em;
            font-weight: 500;
            color: #2c3e50;
            line-height: 1.4;
            display: -webkit-box;

            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            aspect-ratio: 16/9;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-content iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }

        .close-btn {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
            transition: transform 0.2s ease;
        }

        .close-btn:hover {
            transform: scale(1.2);
        }

        @media (max-width: 1400px) {
            .video-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1100px) {
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            h1 {
                font-size: 2em;
            }

            body {
                padding: 30px 20px;
            }

            .modal-content {
                width: 95%;
            }

            .close-btn {
                top: -40px;
                font-size: 30px;
            }
        }

        @media (max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }



/* 结尾收官 */
/* 页脚样式 */
.footer-section {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    margin-top: 80px;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2a86db, #4cc9f0, #2a86db);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 品牌信息 */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo img {
    max-height: 60px;
    filter: brightness(1.2);
}

.brand-desc {
    color: #b0b0c5;
    line-height: 1.6;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.instagram {
    background-color: #e1306c;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-link.linkedin {
    background-color: #0077b5;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 链接样式 */
.footer-links, .footer-contact, .footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-title, .contact-title, .newsletter-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.link-title::after, .contact-title::after, .newsletter-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #4cc9f0;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    color: #b0b0c5;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.link-item:hover {
    color: #4cc9f0;
    padding-left: 5px;
}

/* 联系信息 */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b0c5;
    font-size: 14px;
}

.contact-item a {
    color: #b0b0c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4cc9f0;
}

.contact-icon {
    color: #4cc9f0;
    margin-top: 3px;
    min-width: 20px;
}

/* 订阅区域 */
.newsletter-desc {
    color: #b0b0c5;
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.email-input {
    flex: 1;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px 0 0 4px;
    color: white;
    font-size: 14px;
    outline: none;
}

.email-input::placeholder {
    color: #b0b0c5;
}

.submit-btn {
    background-color: #4cc9f0;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2a86db;
}

.privacy-note {
    font-size: 12px;
    color: #8888a0;
    margin-top: 10px;
}

/* 分隔线 */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

/* 页脚底部 */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.copyright {
    color: #8888a0;
    font-size: 13px;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bottom-link {
    color: #8888a0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: #4cc9f0;
}