/* ===== DESIGN TOKENS ===== */
:root {
  --clr-dark: #1a1a2e;
  --clr-dark-light: #252545;
  --clr-gold: #c9a84c;
  --clr-gold-light: #e0c96e;
  --clr-gold-glow: rgba(201, 168, 76, 0.25);
  --clr-warm: #f8f6f0;
  --clr-warm-dark: #eee9dd;
  --clr-text: #2d2d3a;
  --clr-text-light: #6b6b80;
  --clr-white: #ffffff;
  --font: "Inter", -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--clr-text);
  background: var(--clr-warm);
  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;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--clr-gold-glow);
  }

  50% {
    box-shadow: 0 0 0 12px transparent;
  }
}

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

  100% {
    background-position: 200% center;
  }
}

@keyframes goldLine {
  0% {
    width: 0;
  }

  100% {
    width: 80px;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 246, 240, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(248, 246, 240, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--clr-dark);
  transition: var(--transition);
}

.logo:hover {
  color: var(--clr-gold);
}

.logo-dot {
  color: var(--clr-gold);
  transition: var(--transition);
}

.logo:hover .logo-dot {
  transform: scale(1.3);
}

.nav-desktop {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-light);
  transition: var(--transition);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--clr-gold);
}

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

.btn-book-header {
  padding: 10px 24px;
  background: var(--clr-gold);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-book-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.btn-book-header:hover::before {
  left: 100%;
}

.btn-book-header:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-dark);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 24px 20px;
  gap: 12px;
  background: rgba(248, 246, 240, 0.98);
}

.nav-mobile.open {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {

  .nav-desktop,
  .header-inner>.btn-book-header {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 26, 46, 0.6) 0%,
      rgba(26, 26, 46, 0.35) 40%,
      rgba(26, 26, 46, 0.2) 60%,
      var(--clr-warm) 100%);
}

/* Decorative gold line at bottom of hero */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 99px;
  background: rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--clr-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--clr-white);
  color: var(--clr-dark);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.8s ease 0.8s both;
  position: relative;
  overflow: hidden;
}

.btn-hero::after {
  content: "↓";
  margin-left: 4px;
  animation: bounceArrow 1.5s ease infinite;
  display: inline-block;
}

.btn-hero:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--clr-gold-glow);
}

/* ===== BOOKING ===== */
.booking-section {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding-bottom: 60px;
}

.booking-box {
  background: var(--clr-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease;
}

.booking-box:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.booking-sidebar {
  background: linear-gradient(135deg, var(--clr-dark) 0%, #2a2a4a 100%);
  color: var(--clr-white);
  padding: 40px 32px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.booking-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.08) 1px,
      transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.booking-sidebar h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.booking-sidebar p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 16px;
  position: relative;
}

.booking-check {
  color: var(--clr-gold);
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
}

.booking-cta-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: var(--clr-white);
}

.booking-cta-content {
  text-align: center;
  max-width: 450px;
}

.booking-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 12px;
}

.booking-cta-content p {
  color: var(--clr-text-light);
  margin-bottom: 24px;
}

.btn-book-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-book-primary:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
  .booking-box {
    flex-direction: column;
  }

  .booking-sidebar {
    min-width: unset;
    padding: 24px;
  }

  .booking-cta-wrap {
    padding: 40px 24px;
  }
}

/* ===== USPs ===== */
.usps {
  padding: 40px 0 80px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-card {
  background: var(--clr-white);
  padding: 36px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--clr-gold),
      var(--clr-gold-light),
      var(--clr-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
}

.usp-card:hover::before {
  transform: scaleX(1);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.usp-card:hover .usp-icon {
  transform: scale(1.1);
}

.usp-icon--checkin {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #b45309;
}

.usp-icon--parking {
  background: linear-gradient(135deg, #e8f4fd, #bfdbfe);
  color: #2563eb;
}

.usp-icon--wifi {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #059669;
}

.usp-icon--breakfast {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #db2777;
}

.usp-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-dark);
}

.usp-card p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION SHARED ===== */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 16px;
}

/* Gold underline under section headers */
.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--clr-white);
  position: relative;
  overflow: hidden;
}

/* Decorative circle */
.about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  pointer-events: none;
}

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

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius);
  opacity: 0.3;
  transition: all 0.5s ease;
  z-index: 0;
}

