/* ============================================
   澳门旅游酒店 · 奢华之旅 - 主样式表
   Magazine-style Column Layout
   ============================================ */

/* Google Fonts - 本地化备用 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* CSS Variables */
:root {
  --ocean-blue: #0077BE;
  --ocean-blue-dark: #005A8E;
  --ocean-blue-light: #4DA8DA;
  --sand-gold: #C2B280;
  --sand-gold-light: #D4C89A;
  --sand-gold-dark: #A89960;
  --palm-green: #008000;
  --palm-green-light: #2E8B57;
  --shell-white: #F5F5DC;
  --shell-white-pure: #FAFAF0;
  --dark-text: #2C2C2C;
  --light-text: #666666;
  --bg-cream: #FDF8F0;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(194, 178, 128, 0.3);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--shell-white-pure);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ocean-blue-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--dark-text);
}

a {
  color: var(--ocean-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--sand-gold);
}

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

/* ============================================
   Navigation
   ============================================ */
.luxury-nav {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue) 100%);
  padding: 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  height: 45px;
  width: auto;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--sand-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li a {
  display: block;
  padding: 0 1rem;
  color: var(--shell-white);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 70px;
  transition: var(--transition-smooth);
  border-bottom: 3px solid transparent;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--sand-gold);
  border-bottom-color: var(--sand-gold);
  background: rgba(255,255,255,0.05);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--sand-gold);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Sidebar Menu */
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--ocean-blue-dark) 0%, #003D5C 100%);
  z-index: 999;
  transition: right 0.4s ease;
  padding: 80px 2rem 2rem;
  overflow-y: auto;
}

.mobile-sidebar.open {
  right: 0;
}

.mobile-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.show {
  opacity: 1;
}

.mobile-sidebar .sidebar-links {
  list-style: none;
}

.mobile-sidebar .sidebar-links li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-sidebar .sidebar-links li a {
  display: block;
  padding: 1rem 0;
  color: var(--shell-white);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  transition: var(--transition-smooth);
}

.mobile-sidebar .sidebar-links li a:hover {
  color: var(--sand-gold);
  padding-left: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,30,60,0.4) 0%, rgba(0,60,100,0.6) 50%, rgba(0,30,60,0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-content .hero-slogan {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sand-gold-light);
  font-style: italic;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--sand-gold) 0%, var(--sand-gold-dark) 100%);
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(194, 178, 128, 0.5);
  color: #fff;
}

/* Water Ripple Effect */
.ripple-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
  overflow: hidden;
}

.ripple-wave {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
}

.ripple-wave svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   Magazine Layout Sections
   ============================================ */
.magazine-section {
  padding: 5rem 0;
  position: relative;
}

.magazine-section:nth-child(even) {
  background: var(--bg-cream);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--ocean-blue-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--sand-gold), var(--ocean-blue));
  border-radius: 2px;
}

.section-header .section-subtitle {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-top: 1.5rem;
  font-style: italic;
}

/* Magazine Two Column Layout */
.magazine-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.magazine-two-col.reverse {
  direction: rtl;
}

.magazine-two-col.reverse > * {
  direction: ltr;
}

.magazine-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.magazine-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.magazine-img-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.9rem;
  font-style: italic;
}

.magazine-text-content {
  padding: 1rem 0;
}

.magazine-text-content h3 {
  margin-bottom: 1.2rem;
  color: var(--ocean-blue-dark);
}

.magazine-text-content p {
  line-height: 1.9;
  color: #444;
}

/* Three Column Grid */
.magazine-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card Styles */
.luxury-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.luxury-card .card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.luxury-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.luxury-card .card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--sand-gold), var(--sand-gold-dark));
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.luxury-card .card-body {
  padding: 1.5rem;
}

.luxury-card .card-body h4 {
  margin-bottom: 0.8rem;
  color: var(--ocean-blue-dark);
  font-size: 1.2rem;
}

.luxury-card .card-body p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.7;
}

.luxury-card .card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.luxury-card .card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--sand-gold-dark);
  font-weight: 700;
}

