* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}
 
/* =====================
   NAV
===================== */
nav {
    position: fixed;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3758f9;
    z-index: 1000;
}
 
.logo img{
width: 150px;
}
 

 
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}
 
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}
 
.nav-links a:hover { color: #ddd; }
 
#list-btn {
    background-color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
}
 
#list-btn a {
    color: #111827;
    font-size: 14px;
    font-weight: 600;
}
 
/* Hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}
 
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
 
/* =====================
   HEADER / HERO
===================== */
header {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
 


.box {
    background-image: url('../Assets/images/ty-dennis-tRQtxVq8YTQ-unsplash.jpg');
    background-size: cover;
    background-repeat: no-repeat;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
 
}



 
.hero {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 80px;
    text-align: center;
}
 
#sub-1 {
    color: #f1f1f1;
    font-size: 13px;
    margin: 10px auto;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    max-width: 300px;
    width: 90%;
    padding: 6px 16px;
    font-family: "JetBrains Mono", monospace;
    text-align: center;
    backdrop-filter: blur(6px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
 
#sub-2 {
    text-align: center;
    font-size: clamp(26px, 5vw, 48px);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
 
#sub-p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    width: 90%;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Cascadia Mono", monospace;
    font-weight: 200;
    font-size: clamp(13px, 2vw, 16px);
    line-height: 1.7;
}
 
.sub-heading p { text-align: inherit; }
 
.search-container {
    display: flex;
    width: 90%;
    max-width: 500px;
    margin-bottom: 40px;
}
 
.search-container input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 20px 0 0 20px;
    font-size: 15px;
    outline: none;
    min-width: 0;
}
 
.search-container button {
    border: 1px solid #fff;
    padding: 14px 22px;
    background-color: transparent;
    color: white;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    white-space: nowrap;
}
 
.search-container button:hover {
    background-color: #1f2937;
    border-color: #1f2937;
}
 
/* =====================
   TRUST SECTION
===================== */
.trust-section {
    background-color: #f8fafc;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 70px 5%;
}
 
.trust-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    width: 260px;
    gap: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
 
.trust-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}
 
.trust-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}
 
.trust-card p {
    font-size: 13px;
    font-family: "Cascadia Mono", monospace;
    font-weight: 350;
    color: #6b7280;
    line-height: 1.6;
}
 
.trust-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0fdf4;
    color: #16a34a;
    font-size: 20px;
    margin: 0 auto;
    flex-shrink: 0;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
 
.trust-icon:hover {
    cursor: pointer;
    background-color: #3758f9;
    color: #fff;
    transform: scale(1.1);
}
 
/* =====================
   LISTING SECTION
===================== */
.listing-section { background-color: #fff; }
 
.listing-header {
    padding: 50px 5% 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
 
.listing-sub-header { 
    display: flex; 
    flex-direction: column;

}
 
.listing-sub-header h5 {
    color: #6b7280;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
 
.listing-sub-header H1 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    font-style: normal;
    color: #111827;
}
 
.view-all-btn a {
    text-decoration: none;
    color: #3758f9;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
 
.view-all-btn a:hover { gap: 10px; }
 
.card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
 
/* =====================
   LISTING CARDS
===================== */
.trust-text {
    text-align: start;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}
 
.img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}
 
.pic-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
 
.pic-1:hover { transform: scale(1.05); }
 
.listing-card {
    background-color: #fff;
    border-radius: 30px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}
 
.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
 
.card-text {
    text-align: start;
    padding: 10px 12px 0;
    font-size: 1.05em;
    color: #111827;
    font-family: "Oleo Script", system-ui;
    font-weight: 700;
    font-style: normal;
}
 
.listing-card p {
    text-align: left;
    color: #6b7280;
    font-size: 0.85em;
    font-weight: 500;
    line-height: 1.5;
    padding: 8px 12px 0;
}
 
.listing-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
    padding-left: 12px;
}
 
.listing-card .tags span {
    background-color: #f1f5f9;
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 0.7em;
    font-weight: 600;
    color: #374151;
}
 
.view-btn {
    text-decoration: none;
    font-size: 13px;
    padding: 6px 16px;
    cursor: pointer;
    color: #111827;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}
 
.view-btn:hover {
    transform: translateY(-2px);
    background-color: #111827;
    color: #fff;
    border-color: #111827;
}
 
.price-tags {
    text-decoration: none;
    font-size: 15px;
    padding: 3px 20px;
    margin: 15px;
    color: #111827;
    border-radius: 5px;
    background: transparent;
    font-weight: 600;
}
 
.listing-view {
    margin: 0 12px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
 
/* =====================
   INDEX GUIDE BANNER
===================== */
.list-bnb-image img {
    border-radius: 20px;
    width: 200px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    transform: rotate(2deg);
}
 
.list-bnb-image img:hover { transform: rotate(0deg) translateY(-5px); }
 
.index-guide-content {
    /* background-image removed - set dynamically via JS */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 80px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
 
.index-guide-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 24px;
}
 
.index-guide-content .guide-hero-content {
    position: relative;
    z-index: 1;
}
 
.index-guide-content #featuredEventTitle {
    color: #fff;
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: 16px;
}
 
.guide-hero-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    margin-bottom: 16px;
}
 
.guide-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 24px;
}
 
