:root {
  --primary: #0a7cff;
  --dark: #1c1c1c;
  --gray: #6b7280;
  --light: #f5f7fb;
}

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

/* BODY FONT SYSTEM */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* GLOBAL LINK */
a {
  color: inherit;
  text-decoration: none;
}

a:visited,
a:active {
  color: inherit;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* HEADINGS */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

h2 {
  margin-bottom: 10px;
}

h3 {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 8px;
}

img {
  content-visibility: auto;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

/* FORCE CONSISTENT PARAGRAPH FONT */
p,
.about-text,
.desc,
.info-card p {
  font-family: 'Inter', system-ui, sans-serif;
}

/* CONTAINER */

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 45px;
}

/* CTA BUTTON */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #0a7cff, #005be3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta i {
  font-size: 13px;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 35px 25px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* TEXT */
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.hero p {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

/* BUTTON BASE */
.btn {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  margin: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* BUTTON VARIANTS */
.btn.primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

/* BUTTON HOVER */
.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10,124,255,0.35);
}

.btn.primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn.outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

/* CLICK EFFECT */
.cta:active,
.btn:active {
  transform: scale(0.96);
  box-shadow: none;
}

/* RIPPLE EFFECT */
.btn::after,
.cta::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.6s;
}

.btn:active::after,
.cta:active::after {
  width: 200px;
  height: 200px;
  opacity: 1;
  transition: 0s;
}

/* HERO BUTTON ALIGN */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  width: 240px;
}

/* ICONS */
.btn i {
  margin-right: 6px;
  font-size: 14px;
}

/* SECTION (CLEAN + CONSISTENT) */
.section {
  padding: 60px 20px;
  margin: 0;
  text-align: center;
}

.section.light {
  background: var(--light);
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADINGS */
.section h1,
.section h2,
.section h3 {
  text-align: center;
  margin: 0;
}

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

.section h3 {
  margin: 25px 0 10px;
  justify-content: center; /* fixes flex alignment issue */
}

/* TEXT */
.about-text {
  max-width: 850px;
  margin: 12px auto;
  line-height: 1.7;
  color: var(--gray);
  text-align: center;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* INFO CARDS */
.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.info-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.info-card h3 a {
  text-decoration: none;
  color: inherit;
}

.info-card h3 a:hover {
  text-decoration: underline;
}

.info-card a {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
}

.info-card a:hover {
  text-decoration: underline;
}

/* MATCH PARAGRAPH STYLE */
.info-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btn.primary:hover {
  text-decoration: none;
  opacity: 0.95;
}

button.btn,
a.btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600 !important;
  font-size: 15px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* LISTING GRID */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* LISTING CARD (PRODUCTION STYLE) */
.listing-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: relative;
}

/* HOVER */
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.listing-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* IMAGE ZOOM */
.listing-card:hover img {
  transform: scale(1.06);
}

/* GRADIENT OVERLAY */
.listing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.listing-card:hover::after {
  opacity: 1;
}

/* CARD CONTENT */
.card-content {
  padding: 16px;
}

/* LOCATION */
.location {
  font-size: 12.5px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.location i {
  color: #ef4444;
  font-size: 13px;
}

/* META ROW */
.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 8px;
}

/* PRICE */
.price {
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
}

/* GUESTS */
.guests {
  font-size: 12.5px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* TITLE */
.title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
  color: #111827;
}

/* DESCRIPTION */
.desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  display: block;
  overflow: visible;
}

/* BADGE CONTAINER */
.badge-img {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}

/* BADGE IMAGE (FIXED TRANSFORM + ANIMATION) */
.badge-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));

  transform: rotate(-8deg);
  animation: floatBounce 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* BOUNCE ANIMATION (WITH ROTATION INCLUDED) */
@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-8px) rotate(-8deg);
  }
}

/* HOVER EFFECT (COMBINED SCALE + ROTATION) */
.listing-card:hover .badge-img img {
  transform: scale(1.1) rotate(-8deg);
}

