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

/* Google Fonts - Playfair Display + Lato */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --ocean-blue: #0077BE;
  --ocean-blue-dark: #005A9E;
  --ocean-blue-light: #0099DD;
  --sand-gold: #C2B280;
  --sand-gold-light: #D4C89A;
  --sand-gold-dark: #A89860;
  --palm-green: #008000;
  --palm-green-light: #2E8B57;
  --shell-white: #F5F5DC;
  --shell-white-pure: #FAFAF0;
  --text-dark: #2C2C2C;
  --text-medium: #555555;
  --text-light: #888888;
  --bg-cream: #FDF8F0;
  --bg-sand: #F9F3E8;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-strong: 0 12px 40px rgba(0,0,0,0.18);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --gutter: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1.2em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Jammer Block (SEO) ---- */
.jammer-block { display: none !important; }

/* ---- Navigation ---- */
.luxury-nav {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue) 50%, var(--ocean-blue-light) 100%);
  padding: 0;
  position: relative;
  z-index: 100;
}

.luxury-nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.luxury-nav .nav-logo img {
  height: 50px;
  width: auto;
}

.luxury-nav .nav-links {
  display: none;
  list-style: none;
}

.luxury-nav .nav-links li a {
  color: var(--shell-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

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

/* Mobile hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

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

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

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

.mobile-sidebar .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--shell-white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.mobile-sidebar ul {
  list-style: none;
  padding: 0;
}

.mobile-sidebar ul li {
  margin-bottom: 8px;
}

.mobile-sidebar ul li a {
  color: var(--shell-white);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  display: block;
  padding: 14px 20px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
}

.mobile-sidebar ul li a:hover,
.mobile-sidebar ul li a.active {
  color: var(--sand-gold);
  background: rgba(194,178,128,0.1);
  border-left-color: var(--sand-gold);
}

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

.sidebar-overlay.show { display: block; }

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: 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,61,107,0.6) 0%, rgba(0,119,190,0.4) 50%, rgba(0,61,107,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 16px;
}

.hero-content .hero-slogan {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sand-gold-light);
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--sand-gold) 0%, var(--sand-gold-dark) 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(194,178,128,0.4);
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194,178,128,0.6);
  color: white;
}

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

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: ripple-anim 3s ease-out infinite;
}

@keyframes ripple-anim {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 300px; height: 300px; opacity: 0; }
}

/* ---- Magazine Section Layout ---- */
.travel-module {
  padding: 60px 0;
  position: relative;
}

.travel-module:nth-child(even) {
  background: var(--bg-cream);
}

.travel-module:nth-child(odd) {
  background: var(--shell-white-pure);
}

.module-header {
  text-align: center;
  margin-bottom: 40px;
}

.module-header h2 {
  color: var(--ocean-blue-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

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

.module-header .subtitle {
  color: var(--text-light);
  font-style: italic;
  font-family: var(--font-heading);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* Magazine two-column layout */
.magazine-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.magazine-layout .text-col {
  padding: 20px 0;
}

.magazine-layout .text-col p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-medium);
  text-align: justify;
}

.magazine-layout .image-col img {
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.magazine-layout .image-col img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
}

/* ---- Card Grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.luxury-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

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

.luxury-card .card-image {
  height: 220px;
  overflow: hidden;
}

.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-body {
  padding: 24px;
}

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

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

.luxury-card .card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--sand-gold), var(--sand-gold-dark));
  color: white;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ---- Brand Story Section ---- */
.brand-story {
  background: linear-gradient(135deg, #003D6B 0%, var(--ocean-blue-dark) 50%, var(--ocean-blue) 100%);
  color: white;
  padding: 80px 0;
}

.brand-story h2 {
  color: var(--sand-gold-light);
}

.brand-story h2::after {
  background: linear-gradient(90deg, var(--sand-gold), white);
}

.brand-story .story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.brand-story .story-text {
  color: rgba(255,255,255,0.9);
  line-height: 2;
  font-size: 1.05rem;
}

.brand-story .story-text h3 {
  color: var(--sand-gold-light);
  margin: 25px 0 12px;
  font-size: 1.3rem;
}

.brand-story .story-image img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ---- VIP Section ---- */
.vip-section {
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-cream) 100%);
  padding: 80px 0;
}

.vip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.vip-item {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(194,178,128,0.2);
}

.vip-item:hover {
  transform: translateY(-5px);
  border-color: var(--sand-gold);
  box-shadow: var(--shadow-medium);
}

.vip-item .vip-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.vip-item h4 {
  color: var(--ocean-blue-dark);
  margin-bottom: 10px;
}

.vip-item p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ---- APP Download Section ---- */
.app-section {
  background: linear-gradient(135deg, #001F3F 0%, #003D6B 50%, var(--ocean-blue-dark) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194,178,128,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.app-text h2 {
  color: var(--sand-gold-light);
}

.app-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.9;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.app-feature-item {
  background: rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(194,178,128,0.2);
  text-align: center;
}

.app-feature-item .feat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.app-feature-item p {
  font-size: 0.9rem;
  color: var(--sand-gold-light);
  margin: 0;
}

/* ---- Columnist / Blog Section ---- */
.columnist-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  box-shadow: var(--shadow-medium);
}

.blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card .blog-body {
  padding: 20px;
}

.blog-card .blog-date {
  color: var(--sand-gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.blog-card .blog-body h4 {
  margin: 8px 0;
  color: var(--ocean-blue-dark);
}

.blog-card .blog-body p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

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

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

.inner-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,61,107,0.7) 0%, rgba(0,119,190,0.5) 100%);
}

.inner-hero .hero-content {
  position: relative;
  z-index: 3;
  color: white;
}

.inner-hero .hero-content h1 {
  font-size: 2.2rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.inner-hero .hero-content .breadcrumb {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--sand-gold-light);
}

.inner-hero .hero-content .breadcrumb a {
  color: var(--shell-white);
}

/* ---- Inner Page Content ---- */
.inner-content {
  padding: 60px 0;
}

.inner-content .article-body {
  max-width: 900px;
  margin: 0 auto;
}

.inner-content .article-body h2 {
  color: var(--ocean-blue-dark);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sand-gold);
}

