/* 基础样式 */
body { 
    margin: 0;
    padding: 0; 
}

/* 导航栏滚动效果 */
.nav-scrolled {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.nav-transparent {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

/* 动画效果 */
.transition-colors {
    transition: background-color 0.3s ease, border-color 0.3s ease;
} 
.hover045060:hover
{
    background-color: #045060 !important;
}

/* Custom styles to match the original */
.bg-linear-to-b {
    background: linear-gradient(to bottom, rgba(4, 80, 96, 0.65), rgba(4, 80, 96, 0.45), rgba(1, 22, 33, 0.8));
}

.shadow-custom {
    box-shadow: 0 24px 80px rgba(1, 22, 31, 0.35);
}
/* 模态框样式 */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.75rem;
}

.modal-content {
  max-height: 80vh;
  width: 100%;
  max-width: 24rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: white;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
@media (min-width: 640px) {
  .modal-content {
      max-width: 32rem;
  }
}
@media (min-width: 768px) {
  .modal-content {
      max-width: 860px;
  }
}

/* 日历样式 */
.calendar-container {
  max-height: calc(80vh - 96px);
  overflow-y: auto;
  padding: 0.5rem 0.75rem 0.75rem;
}
@media (min-width: 640px) {
  .calendar-container {
      padding: 0.75rem 1.5rem 1rem;
  }
}

.calendar-months {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .calendar-months {
      flex-direction: row;
      gap: 2rem;
      justify-content: center;
  }
}

.calendar-month {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calendar-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(4 80 96);
}

.calendar-caption-label {
  font-size: 0.875rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .calendar-caption-label {
      font-size: 1rem;
  }
}

.calendar-nav-button {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}
.calendar-nav-button:hover {
  background-color: rgb(240 244 247);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.calendar-head-row {
  font-size: 0.75rem;
  color: rgb(133 139 142);
}

.calendar-row {
  height: 2.25rem;
}

.calendar-day {
  height: 2.25rem;
  width: 2.25rem;
  font-size: 0.875rem;
  text-align: center;
  border-radius: 9999px;
  cursor: pointer;
}

.calendar-day:hover {
  background-color: rgb(240 244 247);
}

.calendar-day.selected {
  background-color: rgb(254 173 90);
  color: white;
  border-radius: 9999px;
}

.calendar-day.range-start,
.calendar-day.range-end {
  background-color: rgb(254 173 90);
  color: white;
  border-radius: 9999px;
}

.calendar-day.range-middle {
  background-color: rgb(255 243 228);
  color: rgb(139 74 5);
  border-radius: 0;
}

.calendar-day.disabled {
  color: rgb(156 163 175);
  cursor: not-allowed;
}
.calendar-day.disabled:hover {
  background-color: transparent;
}
.calendar-day.today {
  color: rgb(59 130 246) !important; /* 蓝色字体 */
  font-weight: 600;
}

/* 输入框样式 */
.field-label {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgb(11 155 147);
  text-transform: uppercase;
}

.field-input {
  height: 2.75rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgb(229 234 236);
  background-color: rgb(247 249 250);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: rgb(4 80 96);
}
.field-input::placeholder {
  color: rgb(160 167 170);
}
.field-input:focus {
  border-color: rgb(32 204 169);
  outline: none;
  box-shadow: 0 0 0 2px rgb(32 204 169 / 0.3);
}

/* 搜索表单样式 */
.search-form {
  margin-left: auto;
  margin-right: auto;
  /* max-width: 80rem; */
  border-radius: 26px;
  background-color: rgb(255 255 255 / 0.96);
  padding: 1rem;
  box-shadow: 0 24px 80px rgb(1 22 31 / 0.35);
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .search-form {
      padding: 1.25rem 1.5rem;
  }
}

.search-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .search-grid {
      flex-direction: row;
      align-items: flex-end;
  }
}

/* 按钮样式 */
.search-button {
  height: 2.75rem;
  border-radius: 0.75rem;
  background-color: rgb(32 204 169);
  padding: 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: white;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.search-button:hover {
  background-color: rgb(32 204 169 / 0.8);
}

.date-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.date-indicator {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: rgb(133 139 142);
}

/* 模态框按钮样式 */
.modal-button {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.modal-button-cancel {
  border: 1px solid rgb(229 234 236);
  color: rgb(4 80 96);
}
.modal-button-cancel:hover {
  background-color: rgb(247 249 250);
}

.modal-button-apply {
  background-color: rgb(254 173 90);
  letter-spacing: 0.16em;
  color: white;
  text-transform: uppercase;
}
.modal-button-apply:hover {
  background-color: rgb(243 146 51);
}

.clear-dates {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(133 139 142);
  cursor: pointer;
}
.clear-dates:hover {
  color: rgb(4 80 96);
}

/* 响应式隐藏 */
@media (max-width: 767px) {
  .desktop-only {
      display: none;
  }
}

.md\:-mt-6_7{
  @media (width >= 48rem) {
    margin-top: -6.7rem;
  }
}

/* Container styles */
/* .about-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
  .about-section .about-section.container {
      padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .about-section .container {
        padding: 0 2rem;
    }
} */
/* Section styles */
.about-section {
    padding: 4rem 0;
    scroll-margin-top: 7rem;
}

@media (min-width: 640px) {
    .about-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 6rem 0;
    }
}

/* Grid layout */
.about-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Image styles */
.about-image {
    position: relative;
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem; 
}

/* Content styles */
.about-content {
    max-width: 36rem;
}

.about-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #20CCA9;
    text-transform: uppercase;
}

.about-title {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #045060;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 1.875rem;
    }
}

.about-description {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: #4F5A5F;
}

@media (min-width: 640px) {
    .about-description {
        font-size: 1rem;
    }
}

/* Stats grid */
.stats-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1rem 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #E5EAEC;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #045060;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 1.5rem;
    }
}