/* DESTINATIONS SECTION */
.destinations {
  margin-top: 40px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  text-align: center;
}

/* HEADING */
.destinations h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111827;
}

/* TAG LIST */
.destinations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* EACH DESTINATION TAG */
.destinations-list span {
  background: #f1f5f9;
  color: #334155;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: default;
}

/* HOVER EFFECT */
.destinations-list span:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* DESTINATIONS SECTION */
.destinations {
  margin-top: 40px;
  text-align: center;
}

.destinations h2 {
  margin-bottom: 15px;
}

/* GRID STYLE */
.destinations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* LINK STYLE (IMPORTANT) */
.destinations-list a {
  text-decoration: none;
  color: #374151; /* normal text color */
  font-size: 13px;
  padding: 6px 12px;
  background: #f3f4f6;
  border-radius: 20px;
  transition: all 0.25s ease;
}

/* REMOVE BLUE / VISITED COLOR */
.destinations-list a:visited {
  color: #374151;
}

.destinations-list a:active {
  color: #374151;
}

/* HOVER EFFECT */
.destinations-list a:hover {
  background: #0a7cff;
  color: #fff;
  transform: translateY(-2px);
}

.list-cta {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.list-cta p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin: 10px 0 18px;
}

.list-cta h2 {
  font-size: 22px;
}

.list-cta .cta {
  margin-top: 10px;
}

.list-cta p strong {
  color: #dc2626;
  font-weight: 700;
}

