/* =====================================================
   Around.is — Master Style Sheet
   =====================================================

   TABLE OF CONTENTS
   ─────────────────────────────────────────────────────
   BASE
     1.  Variables & Design Tokens
     2.  Reset
     3.  Utilities
     4.  Buttons
     5.  Badges & Labels
     6.  Star Ratings

   SHARED LAYOUT
     7.  Header & Nav          — all pages
     8.  Section Layout        — all pages
     9.  Listing Card Grid     — index, list, map, single
    10.  Page Banner           — list, single, contact
    11.  Footer                — all pages

   PAGE: HOME  (index.html)
    12.  Hero
    13.  Category Cards

   PAGE: LISTINGS  (list.html)
    14.  Filter Bar

   PAGE: MAP  (map.html)
    15.  Map Layout & Sidebar
    16.  Map Listing Cards

   PAGE: SINGLE LISTING  (single.html)
    17.  Photo Mosaic
    18.  Single Content Layout
    19.  Amenities Grid
    20.  Booking Widget
    21.  Location Map Placeholder

   PAGE: CONTACT  (contact.html)
    22.  Contact Grid & Form
    23.  Form Success State
    24.  Contact Info Sidebar
    25.  Social Links
    26.  FAQ Strip

   RESPONSIVE
    27.  Breakpoints
   ──────────────────────────────────────────────────── */

/* =====================================================
   1. VARIABLES & DESIGN TOKENS
   ===================================================== */
:root {
  --primary: #eb6607;
  --primary-dark: #d05800;
  --secondary: #03a89e;
  --navy: #1a1f36;
  --dark: #222222;
  --body-color: #6b7280;
  --bg: #f7f8fb;
  --white: #ffffff;
  --border: #e2e8f0;
  --star: #f59e0b;
  --green: #16a34a;
  --font: "Rubik", sans-serif;
  --max-w: 1200px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
  --shadow-hover: 0 16px 44px rgba(0, 0, 0, 0.16);
  --t: 0.22s ease;
  --header-h: 68px;
}

/* =====================================================
   2. RESET
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body-color);
  background: var(--bg);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--dark);
  font-weight: 600;
  line-height: 1.2;
}
h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}
h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}
p {
  margin-bottom: 0.75rem;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  list-style: none;
}

/* =====================================================
   3. UTILITIES
   ===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* =====================================================
   4. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t),
    transform var(--t),
    box-shadow var(--t);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(235, 102, 7, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: #fff;
  color: var(--dark);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  box-shadow: var(--shadow-md);
  border-color: #bbb;
}

.btn-book {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  box-shadow: 0 4px 16px rgba(235, 102, 7, 0.35);
  cursor: pointer;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(235, 102, 7, 0.45);
}

/* =====================================================
   5. BADGES & LABELS
   ===================================================== */
.badge {
  display: inline-block;
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--category {
  background: var(--primary);
  color: #fff;
}
.badge--region {
  background: var(--secondary);
  color: #fff;
}
.badge--white {
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
}
.badge--green {
  background: var(--green);
  color: #fff;
}

/* =====================================================
   6. STAR RATINGS
   ===================================================== */
.stars {
  color: var(--star);
  font-size: 0.9rem;
  letter-spacing: -0.05em;
}

/* =====================================================
   7. HEADER & NAV  —  all pages
   ===================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.nav-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.nav-brand em {
  color: var(--navy);
  font-style: normal;
}

.nav-brand p {
  font-size: 10px;
  color: #000;
  margin-top: -12px;
  font-weight: 500;
  text-align: right;
  color: #eb6607;
  font-style: italic;
}

.nav-menu {
  display: flex;
  gap: 0.15rem;
}
.nav-menu li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-pill);
  transition:
    background var(--t),
    color var(--t);
  position: relative;
}
.nav-menu li a:hover {
  background: var(--bg);
  color: var(--primary);
}
.nav-menu li a.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

/* =====================================================
   8. SECTION LAYOUT  —  all pages
   ===================================================== */
.section {
  padding: 4rem 0;
}
.section-sm {
  padding: 2.5rem 0;
}
.section-bg {
  background: var(--bg);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}
.section-head h2 {
  margin-bottom: 0.2rem;
}
.section-sub {
  font-size: 0.875rem;
  color: var(--body-color);
  margin: 0;
}

/* =====================================================
   9. LISTING CARD GRID  —  index, list, map, single
   ===================================================== */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 1.65rem;
}

