:root {
  --bg-main: #060608;
  --bg-card: rgba(18, 18, 24, 0.75);
  --bg-card-hover: rgba(28, 28, 38, 0.9);
  --border-neon: rgba(255, 255, 255, 0.22);
  --border-neon-active: rgba(255, 255, 255, 0.85);
  --glow-white: 0 0 25px rgba(255, 255, 255, 0.35);
  --glow-strong: 0 0 35px rgba(255, 255, 255, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  --text-main: #ffffff;
  --text-muted: #a1a1b5;
  --text-dim: #6e6e82;
  --accent-silver: #e2e8f0;
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Header & Nav */
header {
  position: relative;
  width: 100%;
  padding: 1.5rem 2rem;
  background: rgba(6, 6, 8, 0.85);
  border-bottom: 1px solid var(--border-neon);
  z-index: 1000;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-logo svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.7);
}

.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
  border: 1px solid var(--border-neon);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.btn-neon:hover {
  border-color: #fff;
  box-shadow: var(--glow-strong);
  transform: translateY(-2px);
  color: #000;
  background: #ffffff;
}

.btn-neon-outline {
  background: transparent;
  border: 1px solid var(--border-neon);
  color: #ffffff;
}

.btn-neon-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow-white);
  color: #ffffff;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 5rem 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #a1a1b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gloss-card-hero {
  width: 100%;
  max-width: 500px;
  background: rgba(20, 20, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), var(--glow-white);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.gloss-card-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.08) 50%, transparent 55%);
  pointer-events: none;
}

/* Grid & Cards */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--border-neon);
  background: rgba(255,255,255,0.05);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-silver);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.place-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
}

.place-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-neon-active);
  box-shadow: var(--glow-white);
  background: var(--bg-card-hover);
}

.card-img-wrap {
  position: relative;
  height: 230px;
  width: 100%;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  margin-top: auto;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Detail Page Layout */
.detail-hero {
  padding: 4rem 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-header {
  margin-bottom: 2rem;
}

.detail-img-large {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border-neon);
  box-shadow: var(--glow-white);
  margin-bottom: 3rem;
}

.detail-content-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--accent-silver);
}

.detail-content-body h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin: 2rem 0 1rem;
}

.detail-content-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin: 1.5rem 0 0.75rem;
}

.detail-content-body p {
  margin-bottom: 1.5rem;
}

.detail-content-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.detail-content-body li {
  margin-bottom: 0.5rem;
}

.detail-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 1.8rem;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

.detail-info-box h3 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 1rem;
}

.detail-info-list {
  list-style: none;
  padding-left: 0 !important;
}

.detail-info-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.detail-info-list li:last-child {
  border-bottom: none;
}

/* Forms */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-neon);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

/* Cookie Preferences & Policy Tables */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

.cookie-table th, .cookie-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-table th {
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
  color: #ffffff;
}

.cookie-table td {
  color: var(--text-muted);
}

.preference-box {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(12px);
}

.preference-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 1rem;
}

.preference-item:last-child {
  border-bottom: none;
}

.preference-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.preference-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* Custom Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-neon);
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ffffff;
}

input:checked + .slider:before {
  transform: translateX(24px);
  background-color: #000000;
}

input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Universal Footer */
footer {
  background: #030304;
  border-top: 1px solid var(--border-neon);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.footer-address {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 500px;
  background: rgba(12, 12, 16, 0.95);
  border: 1px solid var(--border-neon-active);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.9), var(--glow-white);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #08080a;
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-neon);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .preference-item {
    flex-direction: column;
    align-items: flex-start;
  }
}