.guide-hero-meta i { margin-right: 6px; }
 
.guide-hero-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.guide-hero-btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}
 
/* =====================
   LIST B&B CARD
===================== */
.list-bnb-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    border-radius: 24px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 50px 40px;
    gap: 40px;
    align-items: center;
}
 
.list-bnb-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 240px;
}
 
.list-bnb-text h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-family: serif;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
 
.list-bnb-text p {
    text-align: left;
    color: #6b7280;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.7;
    padding-top: 10px;
}
 
.list-bnb-text ul {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.list-bnb-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: #374151;
    font-size: 0.9em;
    font-weight: 500;
}
 
.list-bnb-text li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #16a34a;
    flex-shrink: 0;
}
 
.list-bnb-btn {
    display: inline-block;
    text-align: center;
    margin-top: 24px;
    text-decoration: none;
    color: #fff;
    width: 180px;
    background-color: #111827;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.list-bnb-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}
 
.list-bnb-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* =====================
   FOOTER
===================== */
.footer-container {
    display: flex;
    flex-direction: column;
    background-color: #3758f9;
    color: #fff;
    padding: 60px 5%;
    gap: 50px;
}

 
.footer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}
 
.footer-icons {
    color: #000;
    display: flex;
    gap: 16px;
    margin-top: 10px;
    font-size: 20px;
}
 
.footer-icons a { color: #fff; transition: color 0.3s; }
.footer-icons a:hover { color: #16a34a; }
 
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
 
.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}
 
footer h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-family: "Cascadia Mono", monospace;
    font-weight: 700;
}
 
footer h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
 
footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s;
}
 
footer a:hover { color: #fff; }
 
footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffff;
}
 
.footer-copy {
    border-top: 1px solid #fff;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/* =====================
   LISTINGS PAGE HEADER
===================== */
.listings-page-header {
    position: relative;
     background-image: url('../Assets/images/ty-dennis-tRQtxVq8YTQ-unsplash.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
}
 
.listing-page-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 70px;
    text-align: center;
}
 
.list-sub-2 {
    text-align: center;
    font-size: clamp(26px, 5vw, 45px);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
 
.list-sub-p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    width: 90%;
    text-align: center;
    margin-bottom: 28px;
    font-family: "Cascadia Mono", monospace;
    font-weight: 200;
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.7;
}
 
/* =====================
   SEARCH BAR
===================== */
.list-search-container {
    display: flex;
    width: 90%;
    max-width: 500px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
 
.list-search-container input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    font-size: 15px;
    outline: none;
    min-width: 0;
    color: #111827;
    background: transparent;
}
 
.list-search-container input::placeholder { color: #9ca3af; }
 
.list-search-container button {
    border: none;
    padding: 14px 22px;
    background-color: #3758f9;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.list-search-container button:hover { background-color: #1f2937; }
 
/* =====================
   FILTER BAR
===================== */
.filter-bar {
    top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
    padding: 20px 28px;
    margin: 32px auto;
    max-width: 1200px;
    width: 90%;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
 
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.filter-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ca3af;
}
 
.filter-group select {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    background: #f8fafc;
    color: #111827;
    outline: none;
    transition: border-color 0.2s;
}
 
.filter-group select:focus { border-color: #111827; }
 
/* Price Range */
.range-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.range-wrapper input[type="range"] {
    width: 140px;
    accent-color: #111827;
    cursor: pointer;
}
 
.range-wrapper span {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    min-width: 52px;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    text-align: center;
}
 
/* Amenity Checkboxes */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
 
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background-color 0.2s, border-color 0.2s;
    text-transform: none;
    letter-spacing: 0;
}
 
.checkbox-group label:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}
 
.checkbox-group input[type="checkbox"] { accent-color: #111827; }
 
/* Reset Button */
#resetFilters {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
    white-space: nowrap;
}
 
#resetFilters:hover {
    border-color: #111827;
    color: #111827;
    background: #f8fafc;
}
 
/* No Results */
.no-results {
    text-align: center;
    padding: 4rem;
    color: #9ca3af;
    font-size: 1rem;
    width: 100%;
}
 
/* =====================
   PAGINATION
===================== */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 48px 0;
    padding: 0 16px;
}
 