.listing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--t),
    transform var(--t);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.listing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .card-img img {
  transform: scale(1.06);
}

.card-heart {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition:
    background var(--t),
    transform var(--t);
  color: #aaa;
}
.card-heart:hover {
  transform: scale(1.18);
  background: var(--white);
  color: #e11d48;
}
.card-heart.saved {
  color: #e11d48;
}

.card-badges {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-desc {
  font-size: 0.84rem;
  color: var(--body-color);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.5rem;
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
}
.card-rating .score {
  font-weight: 700;
  color: var(--dark);
}
.card-rating .count {
  color: var(--body-color);
}
.card-price {
  text-align: right;
  line-height: 1.2;
}
.card-price .amount {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.card-price .per {
  font-size: 0.72rem;
  color: var(--body-color);
  display: block;
}

/* =====================================================
   10. PAGE BANNER  —  list, single, contact
   ===================================================== */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #272e67 100%);
  padding: 2.75rem 0;
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.35rem;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-size: 0.93rem;
}

/* =====================================================
   11. FOOTER  —  all pages
   ===================================================== */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand .nav-brand {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-brand p {
  font-size: 0.865rem;
  max-width: 270px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.865rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t);
}
.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* =====================================================
   PAGE: HOME  (index.html)
   ===================================================== */

/* 12. Hero
   ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1.25rem 6rem;
  background: linear-gradient(
    160deg,
    #0d1326 0%,
    var(--navy) 50%,
    #12403d 100%
  );
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero.webp") center/cover no-repeat;
  opacity: 0.8;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 19, 38, 0.7) 0%,
    transparent 60%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.hero-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  margin-top: 0;
}

/* Search pill */
.search-pill {
  background: var(--white);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}
.search-field {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.25rem;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.search-field:last-of-type {
  border-right: none;
}
.search-field__label {
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
  white-space: nowrap;
}
.search-field select,
.search-field input[type="text"] {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--body-color);
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
}
.search-field select:focus,
.search-field input:focus {
  color: var(--dark);
}
.search-pill-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 1.1rem 1.75rem;
  cursor: pointer;
  font-size: 1.35rem;
  transition: background var(--t);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.search-pill-btn:hover {
  background: var(--primary-dark);
}
.search-pill-btn span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Hero category pills */
.hero-cats {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.hero-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.05rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background var(--t),
    border-color var(--t);
  backdrop-filter: blur(6px);
  text-decoration: none;
}
.hero-cat-pill:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* 13. Category Cards
   ─────────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}
.category-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    box-shadow var(--t),
    transform var(--t),
    border-color var(--t);
  display: block;
  text-decoration: none;
  color: inherit;
}
.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.cat-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.category-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
}
.category-card p {
  font-size: 0.84rem;
  color: var(--body-color);
  margin: 0;
}

/* =====================================================
   PAGE: LISTINGS  (list.html)
   ===================================================== */

/* 14. Filter Bar
   ─────────────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 150;
  padding: 0.8rem 0;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  user-select: none;
}
.filter-chip:hover {
  border-color: var(--dark);
}
.filter-chip.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.filter-chip.active[data-cat="accommodations"] {
  background: var(--primary);
  border-color: var(--primary);
}
.filter-chip.active[data-cat="camping"] {
  background: var(--green);
  border-color: var(--green);
}
.filter-chip.active[data-cat="pools"] {
  background: var(--secondary);
  border-color: var(--secondary);
}

.filter-sep {
  flex: 1 1 0;
}

.sort-label {
  font-size: 0.83rem;
  color: var(--body-color);
  white-space: nowrap;
}
.sort-select {
  padding: 0.4rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--white);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
}
.sort-select:focus {
  outline: none;
  border-color: var(--secondary);
}
.results-count {
  font-size: 0.875rem;
  color: var(--body-color);
  margin-top: 0.25rem;
}
.results-count strong {
  color: var(--dark);
  font-weight: 600;
}

/* =====================================================
   PAGE: MAP  (map.html)
   ===================================================== */

/* 15. Map Layout & Sidebar
   ─────────────────────────────────────────────────── */
.body--map {
  overflow: hidden;
}

