/* =========================================================
   DESIGN TOKENS
========================================================= */
:root {
  --primary: #233d00;
  --secondary: #3d5f0d;
  --information: #0a58ca;
  --success: #198754;
  --warning: #ffc107;
  --error: #dc3545;
  --danger: #dc2626;
  --accent-red: #7f1d1d;
  --black: #111111;
  --text: #2b2b2b;
  --muted: #6b7280;
  --background: #f8f7f4;
  --card: #ffffff;
  --border: #d9d6cf;

  --space-xs: 8px;
  --space-sm: 14px;
  --space-md: 18px;
  --space-lg: 24px;
  --space-xl: 28px;
  --space-2xl: 40px;

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 12px 42px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 52px rgba(0, 0, 0, 0.12);
}

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

/* =========================================================
   GLOBAL LAYOUT SYSTEM
========================================================= */

html[lang="ka"] body {
  font-family: "Noto Sans Georgian", "DejaVu Sans", sans-serif;
}

body {
  margin: 0px;
  background: linear-gradient(to bottom, #f8f8f4, #f1f1ec);
  font-family: "Inter", sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* OUTER APPLICATION SHELL */

.app-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  /* padding: 40px 24px; */
}

/* SHARED PAGE SYSTEM */

.page {
  width: 100%;
  max-width: 1600px;
  background: var(--background);
  border-radius: 32px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-medium);
  animation: pageFade 0.35s ease;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 15px;
  display: none;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  opacity: 0.8;
  transition: 0.2s ease;
}

.show {
  display: flex;
  background: var(--primary);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layout {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  width: 120px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.eyebrow-secondary {
  letter-spacing: 1.5px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.welcome-hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
  width: 240px;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 18px;
  font-weight: 600;
}

.intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 18px;
}

.hero-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.hero-image:hover,
.dashboard-image:hover,
.guide-hero-image:hover {
  transform: scale(1.015);
  filter: brightness(1.02);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.welcome-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.welcome-message-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.welcome-message-container h2 {
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
}

.welcome-message-container p {
  line-height: 1.8;
  color: var(--muted);
}

.card-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.wifi-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wifi-card h2 {
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
}

.wifi-details {
  display: flex;
  gap: 40px;
}

.wifi-qr {
  width: 100%;
  height: auto;
  max-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .wifi-qr-container {
    width: 100%;
    display: flex;
    justify-content: left;
  }

  .detail-label {
    width: 50%;
  }

  .wifi-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .wifi-qr {
    width: 100%;
    height: auto;
  }

  .wifi-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.detail-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}

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

.info-grid h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.info-grid p:last-child {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  background: var(--primary);
  color: white;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
  max-width: 50vw;
}

.footer-title {
  font-size: 22px;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  a.contact-link {
    font-size: 18px;
  }
}

.host-contact {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 600;
  /* width: calc(100% - 10px); */
}

.host-contact a {
  color: white;
  text-decoration: none;
  transition: 0.2s ease;
}

.host-contact a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

/* TOPBAR */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.topbar-right {
  text-align: right;
}

.location-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

.property-name {
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
}

/* SECTION */
section {
  position: relative;
}

section + section {
  margin-top: 10px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.8;
}

/* UTILITIES */

.utilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.utility-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.utility-icon {
  font-size: 22px;
}

.utility-card h3 {
  font-size: 24px;
}

.utility-card p {
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
}

.utility-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.utility-card a:hover {
  color: rgba(35, 61, 0, 0.9);
  text-decoration: underline;
}

.utility-contact {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

/* Google iframe */
iframe.google-maps-iframe,
.google-maps-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

/* MAP */

.map-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 20px;
}

#map {
  height: 350px;
  border-radius: 22px;
  overflow: hidden;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-item h4 {
  margin-bottom: 4px;
}

.location-item p {
  color: var(--muted);
  font-size: 14px;
}

.location-item span {
  font-weight: 700;
  color: var(--primary);
}

/* Explorer iframe */
.explorer-iframe {
  width: 100%;
  height: 360px;
  border-radius: 22px;
  border: none;
}

/* QR */

.qr-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qr-card h2 {
  font-size: 34px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
}

.qr-text {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.qr-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* UTILITY HERO */

.utility-hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.utility-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.utility-note-box {
  background: var(--primary);
  color: white;
  border-radius: 24px;
  padding: 28px;
}

.utility-note-title {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.utility-note-text {
  line-height: 1.8;
  font-size: 15px;
}

/* TROUBLESHOOTING */

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

.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.step-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* CONTACTS */

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

.contact-header {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;
}

.contact-header span {
  font-size: 24px;
}

.contact-header h3 {
  font-size: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-details p {
  font-weight: 600;
}

/* INTERNET */

.internet-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.router-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.router-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.router-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.router-card p {
  color: var(--muted);
  line-height: 1.8;
}

.internet-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.mini-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
}

.mini-step p {
  font-weight: 500;
}

/* APPLIANCES */

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

.appliance-card {
  min-height: 180px;
}

.appliance-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.appliance-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* NOTES */

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

.note-card {
  background: rgba(35, 61, 0, 0.06);
  border-radius: 22px;
  padding: 24px;
}

.note-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.note-card p {
  line-height: 1.7;
  color: var(--muted);
}

.note-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.note-card a:hover {
  color: rgba(35, 61, 0, 0.9);
  text-decoration: underline;
}

/* GUIDE HERO */

.guide-hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.guide-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.guide-hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
}

/* RECOMMENDATIONS */

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.recommendation-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.recommendation-image {
  height: 180px;
  background: linear-gradient(135deg, #233d00, #3d5f0d);
  overflow: hidden;
}

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

.recommendation-card:hover .recommendation-image img {
  transform: scale(1.04);
}

.recommendation-content {
  padding: 22px;
}

.recommendation-content > button {
  margin-top: 18px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 22px;
  padding: 16px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  margin: auto;
  width: 100%;
  margin-top: 15px;
}

.recommendation-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 12px;
}

.recommendation-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
}

.recommendation-card p {
  line-height: 1.7;
  color: var(--muted);
}

/* GUIDE MAP */

#guide-map {
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
}

/* TRANSPORT */

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

.transport-card {
  min-height: 180px;
}

.transport-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
}