.about-image:hover::before {
  top: -8px;
  left: -8px;
  opacity: 0.6;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  margin-top: 16px;
  border-radius: 2px;
}

.about-text p {
  color: var(--clr-text-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-signature {
  color: var(--clr-gold) !important;
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem !important;
  margin-top: 24px !important;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image::before {
    display: none;
  }
}

/* ===== ROOMS ===== */
.rooms {
  padding: 100px 0;
  background: var(--clr-warm);
  position: relative;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.room-card--featured {
  border: 2px solid var(--clr-gold);
}

.room-card--featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg,
      var(--clr-gold),
      var(--clr-gold-light),
      var(--clr-gold));
  z-index: -1;
  animation: pulse 3s ease infinite;
}

.room-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-white);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--clr-gold-glow);
}

.room-img {
  height: 200px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.1);
}

.room-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 12px;
}

.room-body ul {
  flex: 1;
  margin-bottom: 20px;
}

.room-body li {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.room-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.room-card:hover li::before {
  transform: scale(1.3);
}

.btn-room {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--clr-dark);
  color: var(--clr-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-room::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--clr-dark);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-room:hover::before {
  left: 0;
}

.btn-room:hover {
  color: var(--clr-white);
}

.btn-room--gold {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

.btn-room--gold::before {
  background: var(--clr-gold-light);
}

.btn-room--gold:hover {
  border-color: var(--clr-gold-light);
}

@media (max-width: 1000px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .room-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CLINIC BANNER ===== */
.clinic-banner {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--clr-dark) 0%,
      #2a2a4a 50%,
      var(--clr-dark-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

/* Decorative dots pattern */
.clinic-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.06) 1px,
      transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.clinic-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.clinic-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}

.clinic-text {
  flex: 1;
}

.clinic-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.clinic-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.clinic-text strong {
  color: var(--clr-gold-light);
}

.btn-clinic {
  padding: 14px 28px;
  background: var(--clr-gold);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-clinic::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.btn-clinic:hover::before {
  left: 100%;
}

.btn-clinic:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
  .clinic-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== LOCATION ===== */
.location {
  padding: 100px 0;
  background: var(--clr-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 16px;
}

.location-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  margin-top: 16px;
  border-radius: 2px;
}

.location-text>p {
  color: var(--clr-text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.loc-item {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: var(--clr-warm);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-gold);
  transition: all 0.3s ease;
}

.loc-item:hover {
  transform: translateX(6px);
  border-left-color: var(--clr-gold-light);
  background: var(--clr-warm-dark);
}

.loc-item strong {
  font-size: 1rem;
  color: var(--clr-dark);
}

.loc-item span {
  font-size: 0.85rem;
  color: var(--clr-text-light);
}

.anfahrt-details {
  margin-top: 8px;
}

.anfahrt-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--clr-gold);
  font-size: 0.95rem;
  padding: 8px 0;
  list-style: none;
  transition: var(--transition);
}

.anfahrt-details summary:hover {
  color: var(--clr-gold-light);
}

.anfahrt-details summary::before {
  content: "▸ ";
  transition: transform 0.3s;
  display: inline-block;
}

.anfahrt-details[open] summary::before {
  content: "▾ ";
}

.anfahrt-content {
  padding: 16px 0;
  color: var(--clr-text-light);
  font-size: 0.9rem;
  animation: fadeInUp 0.4s ease;
}

.anfahrt-content h3 {
  color: var(--clr-dark);
  margin: 12px 0 6px;
  font-size: 0.95rem;
}

.anfahrt-content p {
  margin-bottom: 12px;
}

.location-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
  transition: box-shadow 0.4s ease;
}

.location-map:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  pointer-events: none;
  border-left: 3px solid var(--clr-gold);
}

.map-overlay strong {
  display: block;
  font-size: 1rem;
  color: var(--clr-dark);
}

.map-overlay span {
  font-size: 0.85rem;
  color: var(--clr-text-light);
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 350px;
  }
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--clr-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--clr-white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-top-color: var(--clr-gold);
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--clr-dark);
}

.contact-card p {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--clr-gold);
  font-weight: 600;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--clr-gold-light);
  text-decoration: underline;
}