.map-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  position: relative;
  z-index: 10;
}
.map-filter-inner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.map-layout {
  display: grid;
  grid-template-columns: 370px 1fr;
  height: calc(100vh - var(--header-h) - 57px);
  height: calc(100dvh - var(--header-h) - 57px);
}

.map-sidebar {
  overflow-y: auto;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.map-sidebar::-webkit-scrollbar {
  width: 5px;
}
.map-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.map-sidebar-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 2;
}
.map-sidebar-header h2 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.map-sidebar-header p {
  font-size: 0.8rem;
  color: var(--body-color);
  margin: 0;
}

.map-container {
  background: #d8e4e8;
  position: relative;
  overflow: hidden;
}
.map-placeholder {
  text-align: center;
  color: var(--body-color);
}
.map-placeholder .map-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.map-placeholder p {
  font-size: 1rem;
}
.map-placeholder small {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* 16. Map Listing Cards
   ─────────────────────────────────────────────────── */
.map-card-list {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-card {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition:
    box-shadow var(--t),
    border-color var(--t);
  text-decoration: none;
  color: inherit;
}
.map-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.map-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(235, 102, 7, 0.18);
}

.map-card-thumb {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.map-card-info {
  flex: 1;
  min-width: 0;
}
.map-card-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.map-card-info p {
  font-size: 0.8rem;
  color: var(--body-color);
  margin: 0 0 0.35rem;
}
.map-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.map-card-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.map-card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
}
.map-card-rating .score {
  font-weight: 600;
  color: var(--dark);
}

/* =====================================================
   PAGE: SINGLE LISTING  (single.html)
   ===================================================== */

/* 17. Photo Mosaic
   ─────────────────────────────────────────────────── */
.photo-mosaic-wrap {
  position: relative;
  background: var(--dark);
}
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 4px;
  max-height: 540px;
  overflow: hidden;
}
.photo-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-side {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show-all-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: box-shadow var(--t);
  z-index: 2;
}
.show-all-btn:hover {
  box-shadow: var(--shadow-md);
}

/* 18. Single Content Layout
   ─────────────────────────────────────────────────── */
.single-wrap {
  background: var(--white);
}

.single-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  padding: 2.5rem 0 5rem;
  align-items: start;
}

.single-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.single-header h1 {
  margin-bottom: 0.5rem;
}
.single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.875rem;
}
.single-meta-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--dark);
}
.single-meta-sep {
  color: var(--border);
}
.single-meta-loc {
  color: var(--body-color);
}

.single-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.single-section:last-child {
  border-bottom: none;
}
.single-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.single-section p {
  font-size: 0.93rem;
  line-height: 1.75;
}

/* 19. Amenities Grid
   ─────────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.65rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--dark);
  padding: 0.6rem 0.85rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--bg);
}
.amenity-icon {
  font-size: 1.05rem;
}

/* 20. Booking Widget
   ─────────────────────────────────────────────────── */
.booking-widget {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}
.widget-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.widget-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}
.widget-per {
  font-size: 0.875rem;
  color: var(--body-color);
}

.widget-rating-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.widget-rating-row .score {
  font-weight: 700;
  color: var(--dark);
}
.widget-rating-row .count {
  color: var(--body-color);
}

