/* 移动端容器 */
.mobile-container {
  display: none;
  height: auto;
}

/* 移动端内容样式 */
.mobile-content {
  width: 100%;
  padding: 0;
}

/* 移动端横幅 */
.mobile-banner {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

/* 移动端 section */
.mobile-section {
  padding: 0 20px 40px;
}

/* 移动端 section 标题 */
.mobile-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddb05d;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* 移动端服务中心 */
.mobile-service-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: auto;
}

/* 移动端服务项 */
.mobile-service-center .service-item {
  width: 100%;
  height: 280px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-service-center .service-item:active {
  transform: scale(0.98);
}

/* 团队地接模块（第一个服务项）不显示点击和悬停效果 */
.mobile-service-center .service-item:first-child:active,
.mobile-service-center .service-item:first-child:hover,
.mobile-service-center .service-item:first-child:focus {
  transform: scale(1) !important;
  z-index: 1 !important;
}

.mobile-service-center .service-item:first-child:hover .service-content,
.mobile-service-center .service-item:first-child:hover .service-header {
  transform: none !important;
}

.mobile-service-center .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.mobile-service-center .service-item .service-overlay {
  display: none;
}

/* 移动端服务内容 */
.mobile-service-center .service-item .service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  padding: 30px 25px 25px;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  transform: none;
  transition: none;
  box-sizing: border-box;
  min-height: 180px;
}

.mobile-service-center .service-item .service-content .service-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
  z-index: 20;
}

.mobile-service-center .service-item .service-content .service-header img {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: contain;
  box-sizing: content-box;
  flex-shrink: 0;
  z-index: 30;
}

.mobile-service-center .service-item .service-content .service-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  text-align: left;
  line-height: 1.3;
  flex: 1;
  z-index: 30;
}

.mobile-service-center .service-item .service-content .service-tags {
  display: block;
  width: 100%;
  z-index: 20;
}

.mobile-service-center .service-item .service-content .service-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

.mobile-service-center .service-item .service-content .service-tags ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(8px);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

/* 移动端景点推荐 */
.mobile-attractions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 0;
}

.mobile-attractions .impression-item {
  width: 100%;
  height: 200px;
  margin-bottom: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mobile-attractions .impression-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.mobile-attractions .impression-item .title-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  z-index: 1;
}

.mobile-attractions .impression-item .title-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.mobile-attractions .impression-item .title-text p {
  font-size: 12px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* 移动端景点详情（点击后展示） */
.mobile-attractions .impression-item .more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  z-index: 2;
}

.mobile-attractions .impression-item .more .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* 移动端酒店推荐 */
.mobile-hotels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-hotels .visit-item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-hotels .lefts {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.mobile-hotels .lefts img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-hotels .rights {
  width: 100%;
  height: auto;
  padding: 18px;
  background: #fafafa;
}

.mobile-hotels .rights .title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}

.mobile-hotels .rights .english-title {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin: 0 0 12px 0;
}

.mobile-hotels .rights .text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 移动端周边 */
.mobile-surroundings-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-surroundings-container .surroundings-item {
  width: 100%;
  height: 250px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-surroundings-container .surroundings-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-surroundings-container .surroundings-item .surroundings-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.mobile-surroundings-container .surroundings-item .surroundings-overlay .surroundings-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 移动端合作伙伴 */
.mobile-partners-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* 移动端合作伙伴类别 */
.mobile-partners-grid .partner-category {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 移动端合作伙伴类别标题 */
.mobile-partners-grid .partner-category-title {
  font-size: 18px;
  font-weight: 700;
  color: #ddb05d;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ddb05d;
  text-align: center;
}

/* 移动端合作伙伴Logo */
.mobile-partners-grid .partner-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* 移动端合作伙伴Logo项 */
.mobile-partners-grid .partner-logo-item {
  text-align: center;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 8px;
}

/* 移动端合作伙伴Logo图片 */
.mobile-partners-grid .partner-logo {
  max-width: 100px;
  max-height: 60px;
}

/* 移动端合作伙伴名称 */
.mobile-partners-grid .partner-name {
  display: none;
}

/* 移动端联系我们 */
.mobile-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  min-width: unset;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 20px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-footer-contact .contact-section {
  width: 100%;
}

.mobile-footer-contact .contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #ddb05d;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ddb05d;
  text-align: center;
}

.mobile-footer-contact .contact-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-footer-contact .contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fafafa;
  border-radius: 10px;
}

.mobile-footer-contact .contact-info img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  border: 3px solid #ddb05d;
}