.stat-label {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    line-height: 1.3;
    color: #858B8E;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

/* CTA buttons */
.cta-buttons {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FEAD5A;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background: #F39233;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(4, 80, 96, 0.15);
    color: #045060;
    padding: 0.625rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #045060;
    background: #E5EAEC;
}

/* Header styles */
.fleet-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .fleet-header {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
  }
}

.fleet-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #20CCA9;
  text-transform: uppercase;
}

.fleet-title {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #045060;
}

@media (min-width: 768px) {
  .fleet-title {
      font-size: 1.875rem;
  }
}

.fleet-description {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #4F5A5F;
}

.fleet-description strong {
  font-weight: 600;
}

.view-all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #045060;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: #20CCA9;
}

/* Cards grid */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .fleet-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .fleet-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* Card styles */
.boat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E5EAEC;
  transition: transform 0.2s, box-shadow 0.2s;
}

.boat-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Image container */
.boat-image {
  position: relative;
  aspect-ratio: 4/3;
}

.boat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

/* Card body */
.boat-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

@media (min-width: 640px) {
  .boat-body {
      padding: 1.25rem;
  }
}

/* Location */
.boat-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #858B8E;
}

.location-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: #858B8E;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") no-repeat center;
}

.boat-location span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Boat name */
.boat-name {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #045060;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .boat-name {
      font-size: 1.125rem;
  }
}

/* Meta information */
.boat-meta {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #4F5A5F;
}

.meta-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #D0D6D9;
}

/* Price */
.boat-price {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #4F5A5F;
}

.price-amount {
  font-weight: 600;
  color: #045060;
}

/* Action buttons */
.boat-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
} 

.btn-primary-xs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FEAD5A;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s;
  flex-basis: calc(50% - 0.25rem);
}

@media (min-width: 640px) {
  .btn-primary-xs {
      font-size: 0.875rem;
  }
}

.btn-primary-xs:hover {
  background: #F39233;
}
 
/* Charter Services */ 
.aspect-16-10 {
  aspect-ratio: 16/10;
}

.group:hover .group-hover-scale-105 {
  transform: scale(1.05);
}

 

.bg-gradient-to-t {
  --tw-gradient-position: to top in oklab;
  background-image: linear-gradient(var(--tw-gradient-stops));
}

.from-black-70 {
  --tw-gradient-from: rgba(0, 0, 0, 0.7);
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-black-0 {
  --tw-gradient-via: rgba(0, 0, 0, 0);
}

.to-black-0 {
  --tw-gradient-to: rgba(0, 0, 0, 0);
}

.drop-shadow-sm {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

.drop-shadow {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}



.aspect-21-9 {
  aspect-ratio: 21/9;
}

.aspect-16-10 {
  aspect-ratio: 16/10;
}

.group:hover .group-hover-scale-105 {
  transform: scale(1.05);
}
 
 

.from-01161F-95 {
  --tw-gradient-from: rgba(1, 22, 31, 0.95);
}

.via-01161F-10 {
  --tw-gradient-via: rgba(1, 22, 31, 0.1);
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.drop-shadow-sm {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
} 

.bg-linear-gradient-90deg {
  background: linear-gradient(90deg, rgba(1,22,31,0.75) 0%, rgba(1,22,31,0.6) 5%, transparent 70%);
}

/* 倒计时徽章样式 */
.pointer-events-none {
  pointer-events: none;
}

.z-20 {
  z-index: 20;
}

#destinations img,#activities img {
  height: 100%;
}

/* 轮播图 */
.swiper-container {
  width: 100%; 
  margin: 40px auto; 
  padding-bottom: 40px;
}
.swiper-slide { 
  display: flex;
  align-items: center;
  width: 60%;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 10px;
} 
.swiper-slide .carousel-slide{
  transform: scale(0.93);
  transition: transform 0.3s ease-in-out;
}
.swiper-slide-active .carousel-slide{
  transform: scale(1.07);
}

 
/* 必要的CSS样式 */
.instagram-container {
  
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .instagram-container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .instagram-container {
      padding-left: 2rem;
      padding-right: 2rem;
  }
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .instagram-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
  }
}

.instagram-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #E5EAEC;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.instagram-card:hover img {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
}