.contact-small {
  font-size: 0.85rem !important;
  color: var(--clr-text-light) !important;
  opacity: 0.7;
  margin-top: 8px !important;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--clr-gold),
      var(--clr-gold-light),
      var(--clr-gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--clr-white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h3 {
  color: var(--clr-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer p,
.footer li {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer a {
  transition: var(--transition);
}

.footer a:hover {
  color: var(--clr-gold);
}

.footer-links ul {
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== COOKIE ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-inner {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(16px);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.cookie-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cookie-text strong {
  color: var(--clr-white);
  display: block;
  margin-bottom: 4px;
}

.cookie-text a {
  color: var(--clr-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-decline {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 20px;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--clr-white);
}

.btn-cookie-accept {
  background: var(--clr-gold);
  color: var(--clr-white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--clr-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Slide from left for about image */
.about-image.animate-in {
  transform: translateX(-40px);
}

.about-image.animate-in.visible {
  transform: translateX(0);
}

/* Slide from right for about text */
.about-text.animate-in {
  transform: translateX(40px);
}

.about-text.animate-in.visible {
  transform: translateX(0);
}

/* Slide from left for location text */
.location-text.animate-in {
  transform: translateX(-40px);
}

.location-text.animate-in.visible {
  transform: translateX(0);
}

/* Slide from right for map */
.location-map.animate-in {
  transform: translateX(40px);
}

.location-map.animate-in.visible {
  transform: translateX(0);
}

/* Staggered cards */
.usp-card:nth-child(1).animate-in {
  transition-delay: 0s;
}

.usp-card:nth-child(2).animate-in {
  transition-delay: 0.1s;
}

.usp-card:nth-child(3).animate-in {
  transition-delay: 0.2s;
}

.usp-card:nth-child(4).animate-in {
  transition-delay: 0.3s;
}

.room-card:nth-child(1).animate-in {
  transition-delay: 0s;
}

.room-card:nth-child(2).animate-in {
  transition-delay: 0.1s;
}

.room-card:nth-child(3).animate-in {
  transition-delay: 0.2s;
}

.room-card:nth-child(4).animate-in {
  transition-delay: 0.3s;
}

.contact-card:nth-child(1).animate-in {
  transition-delay: 0s;
}

.contact-card:nth-child(2).animate-in {
  transition-delay: 0.1s;
}

.contact-card:nth-child(3).animate-in {
  transition-delay: 0.2s;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.legal-page h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin: 32px 0 12px;
}

.legal-page p {
  color: var(--clr-text-light);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-page a {
  color: var(--clr-gold);
  text-decoration: underline;
}

/* ===== SELECTION ===== */
::selection {
  background: var(--clr-gold);
  color: var(--clr-white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-warm);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold-light);
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 95vh;
  max-height: 950px;
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  z-index: 1;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.booking-modal.active .booking-modal-content {
  transform: scale(1) translateY(0);
}

.booking-modal-header {
  text-align: center;
  padding: 24px 60px 20px;
  background: var(--clr-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.booking-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 4px;
}

.booking-modal-subtitle {
  font-size: 0.95rem;
  color: var(--clr-text-light);
  margin: 0;
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-warm);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--clr-dark);
  z-index: 10;
  transition: var(--transition);
}

.booking-modal-close:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: rotate(90deg);
}

.booking-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  flex: 1;
  background: #fff;
  margin-top: 0;
}

@media (max-width: 768px) {
  .booking-modal-content {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .booking-modal-content iframe {
    margin-top: 0;
  }

  .booking-modal-header {
    padding: 20px 50px 16px 20px;
    text-align: left;
  }

  .booking-modal-close {
    top: 12px;
    right: 12px;
    background: var(--clr-white);
    box-shadow: var(--shadow);
  }
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  background: var(--clr-white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-top: 56px;
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-wrapper>p {
  color: var(--clr-text-light);
  text-align: center;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #faf9f6;
  color: var(--clr-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px var(--clr-gold-glow);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--clr-text-light);
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--clr-gold);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.form-status {
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.success-big {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.5s ease;
}

.success-big svg {
  margin-bottom: 20px;
}

.success-big h3 {
  font-size: 2rem;
  color: #10b981;
  margin-bottom: 12px;
}

.success-big p {
  font-size: 1.1rem;
  color: var(--clr-text);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 20px;
  }
}