.section.light p {
  max-width: 750px;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.state-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.state-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.state-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.state-card a {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 6px 10px;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.state-card a:hover {
  background: #ff7e5f;
  color: #fff;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 13px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #0ea5e9;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer a:visited {
  color: #cbd5e1;
}

.footer a:not(.footer-btn):hover {
  color: #0ea5e9;
  text-decoration: underline;
}

/* DESTINATIONS */
.footer-destinations {
  font-size: 13px;
  line-height: 1.8;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #0a7cff;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.footer-btn:hover {
  background: #005be3;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 15px;
  font-size: 12px;
  color: #94a3b8;
}

.footer-seo {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

/* DIRECTORY GRID */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.directory-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.directory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

/* GRADIENT LINE */
.directory-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0a7cff, #00c6ff);
}

/* HEADING */
.directory-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

/* LINKS */
.directory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.directory-links a {
  text-decoration: none;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #374151;
  transition: all 0.25s ease;
}

/* HOVER TAG EFFECT */
.directory-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}

/* GALLERY IMAGE WRAPPER */
.gallery-img {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* reuse your smooth hover feel */
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* hover effect similar to listing-card */
.gallery-img:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* subtle hint text (no heavy overlay) */
.gallery-img::after {
  content: "🔍 View";
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 11px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 3px 8px;
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-img:hover::after {
  opacity: 1;
}

-.gallery-wrapper {
  position: relative;
}

.gallery {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-snap-type: x mandatory;
}

.gallery a {
  flex: 0 0 90%;
  scroll-snap-align: start;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Hide scrollbar */
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

/* MOBILE SWIPE */
.gallery-mobile { display: none; }
.gallery-desktop { display: block; }

.gallery-track {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-snap-type: x mandatory;
}

.gallery-track img {
  width: 85%;
  border-radius: 12px;
  flex-shrink: 0;
  scroll-snap-align: center;
}


h1, h2, h3 {
  text-align: center;
}

.about-text {
  text-align: center;
  max-width: 850px;
  margin: auto;
  line-height: 1.7;
}

.info-card, .section .container {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn {
  transition: all 0.25s ease;
  border-radius: 10px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.accordion-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.accordion-btn {
  width: 100%;
  padding: 18px 50px 18px 18px;
  text-align: left;
  background: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fafafa;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-btn::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 18px;
}

.accordion-item.active .accordion-btn::after {
  content: "−";
}

.accordion-btn {
  transition: background 0.2s ease, padding-left 0.2s ease;
}

/* hover effect */
.accordion-btn:hover {
  background: #f9fafb;
  padding-left: 20px; /* slight shift = premium feel */
}

/* BREADCRUMB CLEAN UI */
.breadcrumb {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f8fafc;
  padding: 8px 14px;
  border-radius: 20px;
  gap: 6px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #9ca3af;
}

.breadcrumb .current {
  color: #6b7280;
  font-weight: 500;
}

/* INFO CARD UPGRADE */

/* LEFT CARD STYLING */
.info-highlight {
  text-align: left;
}

.info-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.info-meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.6;
}


/* PRICE TAG */
.price-tag {
  font-size: 22px;
  font-weight: 700;
  color: #15803d;
  display: flex;
  align-items: baseline;
}


.price-tag span {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.emoji {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.25em;   /* 🔥 scales with text */
  line-height: 1;
  transform: translateY(1px);
}




/* RIGHT CARD */
.info-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  text-align: center;
}

/* OFFER TEXT */
.offer-text {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
}

/* FULL WIDTH BUTTON */
.btn.full {
  width: 100%;
}

.info-highlight {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.badge {
  margin-left: auto; /* fallback push */
}

/* BADGE STYLE */
.badge {
  font-size: 12px;
  background: #fef3c7;
  color: #b45309;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}


.info-card .btn {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  transform: none;
}

.info-card:hover .btn {
  opacity: 1 !important;
}

.info-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 10px;
  border-radius: 999px;

  background: #f8fafc;
  border: 1px solid #e5e7eb;

  font-size: 13px;
  color: #374151;

  transition: all 0.25s ease;
  white-space: nowrap;
}

/* hover effect */
.meta-chip:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(10,124,255,0.2);
}

/* emoji inside chip */
.meta-chip .emoji {
  font-size: 1.2em;
  transform: translateY(1px);
}

/* Make full card clickable cleanly */
.info-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Keep hover underline ONLY on SEO text */
.card-link {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}

/* Optional nice hover effect */
.info-card:hover .card-link {
  text-decoration: underline;
}

.grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  align-items: stretch;
}

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

.img-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.verified-badge {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #155724;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #b1dfbb;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;

  /* subtle animation */
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.share-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;

  align-items: center;
  justify-content: center;
}

.share-modal.active {
  display: flex;
}

.share-box {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

.share-text {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

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

.share-grid a {
  text-decoration: none;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  background: #f3f4f6;
  transition: all 0.25s ease;
}

.share-grid a:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

/* subtle animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.owner-coverage{
    text-align:center;
}

.property-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    margin:30px 0 50px;
}

.property-grid span{
    background:#fff;
    padding:12px 18px;
    border-radius:30px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    font-weight:600;
    font-size:15px;
}

.coverage-heading{
    margin-top:20px;
}

.coverage-bottom-text{
    max-width:900px;
    margin:35px auto 0;
    font-size:17px;
    line-height:1.8;
}


/* RESPONSIVE */

/* DIRECTORY */
@media (max-width: 1024px) {
  .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* LISTING GRID */
@media (max-width: 1200px) {
  .listing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MAIN TABLET / MOBILE */
@media (max-width: 768px) {

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

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

  .hero {
    height: auto;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* DESTINATIONS */
  .destinations {
    padding: 20px 15px;
  }

  .destinations h2 {
    font-size: 18px;
  }

  .destinations-list span {
    font-size: 12px;
    padding: 5px 10px;
  }

  /* INFO GRID */
  .info-bar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
    text-align: center;
  }

  .info-meta span,
  .info-meta {
    white-space: nowrap;
  }
}

/* FOOTER */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .info-meta-chips {
    justify-content: flex-start;
  }

  .meta-chip {
    font-size: 12px;
    padding: 5px 9px;
  }
  

@media (max-width: 768px) {
  .gallery-mobile { display: block; }
  .gallery-desktop { display: none; }
} 
  
/* end responsive */
  

/* ⚠️ IMPORTANT: Do not merge or reorder media queries
   Layout depends on cascade order across pages */
