/* ========================================
   1) Full-Page-Flex-Layout
======================================== */
html {
  font-size: 16px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  background-color: #eef5f9;
  color: #12243f;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

header {
  background-color: #fff;
  padding: 0.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  position: relative;
  max-height: 17.5rem;
  overflow: hidden;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 68.75rem;
  margin: 0 auto;
}

.logo {
  height: 4.375rem;
  display: block;
  max-width: 100%;
}

#lang-select {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  border: 1px solid #cfd9e3;
  border-radius: 0.625rem;
  padding: 0.375rem 0.625rem;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
}

#lang-select:focus {
  outline: 0.125rem solid #12243f;
  outline-offset: 0.125rem;
}

main.main-content {
  flex: 1;
  overflow: hidden;
  padding: 0.5rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  max-width: 75rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

footer {
  background-color: #fff;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  flex-shrink: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  padding: 0 1rem;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-link {
  background-color: #25D366;
  box-shadow: 0 0.125rem 0.5rem rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
  background-color: #20ba5a;
  transform: scale(1.05);
  box-shadow: 0 0.25rem 0.75rem rgba(37, 211, 102, 0.4);
}

.email-link {
  background-color: #0066cc;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 102, 204, 0.3);
}

.email-link:hover {
  background-color: #0052a3;
  transform: scale(1.05);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 102, 204, 0.4);
}

.contact-link:focus {
  outline: 0.125rem solid #12243f;
  outline-offset: 0.125rem;
}

.madeby {
  font-size: 0.7rem;
  color: #666;
}

/* ========================================
   2) Landing Page Styles
======================================== */
.cta-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  width: 100%;
  max-width: 56.25rem;
  margin: 2.5rem auto 0;
  flex-shrink: 0;
}

.cta-box-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 20rem;
}

.cta-box-group:focus {
  outline: 0.125rem solid #12243f;
  outline-offset: 0.25rem;
  border-radius: 1.125rem;
}

