/* ========================================
   PLAYSHUFFLEFORG — PREMIUM TRAVEL UI
   ======================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050505;
  color: #cfcfcf;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: #fff;
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(135deg, #d4af37, #ff7a18);
  z-index: 10000;
  transition: width 0.05s linear;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-ring {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #d4af37;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, #d4af37, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
  padding: 0.7rem 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  z-index: 10;
}

.logo-icon {
  color: #d4af37;
  font-size: 1.5rem;
}

.nav-desktop {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(135deg, #d4af37, #ff7a18);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.cta-primary {
  background: linear-gradient(135deg, #d4af37, #ff7a18);
  color: #050505;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.cta-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  background: linear-gradient(135deg, #d4af37, #ff7a18);
  color: #050505;
  border-radius: 50px;
}

.cta-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
}

.header-cta {
  display: none;
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  z-index: 9999;
  transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}

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

.mobile-menu-inner {
  padding: 5rem 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #d4af37;
  padding-left: 0.5rem;
}

.mobile-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.4) 0%,
    rgba(5, 5, 5, 0.6) 40%,
    rgba(5, 5, 5, 0.85) 100%
  );
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #d4af37;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.6), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d4af37;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   GLASS CARD
   ======================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
}

/* ========================================
   FEATURED PLACES
   ======================================== */
.places-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.place-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.place-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.08);
}

.place-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.place-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.place-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent);
}

.place-card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
}

.place-card-content {
  padding: 1.8rem;
}

.place-card-region {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4af37;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.place-card-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.place-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.place-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.place-meta-item {
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========================================
   HIGHLIGHTS
   ======================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.highlight-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ========================================
   CINEMATIC QUOTE
   ======================================== */
.quote-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.75);
}

.cinematic-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: #d4af37;
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cinematic-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.cinematic-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: #d4af37;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03), transparent 50%);
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: rgba(212, 175, 55, 0.5);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-btn {
  width: 100%;
}

.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.8rem;
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-short {
  min-height: 50vh;
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg-solid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111111, #050505);
}

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

.page-hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.detail-hero .page-hero-content {
  padding-top: 10rem;
}

.back-link {
  display: inline-block;
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 0.7;
}

/* ========================================
   DETAIL PAGE
   ======================================== */
.detail-intro {
  margin-bottom: 3rem;
}

.detail-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.quick-fact {
  text-align: center;
}

.quick-fact-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.quick-fact-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.detail-body h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.detail-body h2:first-child {
  margin-top: 0;
}

.detail-body h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
  color: #d4af37;
}

.detail-body p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

.detail-image {
  border-radius: 16px;
  margin: 2rem 0;
  width: 100%;
}

.attractions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.attraction-item {
  padding: 1.5rem;
}

.attraction-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.attraction-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.detail-tips {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.detail-tips li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.detail-tips li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 0.7rem;
  top: 0.35rem;
}

.detail-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

/* ========================================
   PLACES FULL SECTION
   ======================================== */
.place-full-section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.place-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.place-full-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.place-full-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.place-full:hover .place-full-image img {
  transform: scale(1.03);
}

.place-full-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.place-full-content h3 {
  font-size: 1.1rem;
  color: #d4af37;
  margin: 1.5rem 0 0.5rem;
}

.place-full-content p {
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.place-attractions {
  padding-left: 0;
  margin: 0.5rem 0 1.5rem;
}

.place-attractions li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
}

.place-attractions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d4af37;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  padding: 2.5rem 2rem;
}

.about-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

.about-card p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-beliefs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.belief-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.belief-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info-card {
  padding: 2.5rem 2rem;
}

.contact-info-card h2 {
  margin-bottom: 1rem;
  color: #d4af37;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.contact-detail-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Contact Form */
.contact-form-wrap .glass-card {
  padding: 2.5rem 2rem;
}

.contact-form-wrap h2 {
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select.form-input {
  cursor: pointer;
}

select.form-input option {
  background: #111;
  color: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #ff7a18);
  color: #050505;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-card {
  padding: 2.5rem 2rem;
}

.legal-card h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  color: #d4af37;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.1rem;
  margin: 1.2rem 0 0.5rem;
}

.legal-card p {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.legal-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-card ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.legal-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d4af37;
}

.legal-card a {
  color: #d4af37;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: #ff7a18;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-tagline {
  margin-top: 0.3rem;
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .place-card-large {
    grid-column: span 2;
  }

  .place-card-wide {
    grid-column: span 2;
  }

  .place-card-large .place-card-image {
    height: 320px;
  }

  .newsletter-input-group {
    flex-direction: row;
  }

  .newsletter-btn {
    width: auto;
  }

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

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

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

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

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

/* ========================================
   RESPONSIVE — DESKTOP
   ======================================== */
@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

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

  .hero-content {
    padding-top: 7rem;
  }

  .places-showcase {
    grid-template-columns: repeat(3, 1fr);
  }

  .place-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .place-card-large .place-card-image {
    height: 380px;
  }

  .place-card-wide {
    grid-column: span 2;
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .place-full {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .place-full-reverse {
    direction: rtl;
  }

  .place-full-reverse > * {
    direction: ltr;
  }

  .place-full-image img {
    height: 450px;
  }

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

  .attractions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   RESPONSIVE — LARGE DESKTOP
   ======================================== */
@media (min-width: 1280px) {
  .hero-content {
    max-width: 900px;
    padding-top: 7rem;
  }

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

  .section {
    padding: 7rem 0;
  }
}

/* ========================================
   ANIMATIONS (GSAP TRIGGERS)
   ======================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}

/* Smooth transitions for all interactive elements */
button, a, input, textarea, select {
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 3px;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-bg-img {
    transform: none !important;
  }
}