.pagination button {
    padding: 9px 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #3758f9;
    transition: all 0.2s;
}
 
.pagination button:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
 
.pagination button.active,
.active-page {
    background: #111827;
    color: #fff;
    border-color: #111827;
    font-weight: 700;
}
/* =====================
   DETAILS PAGE HEADER
===================== */
.details-page-header {
    position: relative;
    background-color: #111827;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
 
/* =====================
   DETAILS LAYOUT
===================== */
.details-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 5%;
}
 
.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}
 
/* =====================
   PROPERTY IMAGE
===================== */
.property-image img {
    margin-top: 10px;
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
 
/* =====================
   SHARED CARD STYLE
===================== */
.property-info,
.about-section,
.Amenities-section,
.bnb-gallery {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-top: 20px;
    padding: 24px;
    transition: box-shadow 0.3s ease;
}
 
.property-info:hover,
.about-section:hover,
.Amenities-section:hover,
.bnb-gallery:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
 
/* =====================
   PROPERTY INFO
===================== */
.property-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}
 
.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 14px;
}
 
.property-price {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}
 
.property-price span {
    font-size: 14px;
    font-weight: 400;
    color: #9ca3af;
}
 
.property-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
 
.property-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 20px;
}
 
/* =====================
   ABOUT SECTION
===================== */
.about-section h3,
.Amenities-section h3,
.bnb-gallery h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}
 
.about-section p {
    line-height: 1.8;
    color: #4b5563;
    font-size: 15px;
}
 
/* =====================
   AMENITIES
===================== */
.Amenities-section .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
 
.Amenities-section .tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    transition: background-color 0.2s, border-color 0.2s;
}
 
.Amenities-section .tags span:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
 
.Amenities-section .tags span i {
    color: #16a34a;
    font-size: 14px;
}
 
/* =====================
   GALLERY
===================== */
.bnb-gallery > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 4px;
}
 
.bnb-pic {
    border-radius: 10px;
    width: 100%;
    height: 130px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.bnb-pic:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
 
/* =====================
   CONTACT CARD
===================== */
.contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 80px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
 
.contact-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}
 
.contact-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}
 
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}
 
.contact-btn {
    background-color: #3758f9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-btn:nth-child(2) {
    background-color: #16a34a;;
}

.contact-btn:nth-child(3) {
    border: 1px solid #1e293b;
    color: #000;
    background-color: transparent;;
}

.contact-btn:nth-child(3):hover {
    color: #fff;
}
 
.contact-btn:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
}
 
/* WhatsApp button gets a green accent */
.contact-btn.whatsapp {
    background-color: #16a34a;
}
 
.contact-btn.whatsapp:hover {
    background-color: #15803d;
}
 
/* Maps button gets a subtle outline style */
.contact-btn.maps {
    background-color: transparent;
    border: 1px solid #e2e8f0;
    color: #374151;
}
 
.contact-btn.maps:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}
 
/* =====================
   LIGHTBOX
===================== */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
 
.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
 