.instagram-card:hover .instagram-overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

.instagram-user-pill {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.instagram-likes-pill {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.instagram-card:hover .instagram-likes-pill {
  transform: translateY(0);
  opacity: 1;
}

.instagram-likes-content {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #045060;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.instagram-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background-color: #A0A7AA;
}

/* 页脚样式 */
/* 必要的CSS样式 - 修复网格布局问题 */
.footer-container {
    /* max-width: 1280px; */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* 修复网格布局 - 使用正确的响应式设置 */
.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-bottom-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-bottom-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* 修复图标样式 */
.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.chevron-icon {
    width: 0.75rem;
    height: 0.75rem;
}

.contact-icon {
    width: 1.125rem;
    height: 1.125rem;
}

/* 修复社交媒体按钮样式 */
.social-button {
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #E5EAEC;
    transition: all 0.3s;
}

.social-button:hover {
    border-color: #20CCA9;
    color: #20CCA9;
}

/* 修复链接样式 */
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
}

/* .nav-link:hover {
    color: white;
} */

/* 修复分隔线样式 */
.divider {
    margin-top: 0.5rem;
    height: 0.125rem;
    width: 2.25rem;
    background-color: #FEAD5A;
}

/* 修复联系信息样式 */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-link {
    transition: color 0.3s;
}

.contact-link:hover {
    color: white;
}

/* 背景渐变效果 */
.contact-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: linear-gradient(to bottom, rgb(240 249 255) 0%, rgb(255 255 255) 100%);
}

/* 容器样式 */
.contact-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .contact-container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-container {
      padding-left: 2rem;
      padding-right: 2rem;
  }
}

/* 表单样式 */
.contact-form {
  border-radius: 1.5rem;
  border: 1px solid rgb(229 234 236);
  background-color: rgb(255 255 255);
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
@media (min-width: 640px) {
  .contact-form {
      padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-form {
      padding: 1.75rem;
  }
}

/* 网格布局 */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* 输入框基础样式 */
.input-base {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgb(203 213 225);
  background-color: rgb(255 255 255);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(15 23 42);
}
.input-base::placeholder {
  color: rgb(148 163 184);
}
.input-base:focus {
  border-color: rgb(4 80 96);
  outline: none;
  box-shadow: 0 0 0 1px rgb(4 80 96);
}

/* 按钮样式 */
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgb(4 80 96);
  padding: 0.75rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgb(255 255 255);
  text-transform: uppercase;
}
.submit-button:hover {
  background-color: rgb(15 23 42);
}
.submit-button:disabled {
  opacity: 0.6;
}

/* 响应式列跨度 */
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
@media (min-width: 768px) {
  .md-col-span-2 { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .lg-col-span-4 { grid-column: span 4; }
}

/* 文本区域样式 */
textarea.input-base {
  min-height: 140px;
  resize: vertical;
}

/* 选择框样式 */
select.input-base {
  padding-right: 2rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
}

/* 状态消息样式 */
.status-message {
  font-size: 0.75rem;
  line-height: 1rem;
}
.status-ok { color: rgb(22 163 74); }
.status-error { color: rgb(220 38 38); }

/* 屏幕阅读器专用 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Marquee 动画效果 */
@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* 遮罩渐变效果 */
.mask-gradient {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}


/* 地图容器样式 */
.map-container {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.map-iframe {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* 容器样式 */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
      padding-left: 2rem;
      padding-right: 2rem;
  }
}

/* 图标样式 */
.feather {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* 链接样式 */
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(4 80 96);
  text-decoration: underline;
  margin-left: auto;
}
.maps-link:hover {
  color: rgb(32 204 169);
}

 