/* ==========================================================================
   Lucky Star Daycare (福星园) - Stylesheet
   Design Style: Cute, Warm, Friendly, Modern Bilingual Family Daycare Theme
   Company Owner: FMind LLC (www.fmindweb.com)
   ========================================================================== */

:root {
  --primary-pink: #fb7185;
  --primary-pink-hover: #f43f5e;
  --primary-blue: #38bdf8;
  --primary-blue-dark: #0284c7;
  --bg-sky-light: #e0f2fe;
  --bg-cream-light: #fffbeb;
  --accent-yellow: #fbbf24;
  --accent-yellow-light: #fef08a;
  --accent-green: #34d399;
  --accent-green-light: #d1fae5;
  --accent-purple: #c084fc;

  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --white: #ffffff;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 30px -10px rgba(251, 113, 133, 0.25);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Fredoka', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Floating FMind LLC Corner Badge & Navigation */
.fmind-floating-badge {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 2500;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid #0f172a;
  border-radius: var(--radius-full);
  padding: 8px 18px 8px 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transition: var(--transition);
  animation: fmindFloat 4s ease-in-out infinite;
  text-decoration: none;
  color: var(--text-dark);
}

.fmind-floating-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 35px rgba(251, 113, 133, 0.3);
  background: var(--white);
  border-color: var(--primary-pink);
}

@keyframes fmindFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fmind-badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fmind-badge-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.fmind-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.fmind-badge-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748b;
}

.fmind-company-name {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0f172a;
}

.fmind-company-url {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-pink);
}

.fmind-badge-arrow {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary-pink);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.fmind-floating-badge:hover .fmind-badge-arrow {
  transform: translate(3px, -3px);
}

/* Navigation QR Auto Popup Modal */
.nav-popup-overlay {
  display: flex;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-popup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  text-align: center;
  border: 4px solid var(--accent-yellow-light);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-popup-overlay.active .nav-popup-card {
  transform: scale(1);
}

.nav-popup-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-popup-close:hover {
  background: var(--primary-pink);
  color: var(--white);
}

.popup-badge {
  display: inline-block;
  background: var(--bg-sky-light);
  color: var(--primary-blue-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.nav-popup-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.popup-address {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin-bottom: 2px;
}

.popup-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.nav-qr-frame {
  background: var(--bg-cream-light);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--accent-yellow);
  display: inline-block;
  margin-bottom: 16px;
}

.nav-qr-frame img {
  width: 190px;
  height: 190px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.nav-popup-tip {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 16px;
}

.map-direct-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.google-map-btn {
  background: #ea4335;
  color: var(--white);
}

.google-map-btn:hover {
  background: #d93025;
  transform: translateY(-2px);
}

.apple-map-btn {
  background: #000000;
  color: var(--white);
}

.apple-map-btn:hover {
  background: #333333;
  transform: translateY(-2px);
}

.nav-qr-shortcut-btn {
  background: var(--accent-yellow-light);
  color: #92400e;
  border: 1.5px solid #fde047;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav-qr-shortcut-btn:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
}

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #f43f5e, #fb7185, #fbbf24);
  color: var(--white);
  font-size: 0.9rem;
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.announcement-btn {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 3px 12px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.announcement-btn:hover {
  background: var(--white);
  color: var(--primary-pink);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #f1f5f9;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2.2rem;
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-en {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-pink);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-cn {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary-blue-dark);
  line-height: 1.1;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.main-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-pink);
  border-radius: 3px;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary-pink);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  font-weight: 600;
  color: var(--primary-blue-dark);
  background: var(--bg-sky-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  transition: var(--transition);
}

.phone-link:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.cta-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary-pink), #f43f5e);
  color: var(--white);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-sky-light) 0%, #f0f9ff 50%, var(--bg-cream-light) 100%);
  overflow: hidden;
}

.hero-bg-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.85);
  animation: floatCloud 8s ease-in-out infinite alternate;
}

.cloud-1 { top: 10%; left: 5%; }
.cloud-2 { top: 20%; right: 8%; animation-delay: -4s; }

@keyframes floatCloud {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-15px) scale(1.05); }
}

.star {
  position: absolute;
  animation: pulseStar 3s ease-in-out infinite alternate;
}

.star-1 { top: 15%; left: 45%; font-size: 1.8rem; color: var(--accent-yellow); }
.star-2 { top: 60%; left: 8%; font-size: 2.2rem; color: var(--primary-pink); animation-delay: -1s; }
.star-3 { top: 40%; right: 42%; font-size: 2.5rem; color: var(--accent-green); animation-delay: -2s; }

@keyframes pulseStar {
  0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  100% { transform: scale(1.2) rotate(15deg); opacity: 1; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-pink);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border: 2px solid var(--accent-yellow-light);
}

.hero-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.title-en {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--primary-pink);
  letter-spacing: -1px;
  line-height: 1;
}

.title-cn {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-blue-dark);
  line-height: 1;
}

.title-tag {
  background: linear-gradient(135deg, #f59e0b, var(--accent-yellow));
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 700;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sm);
}

.hero-slogan {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 8px;
}

.hero-subtitle-en {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.hero-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.chip {
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-address-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.direct-nav-link {
  color: var(--primary-blue-dark);
  font-weight: 700;
  text-decoration: underline;
  margin-left: auto;
}

.direct-nav-link:hover {
  color: var(--primary-pink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), #f43f5e);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(251, 113, 133, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(251, 113, 133, 0.5);
}

.btn-secondary {
  background: var(--accent-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(52, 211, 153, 0.35);
}

.btn-secondary:hover {
  background: #10b981;
  transform: translateY(-3px);
}

.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid #cbd5e1;
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue-dark);
}

.pulse-animation {
  animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(251, 113, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0); }
}

