/* 重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-brand img {
  height: 50px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ff6b6b;
}

/* 導航欄響應式樣式 */
.desktop-nav {
  display: flex;
}

.desktop-lang {
  display: flex;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-nav ul {
  flex-direction: column;
  padding: 20px 0;
}

.mobile-nav ul li {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav ul li a {
  display: block;
  padding: 15px 30px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  background: #f8f9fa;
  color: #ff6b6b;
}

.mobile-lang-item {
  padding: 15px 30px;
  border-top: 1px solid #f0f0f0;
}

/* 自定義語言切換樣式 - 桌面端 */
.language-switcher {
  position: relative;
}

.custom-select {
  position: relative;
  display: inline-block;
  min-width: 100px;
}

.select-selected {
  background: #ff6b6b;
  color: white;
  padding: 8px 12px;
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
  user-select: none;
  height: 36px;
  box-sizing: border-box;
}

.select-selected:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.select-arrow {
  margin-left: auto;
  transition: transform 0.3s;
  font-size: 10px;
}

.custom-select.active .select-arrow {
  transform: rotate(180deg);
}

.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  margin-top: 5px;
}

.custom-select.active .select-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-item {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.select-item:hover {
  background: #f8f9fa;
  color: #ff6b6b;
}

.select-item.active {
  background: #ff6b6b;
  color: white;
}

.lang-icon {
  font-size: 14px;
}

.lang-text {
  font-size: 13px;
}

/* 移動端語言切換樣式 */
.mobile-language-switcher {
  margin-top: 10px;
}

.mobile-custom-select {
  position: relative;
  width: 100%;
}

.mobile-select-selected {
  background: #f8f9fa;
  color: #333;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  user-select: none;
  border: 2px solid #e9ecef;
}

.mobile-select-selected:hover {
  border-color: #ff6b6b;
  background: #fff;
}

.mobile-custom-select.active .mobile-select-selected {
  border-color: #ff6b6b;
  background: #fff;
}

.mobile-custom-select.active .select-arrow {
  transform: rotate(180deg);
}

.mobile-select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  margin-top: 5px;
  border: 2px solid #e9ecef;
}

.mobile-custom-select.active .mobile-select-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-select-item {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.mobile-select-item:hover {
  background: #f8f9fa;
  color: #ff6b6b;
}

.mobile-select-item.active {
  background: #ff6b6b;
  color: white;
}

/* 主横幅区样式 */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* 搜索表单样式 */
.search-form {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  align-items: end;
  max-width: 800px;
  margin: 0 auto;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.search-field i {
  color: #ff6b6b;
  font-size: 1.2rem;
}

.search-field div {
  flex: 1;
}

.search-field label {
  display: block;
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 5px;
  font-weight: 500;
}

.search-field input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #333;
  padding: 5px 0;
}

.search-field input::placeholder {
  color: #bdc3c7;
}

.search-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 50px;
}

.search-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

/* 体验介绍区样式 */
.experience {
  padding: 100px 0;
  background: #fff;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.experience-text p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 40px;
  line-height: 1.7;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 25px 20px;
  background: rgba(255, 107, 107, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(255, 107, 107, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.stat-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.stat-item:hover h3 {
  color: #ff6b6b;
}

.stat-item p {
  font-size: 0.95rem;
  color: #7f8c8d;
  font-weight: 500;
  line-height: 1.4;
}

/* 优势特点区样式 */
.advantages {
  padding: 100px 0;
  background: #f8f9fa;
}

.advantages h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 60px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.advantage-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.advantage-icon i {
  font-size: 2rem;
  color: white;
}

.advantage-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.advantage-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* 度假推荐区样式 */
.vacation {
  padding: 100px 0;
  background: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
}

.view-all-btn {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: #ff6b6b;
  color: white;
}

.vacation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vacation-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.vacation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vacation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.vacation-info {
  padding: 25px;
  background: white;
}

.vacation-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.vacation-info p {
  color: #7f8c8d;
  font-size: 0.95rem;
}

/* 难忘假期区样式 */
.unforgettable {
  padding: 100px 0;
  background: #f8f9fa;
}

.unforgettable-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.unforgettable-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.unforgettable-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.unforgettable-text p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* 最佳套餐区样式 */
.packages {
  padding: 100px 0;
  background: white;
}

.packages h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 60px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.package-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.package-info {
  padding: 30px;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.package-header h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
}

.rating {
  color: #ffd700;
  font-size: 0.9rem;
}

.package-info p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.old-price {
  color: #bdc3c7;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.new-price {
  color: #ff6b6b;
  font-size: 1.5rem;
  font-weight: 700;
}

.book-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.book-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

/* 梦想目的地样式 */
.dream-places {
  padding: 100px 0;
  background: #f8f9fa;
}

.dream-places h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 60px;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.place-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 客户评价区样式 */
.testimonials {
  padding: 100px 0;
  background: white;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.customer-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.customer-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.customer-info p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.testimonial-card > p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card .rating {
  color: #ffd700;
  font-size: 1.1rem;
}

/* 底部CTA区样式 */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  text-align: center;
  color: white;
}

.newsletter h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
}

.subscribe-btn {
  background: #ffffff;
  color: #ff6b6b;
  border: 2px solid #ffffff;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: #ff6b6b;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* 页脚样式 */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.quick-links {
  list-style: none;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.quick-links li a:hover {
  color: #ff6b6b;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

.contact-info li i {
  margin-right: 10px;
  width: 16px;
  color: #ff6b6b;
}

.contact-info li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info li a:hover {
  color: #ff6b6b;
}

.quick-message-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #34495e;
  border-radius: 8px;
  background: #34495e;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #95a5a6;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  background: #3c5a70;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.phone-error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

/* 国际电话输入插件样式调整 */
.iti {
  width: 100%;
}

.iti__flag-container {
  background: #34495e;
  border-right: 1px solid #4a5f7a;
}

.iti__selected-flag {
  background: #34495e;
  border: none;
  padding: 12px 8px;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
  background: #3c5a70;
}

.iti__arrow {
  border-top-color: #bdc3c7;
}

/* 强制覆盖下拉框样式 */
.iti__country-list {
  background: #34495e !important;
  border: 1px solid #4a5f7a !important;
  color: white !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
  z-index: 10001 !important;
}

.iti__country {
  padding: 8px 12px !important;
  border-bottom: 1px solid #4a5f7a !important;
  color: white !important;
  background: #34495e !important;
}

.iti__country:hover {
  background: #34495e !important;
  color: white !important;
}

.iti__country.iti__highlight {
  background: #34495e !important;
  color: white !important;
}

.iti__country-name {
  color: white !important;
}

.iti__dial-code {
  color: #bdc3c7 !important;
}

/* 修复搜索框样式 */
.iti__search-input {
  background: #2c3e50 !important;
  border: 1px solid #4a5f7a !important;
  color: white !important;
  padding: 8px 12px !important;
}

.iti__search-input::placeholder {
  color: #95a5a6 !important;
}

.iti__search-input:focus {
  border-color: #ff6b6b !important;
  outline: none !important;
  background: #2c3e50 !important;
  color: white !important;
}

/* 确保所有文本都是白色 - 使用更具体的选择器 */
body .iti__country-list {
  background: #34495e !important;
  border: 1px solid #4a5f7a !important;
}

body .iti__country-list .iti__country {
  background: #34495e !important;
  color: white !important;
}

body .iti__country-list .iti__country:hover {
  background: #34495e !important;
  color: white !important;
}

body .iti__country-list .iti__country.iti__highlight {
  background: #34495e !important;
  color: white !important;
}

body .iti__country-list .iti__country span {
  color: white !important;
}

body .iti__country-list .iti__dial-code {
  color: #bdc3c7 !important;
}

body .iti__country-list .iti__country-name {
  color: white !important;
}

body .iti__country-list .iti__search-input {
  background: #2c3e50 !important;
  color: white !important;
  border: 1px solid #4a5f7a !important;
}

/* 终极强制样式 - 覆盖所有可能的插件样式 */
.iti__country-list[style] {
  background: #34495e !important;
}

.iti__country[style] {
  background: #34495e !important;
  color: white !important;
}

.iti__country:hover[style] {
  background: #34495e !important;
  color: white !important;
}

/* 强制所有子元素文字颜色 */
.iti__country * {
  color: white !important;
}

.iti__dial-code {
  color: #bdc3c7 !important;
}

/* CSS变量方式强制覆盖 */
:root {
  --iti-text-color: white !important;
  --iti-bg-color: #34495e !important;
}

/* 使用属性选择器强制覆盖 */
[class*="iti__country"] {
  color: white !important;
  background: #34495e !important;
}

[class*="iti__country"]:hover {
  background: #34495e !important;
  color: white !important;
}

/* 确保输入框与国际插件配合 */
.form-group .iti input[type="tel"] {
  padding-left: 52px;
  border-radius: 0 8px 8px 0;
}

.btn-primary {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.btn-loading {
  display: none;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* 響應式設計 */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* 移動端導航樣式 */
  .navbar .container {
    position: relative;
  }

  .desktop-nav {
    display: none;
  }

  .desktop-lang {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav.active {
    display: block;
  }

  /* 漢堡菜單動畫 */
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .search-form {
    flex-direction: column;
    gap: 20px;
  }

  .experience-content,
  .unforgettable-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .experience-text h2,
  .unforgettable-text h2 {
    font-size: 2.2rem;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .stat-item {
    max-width: 280px;
    width: 100%;
  }

  .section-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer-column {
    text-align: left;
  }

  .contact-info li {
    flex-direction: row;
    align-items: flex-start;
  }

  .quick-message-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .experience-text h2,
  .unforgettable-text h2 {
    font-size: 1.8rem;
  }

  .section-header h2,
  .advantages h2,
  .packages h2,
  .dream-places h2,
  .testimonials h2 {
    font-size: 1.8rem;
  }

  .newsletter h2 {
    font-size: 2rem;
  }
}

/* 成功模态框样式 */
.success-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  font-weight: bold;
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-body p {
  color: #555;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
}

/* 响应式模态框 */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-header {
    padding: 15px;
  }

  .modal-header h3 {
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 25px 20px;
  }

  .success-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .modal-body p {
    font-size: 1rem;
  }
}