.lightbox-close {
    position: absolute;
    top: 24px; right: 36px;
    font-size: 36px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
 
.lightbox-close:hover { color: #fff; }

 /* ===== Rooms Section ===== */
        .rooms-section {
            margin-top: 25px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 24px;
            border-radius: 10px;
        }
 
        .rooms-section h3 {
            font-family: "Archivo Black", sans-serif;
            font-size: 18px;
            color: #111827;
            margin-bottom: 18px;
        }
 
        /* Tab buttons */
        .room-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
 
        .room-tab-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 10px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
            min-width: 110px;
        }
 
        .room-tab-btn .tab-beds {
            font-size: 13px;
            font-weight: 700;
            color: #111827;
        }
 
        .room-tab-btn .tab-price {
            font-size: 12px;
            color: #6b7280;
        }
 
        .room-tab-btn.active {
            border-color: #2563eb;
            background: #eff6ff;
        }
 
        .room-tab-btn.active .tab-beds { color: #2563eb; }
        .room-tab-btn:hover:not(.active) { border-color: #9ca3af; }
 
        /* Room panels */
        .room-panel { display: none; animation: roomFade 0.25s ease; }
        .room-panel.active { display: block; }
 
        @keyframes roomFade {
            from { opacity: 0; transform: translateY(6px); }
            to   { opacity: 1; transform: translateY(0); }
        }
 
        .room-panel-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 14px;
        }
 
        .room-panel-header h4 {
            font-family: "Archivo Black", sans-serif;
            font-size: 17px;
            color: #111827;
            margin-bottom: 6px;
        }
 
        .room-panel-header p {
            font-size: 13.5px;
            color: #6b7280;
            line-height: 1.55;
            max-width: 460px;
            padding: 0;
        }
 
        .room-price-badge {
            background: #111827;
            color: #fff;
            padding: 10px 22px;
            border-radius: 20px;
            font-size: 16px;
            font-weight: 700;
            white-space: nowrap;
            flex-shrink: 0;
            align-self: flex-start;
        }
 
        .room-price-badge small {
            font-weight: 400;
            font-size: 12px;
        }
 
        .room-meta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
 
        .room-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #374151;
            background: #f3f4f6;
            padding: 5px 14px;
            border-radius: 20px;
            font-weight: 500;
        }
 
        /* Room image grid */
        .room-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
        }
 
        .room-gallery img {
            width: 100%;
            height: 130px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s;
        }
 
        .room-gallery img:hover { transform: scale(1.04); }
 

 
        .details-contact-sub {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 8px;
        }
 
     
 
/* =====================
   GUIDE PAGE
===================== */
.guide-page-header {
    position: relative;
    background-color: #111827;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
 
.guide-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}
 
.guide-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
}
 
.guide-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: 90%;
}
 
.guide-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
}
 
.guide-hero h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(26px, 5vw, 48px);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
 
.guide-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
 
.guide-hero-meta span { display: flex; align-items: center; gap: 6px; }
 
.guide-hero-btn {
    display: inline-block;
    background: #fff;
    color: #111827;
    padding: 13px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.guide-hero-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}
 
/* =====================
   GUIDE TABS
===================== */
.guide-tabs {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    position: sticky;
    top: 56px;
    z-index: 100;
}
 
.guide-tabs::-webkit-scrollbar { display: none; }
 
.guide-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
 
.guide-tab.active {
    color: #fff;
    background: #111827;
    border-radius: 30px;
    border-bottom: 3px solid transparent;
    margin: 8px 0;
}
 
.guide-tab:hover:not(.active) { color: #111827; }
 
/* =====================
   GUIDE SECTIONS
===================== */
.guide-content-section { display: block; }
 
.guide-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 5%;
}
 
.guide-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 12px;
    flex-wrap: wrap;
}
 
.guide-section-header h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    color: #111827;
}
 
.guide-section-header p {
    color: #6b7280;
    font-size: 14px;
    margin-top: 4px;
}
 
.guide-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s ease;
}
 
.guide-view-all:hover {
    gap: 10px;
    text-decoration: underline;
}
 
/* =====================
   GUIDE GRIDS
===================== */
.events-grid,
.restaurants-grid,
.attractions-grid,
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
 
.nightlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
 
/* =====================
   GUIDE CARDS
===================== */
.event-card,
.restaurant-card,
.nightlife-card,
.attraction-card,
.tour-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.event-card:hover,
.restaurant-card:hover,
.nightlife-card:hover,
.attraction-card:hover,
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
 