.mobile-footer-contact .contact-details p {
  margin: 6px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.mobile-footer-contact .contact-details i {
  color: #ddb05d;
  margin-right: 8px;
}

/* 响应式设计 - 屏幕宽度小于等于750px时显示移动端 */
@media (max-width: 750px) {
  .desktop-container {
    display: none;
  }
  
  .mobile-container {
    display: block;
  }
  
  .mobile-attractions {
    grid-template-columns: 1fr;
  }
  
  .mobile-attractions .impression-item {
    height: 250px;
  }
  
  /* 确保移动端服务中心样式覆盖桌面端 */
  .service-center.mobile-service-center {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 20px;
    padding: 0;
    margin-top: 0;
    width: 100%;
    height: auto;
  }
  
  .service-center.mobile-service-center .service-item {
    width: 100%;
    height: 280px;
    grid-column: auto;
    grid-row: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
  
  .service-center.mobile-service-center .service-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    transform: none;
    transition: none;
    box-sizing: border-box;
    min-height: 180px;
    z-index: 10;
  }
  
  .service-center.mobile-service-center .service-header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
    transform: none;
    width: 100%;
  }
  
  .service-center.mobile-service-center .service-header img {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: block;
    object-fit: contain;
    box-sizing: content-box;
    flex-shrink: 0;
  }
  
  .service-center.mobile-service-center .service-header h3 {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: left;
    font-weight: 700;
    margin: 0;
    flex: 1;
  }
  
  .service-center.mobile-service-center .service-tags {
    display: block;
    transform: none;
    width: 100%;
  }
  
  .service-center.mobile-service-center .service-tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }
  
  .service-center.mobile-service-center .service-tags ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(8px);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
  }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
  .show-none {
    display: none;
  }
  .show-mobile {
    display: block;
  }
}