.hero-share-notice {
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--accent-yellow);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #475569;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.poster-preview-card {
  position: relative;
  background: var(--white);
  padding: 14px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: var(--transition);
  max-width: 440px;
  cursor: pointer;
}

.poster-preview-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.poster-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-pink);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

.poster-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.poster-overlay-tip {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue-dark);
}

/* Values Marquee Ribbon */
.values-ribbon {
  background: linear-gradient(90deg, #0284c7, #38bdf8, #34d399);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ribbon-track {
  display: inline-flex;
  gap: 30px;
  animation: marquee 25s linear infinite;
  font-weight: 700;
  font-size: 1.05rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Global Section Styling */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.subheading {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--primary-pink);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
}

.section-title span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 8px;
}

.title-underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-pink), var(--accent-yellow));
  margin: 16px auto 0;
  border-radius: 5px;
}

/* Features Section */
.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #f8fafc;
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  border: 2px solid #f1f5f9;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.card-yellow:hover { border-color: var(--accent-yellow); }
.card-blue:hover { border-color: var(--primary-blue); }
.card-green:hover { border-color: var(--accent-green); }
.card-pink:hover { border-color: var(--primary-pink); }

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.card-yellow .card-icon-wrapper { background: var(--accent-yellow-light); }
.card-blue .card-icon-wrapper { background: var(--bg-sky-light); }
.card-green .card-icon-wrapper { background: var(--accent-green-light); }
.card-pink .card-icon-wrapper { background: #ffe4e6; }

.card-icon-wrapper .icon {
  font-size: 2.2rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-title-cn {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.card-title-en {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-pink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Birthday Party Section */
.party-section {
  background: linear-gradient(135deg, #fffbe0 0%, #fef3c7 100%);
  position: relative;
}

.party-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  border: 3px dashed var(--accent-yellow);
}

.party-badge {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 15px;
}

.party-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.party-subtitle-en {
  font-size: 1.1rem;
  color: var(--primary-pink);
  font-weight: 600;
  margin-bottom: 20px;
}

.party-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 900px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.party-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fffbeb;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid #fef08a;
}

.pf-icon {
  font-size: 2.2rem;
}

.pf-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.pf-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.party-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Philosophy Banner Section */
.philosophy-section {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.sprout-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.philosophy-quote-cn {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 15px;
}

.highlight-text {
  color: var(--accent-yellow);
  text-decoration: underline;
  text-decoration-color: rgba(251, 191, 36, 0.4);
}

.philosophy-quote-en {
  font-size: 1.25rem;
  font-weight: 400;
  color: #e0f2fe;
  max-width: 750px;
  margin: 0 auto 25px;
  font-style: italic;
}

.signature-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Gallery Section */
.gallery-section {
  background: #f8fafc;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid #e2e8f0;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-pink);
  color: var(--white);
  border-color: var(--primary-pink);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.gallery-item {
  transition: var(--transition);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gallery-overlay h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* FAQ Accordion Section */
.faq-section {
  background: var(--white);
}

.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f8fafc;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-pink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-pink);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Poster Showcase Section */
.poster-section {
  background: var(--bg-sky-light);
}

.poster-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.poster-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 16px;
}

.poster-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.poster-highlights {
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  border: 2px dashed var(--accent-yellow);
}

.ph-item {
  font-size: 1rem;
  color: var(--text-dark);
}

.poster-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.poster-frame {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: center;
}

.poster-full-img {
  max-height: 600px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
}

.poster-full-img:hover {
  transform: scale(1.02);
}

/* Contact Section & Form */
.contact-section {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg-sky-light) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.info-icon {
  font-size: 2rem;
  background: var(--bg-sky-light);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-pink);
}

.sub-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.address-nav-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.direct-map-link {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.direct-map-link.google {
  background: #fee2e2;
  color: #991b1b;
}

.direct-map-link.apple {
  background: #f1f5f9;
  color: #1e293b;
}

.qr-codes-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.qr-item {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

.qr-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--primary-blue-dark);
}

.qr-img {
  width: 100%;
  max-width: 170px;
  margin: 0 auto 10px;
  border-radius: var(--radius-sm);
  border: 2px solid #f1f5f9;
  cursor: pointer;
  transition: var(--transition);
}

.qr-img:hover {
  transform: scale(1.05);
}

.qr-tip {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Tour Appointment Form */
.tour-form-wrapper {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-yellow-light);
}

.form-header {
  margin-bottom: 25px;
}

.form-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #f8fafc;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.15);
}

.btn-block {
  width: 100%;
  padding: 16px;
}

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background: var(--accent-green-light);
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-pink);
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 15px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 30px;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-slogan {
  font-size: 1rem;
  color: var(--accent-yellow);
  margin-bottom: 8px;
}

.footer-location {
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-party-tip {
  color: var(--accent-green);
  font-size: 0.95rem;
  margin-top: 4px;
}

.footer-divider {
  height: 1px;
  background: #334155;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-fmind-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.copyright {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container, .poster-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .poster-frame {
    order: -1;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title .title-en { font-size: 2.6rem; }
  .hero-title .title-cn { font-size: 2.4rem; }

  .qr-codes-box {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .fmind-floating-badge {
    bottom: 15px;
    left: 15px;
    padding: 6px 12px;
  }

  .fmind-badge-sub { display: none; }
  .fmind-company-url { display: none; }
}