.inner-content .article-body h3 {
  color: var(--ocean-blue);
  margin: 30px 0 15px;
}

.inner-content .article-body p {
  color: var(--text-medium);
  line-height: 2;
  margin-bottom: 1.5em;
  text-align: justify;
}

.inner-content .article-body blockquote {
  background: var(--bg-cream);
  border-left: 4px solid var(--sand-gold);
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-medium);
}

.inner-content .image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 30px 0;
}

.inner-content .image-gallery img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

/* ---- Experience Story Box ---- */
.experience-box {
  background: linear-gradient(135deg, var(--ocean-blue-dark), var(--ocean-blue));
  color: white;
  padding: 40px;
  border-radius: 16px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.experience-box::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: rgba(194,178,128,0.2);
  font-family: var(--font-heading);
}

.experience-box h3 {
  color: var(--sand-gold-light);
  margin-bottom: 15px;
}

.experience-box p {
  color: rgba(255,255,255,0.9);
  line-height: 2;
}

/* ---- Philosophy Box ---- */
.philosophy-box {
  background: var(--bg-sand);
  border: 2px solid var(--sand-gold);
  padding: 30px;
  border-radius: 16px;
  margin: 30px 0;
  text-align: center;
}

.philosophy-box h4 {
  color: var(--sand-gold-dark);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.philosophy-box p {
  color: var(--text-medium);
  font-style: italic;
  font-size: 1.05rem;
}

/* ---- APP Download Page ---- */
.app-page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #001020 0%, #001F3F 30%, #003D6B 70%, var(--ocean-blue-dark) 100%);
  overflow: hidden;
}

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

.app-download-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.app-download-content h1 {
  color: var(--sand-gold-light);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
}