.event-card-img,
.nightlife-card-img,
.attraction-card-img,
.tour-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
 
.restaurant-card-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
 
.restaurant-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
 
.restaurant-card:hover .restaurant-card-img { transform: scale(1.05); }
 
.restaurant-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: rgba(255, 255, 255, 0.18);
}
 
.event-card-body,
.restaurant-card-body,
.nightlife-card-body,
.attraction-card-body,
.tour-card-body { padding: 18px; }
 
.event-card-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
 
.event-card-meta span { display: flex; align-items: center; gap: 5px; }
 
.event-card h3,
.restaurant-card h3,
.nightlife-card h3,
.attraction-card h3,
.tour-card h3 {
    font-family: "Archivo Black", sans-serif;
    font-size: 16px;
    color: #111827;
    margin-bottom: 8px;
}
 
.event-card p,
.restaurant-card p,
.nightlife-card p,
.attraction-card p,
.tour-card p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
    padding: 0;
}
 
.event-card-link,
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    text-decoration: none;
    transition: gap 0.2s ease;
}
 
.event-card-link:hover,
.learn-more-btn:hover { gap: 10px; }
 
.restaurant-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
 
.restaurant-rating {
    display: none;
    /*display: flex;*/
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
 
.restaurant-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}
 
.restaurant-card-tags {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #6b7280;
    flex-wrap: wrap;
}
 
.restaurant-card-tags span { display: flex; align-items: center; gap: 4px; }
 
.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111827;
    color: #fff;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.directions-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
}
 
/* =====================
   NIGHTLIFE BADGES
===================== */
.nightlife-vibe-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
 
.vibe-chill { background: #f1f5f9; color: #374151; }
.vibe-party { background: #fce7f3; color: #be185d; }
.vibe-live  { background: #dcfce7; color: #15803d; }
 
/* =====================
   ATTRACTIONS & TOURS
===================== */
.attraction-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
 
.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
 
.tour-price {
    font-weight: 800;
    color: #111827;
    font-size: 15px;
}
 
.tour-book-btn,
.attraction-link-btn {
    background: #111827;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
 
.tour-book-btn:hover,
.attraction-link-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
}
/*===============
About page css
================*/
 
.about-hero {
    background-image: url('../Assets/images/ty-dennis-tRQtxVq8YTQ-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 80px;
    text-align: center;
}
 
#about-sub-1 {
    color: #f1f1f1;
    font-size: 14px;
    margin: 10px auto;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    max-width: 300px;
    width: 90%;
    padding: 6px 12px;
    font-family: "JetBrains Mono", monospace;
    text-align: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
}
 
#about-sub-2 {
    text-align: center;
    font-size: clamp(26px, 5vw, 58px);
    color: #f1f1f1;
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
 
#about-sub-p {
    color: #f1f1f1;
    max-width: 600px;
    width: 90%;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Cascadia Mono", monospace;
    font-weight: 200;
    font-size: clamp(13px, 2vw, 18px);
    line-height: 1.7;
}
 
 
/* ===== About Us Paragraph ===== */
.about-us-paragraph {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 300px;
}
 
.about-us-paragraph h2 {
    padding: 0 0 16px 0;
    font-size: clamp(22px, 3vw, 32px);
    color: #111827;
}
 
.about-us-paragraph p {
    text-align: center;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}
 
 
/* ===== Mission Cards ===== */
.about-mission-cards {
    margin-top: 50px;
    padding: 0 50px 60px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
 
.mission-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    max-width: 280px;
    flex: 1;
    background-color: #fafafa;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
 
.mission-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}
 
.mission-card h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}
 
.mission-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
 
.mission-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0fdf4;
    color: #16a34a;
    font-size: 20px;
    margin: 0 auto;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    flex-shrink: 0;
}
 
.mission-card-icon:hover {
    cursor: pointer;
    background-color: #3758f9;
    color: #fff;
    transform: scale(1.1);
}
 
 
/* ===== Why Local Section ===== */
.why-local {
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    padding: 60px 80px;
    min-height: 60vh;
    gap: 60px;
}
 
.why-local-text h2 {
    padding: 0 0 20px 0;
    font-size: clamp(22px, 3vw, 32px);
    color: #111827;
}
 