.transport-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* DELIVERY */

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

.delivery-card {
  background: rgba(35, 61, 0, 0.06);
  border-radius: 24px;
  padding: 28px;
}

.delivery-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
}

.delivery-card p {
  line-height: 1.7;
  color: var(--muted);
}

/* REVIEW */

.review-card {
  background: var(--primary);
  color: white;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.review-card-inverse {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.review-card-inverse h2 {
  font-size: 48px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  color: var(--black);
}

.review-card-left {
  max-width: 600px;
}

.review-card-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.review-card h2 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
}

.review-card p {
  max-width: 560px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.review-card .booking-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.light {
  color: rgba(255, 255, 255, 0.65);
}

.review-qr-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  top: 10px;
  width: calc(25% - 10px);
  height: calc(25% - 10px);
  margin: 20px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 2px;
}

.google-svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.review-button {
  display: inline-block;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  font-weight: 600;
  border-radius: 22px;
  text-decoration: none;
  text-align: center;
}

.review-button:hover {
  /* background: rgba(255, 255, 255, 0.9); */
  transform: translateY(-4px);
  opacity: 0.8;
  transition: 0.2s ease;
}

.primary-button {
  display: inline-block;
  padding: 16px 28px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 22px;
  text-decoration: none;
  text-align: center;
}

button:disabled,
a:disabled {
  background: rgba(35, 61, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .review-button {
    padding: 14px 24px;
    font-size: 16px;
  }

  .review-card a {
    width: 100%;
  }

  .review-card-inverse {
    display: block;
  }
}

/* DASHBOARD */

.page,
.dashboard-page {
  animation: fadeIn 0.35s ease;
}

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

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

/* NAVBAR */

.navbar {
  /* background: white; */
  /* border: 1px solid var(--border); */
  border-radius: 24px;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: sticky; */
  /* top: 5px; */
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-logo {
  width: 72px;
  border-radius: 50%;
}

.nav-location {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

.nav-title {
  font-size: 28px;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
}

.nav-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

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

.nav-links a.active {
  color: var(--primary);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.language-switcher {
  display: flex;
  gap: 8px;
}

.lang-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.lang-btn:hover {
  border-color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* DASHBOARD HERO */

.dashboard-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.dashboard-copy {
  padding: 20px;
}

.dashboard-image {
  width: 100%;
  /* height: 520px; */
  max-height: 320px;
  object-fit: cover;
  border-radius: 32px;
}

.dashboard-intro {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}

/* QUICK ACCESS */

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

.quick-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 22px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.quick-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(35, 61, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.quick-card h3 {
  font-size: 34px;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
}

.quick-card p {
  line-height: 1.8;
  color: var(--muted);
}

.card,
.recommendation-card,
.delivery-card,
.note-card,
.transport-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover,
.recommendation-card:hover,
.delivery-card:hover,
.note-card:hover,
.transport-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* FEATURE STRIP */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.feature-card span {
  font-size: 32px;
}

.feature-card h3 {
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--muted);
}

.wifi-speed a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.wifi-speed a:hover {
  color: rgba(35, 61, 0, 0.9);
  text-decoration: underline;
}

/* DASHBOARD QR */

.dashboard-qr-card {
  background: var(--primary);
  color: white;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.dashboard-qr-card h2 {
  font-size: 46px;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
}

.dashboard-qr-card p {
  max-width: 520px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.dashboard-qr-card-left {
  max-width: 600px;
}

.dashboard-qr-card-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.dashboard-qr-card h2 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
}

.dashboard-qr-card p {
  max-width: 560px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.light {
  color: rgba(255, 255, 255, 0.65);
}

.review-qr-image,
.concierge-qr-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  top: 10px;
  width: calc(25% - 10px);
  height: calc(25% - 10px);
  margin: 20px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 2px;
}

.index-qr-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  top: 10px;
  width: calc(25% - 10px);
  height: calc(25% - 10px);
  background-color: #ffffff;
  padding: 2px;
}

.concierge-qr {
  width: 100%;
  height: auto;
  max-width: 120px;
}

/* =========================================================
   RESPONSIVE FOUNDATION
========================================================= */

@media (max-width: 1200px) {
  .dashboard-hero,
  .guide-hero-layout,
  .utility-hero-content,
  .map-layout,
  .internet-layout {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .recommendation-grid,
  .contacts-grid,
  .transport-grid,
  .delivery-grid,
  .feature-strip,
  .step-grid,
  .notes-grid,
  .appliance-grid,
  .utilities-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* body {
    padding: 16px;
  } */

  .page {
    /* padding: 24px; */
    animation: pageFade 0.35s ease;
    animation: pageFade 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* .nav-location, */
  /* .nav-subtitle {
    display: none;
  } */

  /* NAVIGATION */

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 5px auto;
  }

  .nav-title {
    font-size: 24px;
  }

  .nav-text {
    width: 65vw;
    margin-top: 3vh;
  }

  /* Language Switcher */

  .language-switcher {
    position: absolute;
    top: 1vh;
    right: 1vw;
  }

  .language-switcher button {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  /* HERO */

  h1 {
    font-size: 54px !important;
    line-height: 0.95;
  }

  .review-card h2,
  .dashboard-qr-card h2,
  .qr-card h2 {
    font-size: 36px;
  }

  /* GRIDS */

  .quick-grid,
  .recommendation-grid,
  .contacts-grid,
  .transport-grid,
  .delivery-grid,
  .feature-strip,
  .step-grid,
  .notes-grid,
  .appliance-grid,
  .utilities-grid,
  .info-grid,
  .internet-steps {
    grid-template-columns: 1fr;
  }

  /* CARDS */

  .review-card,
  .dashboard-qr-card,
  .qr-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content,
  .dashboard-hero {
    gap: 20px;
  }

  .dashboard-image,
  .guide-hero-image,
  .hero-image {
    height: 320px;
  }

  .quick-card h3,
  .recommendation-card h3,
  .transport-card h3,
  .appliance-card h3 {
    font-size: 26px;
  }

  /* MAP */

  #map,
  #guide-map {
    height: 280px;
  }

  /* SPACING */

  section {
    margin-bottom: 20px;
  }

  .index-qr-image-container {
    width: 100%;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px !important;
  }

  .dashboard-image,
  .guide-hero-image,
  .hero-image {
    height: 240px;
  }

  .navbar,
  .card,
  .quick-card,
  .review-card,
  .dashboard-qr-card {
    padding: 20px;
  }

  .quick-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }
}

/* =========================================================
   PAGE TRANSITIONS
========================================================= */

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* =========================================================
   INTERACTION POLISH
========================================================= */

.card,
.quick-card,
.recommendation-card,
.delivery-card,
.note-card,
.transport-card,
.location-item,
.step-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover,
.quick-card:hover,
.recommendation-card:hover,
.delivery-card:hover,
.note-card:hover,
.transport-card:hover,
.location-item:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   INTERACTION SYSTEM
========================================================= */

.card,
.quick-card,
.recommendation-card,
.delivery-card,
.note-card,
.transport-card,
.location-item,
.step-card,
.utility-card,
.contact-card,
.appliance-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* HOVER STATES */

.card:hover,
.quick-card:hover,
.recommendation-card:hover,
.delivery-card:hover,
.note-card:hover,
.transport-card:hover,
.location-item:hover,
.step-card:hover,
.utility-card:hover,
.contact-card:hover,
.appliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(35, 61, 0, 0.16);
}

/* =========================================================
   LARGE SCREEN OPTIMIZATION
========================================================= */

@media (min-width: 1800px) {
  body {
    padding: 58px;
    /* margin: -40px;  */
  }

  .page {
    max-width: 1800px;
  }

  h1 {
    font-size: 78px;
  }

  .intro,
  .dashboard-intro {
    font-size: 18px;
  }

  .navbar {
    padding: 24px 36px;
  }
}

/* =========================================================
   LANDING PAGE
========================================================= */

.landing-hero {
  padding-top: 10px;
}

.landing-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  padding: 18px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.primary-button {
  background: var(--primary);
  color: white;
}

.secondary-button {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   LISTING FEATURES
========================================================= */

.listing-features-title,
.listing-policies-title,
.listing-restrictions-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 500;
  margin: 12px;
}

.listing-features,
.listing-policies,
.listing-restrictions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-features span {
  background: rgba(35, 61, 0, 0.06);
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
LISTING POLICIES
========================================================= */

.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.listing-policies span {
  background: rgba(13, 110, 253, 0.08); /* subtle blue tint */
  color: var(--information);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
LISTING RESTRICTIONS
========================================================= */

.restrictions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.listing-restrictions span {
  background: #fff5f5;
  color: var(--accent-red);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.listing-restrictions span .fa-x {
  color: var(--danger);
  line-height: 1;
}

/* =========================================================
   EXPERIENCE SECTION
========================================================= */

.experience-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 36px;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.experience-text {
  line-height: 1.9;
  color: var(--muted);
  margin-top: 18px;
}

.experience-image-wrapper {
  overflow: hidden;
  border-radius: 28px;
}

.experience-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-image:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .experience-image {
    height: 200px;
  }
}

/* =========================================================
   BOOKING ACTIONS
========================================================= */

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.email-button {
  /* background-color: #c71610; */
  background-color: #fff;
  color: var(--primary) !important;
  color: white;
}

.phone-button {
  background-color: #0077b5;
  color: white;
}

.whatsapp-button {
  background-color: #25d366;
  color: white;
}

.facebook-button {
  background-color: #4267b2;
  color: white;
}

.instagram-button {
  background-color: #e1306c;
  color: white;
}

.booking-button {
  background-color: #003580;
  color: white;
}

/* =========================================================
   FOOTER
========================================================= */

.footer-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 12px;
}

.footer-brand {
  font-size: 22px;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
}

.footer-copy {
  color: var(--muted);
  margin-top: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .experience-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landing-actions {
    flex-direction: row;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-minimal {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .booking-actions {
    width: 100%;
  }
}

/* =========================================================
   APARTMENTS PAGE
========================================================= */

.apartment-stack {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.apartment-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.apartment-showcase.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.apartment-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.main-gallery-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  transition: transform 0.5s ease;
}

.main-gallery-image:hover {
  transform: scale(1.01);
}

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

.gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
}

.apartment-content h2 {
  font-size: 52px;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
}

.apartment-description {
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 24px;
}

.apartment-info-grid {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  line-height: 1.7;
  color: var(--muted);
}

.apartment-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.apartment-actions a {
  width: 100%;
  text-align: center;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 36px;
}

.contact-panel h2 {
  font-size: 42px;
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", serif;
}

.contact-method-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-method {
  background: rgba(35, 61, 0, 0.04);
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  background: rgba(35, 61, 0, 0.08);
}

.contact-method span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

.contact-method h3 {
  margin-top: 6px;
  font-size: 27px;
  font-family: "Cormorant Garamond", serif;
  flex: 1 1 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin-right: 12px;
}

.contact-method p {
  color: var(--primary);
  font-weight: 600;
}

.contact-side-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-copy {
  line-height: 1.8;
  color: var(--muted);
  margin-top: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .apartment-showcase,
  .apartment-showcase.reverse,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    /* grid-template-columns: 1fr; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .apartment-info-grid {
    grid-template-columns: 1fr;
  }

  .apartment-actions {
    /* flex-direction: column;
    align-items: flex-start; */
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-method {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =========================================================
   SHOP
========================================================= */

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

.shop-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.shop-image-wrapper {
  position: relative;
}

.shop-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.shop-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: white;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
}

.shop-content {
  padding: 26px;
}

.shop-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

.shop-card h3 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
}

.shop-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.shop-button {
  width: 100%;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  font-weight: 700;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.shop-button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

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

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

/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: 90%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  animation: lightboxImage 0.25s ease;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.lightbox-close {
  top: 28px;
  right: 28px;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.gallery-grid img,
.main-gallery-image {
  cursor: pointer;
}

@keyframes lightboxImage {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .lightbox-content {
    width: calc(50vw + 25px);
  }

  .lightbox img {
    max-height: 57vh;
  }

  .lightbox-caption {
    font-size: 13px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .lightbox-prev,
  .lightbox-next {
    bottom: 24px;
    top: auto;
  }

  .lightbox-prev {
    left: 30%;
  }

  .lightbox-next {
    right: 30%;
  }
}

/* =========================================================
   PRINT STYLES (REVIEW CARD - WEBSITE ONLY (not concierge))
========================================================= */

@media print {
  .review-card {
    opacity: 1 !important;
    border: 1px solid var(--border);
    color: #2b2b2b;
  }

  .review-card p {
    color: #2b2b2b !important;
  }

  .review-card .eyebrow {
    color: var(--primary) !important;
  }
  .booking-actions a,
  .review-card a {
    background: rgba(255, 255, 255, 0.8) !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 22px !important;
  }

  .contact-method {
    background: rgba(35, 61, 0, 0.04) !important;
    border: 1px solid var(--border) !important;
  }
}