.app-download-content .app-intro {
  color: rgba(255,255,255,0.85);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.9;
}

.qr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto 40px;
}

.qr-card {
  background: linear-gradient(135deg, rgba(194,178,128,0.15), rgba(194,178,128,0.05));
  border: 2px solid var(--sand-gold);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.qr-card h4 {
  color: var(--sand-gold-light);
  margin-bottom: 12px;
  font-size: 1rem;
}

.qr-card .qr-placeholder {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-medium);
}

.qr-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 0;
}

.step-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(194,178,128,0.3);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
}

.step-card .step-num {
  background: linear-gradient(135deg, var(--sand-gold), var(--sand-gold-dark));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-card .step-text h4 {
  color: var(--sand-gold-light);
  margin-bottom: 6px;
}

.step-card .step-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
}

/* ---- Footer ---- */
.luxury-footer {
  background: linear-gradient(180deg, #1a3a4a 0%, #0d2633 50%, #091a24 100%);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.luxury-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(194,178,128,0.05));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--sand-gold-light);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--sand-gold);
  padding-left: 5px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(194,178,128,0.15);
  border: 1px solid rgba(194,178,128,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand-gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.social-icons a:hover {
  background: var(--sand-gold);
  color: white;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.payment-icons span {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(194,178,128,0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom .legal-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom .legal-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.footer-bottom .legal-links a:hover {
  color: var(--sand-gold);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-gold), var(--sand-gold-dark));
  color: white;
  font-weight: 900;
  font-size: 0.9rem;
  margin: 15px auto 0;
  border: 2px solid rgba(255,255,255,0.3);
}

.certification-info {
  background: rgba(194,178,128,0.08);
  border: 1px solid rgba(194,178,128,0.2);
  border-radius: 12px;
  padding: 16px;
  margin-top: 15px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ---- Sunlight Animation ---- */
@keyframes sunlight {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.sunlight-effect {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194,178,128,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: sunlight 4s ease-in-out infinite;
  pointer-events: none;
}

/* ---- Page Turn Effect ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ---- Responsive: Tablet ---- */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }

  .hero-content h1 { font-size: 3.5rem; }
  .hero-content .hero-slogan { font-size: 1.5rem; }

  .magazine-layout {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .inner-content .image-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

/* ---- Responsive: Desktop ---- */
@media (min-width: 1024px) {
  .luxury-nav .nav-links {
    display: flex;
    gap: 8px;
  }

  .nav-toggle { display: none; }

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

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

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

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

  .brand-story .story-content {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .inner-content .image-gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .step-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Print ---- */
@media print {
  .luxury-nav, .luxury-footer, .mobile-sidebar, .sidebar-overlay { display: none; }
  body { color: black; background: white; }
}

/* ---- APP Download Section ---- */
.app-download-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
  color: #fff;
}

.app-download-section h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--sand-gold);
  margin-bottom: 16px;
}

.app-download-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  min-width: 180px;
}

.download-btn.ios {
  background: #000;
  border: 1px solid #333;
}

.download-btn.android {
  background: #3DDC84;
  color: #000;
  border: 1px solid #3DDC84;
}

.download-btn.apk {
  background: var(--ocean-blue);
  border: 1px solid var(--ocean-blue);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.download-btn .btn-icon {
  font-size: 1.8rem;
}

.download-btn .btn-text {
  text-align: left;
  line-height: 1.3;
}

.download-btn .btn-text small {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ---- Review Grid ---- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.review-card {
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid var(--sand-gold);
  transition: var(--transition-smooth);
}

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

.review-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card p {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 12px;
  line-height: 1.7;
}

.reviewer {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 700;
}

/* ---- APP Hero variant ---- */
.app-hero {
  min-height: 40vh;
}

.app-hero .hero-overlay {
  opacity: 1;
}

/* ---- Responsive: Review & Download ---- */
@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .app-download-section {
    padding: 32px 20px;
  }

  .app-download-section h3 {
    font-size: 1.4rem;
  }
}