.cta-box {
  width: 100%;
  height: 11.25rem;
  background-size: cover;
  background-position: center;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(17, 41, 76, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.5rem;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.cta-section:not(.city-section) .cta-box-group:nth-child(3) .cta-box {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-box-group:hover .cta-box {
  transform: translateY(-0.5rem) scale(1.02);
  box-shadow: 0 0.9375rem 2.1875rem rgba(17, 41, 76, 0.25);
}

.coming-soon-card {
  cursor: default;
  pointer-events: none;
}

.coming-soon-card .cta-box {
  position: relative;
  cursor: default;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.coming-soon-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coming-soon-card:hover .cta-box {
  transform: none;
  box-shadow: 0 0.25rem 0.75rem rgba(17, 41, 76, 0.15);
}

.cta-text {
  display: block;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.cta-label {
  margin-top: 0.25rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: #12243f;
}

.cta-caption {
  max-width: 16.25rem;
  margin: 0.125rem auto 0;
  line-height: 1.35;
  font-size: 0.8rem;
  color: #4b5b75;
}

/* About Section */
.about-section {
  max-width: 55rem;
  margin: 0 auto 3.75rem;
  text-align: center;
  width: 100%;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

.about-section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
  font-weight: 800;
  color: #12243f;
}

.about-section p {
  line-height: 1.4;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #4b5b75;
}

/* ========================================
   3) Responsive - Landing Page
======================================== */
@media screen and (max-width: 1200px) {
  .cta-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .cta-caption {
    font-size: 0.9rem;
  }

  .logo {
    height: 3.75rem;
  }

  .header-top {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  main.main-content {
    overflow-y: auto;
    padding: 1.25rem 1rem;
  }

  .cta-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .cta-box {
    height: 10rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .logo {
    height: 3.75rem;
  }

  header {
    padding: 0.9375rem 1rem;
  }

  .about-section h2 {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
  }

  .about-section p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  main.main-content {
    padding: 0.9375rem 0.75rem;
  }

  .cta-section {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0 auto 0.625rem;
  }

  .cta-box {
    height: 8.75rem;
  }

  .cta-text {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .cta-label {
    margin-top: 0.3125rem;
    font-size: 0.95rem;
  }

  .cta-caption {
    font-size: 0.85rem;
    max-width: 100%;
    margin: 0.1875rem auto 0;
  }

  .logo {
    height: 3.125rem;
  }

  header {
    padding: 0.75rem 0.75rem;
  }

  #lang-select {
    right: 0.75rem;
    padding: 0.3125rem 0.5rem;
    font-size: 0.85rem;
  }

  .about-section {
    margin: 0.3125rem auto 0;
    padding: 0 0.3125rem;
  }

  .about-section h2 {
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
  }

  .about-section p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  footer {
    padding: 0.75rem 0;
    font-size: 0.75rem;
  }

  .footer-content {
    gap: 0.3125rem;
  }

  .footer-links {
    gap: 0.5rem;
  }

  .contact-link {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }

  .madeby {
    font-size: 0.65rem;
  }
}

@media screen and (max-width: 576px) {
  main.main-content {
    padding: 0.75rem 0.625rem;
  }

  .cta-section {
    gap: 0.75rem;
    margin: 0 auto 0.5rem;
  }

  .cta-box {
    height: 7.5rem;
  }

  .cta-text {
    font-size: 0.9rem;
  }

  .about-section h2 {
    font-size: 1.25rem;
  }

  .cta-caption {
    max-width: 90%;
  }
}

/* ========================================
   4) Views Pages Styles
======================================== */
.back-btn {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  text-decoration: none;
  color: #12243f;
  font-weight: bold;
}

.back-btn:focus {
  outline: 0.125rem solid #12243f;
  border-radius: 0.25rem;
}

.back-btn:hover {
  color: #007BFF;
}

.home-btn {
  position: absolute;
  left: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #cfd9e3;
  border-radius: 0.625rem;
  padding: 0.375rem 0.625rem;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  color: #12243f;
}

.home-btn:hover {
  background: #f0f4f8;
}

.home-btn:focus {
  outline: 0.125rem solid #12243f;
  outline-offset: 0.125rem;
}

main.main-content.scrollable {
  overflow-y: auto;
  justify-content: flex-start;
}

.page-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #12243f;
  font-weight: 800;
  text-align: center;
}

.city-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.city-card:hover .city-image {
  transform: scale(1.05);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
}

.city-card:focus {
  outline: 0.125rem solid #12243f;
  border-radius: 1rem;
}

.city-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.city-name {
  margin-top: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: #12243f;
}

.city-desc {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #4b5b75;
  text-align: center;
  line-height: 1.4;
}

/* City Section on Views Index (same as landing page style) */
.city-section .city-desc {
  max-width: 17.5rem;
  margin: 0.25rem auto 0;
  line-height: 1.4;
  font-size: 0.95rem;
  color: #4b5b75;
}

/* Location Cards */
.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 56.25rem;
  margin: 0.75rem auto;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.location-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
}

.location-card:focus {
  outline: 0.125rem solid #12243f;
  outline-offset: 0.125rem;
}

.location-image {
  width: 100%;
  height: 8.75rem;
  background-size: cover;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: background-image;
}

.location-info {
  padding: 1rem;
  text-align: center;
}

.location-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #12243f;
  margin-bottom: 0.375rem;
  text-align: center;
}

.location-desc {
  font-size: 0.9rem;
  color: #4b5b75;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* ========================================
   5) Location Detail Page Styles
======================================== */
.location-detail {
  max-width: 56.25rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.hero-image {
  width: 100%;
  height: 18.75rem;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.12);
  margin-bottom: 1.5rem;
}

.location-title {
  font-size: 2rem;
  font-weight: 800;
  color: #12243f;
  margin-bottom: 0.5rem;
  text-align: center;
}

.location-subtitle {
  font-size: 1.1rem;
  color: #4b5b75;
  margin-bottom: 1.25rem;
  text-align: center;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
}

.info-label {
  font-size: 0.85rem;
  color: #4b5b75;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #12243f;
}

.description-section {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.description-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #12243f;
  margin-bottom: 0.75rem;
}

.description-section p {
  font-size: 0.95rem;
  color: #4b5b75;
  line-height: 1.6;
  margin: 0;
}

.what-you-see {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.what-you-see h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #12243f;
  margin-bottom: 0.75rem;
}

.what-you-see ul {
  margin: 0;
  padding-left: 1.25rem;
}

.what-you-see li {
  font-size: 0.95rem;
  color: #4b5b75;
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

/* Action Buttons - Legacy */
.action-buttons {
  text-align: center;
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* NEW Button Grid - same width as white boxes above */
.buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  gap: 0.6rem;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.18s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  white-space: normal;
  line-height: 1.3;
  margin: 0;
}

.btn-text {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
  width: 100%;
}

.btn-primary {
  background: #11294C;
  color: #ffffff;
}
.btn-primary:hover {
  background: #0E223F;
  transform: translateY(-2px);
}

.btn-premium {
  background: #D9A441;
  color: #ffffff;
  font-size: 0.88rem;
}
.btn-premium:hover {
  background: #B98A37;
  transform: translateY(-2px);
}

.btn-walks {
  background: #F5F7FA;
  color: #11294C;
}
.btn-walks:hover {
  background: #E6EBF2;
  transform: translateY(-2px);
}

.btn-disabled {
  background-color: #bfbfbf !important;
  color: #666 !important;
  pointer-events: none;
  cursor: not-allowed;
}

.btn-label {
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.5rem;
  font-weight: 500;
  line-height: 1.25;
  max-width: 11rem;
  text-align: center;
  word-break: break-word;
}

.btn-description {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.5rem;
  line-height: 1.25;
  max-width: 11rem;
  text-align: center;
  word-break: break-word;
}

.btn-disabled {
  background-color: #bfbfbf !important;
  color: #666 !important;
  pointer-events: none;
  cursor: not-allowed;
}

.premium-sub {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.5rem;
  line-height: 1.25;
  max-width: 11rem;
  text-align: center;
  word-break: break-word;
}

.btn-description-open {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.5rem;
  line-height: 1.25;
  max-width: 11rem;
  text-align: center;
  word-break: break-word;
}

/* Premium Page Styles */
.premium-content {
  max-width: 50rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.premium-hero {
  width: 100%;
  height: 12.5rem;
  border-radius: 0.75rem;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
}

.premium-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #12243f;
  margin-bottom: 1.25rem;
  text-align: center;
}

.premium-section {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
  margin-bottom: 1.25rem;
}

.premium-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #12243f;
  margin-bottom: 1rem;
}

.premium-section p {
  font-size: 0.95rem;
  color: #4b5b75;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.premium-section ul {
  padding-left: 1.25rem;
  margin: 0;
}

.premium-section li {
  font-size: 0.95rem;
  color: #4b5b75;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.back-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background-color: #12243f;
  color: #fff;
  text-decoration: none;
  border-radius: 0.625rem;
  font-weight: 600;
  transition: all 0.3s;
}

.back-link:hover {
  background-color: #1e3a5f;
}

.back-link:focus {
  outline: 0.125rem solid #007BFF;
  outline-offset: 0.125rem;
}

/* Premium Page 2-Column Button Grid */
.premium-content .buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 50rem;
  margin: 2.5rem auto 0 auto;
}

.premium-content .buttons .btn {
  width: 100%;
  box-sizing: border-box;
}

/* Premium Value Anchor */
.premium-value-anchor {
  text-align: center;
  opacity: 0.8;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #4b5b75;
}

/* ========================================
   6) Views Responsive
======================================== */
@media screen and (max-width: 1200px) {
  .city-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .location-cards {
    max-width: 100%;
    padding: 0 1rem;
  }

  .page-title {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 992px) {
  .city-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .page-title {
    font-size: 1rem;
  }

  .back-btn {
    left: 1rem;
    font-size: 1.25rem;
  }

  .home-btn {
    left: 3rem;
  }

  .hero-image {
    height: 13.75rem;
  }

  .location-title {
    font-size: 1.625rem;
  }

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

  .location-detail {
    max-width: 100%;
    padding: 0 1rem;
  }

  .premium-content {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  .city-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .location-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .page-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .back-btn {
    left: 1rem;
    font-size: 1.25rem;
  }

  .home-btn {
    left: 3rem;
    font-size: 0.8rem;
    padding: 0.3125rem 0.5rem;
  }

  .hero-image {
    height: 13.75rem;
    border-radius: 0.75rem;
  }

  .location-title {
    font-size: 1.625rem;
  }

  .location-detail {
    padding: 0 0.75rem;
  }

  .premium-content {
    padding: 0 0.75rem;
  }

  .action-buttons {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .action-buttons > div {
    flex: 0 1 calc(33.333% - 0.5rem);
    max-width: none;
  }

  .btn-open, .btn-premium, .btn-citytour {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
    min-height: 3.5rem;
  }

  .premium-hero {
    height: 10rem;
  }

  .premium-title {
    font-size: 1.375rem;
  }

  main.main-content.scrollable {
    padding: 0.75rem;
  }

  .buttons {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .buttons .btn {
    width: 100%;
    box-sizing: border-box;
  }

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

  .location-detail {
    box-sizing: border-box;
  }
}

@media screen and (max-width: 576px) {
  .city-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .location-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0.5rem auto;
  }

  .page-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .back-btn {
    left: 0.75rem;
    font-size: 1.125rem;
  }

  .home-btn {
    left: 2.5rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
  }

  .hero-image {
    height: 11.25rem;
    border-radius: 0.75rem;
  }

  .location-title {
    font-size: 1.375rem;
  }

  .location-subtitle {
    font-size: 1rem;
  }

  .location-detail {
    padding: 0 0.5rem;
    box-sizing: border-box;
  }

  .premium-content {
    padding: 0 0.5rem;
    box-sizing: border-box;
  }

  .info-cards {
    gap: 0.75rem;
  }

  .action-buttons {
    flex-wrap: wrap;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    gap: 0.5rem;
  }

  .action-buttons > div {
    flex: 0 1 calc(50% - 0.25rem);
    max-width: none;
  }

  .btn-open, .btn-premium, .btn-citytour {
    font-size: 0.85rem;
    padding: 0.875rem 0.625rem;
    min-height: 3.25rem;
  }

  .btn-label {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }

  .premium-hero {
    height: 9.375rem;
  }

  .premium-title {
    font-size: 1.25rem;
  }

  .premium-section {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .contact-link {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
  }

  main.main-content.scrollable {
    padding: 0.5rem;
  }

  .buttons {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

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

/* Tap Hint - Landing Page Mobile */
#tap-hint {
  display: none;
}

@media screen and (max-width: 768px) {
  #tap-hint {
    display: block;
    text-align: center;
    margin: 0.75rem auto 0;
    background: rgba(18, 36, 63, 0.08);
    color: #12243f;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(18, 36, 63, 0.12);
    pointer-events: none;
    animation: tapHintFadeIn 0.6s ease forwards;
    transition: opacity 0.6s ease;
    width: fit-content;
  }

  #tap-hint.tap-hint-hide {
    opacity: 0;
  }
}

@keyframes tapHintFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Coming Soon Section */
.coming-soon {
  text-align: center;
  padding: 3.75rem 1.25rem;
  background: #fff;
  border-radius: 1rem;
  max-width: 37.5rem;
  margin: 2.5rem auto;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}

.coming-soon p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: #12243f;
  margin-bottom: 0.75rem;
}

.coming-soon p:last-child {
  font-size: 1rem;
  color: #4b5b75;
}