.widget-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md) var(--r-md) 0 0;
  overflow: hidden;
}
.widget-date-field {
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  transition: background var(--t);
}
.widget-date-field:hover {
  background: var(--bg);
}
.widget-date-field + .widget-date-field {
  border-left: 1px solid var(--border);
}
.widget-date-field label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 0.2rem;
  pointer-events: none;
}
.widget-date-field input[type="date"] {
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--body-color);
  background: transparent;
  width: 100%;
  cursor: pointer;
}
.widget-guests {
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 0.65rem 0.9rem;
  margin-bottom: 1rem;
  transition: background var(--t);
}
.widget-guests:hover {
  background: var(--bg);
}
.widget-guests label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.widget-guests select {
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--body-color);
  background: transparent;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
}
.widget-no-charge {
  text-align: center;
  font-size: 0.78rem;
  color: var(--body-color);
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.widget-breakdown {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.widget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.widget-row.total {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

/* 21. Location Map Placeholder
   ─────────────────────────────────────────────────── */
.location-map {
  height: 340px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* =====================================================
   PAGE: CONTACT  (contact.html)
   ===================================================== */

/* 22. Contact Grid & Form
   ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  padding: 3rem 0 5rem;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 2rem 2.25rem;
}
.contact-form-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.contact-form-card .form-subtitle {
  font-size: 0.875rem;
  color: var(--body-color);
  margin-bottom: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  width: 100%;
  resize: vertical;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8c4;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(3, 168, 158, 0.12);
  background: var(--white);
}
.form-group textarea {
  min-height: 140px;
}

.form-submit {
  margin-top: 1.5rem;
}
.form-submit .btn {
  width: 100%;
  padding: 0.95rem;
  font-size: 0.95rem;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--body-color);
  margin-top: 0.85rem;
  margin-bottom: 0;
}

/* 23. Form Success State
   ─────────────────────────────────────────────────── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1rem;
  gap: 0.75rem;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.form-success h3 {
  font-size: 1.15rem;
  margin: 0;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--body-color);
  margin: 0;
}

/* 24. Contact Info Sidebar
   ─────────────────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.75rem;
}
.info-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body-color);
  margin-bottom: 1.1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info-item:first-of-type {
  padding-top: 0;
}

.info-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: #fff4ed;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.info-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.1rem;
}
.info-text span {
  font-size: 0.83rem;
  color: var(--body-color);
  line-height: 1.5;
}
.info-text a {
  font-size: 0.83rem;
  color: var(--secondary);
  transition: color var(--t);
}
.info-text a:hover {
  color: var(--primary);
}

.contact-map {
  height: 190px;
  background: linear-gradient(135deg, #dce8ee 0%, #c8dde5 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--body-color);
  margin-top: 0.75rem;
}
.contact-map .map-pin {
  font-size: 2rem;
}
.contact-map p {
  font-size: 0.82rem;
  margin: 0;
}

/* 25. Social Links
   ─────────────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--bg);
  text-decoration: none;
  transition:
    border-color var(--t),
    color var(--t),
    background var(--t);
}
.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff4ed;
}

/* 26. FAQ Strip
   ─────────────────────────────────────────────────── */
.faq-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.faq-strip .section-head {
  margin-bottom: 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}
.faq-item {
  padding: 1.25rem 1.4rem;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  transition:
    border-color var(--t),
    box-shadow var(--t);
}
.faq-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.faq-item h4 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.faq-item p {
  font-size: 0.83rem;
  color: var(--body-color);
  margin: 0;
}

/* =====================================================
   27. RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  /* single.html */
  .single-content {
    grid-template-columns: 1fr;
  }
  .booking-widget {
    position: static;
  }
  /* contact.html */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .info-card {
    flex: 1 1 280px;
  }
  /* shared */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* map.html */
  .map-layout {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 768px) {
  /* shared nav */
  .nav-actions {
    display: none;
  }
  /* index.html */
  .hero {
    padding: 4rem 1rem 5rem;
  }
  .search-pill {
    border-radius: var(--r-xl);
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .search-pill-btn {
    width: 100%;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
  }
  /* map.html */
  .map-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  .map-sidebar {
    max-height: 50vh;
  }
  .map-container {
    height: 50vw;
    min-height: 300px;
  }
  /* single.html */
  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 280px;
  }
  .photo-side {
    display: none;
  }
  /* contact.html */
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }
  .contact-grid {
    padding: 2rem 0 3.5rem;
    gap: 1.5rem;
  }
  .contact-info {
    flex-direction: column;
  }
  /* shared */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .filter-sep {
    display: none;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .listing-grid {
    grid-template-columns: 1fr;
  }
  /* index.html */
  .hero-cats {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
}

/* =====================================================
   LEAFLET OVERRIDES  —  map, single
   ===================================================== */
.leaflet-popup-content-wrapper {
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border);
}
.leaflet-popup-content {
  font-family: var(--font) !important;
  margin: 0.6rem 0.85rem !important;
  line-height: 1.5 !important;
}
.leaflet-popup-tip-container {
  margin-top: -1px;
}
.leaflet-control-zoom a {
  font-family: var(--font) !important;
  color: var(--dark) !important;
}
.leaflet-control-zoom a:hover {
  color: var(--primary) !important;
}
.leaflet-control-attribution {
  font-family: var(--font) !important;
  font-size: 0.68rem !important;
}