/* MICE弹窗响应式设计 */
@media (max-width: 768px) {
  .mice-modal-close {
    top: 20px;
    right: 20px;
    font-size: 24px;
    width: 40px;
    height: 40px;
  }
  
  .mice-image-container {
    width: 100%;
    height: 225px;
  }
  
  .mice-slide-content {
    max-width: 300px;
  }
  
  .mice-slide-title {
    font-size: 18px;
  }
  
  .mice-slide-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .mice-modal-close {
    top: 15px;
    right: 15px;
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
  
  .mice-image-container {
    width: 100%;
    height: 187px;
  }
  
  .mice-slide-content {
    max-width: 250px;
  }
  
  .mice-slide-title {
    font-size: 16px;
  }
  
  .mice-slide-description {
    font-size: 12px;
  }
}

/* 平板和中等屏幕 */
@media (max-width: 768px) {
  .show-none {
    display: none;
  }
  .show-mobile {
    display: block;
  }
}

/* 联系我们部分响应式设计 */
@media (max-width: 768px) {
  .contact-us-content {
    padding: 60px 20px;
  }
  .contact-us-content .section-title h2 {
    font-size: 32px;
  }
  .footer-contact {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }
  .contact-section {
    min-width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-info {
    padding: 20px;
  }
  .contact-info img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .contact-us-content {
    padding: 40px 15px;
  }
  .contact-us-content .section-title h2 {
    font-size: 28px;
    letter-spacing: 1px;
  }
  .contact-us-content .section-title p {
    font-size: 16px;
  }
  .footer-contact {
    padding: 30px 20px;
    margin: 0 10px;
  }
  .contact-title {
    font-size: 20px;
  }
  .contact-info {
    padding: 18px;
    gap: 15px;
  }
  .contact-info img {
    width: 60px;
    height: 60px;
  }
  .contact-details p {
    font-size: 14px;
  }
}

/* 案例展示弹窗响应式设计 */
@media (max-width: 768px) {
  .case-modal-content {
    width: 90%;
    padding: 30px;
  }
  .case-modal-title {
    font-size: 24px;
  }
  .case-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .case-item img {
    width: 100%;
    height: 180px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .case-carousel-container {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .case-modal-content {
    width: 95%;
    padding: 20px;
  }
  .case-modal-title {
    font-size: 20px;
  }
  .case-item-title {
    font-size: 16px;
  }
  .case-item-description {
    font-size: 14px;
  }
  .case-carousel-container {
    min-height: 450px;
  }
}

/* 新加坡周边响应式设计 */
@media (max-width: 768px) {
  .surroundings-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .surroundings-item {
    width: 90%;
    height: 40vh;
  }
  
  .surroundings-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .singapore-surroundings {
    padding: 20px;
  }
  
  .surroundings-item {
    width: 100%;
    height: 30vh;
  }
  
  .surroundings-title {
    font-size: 20px;
  }
  
  .surroundings-overlay {
    padding: 20px;
  }
}

/* 介绍部分响应式设计 */
@media (max-width: 768px) {
  .introduce-header {
    margin-bottom: 30px;
  }

  .introduce-header h2 {
    font-size: 24px;
  }

  .introduce-header p {
    font-size: 10px;
  }

  .introduce-content-wrapper {
    gap: 20px;
  }

  .introduce-content {
    width: 100%;
    height: auto;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .content-left {
    width: 100%;
    height: 200px;
  }

  .content-right {
    width: 100%;
    padding: 20px;
  }

  .main-pagination {
    right: 10px;
  }

  .main-pagination .pagination-text {
    font-size: 12px;
    left: -80px;
    width: 80px;
  }

  .main-pagination .swiper-pagination-bullet {
    margin: 30px 0;
    width: 12px;
    height: 12px;
  }

  .main-pagination .swiper-pagination-bullet-active .pagination-text {
    font-size: 14px;
  }

  .main-pagination::before {
    right: 5px;
    top: 30px;
    bottom: 30px;
  }

  .service-center {
    grid-template-columns: repeat(1, 1fr);
  }

  .show-none {
    display: none;
  }
  
  .show-mobile {
    display: block;
  }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
  .introduce {
    padding: 0 10px;
  }

  .introduce-header h2 {
    font-size: 20px;
  }

  .content-left {
    height: 150px;
  }

  .content-right {
    padding: 15px;
  }

  .content-right .title {
    font-size: 14px;
  }

  .content-right .text {
    font-size: 10px;
    line-height: 18px;
  }
  
  .main-pagination {
    display: none;
  }
  
  .show-none {
    display: none;
  }
  
  .show-mobile {
    display: block;
  }
}

/* 奢华旅游弹窗响应式设计 */
@media (max-width: 1200px) {
  .luxury-modal-content {
    width: 95%;
    max-width: 1100px;
    height: 85%;
  }
  
  .luxury-cards-container {
    gap: 25px;
    padding: 40px;
  }
  
  .luxury-cards-row-1 {
    grid-template-columns: repeat(2, 280px);
  }
  
  .luxury-card {
    width: 280px;
    height: 330px;
  }
  
  .luxury-cards-row-2 {
    grid-template-columns: repeat(3, 280px);
  }
  
  .luxury-image-container {
    height: 200px;
  }
  
  .luxury-slide-title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .luxury-cards-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  
  .luxury-cards-row-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
  }
  
  .luxury-card {
    width: 100%;
    height: auto;
    padding: 15px;
  }
  
  .luxury-cards-row-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
  }
  
  .luxury-cards-row-2 .luxury-card:last-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .luxury-image-container {
    height: 180px;
  }
  
  .luxury-slide-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .luxury-modal-content {
    width: 98%;
    height: 90%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .luxury-modal-close {
    top: 15px;
    right: 15px;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    z-index: 100;
  }
  
  .luxury-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 60px 15px 20px;
    overflow-y: auto;
    height: 100%;
    align-items: center;
  }
  
  .luxury-cards-row-1,
  .luxury-cards-row-2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
  }
  
  .luxury-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 15px;
    margin: 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .luxury-image-container {
    height: 180px;
    margin-bottom: 12px;
  }
  
  .luxury-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .luxury-slide-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .luxury-modal-content {
    width: 99%;
    height: 92%;
  }
  
  .luxury-modal-close {
    top: 10px;
    right: 10px;
    font-size: 22px;
    width: 36px;
    height: 36px;
  }
  
  .luxury-cards-container {
    gap: 12px;
    padding: 55px 10px 15px;
  }
  
  .luxury-card {
    max-width: 280px;
    padding: 12px;
    border-radius: 14px;
  }
  
  .luxury-image-container {
    height: 150px;
  }
  
  .luxury-slide-title {
    font-size: 16px;
  }
}

/* 合作伙伴部分响应式设计 */
@media (max-width: 1200px) {
  .partners-grid {
    max-width: 100%;
  }
  
  .partner-logos {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
  
  .partner-logo-item {
    height: 70px;
  }
  
  .partner-logo {
    max-height: 50px;
  }
  
  .partners-tabs {
    gap: 15px;
    top: 150px;
  }
  
  .tab-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  .partners-tabs-content {
    margin-top: 150px;
    padding: 25px;
  }
  
  .partner-category {
    min-height: 250px;
  }
  
  .tab-content {
    min-height: 250px;
  }
  
  .tab-content.active {
    min-height: 250px;
  }
}

@media (max-width: 992px) {
  .partner-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 30px 15px;
  }
  
  .partners-header h2 {
    font-size: 28px;
  }
  
  .partners-header p {
    font-size: 14px;
  }
  
  .partners-grid {
    gap: 30px;
  }
  
  .partners-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .partners-tabs-content {
    padding: 20px;
  }
  
  .partner-category {
    padding: 25px 15px;
  }
  
  .partner-category-title {
    font-size: 18px;
  }
  
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .partner-logo-item {
    padding: 10px;
    height: 70px;
  }
  
  .partner-logo {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 20px 10px;
  }
  
  .partners-header h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  .partners-header p {
    font-size: 12px;
  }
  
  .partners-grid {
    gap: 20px;
  }
  
  .partners-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .tab-button {
    width: 100%;
    max-width: 250px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .partners-tabs-content {
    padding: 15px;
    margin-top: 20px;
  }
  
  .partner-category {
    padding: 20px 10px;
  }
  
  .partner-category-title {
    font-size: 16px;
  }
  
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .partner-logo-item {
    padding: 8px;
    height: 60px;
  }
  
  .partner-logo {
    max-height: 100%;
  }
}