.luxury-card .card-link {
  color: var(--ocean-blue);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Brand Story Section */
.brand-story {
  background: linear-gradient(135deg, #fff 0%, var(--bg-cream) 100%);
}

.brand-story-content {
  max-width: 900px;
  margin: 0 auto;
}

.brand-story-content .story-chapter {
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  border-left: 3px solid var(--sand-gold);
}

.brand-story-content .story-chapter h4 {
  color: var(--sand-gold-dark);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.brand-story-content .story-chapter p {
  font-size: 1.05rem;
  line-height: 2;
  color: #444;
}

/* Feature Icons Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-blue-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ocean-blue-dark);
}

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

/* VIP Section */
.vip-section {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, #003D5C 100%);
  color: #fff;
  padding: 5rem 0;
}

.vip-section h2 {
  color: var(--sand-gold);
}

.vip-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vip-benefit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(194, 178, 128, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.vip-benefit-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  border-color: var(--sand-gold);
}

.vip-benefit-card .vip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vip-benefit-card h4 {
  color: var(--sand-gold);
  margin-bottom: 0.8rem;
}

.vip-benefit-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* APP Download Section */
.app-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-features {
  list-style: none;
}

.app-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

.app-features li .app-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sand-gold), var(--sand-gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.app-qr-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.qr-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--sand-gold);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.qr-card .qr-placeholder {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--ocean-blue);
}

.qr-card h4 {
  color: var(--sand-gold);
  font-size: 1.1rem;
}

/* Travel Blog / Column Section */
.travel-column {
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.blog-main-article {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.blog-main-article .blog-image {
  height: 350px;
  overflow: hidden;
}

.blog-main-article .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-main-article .blog-content {
  padding: 2rem;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-sidebar-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-cream);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.blog-sidebar-item:hover {
  box-shadow: var(--shadow-soft);
}

.blog-sidebar-item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.blog-sidebar-item .sidebar-text h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.blog-sidebar-item .sidebar-text p {
  font-size: 0.85rem;
  color: var(--light-text);
}

/* ============================================
   Footer - Beach Sand Style
   ============================================ */
.luxury-footer {
  background: linear-gradient(180deg, var(--sand-gold) 0%, #B8A670 30%, #A89960 100%);
  color: var(--dark-text);
  padding: 4rem 0 0;
  position: relative;
}

.luxury-footer::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30'%3E%3Cpath fill='%23C2B280' d='M0,15 C240,0 480,30 720,15 C960,0 1200,30 1440,15 L1440,30 L0,30 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--ocean-blue-dark);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--ocean-blue);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--dark-text);
  font-size: 0.95rem;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--ocean-blue-dark);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--ocean-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--ocean-blue-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.5rem 0;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--dark-text);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.footer-payment {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-payment .pay-icon {
  background: rgba(255,255,255,0.5);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ocean-blue-dark);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 3px solid var(--ocean-blue-dark);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ocean-blue-dark);
  margin: 1rem auto;
}

/* ============================================
   Inner Page Styles
   ============================================ */
.page-hero {
  height: 50vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,30,60,0.3) 0%, rgba(0,60,100,0.7) 100%);
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero .page-hero-content h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
}

.page-hero .page-hero-content .page-subtitle {
  font-size: 1.2rem;
  color: var(--sand-gold-light);
  font-style: italic;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--bg-cream);
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-list li::after {
  content: '>';
  margin-left: 0.5rem;
  color: var(--light-text);
}

.breadcrumb-list li:last-child::after {
  content: '';
}

.breadcrumb-list li a {
  color: var(--ocean-blue);
}

.breadcrumb-list li:last-child {
  color: var(--light-text);
}

/* Content Article */
.content-article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.content-article h2 {
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sand-gold);
}

.content-article h3 {
  margin: 2rem 0 1rem;
  color: var(--ocean-blue);
}

.content-article p {
  text-indent: 2em;
  margin-bottom: 1.2rem;
  line-height: 2;
}

.content-article .article-image {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.content-article .article-image img {
  width: 100%;
  height: auto;
}

.content-article .article-image figcaption {
  padding: 0.8rem 1rem;
  background: var(--bg-cream);
  font-size: 0.9rem;
  color: var(--light-text);
  font-style: italic;
  text-align: center;
  text-indent: 0;
}

/* Experience Story Box */
.experience-story {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
  border-left: 4px solid var(--sand-gold);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-soft);
}

.experience-story h4 {
  color: var(--sand-gold-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.experience-story p {
  text-indent: 2em;
  font-style: italic;
  color: #555;
}

/* Philosophy Box */
.travel-philosophy {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue) 100%);
  color: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  margin: 2rem 0;
  text-align: center;
}

.travel-philosophy h4 {
  color: var(--sand-gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.travel-philosophy p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  text-indent: 0;
  line-height: 1.8;
}

/* Recommendation Cards in Inner Pages */
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-cream);
  padding: 3rem 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--ocean-blue-dark);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--bg-cream);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sunshine effect */
.sunshine-overlay {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Page turn effect */
.page-turn-enter {
  animation: pageTurnIn 0.6s ease both;
}

@keyframes pageTurnIn {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateY(-5deg);
  }
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(0);
  }
}

/* ============================================
   APP Download Page Specific
   ============================================ */
.app-download-hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0f2040 100%);
  min-height: 100vh;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.app-step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(194,178,128,0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.app-step-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--sand-gold);
}

.app-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sand-gold), var(--sand-gold-dark));
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.app-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.app-advantage-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(194,178,128,0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
}

.app-advantage-item h4 {
  color: var(--sand-gold);
  margin: 0.8rem 0 0.5rem;
}

.app-advantage-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */
@media (max-width: 1024px) {
  .magazine-three-col,
  .recommendation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vip-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }

  .nav-links { display: none; }

  .nav-toggle { display: flex; }

  .mobile-sidebar { display: block; }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .hero-slogan {
    font-size: 1.2rem;
  }

  .magazine-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .magazine-two-col.reverse {
    direction: ltr;
  }

  .magazine-three-col,
  .recommendation-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .vip-benefits {
    grid-template-columns: 1fr;
  }

  .app-content {
    grid-template-columns: 1fr;
  }

  .app-qr-section {
    flex-direction: column;
    align-items: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .magazine-section {
    padding: 3rem 0;
  }

  .page-hero {
    height: 40vh;
    min-height: 280px;
  }

  .page-hero .page-hero-content h1 {
    font-size: 2.2rem;
  }

  .app-advantage-grid {
    grid-template-columns: 1fr;
  }

  .content-article {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .nav-container { height: 60px; }

  .nav-logo-text { font-size: 1.1rem; }

  .nav-logo img { height: 35px; }

  .hero-section {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-container {
    padding: 0 1rem;
  }

  .luxury-card .card-image {
    height: 200px;
  }
}