.why-local-text {
    width: 50%;
    padding: 0;
}
 
.why-local-text p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}
 
.why-local-text ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}
 
.why-local-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    list-style: none;
    text-decoration: none;
}
 
.why-local-text li i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
 
.why-local-image img {
    border-radius: 20px;
    width: 500px;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
 
.why-local-image img:hover {
    transform: rotate(4deg) translateY(-5px);
}
 
 
/* ===== Find Cards Section ===== */
.about-find-cards-section {
    text-align: center;
    padding: 70px 20px;
    background-color: #f8fafc;
}
 
.about-find-cards-section h1 {
    font-size: clamp(24px, 4vw, 36px);
    color: #111827;
    margin-bottom: 10px;
}
 
.about-find-cards-section > p {
    color: #6b7280;
    margin-bottom: 36px;
    font-size: 15px;
}
 
.about-find-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
 
.find-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    max-width: 180px;
    flex: 1;
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
 
.find-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}
 
.find-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
 
.find-card p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}
 
/* Unique accent colors per find-card icon */
.find-card:nth-child(1) .mission-card-icon { background-color: #eff6ff; color: #2563eb; }
.find-card:nth-child(2) .mission-card-icon { background-color: #fef9c3; color: #ca8a04; }
.find-card:nth-child(3) .mission-card-icon { background-color: #fdf2f8; color: #db2777; }
.find-card:nth-child(4) .mission-card-icon { background-color: #f0fdf4; color: #16a34a; }
 
 
/* ===== CTA / Button Section ===== */
.about-btn-section {
    text-align: center;
    margin: 60px auto;
    padding: 70px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    border-radius: 24px;
    max-width: 860px;
}
 
.about-btn-section h1 {
    margin: 0 0 16px 0;
    font-size: clamp(24px, 4vw, 38px);
    color: #111827;
}
 
.about-btn-section p {
    padding: 0 60px;
    margin-bottom: 28px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}
 
.go-to-listing-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #111827;
    padding: 12px 24px;
    margin: 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.go-to-listing-btn:hover {
    background-color: #374151;
    transform: translateY(-2px);
}
 
.List-Business-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    background-color: transparent;
    padding: 12px 24px;
    margin: 8px;
    border: 1px solid #1e293b;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}
 
.List-Business-btn:hover {
    color: #fff;
    background-color: #1e293b;
    transform: translateY(-2px);
}

/* ====================
   LIST BNB PAGE
==================== */
 
.list-bnb-page {
    padding: 100px 20px 80px;
    min-height: 100vh;
    background-color: #f8fafc;
}
 
.list-bnb-container {
    max-width: 900px;
    margin: 0 auto;
}
 
/* =====================
   HEADER
===================== */
.list-bnb-header {
    text-align: center;
    margin-bottom: 40px;
}
 
.list-bnb-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #374151;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 16px;
}
 
.list-bnb-header h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.2;
}
 
.list-bnb-text {
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    color: #6b7280;
    font-size: 15px;
}
 
/* =====================
   FORM CARD
===================== */
.list-bnb-form {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
 
/* =====================
   FORM GRID
===================== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
 
.form-group {
    display: flex;
    flex-direction: column;
}
 
.form-group label {
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 13px;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
 
.form-group input,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #f8fafc;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    font-family: inherit;
}
 
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}
 
.form-group input:focus,
.form-group textarea:focus {
    border-color: #111827;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.07);
}
 
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
 
.full-width {
    grid-column: 1 / -1;
}
 
/* =====================
   SUBMIT BUTTON
===================== */
.submit-btn {
    margin-top: 28px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    background-color: #3758f9;
    color: #fff;
    width: 100%;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 
.submit-btn:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
}
 
.submit-btn:active {
    transform: translateY(0);
}
 
/* =====================
   LARGE SCREENS (≥ 1400px)
===================== */
@media (min-width: 1400px) {
    header { min-height: 70vh; }
    .listing-page-hero { height: 50vh; }
    .listings-page-header { min-height: 50vh; }
    .listing-header {
    padding: 50px 20% 24px;
}
    .about-us-paragraph{
    padding: 0 600px;
}
}

/* =====================
   TABLET (≤ 1024px)
===================== */
@media (max-width: 1024px) {
    .listing-header { gap: 20px; }
    .list-bnb-card { align-items: center; }
    .list-bnb-image img { width: 160px; height: 200px; }
    .Amenities-section .tags { gap: 8px; }

        .about-us-paragraph {
        padding: 60px 80px;
    }
 
    .about-btn-section p {
        padding: 0 20px;
    }
 
    .why-local {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }
 
    .why-local-text {
        width: 100%;
    }
 
    .why-local-text li {
        justify-content: center;
    }
 
    .why-local-image img {
        width: 100%;
        max-width: 480px;
        height: 260px;
    }
}

/* =====================
   MOBILE (≤ 768px)
===================== */
@media (max-width: 768px) {
  .logo img {
    width: 140px;
    max-width: 100%;
    height: auto;
  }
    /* Nav — hamburger */
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 70vh;
        background: #3758f9;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 40px;
        gap: 22px;
        transition: right 0.35s ease;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.35);
        margin-right: 0;
    }
    

    .nav-links.open { right: 0; }
    .nav-links a { font-size: 17px; }
    #list-btn { 
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #list-btn a { 
        color: #1e293b; 
        font-size: 17px; 
        font-weight: 400; }

    /* Hero */
    header { min-height: 100svh; }
    .hero { padding: 90px 20px 50px; }
    #sub-2 { font-size: 28px; }

    /* Trust */
    .trust-section {
        flex-direction: column;
        gap: 32px;
        padding: 40px 20px;
    }
    .trust-card { width: 100%; max-width: 340px; }

    /* Listing header */
    .listing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 28px 5% 16px;
    }

    /* Cards */
    .card { grid-template-columns: 1fr; width: 92%; }
    .listing-card { width: 100%; margin: 0; }

    /* Index guide banner */
    .index-guide-content { padding: 50px 20px; }

    /* B&B card */
    .list-bnb-card { flex-direction: column; padding: 28px 20px; }
    .list-bnb-image { display: none; }
    .list-bnb-text h2 { font-size: 26px; }
    .list-bnb-btn { width: 100%; text-align: center; }

    /* Footer */
    .footer-content { flex-direction: column; gap: 30px; }
    .footer-container { gap: 36px; }

    /* Listings page */
    .listings-page-header { min-height: auto; }
    .listing-page-hero { padding: 100px 20px 50px; }

    /* Filter bar */
    .filter-bar { flex-direction: column; align-items: stretch; padding: 16px; width: 92%; }
    .range-wrapper input[type="range"] { width: 100%; }

    /* Details page */
    .details-grid { grid-template-columns: 1fr; }
    .contact-card { position: relative; top: 0; }
    .property-image img { height: 240px; }
    .Amenities-section .tags span { padding: 10px 14px; }

    /* Gallery — 2 columns */
    .bnb-gallery div { grid-template-columns: repeat(2, 1fr); }
    .bnb-pic { height: 110px; }

    /* Guide page */
    .guide-hero { min-height: 340px; padding: 90px 20px 50px; }
    .guide-hero h1 { font-size: 28px; }
    .guide-hero-meta { flex-direction: column; gap: 8px; }
    .guide-tabs { top: 54px; padding: 0 12px; }
    .guide-tab { padding: 12px 12px; font-size: 13px; }
    .guide-section { margin: 36px auto; }
    .guide-section-header { flex-direction: column; align-items: flex-start; }

    .events-grid,
    .restaurants-grid,
    .nightlife-grid,
    .attractions-grid,
    .tours-grid { grid-template-columns: 1fr; }

     .list-bnb-page {
        padding: 90px 16px 60px;
    }
 
    .form-grid {
        grid-template-columns: 1fr;
    }
 
    .list-bnb-header h1 {
        font-size: 26px;
    }
 
    .list-bnb-form {
        padding: 24px 20px;
    }
}

/* =====================
   SMALL PHONES (≤ 480px)
===================== */
@media (max-width: 480px) {
    .logo { font-size: 14px; }
    .search-container button,
    .list-search-container button { padding: 14px 14px; font-size: 13px; }
    .pagination button { padding: 8px 12px; font-size: 13px; }
    .bnb-pic { height: 90px; }
    .guide-hero-btn { padding: 12px 24px; font-size: 14px; }
    .details-page { padding: 16px; }
}